diff --git a/pandora_console/extensions/agents_modules.php b/pandora_console/extensions/agents_modules.php index f93dec02a4..e668e35179 100644 --- a/pandora_console/extensions/agents_modules.php +++ b/pandora_console/extensions/agents_modules.php @@ -383,7 +383,7 @@ function mainAgentsModules() &full_agents_id='.$full_agents.'&selection_agent_module='.$selection_a_m.'">'.html_print_image('images/full_screen.png', true, ['title' => __('Full screen mode'), 'class' => 'invert_filter']).'</a>'; } else { $fullscreen['text'] = '<a href="index.php?extension_in_menu=estado&sec=extensions&sec2=extensions/agents_modules&pure=1& - offset='.$offset.'&group_id='.$group_id.'&modulegroup='.$modulegroup.'&refresh='.$refr.'">'.html_print_image('images/full_screen.png', true, ['title' => __('Full screen mode')]).'</a>'; + offset='.$offset.'&group_id='.$group_id.'&modulegroup='.$modulegroup.'&refresh='.$refr.'">'.html_print_image('images/full_screen.png', true, ['title' => __('Full screen mode'), 'class' => 'invert_filter']).'</a>'; } } diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index 6f2747de19..45149c5e6a 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -238,7 +238,7 @@ echo '</table>'; if (!$config['disable_help']) { echo '<div class="disable_help">'; echo '<strong>'; - echo "<a class='color-black-grey' target='_blank' href='http://pandorafms.com/Library/Library/'>".__('Get more modules on Monitoring Library').'</a>'; + echo "<a class='color-black-grey invert_filter' target='_blank' href='http://pandorafms.com/Library/Library/'>".__('Get more modules on Monitoring Library').'</a>'; echo '</strong>'; echo '</div>'; } diff --git a/pandora_console/godmode/alerts/alert_list.list.php b/pandora_console/godmode/alerts/alert_list.list.php index da85133c7f..399bb55cfd 100644 --- a/pandora_console/godmode/alerts/alert_list.list.php +++ b/pandora_console/godmode/alerts/alert_list.list.php @@ -810,7 +810,8 @@ foreach ($simple_alerts as $alert) { 'images/lightbulb_off.png', 1, 'padding:0px', - true + true, + ['class' => 'invert_filter'] ); $data[4] .= html_print_input_hidden('enable_alert', 1, true); } else { @@ -879,7 +880,10 @@ foreach ($simple_alerts as $alert) { $data[4] .= html_print_image( 'images/add.disabled.png', true, - ['title' => __('Add action')] + [ + 'title' => __('Add action'), + 'class' => 'invert_filter', + ] ); } else { if ((int) $alert['id_policy_alerts'] === 0) { diff --git a/pandora_console/godmode/alerts/alert_view.php b/pandora_console/godmode/alerts/alert_view.php index d6bbaa5d32..cc467b99f8 100644 --- a/pandora_console/godmode/alerts/alert_view.php +++ b/pandora_console/godmode/alerts/alert_view.php @@ -224,31 +224,31 @@ $table_days->data[0] = array_fill(0, 7, html_print_image('images/blade.png', tru $days = []; if ($template['monday']) { - $table_days->data[0][0] = html_print_image('images/tick.png', true); + $table_days->data[0][0] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } if ($template['tuesday']) { - $table_days->data[0][1] = html_print_image('images/tick.png', true); + $table_days->data[0][1] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } if ($template['wednesday']) { - $table_days->data[0][2] = html_print_image('images/tick.png', true); + $table_days->data[0][2] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } if ($template['thursday']) { - $table_days->data[0][3] = html_print_image('images/tick.png', true); + $table_days->data[0][3] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } if ($template['friday']) { - $table_days->data[0][4] = html_print_image('images/tick.png', true); + $table_days->data[0][4] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } if ($template['saturday']) { - $table_days->data[0][5] = html_print_image('images/tick.png', true); + $table_days->data[0][5] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } if ($template['sunday']) { - $table_days->data[0][6] = html_print_image('images/tick.png', true); + $table_days->data[0][6] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } $data[0] = html_print_table($table_days, true); @@ -265,7 +265,7 @@ $table_time->styleTable = 'padding: 1px; margin: 0px; text-align: center; height // $data[0] = __('Time from') . ' / ' . __('Time to'); if ($template['time_from'] == $template['time_to']) { $table_time->head[0] = '00:00:00<br>-<br>23:59:59'; - $table_time->data[0][0] = html_print_image('images/tick.png', true); + $table_time->data[0][0] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } else { $from_array = explode(':', $template['time_from']); $from = ($from_array[0] * SECONDS_1HOUR + $from_array[1] * SECONDS_1MINUTE + $from_array[2]); @@ -278,7 +278,7 @@ if ($template['time_from'] == $template['time_to']) { } $table_time->head[1] = $template['time_from'].'<br>-<br>'.$template['time_to']; - $table_time->data[0][1] = html_print_image('images/tick.png', true); + $table_time->data[0][1] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); if ($template['time_to'] != '23:59:59') { $table_time->head[2] = $template['time_to'].'<br>-<br>23:59:59'; @@ -287,15 +287,15 @@ if ($template['time_from'] == $template['time_to']) { } else { if ($template['time_to'] != '00:00:00') { $table_time->head[0] = '00:00:00<br>-<br>'.$template['time_to']; - $table_time->data[0][0] = html_print_image('images/tick.png', true); + $table_time->data[0][0] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } $table_time->head[1] = $template['time_to'].'<br>-<br>'.$template['time_from']; - $table_time->data[0][1] = html_print_image('images/blade.png', true); + $table_time->data[0][1] = html_print_image('images/blade.png', true, ['class' => 'invert_filter']); if ($template['time_from'] != '23:59:59') { $table_time->head[2] = $template['time_from'].'<br>-<br>23:59:59'; - $table_time->data[0][2] = html_print_image('images/tick.png', true); + $table_time->data[0][2] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } } @@ -354,7 +354,7 @@ $table->style[0] = 'font-weight: bold; text-align: left;'; if (count($actions) == 1 && isset($actions[0])) { $table->head[1] = __('Every time that the alert is fired'); $table->data[0][0] = $actions[0]['name']; - $table->data[0][1] = html_print_image('images/tick.png', true); + $table->data[0][1] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } else { foreach ($actions as $kaction => $action) { $table->data[$kaction][0] = $action['name']; @@ -364,7 +364,7 @@ if (count($actions) == 1 && isset($actions[0])) { foreach ($action['escalation'] as $k => $v) { if ($v > 0) { - $table->data[$kaction][$k] = html_print_image('images/tick.png', true); + $table->data[$kaction][$k] = html_print_image('images/tick.png', true, ['class' => 'invert_filter']); } else { $table->data[$kaction][$k] = html_print_image('images/blade.png', true); } diff --git a/pandora_console/include/class/CredentialStore.class.php b/pandora_console/include/class/CredentialStore.class.php index 9624f7daaa..2691664982 100644 --- a/pandora_console/include/class/CredentialStore.class.php +++ b/pandora_console/include/class/CredentialStore.class.php @@ -1075,7 +1075,7 @@ class CredentialStore extends Wizard item.options = '<a href="javascript:" onclick="show_form(\''; item.options += id; - item.options += '\')" ><?php echo html_print_image('images/operation.png', true, ['title' => __('Show')]); ?></a>'; + item.options += '\')" ><?php echo html_print_image('images/operation.png', true, ['title' => __('Show'), 'class' => 'invert_filter']); ?></a>'; item.options += '<a href="javascript:" onclick="delete_key(\''; item.options += id; diff --git a/pandora_console/include/class/ExternalTools.class.php b/pandora_console/include/class/ExternalTools.class.php index 30cd41067c..1b54a530dc 100644 --- a/pandora_console/include/class/ExternalTools.class.php +++ b/pandora_console/include/class/ExternalTools.class.php @@ -221,6 +221,8 @@ class ExternalTools extends HTML 'style' => 'vertical-align: middle;', 'width' => '16', 'title' => __('Play sound'), + 'class' => 'invert_filter', + ] ), ], @@ -249,6 +251,8 @@ class ExternalTools extends HTML 'style' => 'vertical-align: middle;', 'width' => '16', 'title' => __('Play sound'), + 'class' => 'invert_filter', + ] ), ], @@ -277,6 +281,8 @@ class ExternalTools extends HTML 'style' => 'vertical-align: middle;', 'width' => '16', 'title' => __('Play sound'), + 'class' => 'invert_filter', + ] ), ], @@ -326,6 +332,8 @@ class ExternalTools extends HTML 'title' => __('Add new custom command'), 'onclick' => 'manageCommandLines(event)', 'id' => 'img_add_button_custom_command', + 'class' => 'invert_filter', + ] ), ], @@ -420,6 +428,7 @@ class ExternalTools extends HTML 'title' => __('Delete this custom command'), 'onclick' => 'manageCommandLines(event)', 'id' => 'img_delete_button_custom_'.$index, + 'class' => 'invert_filter', ] ), ], diff --git a/pandora_console/include/class/ManageNetScanScripts.class.php b/pandora_console/include/class/ManageNetScanScripts.class.php index 71b10c48db..bdcbd26a50 100644 --- a/pandora_console/include/class/ManageNetScanScripts.class.php +++ b/pandora_console/include/class/ManageNetScanScripts.class.php @@ -743,7 +743,8 @@ class ManageNetScanScripts extends Wizard $datam[2] .= '<a href="javascript:delete_macro_form(\'table-form-recon_\');update_preview();">'; $datam[2] .= html_print_image( 'images/delete.png', - true + true, + ['class' => 'invert_filter'] ); $datam[2] .= '</a></div>'; diff --git a/pandora_console/include/class/NetworkMap.class.php b/pandora_console/include/class/NetworkMap.class.php index c953b74dec..fb17914079 100644 --- a/pandora_console/include/class/NetworkMap.class.php +++ b/pandora_console/include/class/NetworkMap.class.php @@ -2984,7 +2984,7 @@ class NetworkMap '', false, '', - 'class="sub"', + 'class="sub next"', true ); @@ -3013,7 +3013,7 @@ class NetworkMap '', false, 'add_fictional_node();', - 'class="sub"', + 'class="sub next"', true ); @@ -3065,9 +3065,9 @@ class NetworkMap $table->data['template_row']['node_target'] = ''; $table->data['template_row']['edit'] = ''; - $table->data['template_row']['edit'] .= '<span class="edit_icon_correct" style="display: none">'.html_print_image('images/dot_green.png', true).'</span><span class="edit_icon_fail" style="display: none" >'.html_print_image('images/dot_red.png', true).'</span><span class="edit_icon_progress" style="display: none">'.html_print_image('images/spinner.gif', true).'</span><span class="edit_icon"><a class="edit_icon_link" title="'.__('Update').'" href="#">'.html_print_image('images/config.png', true).'</a></span>'; + $table->data['template_row']['edit'] .= '<span class="edit_icon_correct" style="display: none">'.html_print_image('images/dot_green.png', true).'</span><span class="edit_icon_fail" style="display: none" >'.html_print_image('images/dot_red.png', true).'</span><span class="edit_icon_progress" style="display: none">'.html_print_image('images/spinner.gif', true).'</span><span class="edit_icon"><a class="edit_icon_link" title="'.__('Update').'" href="#">'.html_print_image('images/config.png', true, ['class' => 'invert_filter']).'</a></span>'; - $table->data['template_row']['edit'] .= '<a class="delete_icon" href="#">'.html_print_image('images/delete.png', true).'</a>'; + $table->data['template_row']['edit'] .= '<a class="delete_icon" href="#">'.html_print_image('images/delete.png', true, ['class' => 'invert_filter']).'</a>'; $table->colspan['no_relations']['0'] = 5; $table->cellstyle['no_relations']['0'] = 'text-align: center;'; diff --git a/pandora_console/include/class/OrderInterpreter.class.php b/pandora_console/include/class/OrderInterpreter.class.php index e5b347d58f..25ecfdae64 100644 --- a/pandora_console/include/class/OrderInterpreter.class.php +++ b/pandora_console/include/class/OrderInterpreter.class.php @@ -397,7 +397,7 @@ class OrderInterpreter extends Wizard if ($iterator <= 9 && $this->canShowItem($enterprise, $this->pages_menu[$key]['url'])) { echo '<li class="list_found" name="'.$iterator.'" id="'.$iterator.'">'; echo ' - Go to + <span class="invert_filter"> Go to </span> <img src="'.$this->pages_menu[$key]['icon'].'">'; echo ' <a href="'.$this->pages_menu[$key]['url'].'"> @@ -419,12 +419,12 @@ class OrderInterpreter extends Wizard echo $this->loadJS(); echo '</ul>'; if ($iterator > 10) { - echo '<div class="more_results"> - + '.$more_results.' '.__('results found').'</div>'; + echo '<div class="more_results"><span class="invert_filter"> + + '.$more_results.' '.__('results found').'</span></div>'; } if ($iterator === 0) { - echo __('Press enter to search'); + echo '<span class="invert_filter">'.__('Press enter to search').'</span>'; } echo '</div>'; diff --git a/pandora_console/include/functions_filemanager.php b/pandora_console/include/functions_filemanager.php index 7fbfc44bd1..4265566116 100644 --- a/pandora_console/include/functions_filemanager.php +++ b/pandora_console/include/functions_filemanager.php @@ -644,7 +644,7 @@ function filemanager_file_explorer( } if (($prev_dir_str != '') && ($father != $relative_directory)) { - $table->data[0][0] = html_print_image('images/go_previous.png', true); + $table->data[0][0] = html_print_image('images/go_previous.png', true, ['class' => 'invert_filter']); $table->data[0][1] = '<a href="'.$url.'&directory='.$prev_dir_str.'&hash2='.md5($prev_dir_str.$config['dbpass']).'">'; $table->data[0][1] .= __('Parent directory'); $table->data[0][1] .= '</a>'; @@ -660,26 +660,26 @@ function filemanager_file_explorer( switch ($fileinfo['mime']) { case MIME_DIR: - $data[0] = html_print_image('images/mimetypes/directory.png', true, ['title' => __('Directory')]); + $data[0] = html_print_image('images/mimetypes/directory.png', true, ['title' => __('Directory'), 'class' => 'invert_filter']); break; case MIME_IMAGE: - $data[0] = html_print_image('images/mimetypes/image.png', true, ['title' => __('Image')]); + $data[0] = html_print_image('images/mimetypes/image.png', true, ['title' => __('Image'), 'class' => 'invert_filter']); break; case MIME_ZIP: - $data[0] = html_print_image('images/mimetypes/zip.png', true, ['title' => __('Compressed file')]); + $data[0] = html_print_image('images/mimetypes/zip.png', true, ['title' => __('Compressed file'), 'class' => 'invert_filter']); break; case MIME_TEXT: - $data[0] = html_print_image('images/mimetypes/text.png', true, ['title' => __('Text file')]); + $data[0] = html_print_image('images/mimetypes/text.png', true, ['title' => __('Text file'), 'class' => 'invert_filter']); break; case MIME_UNKNOWN: if ($fileinfo['size'] == 0) { if ((strstr($fileinfo['name'], '.txt') !== false) || (strstr($fileinfo['name'], '.conf') !== false) || (strstr($fileinfo['name'], '.sql') !== false) || (strstr($fileinfo['name'], '.pl') !== false)) { $fileinfo['mime'] = MIME_TEXT; - $data[0] = html_print_image('images/mimetypes/text.png', true, ['title' => __('Text file')]); + $data[0] = html_print_image('images/mimetypes/text.png', true, ['title' => __('Text file'), 'class' => 'invert_filter']); } else { // unknow $data[0] = ''; @@ -691,7 +691,7 @@ function filemanager_file_explorer( break; default: - $data[0] = html_print_image('images/mimetypes/unknown.png', true, ['title' => __('Unknown')]); + $data[0] = html_print_image('images/mimetypes/unknown.png', true, ['title' => __('Unknown'), 'class' => 'invert_filter']); break; } @@ -759,7 +759,7 @@ function filemanager_file_explorer( && ($typefile != 'iso') && ($typefile != 'docx') && ($typefile != 'doc') && ($fileinfo['mime'] != MIME_DIR) ) { $hash = md5($fileinfo['realpath'].$config['dbpass']); - $data[4] .= "<a style='vertical-align: top;' href='$url&edit_file=1&hash=".$hash.'&location_file='.$fileinfo['realpath']."' style='float: left;'>".html_print_image('images/edit.png', true, ['style' => 'margin-top: 2px;', 'title' => __('Edit file')]).'</a>'; + $data[4] .= "<a style='vertical-align: top;' href='$url&edit_file=1&hash=".$hash.'&location_file='.$fileinfo['realpath']."' style='float: left;'>".html_print_image('images/edit.png', true, ['style' => 'margin-top: 2px;', 'title' => __('Edit file'), 'class' => 'invert_filter']).'</a>'; } } } @@ -768,7 +768,7 @@ function filemanager_file_explorer( $filename = base64_encode($fileinfo['name']); $hash = md5($filename.$config['dbpass']); $data[4] .= '<a href="include/get_file.php?file='.urlencode($filename).'&hash='.$hash.'" style="vertical-align: 25%;">'; - $data[4] .= html_print_image('images/file.png', true); + $data[4] .= html_print_image('images/file.png', true, ['class' => 'invert_filter']); $data[4] .= '</a>'; } @@ -870,7 +870,7 @@ function filemanager_file_explorer( echo '</div>'; } else { echo "<div style='text-align: right; width: ".$table->width."; color:#AC4444; margin-bottom:10px;'>"; - echo "<image src='images/info.png' />".__('The directory is read-only'); + echo "<image class='invert_filter' src='images/info.png' />".__('The directory is read-only'); echo '</div>'; } } diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 196ac928f9..c16de207c2 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -10748,6 +10748,7 @@ function reporting_get_stats_users($data) } else { $users = users_get_user_users($config['id_user'], 'AR', false); } + $tdata[1] = count($users); $tdata[1] = '<a class="big_data" href="'.$urls['defined_users'].'">'.$tdata[1].'</a>'; diff --git a/pandora_console/include/help/en/help_eventview.php b/pandora_console/include/help/en/help_eventview.php index a867d4fb87..6f96b2f89d 100644 --- a/pandora_console/include/help/en/help_eventview.php +++ b/pandora_console/include/help/en/help_eventview.php @@ -10,7 +10,7 @@ <div class="pdd_l_30px w150px float-left line_17px"> <h3>Validate</h3> - <?php html_print_image('images/tick.png', false, ['title' => 'Validated event', 'alt' => 'Validated event', 'width' => '10', 'height' => '10']); ?> - Validated event<br> + <?php html_print_image('images/tick.png', false, ['class' => 'invert_filter', 'title' => 'Validated event', 'alt' => 'Validated event', 'width' => '10', 'height' => '10']); ?> - Validated event<br> <div class="w10px height_10px inline"></div> - Event not validated </div> diff --git a/pandora_console/include/javascript/tree/TreeController.js b/pandora_console/include/javascript/tree/TreeController.js index 0fd6f07fb1..8a280d3118 100644 --- a/pandora_console/include/javascript/tree/TreeController.js +++ b/pandora_console/include/javascript/tree/TreeController.js @@ -644,7 +644,7 @@ var TreeController = { $content.append($statusImage); } var image_tooltip = - '<span><img src="' + + '<span><img class="invert_filter" src="' + (controller.baseURL.length > 0 ? controller.baseURL : "") + 'images/help.png" class="img_help" title="' + element.name + @@ -653,7 +653,7 @@ var TreeController = { '"/></span> '; var $serviceDetailImage = $( - '<img src="' + + '<img class="invert_filter" src="' + (controller.baseURL.length > 0 ? controller.baseURL : "") + 'images/tree_service_map.png" /> ' ); diff --git a/pandora_console/include/languages/ru.mo b/pandora_console/include/languages/ru.mo index 9b5a8b9ebd..d029d60c82 100644 Binary files a/pandora_console/include/languages/ru.mo and b/pandora_console/include/languages/ru.mo differ diff --git a/pandora_console/include/languages/ru.po b/pandora_console/include/languages/ru.po index b45664ad09..99680822d4 100644 --- a/pandora_console/include/languages/ru.po +++ b/pandora_console/include/languages/ru.po @@ -7,7823 +7,7084 @@ msgid "" msgstr "" "Project-Id-Version: pandora-fms\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2016-02-01 11:28+0100\n" -"PO-Revision-Date: 2015-06-29 18:52+0000\n" -"Last-Translator: MIguel Lopez ARTICA <miguel.lopez@artica.es>\n" +"POT-Creation-Date: 2021-04-20 11:39+0200\n" +"PO-Revision-Date: 2021-05-31 11:53+0000\n" +"Last-Translator: Svetlana Titovskaia <Unknown>\n" "Language-Team: Russian <ru@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-03-03 08:34+0000\n" -"X-Generator: Launchpad (build 17925)\n" +"X-Launchpad-Export-Date: 2021-06-01 08:11+0000\n" +"X-Generator: Launchpad (build 925b661396f90467a0d31fdfb13d4990b7239925)\n" -#: ../../enterprise/mobile/include/enterprise.class.php:63 -#: ../../enterprise/dashboard/main_dashboard.php:381 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:157 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:516 -#: ../../enterprise/meta/include/functions_wizard_meta.php:148 -#: ../../enterprise/meta/include/functions_wizard_meta.php:359 -#: ../../enterprise/meta/include/functions_wizard_meta.php:460 -#: ../../enterprise/meta/include/functions_wizard_meta.php:991 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1294 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1411 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1511 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1625 -#: ../../enterprise/meta/advanced/servers.build_table.php:59 -#: ../../enterprise/include/functions_reporting.php:1896 -#: ../../enterprise/include/functions_reporting.php:2010 -#: ../../enterprise/include/functions_reporting.php:3185 -#: ../../enterprise/include/functions_services.php:1413 -#: ../../enterprise/include/functions_reporting_pdf.php:1321 -#: ../../enterprise/include/functions_reporting_pdf.php:1457 -#: ../../enterprise/include/functions_reporting_pdf.php:2338 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1078 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1562 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1702 -#: ../../enterprise/operation/services/services.service.php:120 -#: ../../enterprise/operation/services/services.list.php:303 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:298 -#: ../../enterprise/operation/agentes/policy_view.php:131 -#: ../../enterprise/operation/agentes/policy_view.php:305 -#: ../../enterprise/operation/agentes/collection_view.php:63 -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:259 -#: ../../enterprise/godmode/services/services.service.php:233 -#: ../../enterprise/godmode/alerts/alert_events_list.php:422 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:131 -#: ../../enterprise/godmode/alerts/alert_events.php:488 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:407 -#: ../../enterprise/godmode/agentes/inventory_manager.php:233 -#: ../../enterprise/godmode/agentes/collection_manager.php:105 -#: ../../enterprise/godmode/agentes/collection_manager.php:163 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:67 -#: ../../enterprise/godmode/setup/edit_skin.php:207 -#: ../../enterprise/godmode/setup/setup_skins.php:82 -#: ../../enterprise/godmode/modules/local_components.php:469 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:154 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:78 -#: ../../enterprise/godmode/modules/configure_local_component.php:141 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:111 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:112 -#: ../../enterprise/godmode/reporting/mysql_builder.php:41 -#: ../../enterprise/godmode/reporting/mysql_builder.php:138 -#: ../../enterprise/godmode/reporting/mysql_builder.php:139 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:153 -#: ../../enterprise/godmode/policies/policies.php:253 -#: ../../enterprise/godmode/policies/configure_policy.php:65 -#: ../../enterprise/godmode/policies/policy_collections.php:121 -#: ../../enterprise/godmode/policies/policy_collections.php:192 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:242 -#: ../../enterprise/godmode/policies/policy_agents.php:348 -#: ../../enterprise/godmode/policies/policy_modules.php:1019 -#: ../../mobile/operation/networkmaps.php:195 -#: ../../mobile/operation/visualmaps.php:139 -#: ../../extensions/files_repo/files_repo_list.php:58 -#: ../../include/functions_filemanager.php:578 -#: ../../include/functions_treeview.php:79 -#: ../../include/functions_reporting.php:4731 -#: ../../include/functions_reporting_html.php:482 -#: ../../include/functions_reporting_html.php:1095 -#: ../../include/functions_reporting_html.php:1514 -#: ../../include/functions_reporting_html.php:2978 -#: ../../include/functions_events.php:2013 -#: ../../include/functions_events.php:2063 ../../operation/extensions.php:47 -#: ../../operation/gis_maps/gis_map.php:89 -#: ../../operation/gis_maps/index.php:35 -#: ../../operation/agentes/networkmap_list.php:134 -#: ../../operation/agentes/networkmap.php:437 -#: ../../operation/search_maps.php:31 -#: ../../operation/netflow/nf_live_view.php:288 -#: ../../operation/search_helps.php:36 ../../operation/search_users.php:41 -#: ../../godmode/events/event_filter.php:104 -#: ../../godmode/events/event_responses.editor.php:76 -#: ../../godmode/events/event_responses.list.php:54 -#: ../../godmode/users/user_list.php:269 ../../godmode/users/user_list.php:403 -#: ../../godmode/category/edit_category.php:155 -#: ../../godmode/alerts/alert_commands.php:323 -#: ../../godmode/alerts/configure_alert_command.php:146 -#: ../../godmode/alerts/configure_alert_template.php:707 -#: ../../godmode/alerts/alert_templates.php:298 -#: ../../godmode/alerts/configure_alert_action.php:112 -#: ../../godmode/alerts/alert_actions.php:340 -#: ../../godmode/agentes/module_manager_editor_common.php:130 -#: ../../godmode/agentes/module_manager_editor_common.php:578 -#: ../../godmode/agentes/planned_downtime.editor.php:472 -#: ../../godmode/agentes/planned_downtime.editor.php:722 -#: ../../godmode/agentes/module_manager.php:504 -#: ../../godmode/agentes/configure_field.php:48 -#: ../../godmode/servers/modificar_server.php:46 -#: ../../godmode/servers/plugin.php:243 ../../godmode/servers/plugin.php:685 -#: ../../godmode/servers/servers.build_table.php:63 -#: ../../godmode/servers/recon_script.php:95 -#: ../../godmode/servers/recon_script.php:348 -#: ../../godmode/servers/manage_recontask.php:287 -#: ../../godmode/netflow/nf_edit_form.php:189 -#: ../../godmode/netflow/nf_edit.php:118 -#: ../../godmode/groups/configure_modu_group.php:65 -#: ../../godmode/groups/group_list.php:333 -#: ../../godmode/groups/configure_group.php:114 -#: ../../godmode/groups/modu_group_list.php:182 -#: ../../godmode/setup/os.list.php:34 ../../godmode/setup/os.builder.php:35 -#: ../../godmode/modules/manage_nc_groups.php:193 -#: ../../godmode/modules/manage_network_templates.php:181 -#: ../../godmode/modules/manage_nc_groups_form.php:66 -#: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/modules/module_list.php:59 -#: ../../godmode/modules/manage_network_templates_form.php:144 -#: ../../godmode/reporting/reporting_builder.list_items.php:302 -#: ../../godmode/reporting/graph_builder.main.php:94 -#: ../../godmode/reporting/reporting_builder.item_editor.php:614 -#: ../../godmode/reporting/reporting_builder.main.php:65 -#: ../../godmode/reporting/reporting_builder.main.php:67 -#: ../../godmode/tag/edit_tag.php:164 ../../godmode/tag/tag.php:156 -msgid "Name" -msgstr "Имя" - -#: ../../enterprise/mobile/include/enterprise.class.php:64 -#: ../../enterprise/meta/include/functions_wizard_meta.php:158 -#: ../../enterprise/meta/include/functions_wizard_meta.php:369 -#: ../../enterprise/meta/include/functions_wizard_meta.php:465 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1001 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1415 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1515 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1633 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:102 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1113 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1393 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1658 -#: ../../enterprise/extensions/cron/functions.php:37 -#: ../../enterprise/extensions/backup/main.php:65 -#: ../../enterprise/extensions/backup/main.php:160 -#: ../../enterprise/extensions/ipam/ipam_network.php:143 -#: ../../enterprise/extensions/ipam/ipam_editor.php:72 -#: ../../enterprise/extensions/ipam/ipam_list.php:61 -#: ../../enterprise/include/functions_update_manager.php:169 -#: ../../enterprise/include/functions_reporting.php:1897 -#: ../../enterprise/include/functions_reporting.php:2011 -#: ../../enterprise/include/functions_reporting.php:3186 -#: ../../enterprise/include/functions_reporting_csv.php:119 -#: ../../enterprise/include/functions_reporting_csv.php:182 -#: ../../enterprise/include/functions_reporting_csv.php:208 -#: ../../enterprise/include/functions_reporting_csv.php:231 -#: ../../enterprise/include/functions_reporting_csv.php:253 -#: ../../enterprise/include/functions_reporting_csv.php:274 -#: ../../enterprise/include/functions_reporting_csv.php:310 -#: ../../enterprise/include/functions_reporting_csv.php:337 -#: ../../enterprise/include/functions_reporting_csv.php:338 -#: ../../enterprise/include/functions_reporting_csv.php:360 -#: ../../enterprise/include/functions_reporting_csv.php:361 -#: ../../enterprise/include/functions_reporting_csv.php:383 -#: ../../enterprise/include/functions_reporting_csv.php:384 -#: ../../enterprise/include/functions_reporting_csv.php:406 -#: ../../enterprise/include/functions_reporting_csv.php:407 -#: ../../enterprise/include/functions_reporting_csv.php:427 -#: ../../enterprise/include/functions_reporting_csv.php:457 -#: ../../enterprise/include/functions_reporting_csv.php:458 -#: ../../enterprise/include/functions_reporting_csv.php:480 -#: ../../enterprise/include/functions_reporting_csv.php:481 -#: ../../enterprise/include/functions_reporting_csv.php:503 -#: ../../enterprise/include/functions_reporting_csv.php:504 -#: ../../enterprise/include/functions_reporting_csv.php:526 -#: ../../enterprise/include/functions_reporting_csv.php:527 -#: ../../enterprise/include/functions_reporting_csv.php:549 -#: ../../enterprise/include/functions_reporting_csv.php:550 -#: ../../enterprise/include/functions_reporting_csv.php:571 -#: ../../enterprise/include/functions_reporting_csv.php:593 -#: ../../enterprise/include/functions_reporting_csv.php:636 -#: ../../enterprise/include/functions_services.php:1414 -#: ../../enterprise/include/functions_reporting_pdf.php:2093 -#: ../../enterprise/include/functions_reporting_pdf.php:2236 -#: ../../enterprise/include/functions_reporting_pdf.php:2284 -#: ../../enterprise/include/functions_reporting_pdf.php:2339 -#: ../../enterprise/include/functions_netflow_pdf.php:166 -#: ../../enterprise/operation/services/services.service.php:121 -#: ../../enterprise/operation/services/services.list.php:308 -#: ../../enterprise/operation/agentes/policy_view.php:49 -#: ../../enterprise/operation/agentes/collection_view.php:65 -#: ../../enterprise/operation/agentes/ver_agente.php:58 -#: ../../enterprise/godmode/services/services.elements.php:365 -#: ../../enterprise/godmode/services/services.service.php:236 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:78 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:234 -#: ../../enterprise/godmode/alerts/alert_events.php:501 -#: ../../enterprise/godmode/agentes/collections.php:184 -#: ../../enterprise/godmode/agentes/inventory_manager.php:234 -#: ../../enterprise/godmode/agentes/collection_manager.php:107 -#: ../../enterprise/godmode/agentes/collection_manager.php:165 -#: ../../enterprise/godmode/setup/edit_skin.php:230 -#: ../../enterprise/godmode/setup/setup_skins.php:119 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:241 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:155 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:80 -#: ../../enterprise/godmode/modules/configure_local_component.php:284 -#: ../../enterprise/godmode/modules/configure_local_component.php:422 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:122 -#: ../../enterprise/godmode/reporting/graph_template_list.php:125 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1163 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:163 -#: ../../enterprise/godmode/policies/configure_policy.php:75 -#: ../../enterprise/godmode/policies/policy_collections.php:123 -#: ../../enterprise/godmode/policies/policy_collections.php:194 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:243 -#: ../../mobile/operation/agent.php:141 -#: ../../mobile/operation/tactical.php:265 -#: ../../extensions/files_repo/files_repo_form.php:72 -#: ../../extensions/files_repo/files_repo_list.php:59 -#: ../../include/functions_treeview.php:129 -#: ../../include/functions_treeview.php:428 -#: ../../include/functions_snmp_browser.php:415 -#: ../../include/functions_reporting_html.php:1486 -#: ../../include/functions_reporting_html.php:1519 -#: ../../include/functions_reporting_html.php:2266 -#: ../../include/functions_reporting_html.php:2979 -#: ../../include/functions_events.php:1807 ../../include/ajax/module.php:709 -#: ../../operation/integria_incidents/incident.files.php:25 -#: ../../operation/integria_incidents/incident.files.php:44 -#: ../../operation/integria_incidents/incident.incident.php:105 -#: ../../operation/integria_incidents/incident.workunits.php:31 -#: ../../operation/integria_incidents/incident.tracking.php:21 -#: ../../operation/events/events.php:93 ../../operation/gis_maps/ajax.php:302 -#: ../../operation/search_reports.php:39 -#: ../../operation/agentes/custom_fields.php:64 -#: ../../operation/agentes/gis_view.php:183 -#: ../../operation/agentes/estado_agente.php:451 -#: ../../operation/agentes/estado_generalagente.php:172 -#: ../../operation/search_graphs.php:34 -#: ../../operation/incidents/incident_detail.php:454 -#: ../../operation/incidents/incident_detail.php:506 -#: ../../operation/search_users.php:53 -#: ../../operation/reporting/graph_viewer.php:289 -#: ../../operation/reporting/custom_reporting.php:39 -#: ../../godmode/events/event_responses.editor.php:87 -#: ../../godmode/events/event_responses.list.php:55 -#: ../../godmode/users/user_list.php:277 -#: ../../godmode/snmpconsole/snmp_alert.php:526 -#: ../../godmode/snmpconsole/snmp_alert.php:1057 -#: ../../godmode/snmpconsole/snmp_filters.php:94 -#: ../../godmode/snmpconsole/snmp_filters.php:131 -#: ../../godmode/alerts/alert_commands.php:325 -#: ../../godmode/alerts/configure_alert_special_days.php:87 -#: ../../godmode/alerts/configure_alert_command.php:155 -#: ../../godmode/alerts/alert_special_days.php:163 -#: ../../godmode/alerts/configure_alert_template.php:723 -#: ../../godmode/alerts/alert_templates.php:47 -#: ../../godmode/agentes/agent_manager.php:278 -#: ../../godmode/agentes/modificar_agente.php:434 -#: ../../godmode/agentes/module_manager_editor_common.php:309 -#: ../../godmode/agentes/planned_downtime.editor.php:476 -#: ../../godmode/agentes/planned_downtime.list.php:390 -#: ../../godmode/agentes/module_manager.php:522 -#: ../../godmode/agentes/agent_template.php:225 -#: ../../godmode/servers/modificar_server.php:48 -#: ../../godmode/servers/plugin.php:262 ../../godmode/servers/plugin.php:394 -#: ../../godmode/servers/recon_script.php:107 -#: ../../godmode/servers/recon_script.php:154 -#: ../../godmode/servers/recon_script.php:349 -#: ../../godmode/netflow/nf_item_list.php:149 -#: ../../godmode/groups/group_list.php:337 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/setup/os.list.php:35 ../../godmode/setup/os.builder.php:36 -#: ../../godmode/massive/massive_edit_plugins.php:451 -#: ../../godmode/massive/massive_edit_agents.php:303 -#: ../../godmode/massive/massive_edit_modules.php:436 -#: ../../godmode/modules/manage_network_components.php:542 -#: ../../godmode/modules/manage_network_templates.php:182 -#: ../../godmode/modules/module_list.php:60 -#: ../../godmode/modules/manage_network_components_form.php:251 -#: ../../godmode/modules/manage_network_templates_form.php:148 -#: ../../godmode/modules/manage_network_templates_form.php:199 -#: ../../godmode/reporting/reporting_builder.list_items.php:302 -#: ../../godmode/reporting/graph_builder.main.php:111 -#: ../../godmode/reporting/reporting_builder.item_editor.php:643 -#: ../../godmode/reporting/graphs.php:143 -#: ../../godmode/reporting/reporting_builder.php:536 -#: ../../godmode/reporting/reporting_builder.main.php:121 -#: ../../godmode/tag/edit_tag.php:172 ../../godmode/tag/tag.php:156 -#: ../../godmode/tag/tag.php:200 -msgid "Description" -msgstr "Описание" - -#: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../enterprise/meta/general/main_header.php:132 -#: ../../enterprise/meta/general/main_header.php:147 -#: ../../include/functions_groups.php:120 -#: ../../operation/search_results.php:113 -msgid "Reports" -msgstr "Отчёты" - -#: ../../enterprise/dashboard/main_dashboard.php:69 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1520 -#: ../../enterprise/meta/advanced/metasetup.visual.php:215 -#: ../../enterprise/meta/advanced/metasetup.visual.php:220 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:99 -#: ../../enterprise/operation/agentes/policy_view.php:253 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:117 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:88 -#: ../../enterprise/godmode/policies/policy_alerts.php:304 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:199 -#: ../../extensions/agents_alerts.php:311 ../../include/functions_ui.php:896 -#: ../../operation/events/events_list.php:463 -#: ../../operation/users/user_edit.php:259 -#: ../../operation/users/user_edit.php:261 -#: ../../operation/users/user_edit.php:269 -#: ../../operation/users/user_edit.php:291 -#: ../../operation/snmpconsole/snmp_view.php:385 -#: ../../operation/gis_maps/gis_map.php:93 -#: ../../godmode/events/event_edit_filter.php:265 -#: ../../godmode/users/configure_user.php:448 -#: ../../godmode/gis_maps/index.php:74 -#: ../../godmode/alerts/alert_list.list.php:494 -#: ../../godmode/alerts/alert_view.php:43 -#: ../../godmode/agentes/module_manager_editor_common.php:347 -#: ../../godmode/setup/gis_step_2.php:367 -#: ../../godmode/setup/gis_step_2.php:451 -#: ../../godmode/setup/setup_visuals.php:141 -#: ../../godmode/setup/setup_visuals.php:454 -#: ../../godmode/setup/setup_visuals.php:466 -#: ../../godmode/massive/massive_edit_agents.php:385 -msgid "Default" -msgstr "По умолчанию" - -#: ../../enterprise/dashboard/main_dashboard.php:168 -#: ../../extensions/agents_modules.php:100 -#: ../../extensions/agents_alerts.php:90 ../../extensions/matrix_events.php:31 -#: ../../operation/gis_maps/render_view.php:99 -#: ../../operation/visual_console/render_view.php:133 -#: ../../operation/reporting/graph_viewer.php:147 -#: ../../operation/reporting/reporting_viewer.php:103 +#: ../../views/dashboard/header.php:45 +#: ../../enterprise/meta/screens/screens.visualmap.php:271 +#: ../../enterprise/operation/agentes/manage_transmap.php:124 +#: ../../extensions/disabled/matrix_events.php:32 +#: ../../extensions/agents_modules.php:363 +#: ../../extensions/agents_modules.php:370 +#: ../../extensions/agents_modules.php:373 +#: ../../include/class/AgentsAlerts.class.php:810 +#: ../../operation/visual_console/pure_ajax.php:198 +#: ../../operation/visual_console/view.php:207 +#: ../../operation/visual_console/legacy_view.php:201 +#: ../../operation/gis_maps/render_view.php:123 +#: ../../operation/reporting/reporting_viewer.php:144 +#: ../../operation/reporting/graph_viewer.php:213 msgid "Full screen mode" msgstr "Полноэкранный режим" -#: ../../enterprise/dashboard/main_dashboard.php:173 -#: ../../extensions/agents_modules.php:105 -#: ../../extensions/agents_alerts.php:95 ../../operation/events/events.php:429 -#: ../../operation/gis_maps/render_view.php:103 -#: ../../operation/visual_console/render_view.php:139 -#: ../../operation/reporting/graph_viewer.php:152 -#: ../../operation/reporting/reporting_viewer.php:108 +#: ../../views/dashboard/header.php:59 ../../extensions/agents_modules.php:476 +#: ../../include/class/AgentsAlerts.class.php:815 +#: ../../operation/visual_console/view.php:404 +#: ../../operation/visual_console/legacy_view.php:249 +#: ../../operation/gis_maps/render_view.php:125 +#: ../../operation/reporting/reporting_viewer.php:153 +#: ../../operation/reporting/graph_viewer.php:222 +#: ../../operation/events/events.php:724 msgid "Back to normal mode" msgstr "Вернуться в обычный режим" -#: ../../enterprise/dashboard/main_dashboard.php:178 -#: ../../enterprise/dashboard/main_dashboard.php:305 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:243 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:254 -#: ../../extensions/net_tools.php:322 -#: ../../godmode/update_manager/update_manager.php:28 -#: ../../godmode/reporting/reporting_builder.list_items.php:304 +#: ../../views/dashboard/header.php:69 +msgid "Update Dashboard" +msgstr "Обновить приборную панель" + +#: ../../views/dashboard/header.php:70 ../../views/dashboard/header.php:104 +#: ../../views/dashboard/list.php:224 ../../enterprise/load_enterprise.php:613 +#: ../../enterprise/load_enterprise.php:1109 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:439 +#: ../../enterprise/godmode/services/services.elements.php:821 +#: ../../enterprise/godmode/services/services.elements.php:832 +#: ../../enterprise/include/class/Omnishell.class.php:1499 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3078 +#: ../../enterprise/include/functions_update_manager.php:245 +#: ../../enterprise/operation/agentes/transactional_map.php:312 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:47 +#: ../../enterprise/operation/services/services.service.php:232 +#: ../../enterprise/operation/services/services.service_map.php:170 +#: ../../enterprise/operation/services/services.list.php:247 +#: ../../enterprise/operation/services/services.list.php:550 +#: ../../enterprise/operation/services/services.table_services.php:199 +#: ../../godmode/update_manager/update_manager.offline.php:115 +#: ../../godmode/massive/massive_edit_agents.php:719 +#: ../../include/functions_config.php:1211 +#: ../../include/functions_config.php:3039 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 +#: ../../include/functions_update_manager.php:1448 +#: ../../operation/gis_maps/render_view.php:153 +msgid "Ok" +msgstr "Ок" + +#: ../../views/dashboard/header.php:71 ../../views/dashboard/header.php:105 +#: ../../views/dashboard/list.php:225 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1139 +#: ../../enterprise/meta/event/custom_events.php:250 +#: ../../enterprise/godmode/services/services.service.php:942 +#: ../../enterprise/godmode/services/services.elements.php:822 +#: ../../enterprise/godmode/services/services.elements.php:833 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:267 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:241 +#: ../../enterprise/include/functions_HA_cluster.php:492 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1567 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1669 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1721 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1753 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1788 +#: ../../enterprise/include/class/AgentRepository.class.php:784 +#: ../../enterprise/include/class/AgentRepository.class.php:882 +#: ../../enterprise/include/class/LogSource.class.php:818 +#: ../../enterprise/include/class/LogSource.class.php:871 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3079 +#: ../../enterprise/include/functions_update_manager.php:244 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:468 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:357 +#: ../../godmode/update_manager/update_manager.offline.php:114 +#: ../../godmode/agentes/status_monitor_custom_fields.php:242 +#: ../../godmode/massive/massive_operations.php:383 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/events/custom_events.php:203 +#: ../../include/functions_visual_map_editor.php:880 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/class/ConfigPEN.class.php:669 +#: ../../include/class/ConfigPEN.class.php:693 +#: ../../include/class/TreeGroupEdition.class.php:165 +#: ../../include/class/NetworkMap.class.php:2825 +#: ../../include/class/CredentialStore.class.php:1222 +#: ../../include/class/CredentialStore.class.php:1274 +#: ../../include/class/ModuleTemplates.class.php:1379 +#: ../../include/class/WelcomeWindow.class.php:174 +#: ../../include/class/AgentWizard.class.php:5823 +#: ../../include/functions_update_manager.php:241 +#: ../../include/functions_update_manager.php:517 +#: ../../include/functions_update_manager.php:811 +#: ../../include/functions_update_manager.php:1447 +#: ../../operation/agentes/pandora_networkmap.editor.php:594 +#: ../../operation/snmpconsole/snmp_browser.php:160 +#: ../../operation/snmpconsole/snmp_browser.php:537 +#: ../../operation/snmpconsole/snmp_browser.php:617 +#: ../../operation/snmpconsole/snmp_browser.php:632 +#: ../../general/header.php:815 +msgid "Cancel" +msgstr "Отменить" + +#: ../../views/dashboard/header.php:82 +#: ../../enterprise/views/cluster/list.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266 +#: ../../enterprise/extensions/vmware/vmware_view.php:1335 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 +#: ../../enterprise/include/class/DeploymentCenter.class.php:764 +#: ../../enterprise/include/class/AgentRepository.class.php:618 +#: ../../enterprise/include/class/Omnishell.class.php:402 +#: ../../enterprise/include/class/LogSource.class.php:602 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2978 +#: ../../godmode/update_manager/update_manager.php:35 +#: ../../godmode/reporting/reporting_builder.list_items.php:427 +#: ../../include/class/ConfigPEN.class.php:601 +#: ../../include/class/CredentialStore.class.php:787 +#: ../../include/class/ExternalTools.class.php:365 +#: ../../include/functions_events.php:299 msgid "Options" msgstr "Параметры" -#: ../../enterprise/dashboard/main_dashboard.php:194 +#: ../../views/dashboard/header.php:94 +msgid "Back to dashboards list" +msgstr "Обратно к списку приборной панели" + +#: ../../views/dashboard/header.php:103 +msgid "Slides" +msgstr "Слайды" + +#: ../../views/dashboard/header.php:117 msgid "Slides mode" msgstr "Режим слайдов" -#: ../../enterprise/dashboard/main_dashboard.php:199 -msgid "Previous Dashboard" -msgstr "Предыдущая панель" +#: ../../views/dashboard/header.php:138 +msgid "Show link to public dashboard" +msgstr "Показать публичную ссылку к приборной панели" -#: ../../enterprise/dashboard/main_dashboard.php:204 -msgid "Next Dashboard" -msgstr "Следующая панель" - -#: ../../enterprise/dashboard/main_dashboard.php:209 -msgid "Play" -msgstr "Воспроизведение" - -#: ../../enterprise/dashboard/main_dashboard.php:214 -msgid "Pause" -msgstr "Пауза" - -#: ../../enterprise/dashboard/main_dashboard.php:218 -msgid "Next slide in" -msgstr "Следующий слайд в" - -#: ../../enterprise/dashboard/main_dashboard.php:229 -#: ../../enterprise/dashboard/widgets/top_n.php:289 -#: ../../enterprise/meta/advanced/policymanager.queue.php:236 -#: ../../enterprise/extensions/ipam/ipam_network.php:159 -#: ../../enterprise/include/functions_networkmap_enterprise.php:615 -#: ../../extensions/agents_modules.php:86 -#: ../../extensions/agents_alerts.php:78 ../../include/ajax/module.php:760 -#: ../../operation/agentes/networkmap.php:584 -#: ../../operation/servers/recon_view.php:49 -#: ../../operation/visual_console/render_view.php:178 -#: ../../operation/visual_console/public_console.php:100 -#: ../../operation/reporting/graph_viewer.php:227 -#: ../../general/login_page.php:46 ../../general/login_page.php:156 +#: ../../views/dashboard/header.php:159 +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 +#: ../../enterprise/godmode/policies/policy_queue.php:587 +#: ../../enterprise/godmode/servers/HA_cluster.php:390 +#: ../../enterprise/include/class/Omnishell.class.php:544 +#: ../../enterprise/include/class/Omnishell.class.php:1329 +#: ../../enterprise/include/functions_ipam.php:1259 +#: ../../extensions/agents_modules.php:488 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:185 +#: ../../include/ajax/module.php:1054 +#: ../../include/class/NetworkMap.class.php:2819 +#: ../../include/class/AgentsAlerts.class.php:853 +#: ../../operation/visual_console/view.php:417 +#: ../../operation/visual_console/legacy_public_view.php:131 +#: ../../operation/visual_console/legacy_view.php:263 +#: ../../operation/visual_console/public_view.php:118 +#: ../../operation/gis_maps/render_view.php:147 +#: ../../operation/reporting/graph_viewer.php:344 +#: ../../operation/events/events.php:736 +#: ../../operation/servers/recon_view.php:50 ../../general/login_page.php:74 +#: ../../general/login_page.php:316 msgid "Refresh" msgstr "Обновить" -#: ../../enterprise/dashboard/main_dashboard.php:253 -msgid "Save the actual layout design" -msgstr "" +#: ../../views/dashboard/header.php:212 +msgid "Add Cell" +msgstr "Добавить ячейку" -#: ../../enterprise/dashboard/main_dashboard.php:344 -msgid "Number Cells" -msgstr "" +#: ../../views/dashboard/header.php:279 ../../views/dashboard/list.php:42 +#: ../../enterprise/meta/general/main_header.php:222 +msgid "Dashboards" +msgstr "Приборные Панели" -#: ../../enterprise/dashboard/main_dashboard.php:349 -msgid "Update cells" -msgstr "" +#: ../../views/dashboard/header.php:279 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../enterprise/include/functions_backup.php:539 +#: ../../enterprise/include/functions_backup.php:540 +#: ../../godmode/agentes/planned_downtime.editor.php:59 +#: ../../godmode/alerts/alert_list.php:451 +#: ../../godmode/category/category.php:71 ../../include/functions_html.php:1673 +#: ../../include/functions_html.php:1674 ../../include/functions_html.php:1778 +#: ../../include/functions_html.php:1779 ../../include/functions_html.php:1958 +#: ../../include/functions_html.php:1959 +#: ../../operation/snmpconsole/snmp_statistics.php:66 +#: ../../operation/snmpconsole/snmp_view.php:107 +#: ../../operation/events/events.php:892 +msgid "List" +msgstr "Список" -#: ../../enterprise/dashboard/main_dashboard.php:351 -msgid "Name of dashboard" -msgstr "" +#: ../../views/dashboard/list.php:53 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272 +#: ../../enterprise/meta/advanced/metasetup.relations.php:86 +#: ../../enterprise/meta/advanced/links.php:81 +#: ../../enterprise/godmode/modules/local_components.php:362 +#: ../../enterprise/godmode/policies/policies.php:184 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:68 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:118 +#: ../../enterprise/godmode/alerts/alert_events_list.php:182 +#: ../../enterprise/godmode/alerts/alert_events_list.php:234 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:269 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:135 +#: ../../enterprise/godmode/reporting/graph_template_list.php:122 +#: ../../enterprise/godmode/reporting/graph_template_list.php:149 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:367 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:385 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:97 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165 +#: ../../enterprise/include/class/DatabaseHA.class.php:1050 +#: ../../enterprise/operation/agentes/transactional_map.php:156 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:65 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:146 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:220 +#: ../../enterprise/tools/ipam/ipam_action.php:90 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:113 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:185 +#: ../../extensions/files_repo.php:181 +#: ../../godmode/modules/manage_nc_groups.php:142 +#: ../../godmode/modules/manage_network_components.php:524 +#: ../../godmode/users/profile_list.php:100 +#: ../../godmode/users/user_list.php:255 ../../godmode/users/user_list.php:302 +#: ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/configure_user.php:155 +#: ../../godmode/agentes/planned_downtime.list.php:112 +#: ../../godmode/netflow/nf_item_list.php:129 +#: ../../godmode/netflow/nf_item_list.php:157 +#: ../../godmode/netflow/nf_edit.php:104 ../../godmode/netflow/nf_edit.php:137 +#: ../../godmode/snmpconsole/snmp_alert.php:735 +#: ../../godmode/snmpconsole/snmp_filters.php:159 +#: ../../godmode/massive/massive_delete_action_alerts.php:158 +#: ../../godmode/massive/massive_delete_modules.php:162 +#: ../../godmode/massive/massive_delete_alerts.php:201 +#: ../../godmode/alerts/alert_actions.php:211 +#: ../../godmode/alerts/alert_commands.php:586 +#: ../../godmode/alerts/alert_templates.php:257 +#: ../../godmode/alerts/alert_special_days.php:267 +#: ../../godmode/alerts/alert_list.php:232 +#: ../../godmode/alerts/alert_list.php:320 ../../godmode/setup/news.php:120 +#: ../../godmode/setup/gis.php:58 ../../godmode/setup/links.php:73 +#: ../../godmode/reporting/map_builder.php:181 +#: ../../godmode/reporting/graphs.php:117 +#: ../../godmode/reporting/graphs.php:127 +#: ../../godmode/reporting/graphs.php:170 +#: ../../godmode/reporting/reporting_builder.php:655 +#: ../../godmode/events/event_filter.php:69 +#: ../../godmode/events/event_filter.php:96 +#: ../../include/class/ConfigPEN.class.php:486 +#: ../../operation/messages/message_list.php:98 +#: ../../operation/messages/message_list.php:120 +#: ../../operation/snmpconsole/snmp_view.php:155 +#: ../../operation/gis_maps/gis_map.php:86 +#: ../../operation/incidents/list_integriaims_incidents.php:85 +#: ../../operation/reporting/graph_viewer.php:42 +#: ../../operation/reporting/graph_viewer.php:50 +msgid "Successfully deleted" +msgstr "Успешно удалено" -#: ../../enterprise/dashboard/main_dashboard.php:354 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:286 -#: ../../godmode/reporting/reporting_builder.php:557 -msgid "Private" -msgstr "Личное" +#: ../../views/dashboard/list.php:54 +#: ../../enterprise/godmode/modules/local_components.php:363 +#: ../../enterprise/godmode/policies/policy_alerts.php:202 +#: ../../enterprise/godmode/policies/policy_alerts.php:243 +#: ../../enterprise/godmode/policies/policy_modules.php:1315 +#: ../../enterprise/godmode/policies/policies.php:187 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:108 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:135 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:141 +#: ../../enterprise/godmode/policies/policy_collections.php:81 +#: ../../enterprise/godmode/policies/policy_agents.php:119 +#: ../../enterprise/godmode/policies/policy_agents.php:141 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:69 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:119 +#: ../../enterprise/godmode/alerts/alert_events_list.php:183 +#: ../../enterprise/godmode/alerts/alert_events_list.php:235 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:270 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:136 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:368 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:386 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166 +#: ../../enterprise/operation/agentes/transactional_map.php:157 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:66 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:144 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:218 +#: ../../enterprise/tools/ipam/ipam_action.php:88 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:111 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:183 +#: ../../extensions/files_repo.php:181 +#: ../../godmode/modules/manage_network_components.php:525 +#: ../../godmode/users/configure_user.php:138 +#: ../../godmode/massive/massive_delete_action_alerts.php:159 +#: ../../godmode/massive/massive_delete_alerts.php:202 +#: ../../godmode/alerts/alert_actions.php:212 +#: ../../godmode/alerts/alert_commands.php:587 +#: ../../godmode/alerts/alert_templates.php:258 +#: ../../godmode/alerts/alert_special_days.php:268 +#: ../../godmode/alerts/alert_list.php:233 +#: ../../godmode/alerts/alert_list.php:321 ../../godmode/setup/news.php:121 +#: ../../godmode/setup/gis.php:56 +#: ../../godmode/reporting/reporting_builder.php:656 +#: ../../operation/agentes/pandora_networkmap.php:539 +#: ../../operation/messages/message_list.php:99 +#: ../../operation/snmpconsole/snmp_view.php:156 +#: ../../operation/gis_maps/gis_map.php:87 +#: ../../operation/incidents/list_integriaims_incidents.php:86 +msgid "Could not be deleted" +msgstr "Не может быть удалено" -#: ../../enterprise/dashboard/main_dashboard.php:359 -#: ../../enterprise/dashboard/main_dashboard.php:383 -#: ../../enterprise/dashboard/widgets/top_n.php:309 -#: ../../enterprise/dashboard/widgets/alerts_fired.php:28 -#: ../../enterprise/meta/agentsearch.php:95 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:91 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:158 -#: ../../enterprise/meta/include/functions_events_meta.php:67 -#: ../../enterprise/meta/include/functions_wizard_meta.php:153 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1629 -#: ../../enterprise/meta/advanced/synchronizing.user.php:553 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:239 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:329 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:506 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:587 -#: ../../enterprise/include/functions_alert_event.php:926 -#: ../../enterprise/include/functions_reporting_pdf.php:2233 -#: ../../enterprise/include/functions_reporting_pdf.php:2283 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1674 -#: ../../enterprise/operation/log/log_viewer.php:192 -#: ../../enterprise/operation/services/services.service.php:123 -#: ../../enterprise/operation/services/services.list.php:160 -#: ../../enterprise/operation/services/services.list.php:312 -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:262 -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:268 -#: ../../enterprise/operation/agentes/ver_agente.php:50 -#: ../../enterprise/operation/agentes/ver_agente.php:71 -#: ../../enterprise/operation/inventory/inventory.php:162 -#: ../../enterprise/godmode/services/services.service.php:239 -#: ../../enterprise/godmode/alerts/alert_events_list.php:361 -#: ../../enterprise/godmode/alerts/alert_events_list.php:423 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:155 -#: ../../enterprise/godmode/alerts/alert_events.php:491 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:409 -#: ../../enterprise/godmode/agentes/collections.php:183 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:167 -#: ../../enterprise/godmode/modules/local_components.php:389 -#: ../../enterprise/godmode/modules/local_components.php:471 -#: ../../enterprise/godmode/modules/configure_local_component.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:114 -#: ../../enterprise/godmode/reporting/graph_template_list.php:126 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:307 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:287 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1347 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:158 -#: ../../enterprise/godmode/policies/policies.php:229 -#: ../../enterprise/godmode/policies/policies.php:255 -#: ../../enterprise/godmode/policies/configure_policy.php:68 -#: ../../enterprise/godmode/policies/policy_agents.php:334 -#: ../../mobile/operation/networkmaps.php:65 -#: ../../mobile/operation/networkmaps.php:69 -#: ../../mobile/operation/networkmaps.php:129 -#: ../../mobile/operation/networkmaps.php:130 -#: ../../mobile/operation/networkmaps.php:197 -#: ../../mobile/operation/modules.php:128 -#: ../../mobile/operation/modules.php:132 -#: ../../mobile/operation/modules.php:203 -#: ../../mobile/operation/modules.php:204 ../../mobile/operation/alerts.php:84 -#: ../../mobile/operation/alerts.php:88 ../../mobile/operation/alerts.php:178 -#: ../../mobile/operation/alerts.php:179 ../../mobile/operation/events.php:356 -#: ../../mobile/operation/events.php:360 ../../mobile/operation/events.php:496 -#: ../../mobile/operation/events.php:599 ../../mobile/operation/events.php:600 -#: ../../mobile/operation/visualmaps.php:49 -#: ../../mobile/operation/visualmaps.php:53 -#: ../../mobile/operation/visualmaps.php:141 -#: ../../mobile/operation/agents.php:75 ../../mobile/operation/agents.php:120 -#: ../../mobile/operation/agents.php:124 ../../mobile/operation/agents.php:175 -#: ../../mobile/operation/agents.php:176 ../../mobile/operation/agents.php:280 -#: ../../extensions/agents_modules.php:81 -#: ../../extensions/agents_alerts.php:73 -#: ../../include/functions_graph.php:5073 -#: ../../include/functions_networkmap.php:1746 -#: ../../include/functions_groups.php:715 -#: ../../include/functions_visual_map.php:2292 -#: ../../include/functions_visual_map_editor.php:61 -#: ../../include/functions_visual_map_editor.php:303 -#: ../../include/functions_visual_map_editor.php:577 -#: ../../include/functions_reporting_html.php:1483 -#: ../../include/functions_reporting_html.php:1518 -#: ../../include/functions_events.php:37 -#: ../../include/functions_events.php:2432 -#: ../../operation/integria_incidents/incident.incident.php:87 -#: ../../operation/integria_incidents/incident.list.php:61 -#: ../../operation/integria_incidents/incident.list.php:95 -#: ../../operation/events/events.build_table.php:91 -#: ../../operation/events/events_list.php:529 -#: ../../operation/events/sound_events.php:71 -#: ../../operation/users/user_edit.php:420 -#: ../../operation/search_agents.php:47 ../../operation/search_agents.php:59 -#: ../../operation/gis_maps/gis_map.php:90 -#: ../../operation/gis_maps/index.php:36 ../../operation/gis_maps/ajax.php:309 +#: ../../views/dashboard/list.php:61 +msgid "Successfully duplicate" +msgstr "Успешно дублировано" + +#: ../../views/dashboard/list.php:62 +msgid "Could not be duplicate" +msgstr "Не может быть дублировано" + +#: ../../views/dashboard/list.php:70 +msgid "There are no dashboards defined." +msgstr "Приборная панель не выбрана" + +#: ../../views/dashboard/list.php:95 ../../views/dashboard/formDashboard.php:77 +#: ../../enterprise/views/cluster/list.php:58 +#: ../../enterprise/meta/advanced/servers.build_table.php:60 +#: ../../enterprise/meta/include/functions_autoprovision.php:448 +#: ../../enterprise/meta/include/functions_wizard_meta.php:463 +#: ../../enterprise/meta/include/functions_wizard_meta.php:580 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1127 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1450 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1571 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1673 +#: ../../enterprise/meta/agentsearch.php:308 +#: ../../enterprise/godmode/modules/configure_local_component.php:152 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:374 +#: ../../enterprise/godmode/modules/local_components.php:565 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:331 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:618 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:97 +#: ../../enterprise/godmode/agentes/collection_manager.php:115 +#: ../../enterprise/godmode/agentes/collection_manager.php:212 +#: ../../enterprise/godmode/agentes/inventory_manager.php:217 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:535 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 +#: ../../enterprise/godmode/policies/configure_policy.php:86 +#: ../../enterprise/godmode/policies/policy_modules.php:1470 +#: ../../enterprise/godmode/policies/policies.php:443 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:260 +#: ../../enterprise/godmode/policies/policy_collections.php:153 +#: ../../enterprise/godmode/policies/policy_collections.php:248 +#: ../../enterprise/godmode/policies/policy_agents.php:781 +#: ../../enterprise/godmode/policies/policy_agents.php:1164 +#: ../../enterprise/godmode/massive/massive_edit_services.php:535 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:162 +#: ../../enterprise/godmode/alerts/alert_events.php:591 +#: ../../enterprise/godmode/alerts/alert_events_list.php:503 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:401 +#: ../../enterprise/godmode/services/services.service.php:528 +#: ../../enterprise/godmode/setup/setup_skins.php:84 +#: ../../enterprise/godmode/setup/setup_auth.php:99 +#: ../../enterprise/godmode/setup/edit_skin.php:230 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:159 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:108 +#: ../../enterprise/godmode/reporting/visual_console_template.php:191 +#: ../../enterprise/godmode/reporting/visual_console_template.php:258 +#: ../../enterprise/godmode/reporting/mysql_builder.php:66 +#: ../../enterprise/godmode/reporting/mysql_builder.php:179 +#: ../../enterprise/godmode/reporting/mysql_builder.php:180 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1576 +#: ../../enterprise/godmode/servers/manage_export.php:137 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 +#: ../../enterprise/godmode/servers/manage_export_form.php:75 +#: ../../enterprise/godmode/servers/list_satellite.php:36 +#: ../../enterprise/mobile/include/enterprise.class.php:87 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:355 +#: ../../enterprise/include/ajax/servers.ajax.php:100 +#: ../../enterprise/include/ajax/servers.ajax.php:158 +#: ../../enterprise/include/ajax/servers.ajax.php:284 +#: ../../enterprise/include/class/Omnishell.class.php:668 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:747 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2973 +#: ../../enterprise/include/functions_services.php:1500 +#: ../../enterprise/include/functions_ipam.php:1213 +#: ../../enterprise/include/functions_ipam.php:1817 +#: ../../enterprise/operation/agentes/policy_view.php:150 +#: ../../enterprise/operation/agentes/policy_view.php:382 +#: ../../enterprise/operation/agentes/tag_view.php:661 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:68 +#: ../../enterprise/operation/agentes/collection_view.php:62 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:158 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:324 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:440 +#: ../../enterprise/operation/services/services.service.php:189 +#: ../../enterprise/operation/services/services.list.php:504 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:367 +#: ../../enterprise/tools/ipam/ipam_list.php:144 +#: ../../enterprise/tools/ipam/ipam_excel.php:113 +#: ../../enterprise/tools/ipam/ipam_excel.php:183 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:271 +#: ../../enterprise/tools/ipam/ipam_editor.php:114 +#: ../../extensions/files_repo/files_repo_list.php:55 +#: ../../godmode/modules/manage_nc_groups_form.php:68 +#: ../../godmode/modules/manage_network_templates_form.php:156 +#: ../../godmode/modules/manage_nc_groups.php:232 +#: ../../godmode/modules/manage_network_components_form_common.php:42 +#: ../../godmode/modules/module_list.php:59 +#: ../../godmode/modules/manage_network_templates.php:234 +#: ../../godmode/groups/configure_group.php:136 +#: ../../godmode/groups/group_list.php:794 +#: ../../godmode/groups/configure_modu_group.php:64 +#: ../../godmode/groups/modu_group_list.php:235 +#: ../../godmode/users/user_list.php:413 +#: ../../godmode/agentes/planned_downtime.editor.php:534 +#: ../../godmode/agentes/planned_downtime.editor.php:902 +#: ../../godmode/agentes/configure_field.php:71 +#: ../../godmode/agentes/module_manager_editor_common.php:191 +#: ../../godmode/agentes/module_manager_editor_common.php:1166 +#: ../../godmode/agentes/module_manager.php:757 +#: ../../godmode/netflow/nf_edit.php:159 +#: ../../godmode/netflow/nf_edit_form.php:198 +#: ../../godmode/alerts/configure_alert_command.php:188 +#: ../../godmode/alerts/alert_actions.php:320 +#: ../../godmode/alerts/alert_commands.php:627 +#: ../../godmode/alerts/alert_templates.php:377 +#: ../../godmode/alerts/configure_alert_action.php:162 +#: ../../godmode/alerts/configure_alert_template.php:1087 +#: ../../godmode/setup/os.builder.php:33 ../../godmode/setup/os.list.php:32 +#: ../../godmode/setup/setup_integria.php:326 +#: ../../godmode/setup/setup_integria.php:449 +#: ../../godmode/reporting/create_container.php:223 +#: ../../godmode/reporting/reporting_builder.item_editor.php:884 +#: ../../godmode/reporting/reporting_builder.main.php:89 +#: ../../godmode/reporting/reporting_builder.main.php:93 +#: ../../godmode/reporting/graph_builder.main.php:125 +#: ../../godmode/events/event_filter.php:136 +#: ../../godmode/events/event_responses.editor.php:86 +#: ../../godmode/events/event_responses.list.php:50 +#: ../../godmode/servers/servers.build_table.php:65 +#: ../../godmode/servers/modificar_server.php:56 +#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:1007 +#: ../../godmode/tag/tag.php:188 ../../godmode/tag/edit_tag.php:192 +#: ../../godmode/category/edit_category.php:165 +#: ../../include/functions_reporting_html.php:1027 +#: ../../include/functions_reporting_html.php:1035 +#: ../../include/functions_reporting_html.php:2039 +#: ../../include/functions_reporting_html.php:2377 +#: ../../include/functions_reporting_html.php:2930 +#: ../../include/functions_reporting_html.php:5617 +#: ../../include/functions_treeview.php:78 +#: ../../include/class/NetworkMap.class.php:2932 +#: ../../include/class/NetworkMap.class.php:2973 +#: ../../include/class/NetworkMap.class.php:2991 +#: ../../include/class/NetworkMap.class.php:3259 +#: ../../include/class/ManageNetScanScripts.class.php:403 +#: ../../include/class/ManageNetScanScripts.class.php:545 +#: ../../include/class/ModuleTemplates.class.php:889 +#: ../../include/class/ModuleTemplates.class.php:1047 +#: ../../include/functions_filemanager.php:625 +#: ../../include/functions_snmp_browser.php:1656 +#: ../../include/functions_events.php:4352 +#: ../../include/functions_events.php:4441 ../../operation/search_users.php:35 +#: ../../operation/search_helps.php:32 +#: ../../operation/agentes/pandora_networkmap.editor.php:264 +#: ../../operation/agentes/pandora_networkmap.php:693 +#: ../../operation/netflow/nf_live_view.php:362 +#: ../../operation/gis_maps/gis_map.php:102 +#: ../../operation/incidents/configure_integriaims_incident.php:198 +#: ../../operation/search_policies.php:34 ../../operation/search_maps.php:27 +msgid "Name" +msgstr "Имя" + +#: ../../views/dashboard/list.php:96 +msgid "Cells" +msgstr "Ячейки" + +#: ../../views/dashboard/list.php:97 +#: ../../views/dashboard/formDashboard.php:107 +#: ../../enterprise/views/cluster/list.php:60 +#: ../../enterprise/meta/advanced/synchronizing.user.php:634 +#: ../../enterprise/meta/advanced/cron_main.php:409 +#: ../../enterprise/meta/advanced/collections.php:410 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:138 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:255 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:352 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:417 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:527 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:606 +#: ../../enterprise/meta/include/functions_wizard_meta.php:193 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1795 +#: ../../enterprise/meta/include/functions_events_meta.php:74 +#: ../../enterprise/meta/agentsearch.php:119 +#: ../../enterprise/meta/agentsearch.php:310 +#: ../../enterprise/godmode/modules/configure_local_component.php:270 +#: ../../enterprise/godmode/modules/local_components.php:443 +#: ../../enterprise/godmode/modules/local_components.php:567 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:93 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:192 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:111 +#: ../../enterprise/godmode/agentes/collections.php:323 +#: ../../enterprise/godmode/policies/configure_policy.php:89 +#: ../../enterprise/godmode/policies/policies.php:345 +#: ../../enterprise/godmode/policies/policies.php:445 +#: ../../enterprise/godmode/policies/policy_agents.php:745 +#: ../../enterprise/godmode/policies/policy_agents.php:788 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:85 +#: ../../enterprise/godmode/massive/massive_edit_services.php:557 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:167 +#: ../../enterprise/godmode/alerts/alert_events.php:594 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 +#: ../../enterprise/godmode/alerts/alert_events_list.php:413 +#: ../../enterprise/godmode/alerts/alert_events_list.php:504 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:403 +#: ../../enterprise/godmode/services/services.service.php:550 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:324 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194 +#: ../../enterprise/godmode/reporting/graph_template_list.php:171 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:164 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443 +#: ../../enterprise/godmode/reporting/visual_console_template.php:206 +#: ../../enterprise/godmode/reporting/visual_console_template.php:259 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1892 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:94 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:662 +#: ../../enterprise/include/functions_tasklist.php:172 +#: ../../enterprise/include/functions_alert_event.php:1134 +#: ../../enterprise/include/functions_reporting_csv.php:1009 +#: ../../enterprise/include/functions_reporting_csv.php:2417 +#: ../../enterprise/include/class/Azure.cloud.php:835 +#: ../../enterprise/include/class/VMware.app.php:749 +#: ../../enterprise/include/class/Omnishell.class.php:399 +#: ../../enterprise/include/class/Omnishell.class.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:678 +#: ../../enterprise/include/class/DB2.app.php:469 +#: ../../enterprise/include/class/Aws.S3.php:434 +#: ../../enterprise/include/class/SAP.app.php:641 +#: ../../enterprise/include/class/Aws.cloud.php:571 +#: ../../enterprise/include/class/Aws.cloud.php:1226 +#: ../../enterprise/include/class/MySQL.app.php:474 +#: ../../enterprise/include/class/Google.cloud.php:785 +#: ../../enterprise/include/class/Oracle.app.php:470 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:465 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:759 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:904 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2869 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2974 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:816 +#: ../../enterprise/include/functions_events.php:97 +#: ../../enterprise/operation/agentes/transactional_map.php:182 +#: ../../enterprise/operation/agentes/tag_view.php:87 +#: ../../enterprise/operation/agentes/tag_view.php:589 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:71 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +#: ../../enterprise/operation/agentes/ver_agente.php:49 +#: ../../enterprise/operation/agentes/ver_agente.php:70 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:327 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:443 +#: ../../enterprise/operation/log/log_viewer.php:519 +#: ../../enterprise/operation/inventory/inventory.php:176 +#: ../../enterprise/operation/services/services.service.php:192 +#: ../../enterprise/operation/services/services.list.php:270 +#: ../../enterprise/operation/services/services.list.php:509 +#: ../../enterprise/operation/services/services.table_services.php:222 +#: ../../enterprise/tools/ipam/ipam_editor.php:208 +#: ../../extensions/agents_modules.php:378 +#: ../../godmode/modules/manage_network_templates_form.php:223 +#: ../../godmode/modules/manage_network_templates_form.php:291 +#: ../../godmode/modules/manage_network_templates_form.php:327 +#: ../../godmode/modules/manage_network_components_form_common.php:127 +#: ../../godmode/modules/manage_network_components.php:595 +#: ../../godmode/modules/manage_network_components.php:727 +#: ../../godmode/users/user_list.php:342 +#: ../../godmode/agentes/configurar_agente.php:493 +#: ../../godmode/agentes/modificar_agente.php:253 +#: ../../godmode/agentes/modificar_agente.php:617 +#: ../../godmode/agentes/planned_downtime.list.php:400 +#: ../../godmode/agentes/planned_downtime.editor.php:544 +#: ../../godmode/agentes/planned_downtime.editor.php:903 +#: ../../godmode/agentes/agent_incidents.php:92 +#: ../../godmode/netflow/nf_edit.php:160 +#: ../../godmode/netflow/nf_edit_form.php:202 +#: ../../godmode/snmpconsole/snmp_alert.php:833 +#: ../../godmode/gis_maps/configure_gis_map.php:481 +#: ../../godmode/gis_maps/configure_gis_map.php:607 +#: ../../godmode/massive/massive_copy_modules.php:99 +#: ../../godmode/massive/massive_copy_modules.php:252 +#: ../../godmode/massive/massive_standby_alerts.php:161 +#: ../../godmode/massive/massive_delete_action_alerts.php:197 +#: ../../godmode/massive/massive_add_alerts.php:199 +#: ../../godmode/massive/massive_delete_agents.php:129 +#: ../../godmode/massive/massive_enable_disable_alerts.php:161 +#: ../../godmode/massive/massive_edit_agents.php:420 +#: ../../godmode/massive/massive_edit_agents.php:570 +#: ../../godmode/massive/massive_delete_profiles.php:121 +#: ../../godmode/massive/massive_delete_alerts.php:269 +#: ../../godmode/massive/massive_add_action_alerts.php:191 +#: ../../godmode/massive/massive_add_profiles.php:117 +#: ../../godmode/alerts/configure_alert_command.php:229 +#: ../../godmode/alerts/alert_actions.php:254 +#: ../../godmode/alerts/alert_actions.php:322 +#: ../../godmode/alerts/alert_list.list.php:141 +#: ../../godmode/alerts/alert_commands.php:629 +#: ../../godmode/alerts/configure_alert_special_days.php:90 +#: ../../godmode/alerts/alert_templates.php:378 +#: ../../godmode/alerts/configure_alert_action.php:193 +#: ../../godmode/alerts/configure_alert_template.php:1109 +#: ../../godmode/alerts/alert_special_days.php:291 +#: ../../godmode/setup/news.php:186 ../../godmode/setup/gis.php:66 +#: ../../godmode/setup/gis_step_2.php:213 +#: ../../godmode/setup/setup_integria.php:352 +#: ../../godmode/setup/setup_integria.php:475 +#: ../../godmode/reporting/visual_console_builder.data.php:136 +#: ../../godmode/reporting/create_container.php:244 +#: ../../godmode/reporting/create_container.php:534 +#: ../../godmode/reporting/create_container.php:625 +#: ../../godmode/reporting/map_builder.php:331 +#: ../../godmode/reporting/map_builder.php:360 +#: ../../godmode/reporting/graphs.php:188 +#: ../../godmode/reporting/graphs.php:270 +#: ../../godmode/reporting/visual_console_favorite.php:132 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1287 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2913 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:304 +#: ../../godmode/reporting/reporting_builder.main.php:101 +#: ../../godmode/reporting/reporting_builder.php:675 +#: ../../godmode/reporting/reporting_builder.php:866 +#: ../../godmode/reporting/graph_builder.main.php:143 +#: ../../godmode/events/event_filter.php:137 +#: ../../godmode/events/event_responses.editor.php:103 +#: ../../godmode/events/event_edit_filter.php:293 +#: ../../godmode/events/event_responses.list.php:52 +#: ../../godmode/events/custom_events.php:99 +#: ../../godmode/wizards/HostDevices.class.php:932 +#: ../../mobile/operation/agents.php:77 ../../mobile/operation/agents.php:139 +#: ../../mobile/operation/agents.php:215 ../../mobile/operation/agents.php:216 +#: ../../mobile/operation/agents.php:386 ../../mobile/operation/modules.php:153 +#: ../../mobile/operation/modules.php:158 +#: ../../mobile/operation/modules.php:247 +#: ../../mobile/operation/modules.php:248 ../../mobile/operation/alerts.php:95 +#: ../../mobile/operation/alerts.php:100 ../../mobile/operation/alerts.php:212 +#: ../../mobile/operation/alerts.php:213 +#: ../../mobile/operation/visualmaps.php:106 +#: ../../mobile/operation/visualmaps.php:111 +#: ../../mobile/operation/events.php:385 ../../mobile/operation/events.php:390 +#: ../../mobile/operation/events.php:544 ../../mobile/operation/events.php:662 +#: ../../mobile/operation/events.php:663 +#: ../../include/functions_visual_map_editor.php:70 +#: ../../include/functions_visual_map_editor.php:594 +#: ../../include/functions_visual_map_editor.php:1397 +#: ../../include/functions_reporting_html.php:2881 +#: ../../include/functions_reporting_html.php:2934 +#: ../../include/functions_reporting_html.php:5705 +#: ../../include/functions_cron.php:459 +#: ../../include/ajax/custom_fields.php:628 +#: ../../include/ajax/custom_fields.php:677 +#: ../../include/functions_graph.php:5161 ../../include/functions_gis.php:228 +#: ../../include/functions_profile.php:214 +#: ../../include/functions_visual_map.php:4235 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:545 +#: ../../include/rest-api/models/VisualConsole/Item.php:2087 +#: ../../include/functions_html.php:1346 +#: ../../include/class/NetworkMap.class.php:2865 +#: ../../include/class/NetworkMap.class.php:2916 +#: ../../include/class/NetworkMap.class.php:3207 +#: ../../include/class/AgentsAlerts.class.php:779 +#: ../../include/class/CredentialStore.class.php:782 +#: ../../include/class/CredentialStore.class.php:813 +#: ../../include/class/CredentialStore.class.php:903 +#: ../../include/class/CustomNetScan.class.php:500 +#: ../../include/class/ModuleTemplates.class.php:780 +#: ../../include/functions_container.php:149 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:226 +#: ../../include/functions_snmp_browser.php:1659 +#: ../../include/functions_events.php:193 +#: ../../include/functions_events.php:245 +#: ../../include/functions_events.php:4973 +#: ../../include/functions_events.php:6523 ../../operation/search_agents.php:45 +#: ../../operation/search_agents.php:51 ../../operation/users/user_edit.php:779 +#: ../../operation/visual_console/view.php:327 +#: ../../operation/agentes/estado_agente.php:225 +#: ../../operation/agentes/estado_agente.php:726 +#: ../../operation/agentes/pandora_networkmap.editor.php:280 +#: ../../operation/agentes/pandora_networkmap.editor.php:328 #: ../../operation/agentes/exportdata.php:226 -#: ../../operation/agentes/ver_agente.php:539 -#: ../../operation/agentes/group_view.php:146 -#: ../../operation/agentes/estado_agente.php:164 -#: ../../operation/agentes/estado_agente.php:467 -#: ../../operation/agentes/networkmap_list.php:136 -#: ../../operation/agentes/networkmap_list.php:170 -#: ../../operation/agentes/networkmap.php:448 -#: ../../operation/agentes/alerts_status.functions.php:68 -#: ../../operation/agentes/estado_generalagente.php:246 -#: ../../operation/agentes/status_monitor.php:407 -#: ../../operation/search_maps.php:32 -#: ../../operation/netflow/nf_live_view.php:291 -#: ../../operation/incidents/incident.php:334 -#: ../../operation/incidents/incident_detail.php:308 -#: ../../godmode/events/event_filter.php:105 -#: ../../godmode/events/event_responses.editor.php:81 -#: ../../godmode/events/event_responses.list.php:56 -#: ../../godmode/events/custom_events.php:80 -#: ../../godmode/events/custom_events.php:156 -#: ../../godmode/events/event_edit_filter.php:213 -#: ../../godmode/users/configure_user.php:617 -#: ../../godmode/users/user_list.php:227 -#: ../../godmode/snmpconsole/snmp_alert.php:556 -#: ../../godmode/gis_maps/index.php:71 -#: ../../godmode/gis_maps/configure_gis_map.php:356 -#: ../../godmode/alerts/configure_alert_special_days.php:66 -#: ../../godmode/alerts/alert_special_days.php:164 -#: ../../godmode/alerts/configure_alert_template.php:711 -#: ../../godmode/alerts/alert_templates.php:299 -#: ../../godmode/alerts/configure_alert_action.php:116 -#: ../../godmode/alerts/alert_actions.php:341 -#: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/agentes/agent_manager.php:243 -#: ../../godmode/agentes/modificar_agente.php:135 -#: ../../godmode/agentes/modificar_agente.php:430 -#: ../../godmode/agentes/planned_downtime.editor.php:474 -#: ../../godmode/agentes/planned_downtime.editor.php:723 -#: ../../godmode/agentes/planned_downtime.list.php:391 -#: ../../godmode/agentes/configurar_agente.php:338 -#: ../../godmode/servers/manage_recontask_form.php:300 -#: ../../godmode/servers/manage_recontask.php:287 -#: ../../godmode/netflow/nf_edit_form.php:193 -#: ../../godmode/netflow/nf_edit.php:119 ../../godmode/setup/news.php:164 -#: ../../godmode/setup/gis_step_2.php:153 ../../godmode/setup/gis.php:63 -#: ../../godmode/massive/massive_delete_agents.php:105 -#: ../../godmode/massive/massive_delete_alerts.php:212 -#: ../../godmode/massive/massive_standby_alerts.php:136 -#: ../../godmode/massive/massive_copy_modules.php:71 -#: ../../godmode/massive/massive_copy_modules.php:182 -#: ../../godmode/massive/massive_add_alerts.php:151 -#: ../../godmode/massive/massive_delete_profiles.php:103 -#: ../../godmode/massive/massive_add_tags.php:124 -#: ../../godmode/massive/massive_edit_agents.php:205 -#: ../../godmode/massive/massive_edit_agents.php:280 -#: ../../godmode/massive/massive_add_profiles.php:89 -#: ../../godmode/massive/massive_add_action_alerts.php:136 -#: ../../godmode/massive/massive_delete_action_alerts.php:138 -#: ../../godmode/massive/massive_enable_disable_alerts.php:136 -#: ../../godmode/modules/manage_network_components.php:454 -#: ../../godmode/modules/manage_network_components.php:543 -#: ../../godmode/modules/manage_network_components_form_common.php:99 -#: ../../godmode/modules/manage_network_templates_form.php:200 -#: ../../godmode/modules/manage_network_templates_form.php:267 -#: ../../godmode/modules/manage_network_templates_form.php:300 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.elements.php:193 -#: ../../godmode/reporting/graph_builder.main.php:107 -#: ../../godmode/reporting/reporting_builder.item_editor.php:816 -#: ../../godmode/reporting/map_builder.php:208 -#: ../../godmode/reporting/graphs.php:145 -#: ../../godmode/reporting/reporting_builder.php:432 -#: ../../godmode/reporting/reporting_builder.php:564 -#: ../../godmode/reporting/reporting_builder.main.php:69 -#: ../../general/ui/agents_list.php:69 +#: ../../operation/agentes/status_monitor.php:398 +#: ../../operation/agentes/group_view.php:193 +#: ../../operation/agentes/ver_agente.php:946 +#: ../../operation/agentes/estado_generalagente.php:391 +#: ../../operation/agentes/alerts_status.functions.php:89 +#: ../../operation/netflow/nf_live_view.php:372 +#: ../../operation/gis_maps/gis_map.php:103 +#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 +#: ../../operation/incidents/configure_integriaims_incident.php:247 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:375 +#: ../../operation/incidents/list_integriaims_incidents.php:127 +#: ../../operation/events/events_list.php:905 +#: ../../operation/events/sound_events.php:106 +#: ../../operation/events/events.php:981 +#: ../../operation/events/events.build_table.php:222 +#: ../../operation/search_maps.php:28 ../../general/ui/agents_list.php:76 msgid "Group" msgstr "Группа" -#: ../../enterprise/dashboard/main_dashboard.php:366 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:627 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:67 -#: ../../enterprise/godmode/reporting/mysql_builder.php:149 -#: ../../extensions/insert_data.php:178 ../../operation/agentes/graphs.php:246 -#: ../../godmode/setup/gis_step_2.php:310 -#: ../../godmode/reporting/visual_console_builder.data.php:127 -#: ../../godmode/reporting/reporting_builder.main.php:32 -msgid "Save" -msgstr "Сохранить" - -#: ../../enterprise/dashboard/main_dashboard.php:387 -msgid "Private dashboard" -msgstr "Частная панель инструментов" - -#: ../../enterprise/dashboard/main_dashboard.php:391 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1209 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:292 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:421 -#: ../../enterprise/meta/advanced/metasetup.visual.php:154 -#: ../../enterprise/godmode/alerts/alert_events_list.php:608 -#: ../../enterprise/godmode/agentes/inventory_manager.php:208 -#: ../../enterprise/godmode/agentes/plugins_manager.php:93 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:185 -#: ../../enterprise/godmode/agentes/collection_manager.php:109 -#: ../../enterprise/godmode/agentes/collection_manager.php:126 -#: ../../enterprise/godmode/servers/manage_export_form.php:122 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:221 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:329 -#: ../../enterprise/godmode/setup/setup_acl.php:98 -#: ../../enterprise/godmode/setup/setup_acl.php:117 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:112 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:110 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:123 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:183 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:316 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:168 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:243 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:160 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:188 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:233 -#: ../../enterprise/godmode/policies/policy_collections.php:196 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:219 -#: ../../enterprise/godmode/policies/policy_plugins.php:65 -#: ../../enterprise/godmode/policies/policy_alerts.php:474 -#: ../../enterprise/godmode/policies/policy_alerts.php:520 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:285 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:336 -#: ../../extensions/files_repo/files_repo_form.php:94 -#: ../../operation/integria_incidents/incident.files.php:29 -#: ../../operation/integria_incidents/incident.workunits.php:35 -#: ../../operation/events/events_list.php:327 -#: ../../operation/events/events_list.php:355 -#: ../../operation/incidents/incident_detail.php:404 -#: ../../godmode/events/event_edit_filter.php:335 -#: ../../godmode/events/event_edit_filter.php:350 -#: ../../godmode/users/configure_profile.php:364 -#: ../../godmode/snmpconsole/snmp_alert.php:1199 -#: ../../godmode/alerts/alert_list.list.php:610 -#: ../../godmode/agentes/planned_downtime.editor.php:622 -#: ../../godmode/agentes/planned_downtime.editor.php:693 -#: ../../godmode/agentes/planned_downtime.editor.php:832 -#: ../../godmode/servers/plugin.php:746 -#: ../../godmode/servers/manage_recontask_form.php:384 -#: ../../godmode/servers/recon_script.php:383 ../../godmode/setup/news.php:275 -#: ../../godmode/setup/links.php:158 ../../godmode/setup/setup_visuals.php:572 -#: ../../godmode/setup/setup_visuals.php:608 -#: ../../godmode/massive/massive_add_alerts.php:185 -#: ../../godmode/massive/massive_add_tags.php:161 -#: ../../godmode/massive/massive_add_action_alerts.php:181 -#: ../../godmode/modules/manage_network_templates_form.php:308 -#: ../../godmode/reporting/graph_builder.graph_editor.php:159 -#: ../../godmode/reporting/visual_console_builder.wizard.php:324 -msgid "Add" -msgstr "Добавить" - -#: ../../enterprise/dashboard/main_dashboard.php:399 -#: ../../godmode/reporting/visual_console_builder.editor.php:139 -#: ../../godmode/reporting/visual_console_builder.editor.php:144 -#: ../../godmode/reporting/visual_console_builder.editor.php:149 -msgid "Action in progress" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:400 -#: ../../godmode/reporting/visual_console_builder.editor.php:140 -msgid "Loading in progress" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:406 -#: ../../enterprise/dashboard/main_dashboard.php:486 -#: ../../enterprise/meta/include/functions_ui_meta.php:779 -#: ../../extensions/system_info.php:532 ../../extensions/system_info.php:593 -#: ../../include/functions_ui.php:229 ../../include/functions.php:1015 -#: ../../include/functions_events.php:1161 -#: ../../include/functions_events.php:1428 -#: ../../include/ajax/double_auth.ajax.php:250 -#: ../../include/ajax/double_auth.ajax.php:345 -#: ../../include/ajax/double_auth.ajax.php:390 -#: ../../include/ajax/double_auth.ajax.php:505 -#: ../../operation/users/user_edit.php:572 -#: ../../operation/users/user_edit.php:637 -#: ../../operation/agentes/networkmap_list.php:377 -#: ../../godmode/db/db_refine.php:42 ../../godmode/db/db_refine.php:47 -#: ../../godmode/massive/massive_edit_plugins.php:813 -#: ../../godmode/massive/massive_edit_plugins.php:814 -msgid "Error" -msgstr "Ошибка" - -#: ../../enterprise/dashboard/main_dashboard.php:407 -msgid "Error: there are cells not empty." -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:412 -msgid "Error save conf dashboard" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:480 -msgid "Add widget" -msgstr "Добавить виджет" - -#: ../../enterprise/dashboard/main_dashboard.php:485 -msgid "Add new widget" -msgstr "Добавить новый виджет" - -#: ../../enterprise/dashboard/main_dashboard.php:487 -msgid "" -"Error, you are trying to add a widget in a empty cell. Please save the " -"layout before to add any widget in this cell." -msgstr "" - -#: ../../enterprise/dashboard/widget.php:58 -#: ../../operation/integria_incidents/incident.incident.php:82 -#: ../../operation/agentes/estado_generalagente.php:395 -msgid "Title" -msgstr "Заголовок" - -#: ../../enterprise/dashboard/widget.php:173 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:288 -#: ../../enterprise/meta/advanced/metasetup.password.php:146 -#: ../../enterprise/meta/advanced/metasetup.visual.php:248 -#: ../../enterprise/meta/advanced/metasetup.performance.php:103 -#: ../../enterprise/meta/advanced/metasetup.setup.php:230 -#: ../../enterprise/meta/event/custom_events.php:197 -#: ../../enterprise/extensions/translate_string.php:306 -#: ../../enterprise/extensions/translate_string.php:313 -#: ../../enterprise/extensions/cron/main.php:316 -#: ../../enterprise/extensions/vmware/vmware_view.php:1218 -#: ../../enterprise/extensions/ipam/ipam_network.php:670 -#: ../../enterprise/extensions/ipam/ipam_editor.php:105 -#: ../../enterprise/extensions/ipam/ipam_massive.php:95 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1084 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1617 -#: ../../enterprise/operation/agentes/policy_view.php:161 -#: ../../enterprise/operation/agentes/collection_view.php:97 -#: ../../enterprise/godmode/services/services.elements.php:403 -#: ../../enterprise/godmode/services/services.service.php:365 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:85 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:257 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:225 -#: ../../enterprise/godmode/agentes/inventory_manager.php:204 -#: ../../enterprise/godmode/agentes/inventory_manager.php:266 -#: ../../enterprise/godmode/agentes/collections.data.php:95 -#: ../../enterprise/godmode/agentes/collections.data.php:200 -#: ../../enterprise/godmode/agentes/collections.data.php:258 -#: ../../enterprise/godmode/agentes/collections.data.php:333 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:215 -#: ../../enterprise/godmode/agentes/collections.editor.php:130 -#: ../../enterprise/godmode/agentes/collections.editor.php:196 -#: ../../enterprise/godmode/agentes/collection_manager.php:132 -#: ../../enterprise/godmode/agentes/collection_manager.php:218 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:171 -#: ../../enterprise/godmode/servers/manage_export_form.php:120 -#: ../../enterprise/godmode/setup/setup_log_collector.php:55 -#: ../../enterprise/godmode/setup/edit_skin.php:261 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:218 -#: ../../enterprise/godmode/setup/setup.php:234 -#: ../../enterprise/godmode/setup/setup.php:327 -#: ../../enterprise/godmode/setup/setup_history.php:77 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:300 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:126 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:291 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:228 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:115 -#: ../../enterprise/godmode/modules/configure_local_component.php:465 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:78 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:88 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:146 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:109 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 -#: ../../enterprise/godmode/policies/configure_policy.php:86 -#: ../../enterprise/godmode/policies/policy_collections.php:158 -#: ../../enterprise/godmode/policies/policy_collections.php:210 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:274 -#: ../../enterprise/godmode/policies/policy_modules.php:299 -#: ../../extensions/files_repo/files_repo_form.php:88 -#: ../../extensions/net_tools.php:328 -#: ../../include/functions_visual_map_editor.php:429 -#: ../../include/functions_events.php:1703 -#: ../../include/functions_events.php:1741 -#: ../../operation/integria_incidents/incident.incident.php:117 -#: ../../operation/events/events_list.php:619 -#: ../../operation/users/user_edit.php:388 -#: ../../operation/snmpconsole/snmp_view.php:440 -#: ../../operation/agentes/datos_agente.php:209 -#: ../../operation/reporting/reporting_viewer.php:206 -#: ../../godmode/events/event_responses.editor.php:145 -#: ../../godmode/events/custom_events.php:201 -#: ../../godmode/events/event_edit_filter.php:384 -#: ../../godmode/users/configure_user.php:587 -#: ../../godmode/users/configure_profile.php:370 -#: ../../godmode/category/edit_category.php:169 -#: ../../godmode/snmpconsole/snmp_alert.php:871 -#: ../../godmode/snmpconsole/snmp_alert.php:1119 -#: ../../godmode/snmpconsole/snmp_filters.php:105 -#: ../../godmode/snmpconsole/snmp_filters.php:142 -#: ../../godmode/alerts/configure_alert_special_days.php:97 -#: ../../godmode/alerts/configure_alert_command.php:198 -#: ../../godmode/alerts/alert_list.list.php:140 -#: ../../godmode/alerts/alert_list.list.php:148 -#: ../../godmode/alerts/configure_alert_action.php:216 -#: ../../godmode/alerts/configure_alert_action.php:222 -#: ../../godmode/agentes/agent_manager.php:453 -#: ../../godmode/agentes/agent_conf_gis.php:88 -#: ../../godmode/agentes/planned_downtime.editor.php:618 -#: ../../godmode/agentes/planned_downtime.list.php:464 -#: ../../godmode/agentes/planned_downtime.list.php:473 -#: ../../godmode/agentes/module_manager_editor.php:475 -#: ../../godmode/agentes/agent_template.php:248 -#: ../../godmode/agentes/configure_field.php:61 -#: ../../godmode/servers/modificar_server.php:53 -#: ../../godmode/servers/plugin.php:496 -#: ../../godmode/servers/manage_recontask_form.php:380 -#: ../../godmode/servers/recon_script.php:223 -#: ../../godmode/netflow/nf_edit_form.php:240 -#: ../../godmode/groups/configure_modu_group.php:76 -#: ../../godmode/groups/configure_group.php:204 -#: ../../godmode/update_manager/update_manager.setup.php:87 -#: ../../godmode/setup/setup_netflow.php:81 ../../godmode/setup/news.php:207 -#: ../../godmode/setup/links.php:120 ../../godmode/setup/os.php:54 -#: ../../godmode/setup/os.php:107 ../../godmode/setup/setup_general.php:292 -#: ../../godmode/setup/performance.php:128 -#: ../../godmode/setup/setup_auth.php:233 -#: ../../godmode/setup/setup_visuals.php:628 -#: ../../godmode/massive/massive_edit_plugins.php:321 -#: ../../godmode/massive/massive_edit_agents.php:447 -#: ../../godmode/massive/massive_edit_modules.php:588 -#: ../../godmode/modules/manage_nc_groups_form.php:79 -#: ../../godmode/modules/manage_network_components_form.php:262 -#: ../../godmode/modules/manage_network_templates_form.php:154 -#: ../../godmode/reporting/visual_console_builder.data.php:131 -#: ../../godmode/reporting/visual_console_builder.elements.php:503 -#: ../../godmode/reporting/graph_builder.main.php:161 -#: ../../godmode/reporting/reporting_builder.main.php:38 -#: ../../godmode/tag/edit_tag.php:219 -msgid "Update" -msgstr "Обновить" - -#: ../../enterprise/dashboard/widget.php:283 -msgid "Configure widget" -msgstr "Настройка виджета" - -#: ../../enterprise/dashboard/widget.php:288 -msgid "Delete widget" -msgstr "Удалить виджет" - -#: ../../enterprise/dashboard/widget.php:298 -msgid "Config widget" -msgstr "" - -#: ../../enterprise/dashboard/widget.php:308 -msgid "Please configure this widget before usage" -msgstr "" - -#: ../../enterprise/dashboard/widget.php:311 -msgid "Widget cannot be loaded" -msgstr "Виджет не может быть загружен" - -#: ../../enterprise/dashboard/widget.php:312 -msgid "Please, configure the widget again to recover it" -msgstr "Пожалуйста, настройте виджет снова для его восстановления" - -#: ../../enterprise/dashboard/dashboard_replicate.php:32 -msgid "Dashboard replicate" -msgstr "Информационная панель копирования" - -#: ../../enterprise/dashboard/dashboard_replicate.php:42 -msgid "Not copyed. Error copying data. You must select a dashboard" -msgstr "" -"Не копируется. Ошибка при копировании данных. Вы должны выбрать " -"информационную панель" - -#: ../../enterprise/dashboard/dashboard_replicate.php:72 -#: ../../enterprise/dashboard/dashboard_replicate.php:95 -msgid "Not copyed. Error copying data" -msgstr "Не копируется. Ошибка при копировании данных." - -#: ../../enterprise/dashboard/dashboard_replicate.php:104 -msgid "Successfully copyed" -msgstr "Успешно копировано" - -#: ../../enterprise/dashboard/dashboard_replicate.php:121 -msgid "Source user's group" -msgstr "Источник группы пользователя" - -#: ../../enterprise/dashboard/dashboard_replicate.php:144 -#: ../../enterprise/dashboard/dashboard_replicate.php:154 -#: ../../operation/agentes/status_monitor.php:445 -#: ../../operation/incidents/incident.php:233 -msgid "Show" -msgstr "Показать" - -#: ../../enterprise/dashboard/dashboard_replicate.php:148 -msgid "Destination user's group" -msgstr "Назначение группы пользователя" - -#: ../../enterprise/dashboard/dashboard_replicate.php:162 -msgid "Group Dashboards" -msgstr "Группа информационных панелей" - -#: ../../enterprise/dashboard/dashboard_replicate.php:173 -#: ../../enterprise/dashboard/widgets/top_n.php:401 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:148 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:258 -#: ../../enterprise/meta/advanced/metasetup.setup.php:242 -#: ../../enterprise/meta/advanced/metasetup.setup.php:248 -#: ../../enterprise/meta/advanced/metasetup.setup.php:257 -#: ../../enterprise/meta/advanced/metasetup.setup.php:263 -#: ../../enterprise/meta/event/custom_events.php:211 -#: ../../enterprise/meta/event/custom_events.php:222 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:100 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:232 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:322 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:383 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:491 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:564 -#: ../../enterprise/extensions/ipam/ipam_network.php:635 -#: ../../enterprise/include/functions_networkmap_enterprise.php:242 -#: ../../enterprise/include/functions_networkmap_enterprise.php:604 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1599 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1602 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1680 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1685 -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:290 -#: ../../enterprise/operation/agentes/ver_agente.php:36 -#: ../../enterprise/godmode/alerts/alert_events_list.php:595 -#: ../../enterprise/godmode/alerts/alert_events.php:468 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:368 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:499 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:595 -#: ../../enterprise/godmode/servers/manage_export_form.php:73 -#: ../../enterprise/godmode/setup/setup.php:341 -#: ../../enterprise/godmode/setup/setup.php:347 -#: ../../enterprise/godmode/setup/setup.php:355 -#: ../../enterprise/godmode/setup/setup.php:361 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:97 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:116 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:128 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:306 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:384 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:459 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:460 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:461 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:462 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:511 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:90 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:135 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:89 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:133 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:98 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:117 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:27 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:174 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 -#: ../../enterprise/godmode/modules/configure_local_component.php:346 -#: ../../enterprise/godmode/modules/configure_local_component.php:486 -#: ../../enterprise/godmode/modules/configure_local_component.php:492 -#: ../../enterprise/godmode/modules/configure_local_component.php:500 -#: ../../enterprise/godmode/modules/configure_local_component.php:506 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:252 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:697 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:718 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:733 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:743 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:753 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:781 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:654 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:718 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:733 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:743 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:59 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:336 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:353 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:369 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:409 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:467 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:500 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:509 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:528 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:54 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:307 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:326 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:424 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:469 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:496 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:78 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:185 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:217 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:223 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:235 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:245 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:138 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:344 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:363 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:374 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:389 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:421 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1635 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1712 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:74 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:212 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:264 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:272 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:282 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:304 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:322 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:406 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:426 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:448 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:466 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:485 -#: ../../enterprise/godmode/policies/policy_agents.php:217 -#: ../../enterprise/godmode/policies/policy_agents.php:602 -#: ../../enterprise/godmode/policies/policy_alerts.php:459 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:273 -#: ../../mobile/operation/events.php:582 ../../include/functions_html.php:315 -#: ../../include/functions_html.php:478 ../../include/functions.php:881 -#: ../../include/functions_visual_map_editor.php:248 -#: ../../include/functions_visual_map_editor.php:320 -#: ../../include/functions_visual_map_editor.php:495 -#: ../../include/functions_events.php:1695 -#: ../../include/functions_events.php:1702 -#: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../operation/integria_incidents/incident.incident.php:24 -#: ../../operation/integria_incidents/incident.list.php:42 -#: ../../operation/integria_incidents/incident.list.php:133 -#: ../../operation/integria_incidents/incident.list.php:134 -#: ../../operation/events/events_list.php:271 -#: ../../operation/events/events_list.php:845 -#: ../../operation/users/user_edit.php:338 -#: ../../operation/snmpconsole/snmp_view.php:413 -#: ../../operation/snmpconsole/snmp_view.php:708 -#: ../../operation/snmpconsole/snmp_view.php:712 -#: ../../operation/agentes/ver_agente.php:665 -#: ../../operation/agentes/ver_agente.php:708 -#: ../../operation/agentes/ver_agente.php:718 -#: ../../operation/netflow/nf_live_view.php:381 -#: ../../godmode/events/custom_events.php:213 -#: ../../godmode/events/custom_events.php:224 -#: ../../godmode/events/event_edit_filter.php:405 -#: ../../godmode/users/configure_user.php:507 -#: ../../godmode/users/configure_user.php:675 -#: ../../godmode/users/configure_user.php:679 -#: ../../godmode/users/configure_user.php:684 -#: ../../godmode/snmpconsole/snmp_alert.php:27 -#: ../../godmode/snmpconsole/snmp_alert.php:902 -#: ../../godmode/gis_maps/configure_gis_map.php:404 -#: ../../godmode/alerts/configure_alert_template.php:577 -#: ../../godmode/alerts/alert_list.list.php:588 -#: ../../godmode/alerts/configure_alert_action.php:131 -#: ../../godmode/alerts/alert_list.builder.php:134 -#: ../../godmode/agentes/agent_manager.php:275 -#: ../../godmode/agentes/agent_manager.php:371 -#: ../../godmode/agentes/module_manager_editor_plugin.php:49 -#: ../../godmode/agentes/module_manager_editor_common.php:382 -#: ../../godmode/agentes/module_manager_editor_common.php:554 -#: ../../godmode/agentes/module_manager_editor_common.php:708 -#: ../../godmode/agentes/module_manager_editor_common.php:714 -#: ../../godmode/agentes/module_manager_editor_common.php:723 -#: ../../godmode/agentes/module_manager_editor_common.php:729 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:325 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:400 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:685 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:760 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:921 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:937 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:953 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:969 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:985 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1000 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1006 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:247 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:287 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:417 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:433 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:449 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:465 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:480 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:486 -#: ../../godmode/servers/manage_recontask_form.php:265 -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../godmode/groups/configure_group.php:182 -#: ../../godmode/setup/os.builder.php:40 -#: ../../godmode/setup/setup_general.php:134 -#: ../../godmode/setup/setup_visuals.php:204 -#: ../../godmode/massive/massive_delete_alerts.php:242 -#: ../../godmode/massive/massive_delete_modules.php:478 -#: ../../godmode/massive/massive_delete_modules.php:552 -#: ../../godmode/massive/massive_delete_modules.php:593 -#: ../../godmode/massive/massive_delete_modules.php:594 -#: ../../godmode/massive/massive_delete_modules.php:595 -#: ../../godmode/massive/massive_delete_modules.php:596 -#: ../../godmode/massive/massive_delete_modules.php:662 -#: ../../godmode/massive/massive_add_alerts.php:193 -#: ../../godmode/massive/massive_edit_plugins.php:284 -#: ../../godmode/massive/massive_add_tags.php:169 -#: ../../godmode/massive/massive_edit_agents.php:297 -#: ../../godmode/massive/massive_delete_tags.php:226 -#: ../../godmode/massive/massive_delete_tags.php:253 -#: ../../godmode/massive/massive_delete_tags.php:289 -#: ../../godmode/massive/massive_add_action_alerts.php:258 -#: ../../godmode/massive/massive_edit_modules.php:305 -#: ../../godmode/massive/massive_edit_modules.php:505 -#: ../../godmode/massive/massive_edit_modules.php:533 -#: ../../godmode/massive/massive_edit_modules.php:594 -#: ../../godmode/massive/massive_edit_modules.php:652 -#: ../../godmode/massive/massive_edit_modules.php:731 -#: ../../godmode/massive/massive_edit_modules.php:732 -#: ../../godmode/massive/massive_edit_modules.php:733 -#: ../../godmode/massive/massive_edit_modules.php:734 -#: ../../godmode/massive/massive_edit_modules.php:911 -#: ../../godmode/modules/manage_network_components_form_plugin.php:24 -#: ../../godmode/modules/manage_nc_groups_form.php:71 -#: ../../godmode/modules/manage_network_components_form_common.php:175 -#: ../../godmode/modules/manage_network_components_form.php:443 -#: ../../godmode/modules/manage_network_components_form.php:449 -#: ../../godmode/modules/manage_network_components_form.php:458 -#: ../../godmode/modules/manage_network_components_form.php:464 -#: ../../godmode/reporting/graph_builder.graph_editor.php:133 -#: ../../godmode/reporting/graph_builder.graph_editor.php:177 -#: ../../godmode/reporting/graph_builder.graph_editor.php:197 -#: ../../godmode/reporting/visual_console_builder.elements.php:288 -#: ../../godmode/reporting/visual_console_builder.wizard.php:156 -#: ../../godmode/reporting/visual_console_builder.wizard.php:253 -#: ../../godmode/reporting/visual_console_builder.wizard.php:261 -#: ../../godmode/reporting/visual_console_builder.wizard.php:283 -#: ../../godmode/reporting/visual_console_builder.wizard.php:292 -#: ../../godmode/reporting/visual_console_builder.wizard.php:331 -#: ../../godmode/reporting/visual_console_builder.wizard.php:528 -#: ../../godmode/reporting/visual_console_builder.wizard.php:538 -#: ../../godmode/reporting/visual_console_builder.wizard.php:570 -#: ../../godmode/reporting/reporting_builder.item_editor.php:955 -#: ../../godmode/reporting/reporting_builder.item_editor.php:996 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1006 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1031 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1290 -msgid "None" -msgstr "Нет" - -#: ../../enterprise/dashboard/dashboard_replicate.php:187 -msgid "Replicate Dashboard" -msgstr "Репликация информационной панели" - -#: ../../enterprise/dashboard/dashboard_replicate.php:187 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:208 -#: ../../enterprise/meta/advanced/policymanager.queue.php:330 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:101 -#: ../../enterprise/extensions/backup/main.php:177 -#: ../../enterprise/include/functions_services.php:1660 -#: ../../enterprise/operation/services/services.list.php:459 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:372 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:260 -#: ../../enterprise/godmode/alerts/alert_events_list.php:643 -#: ../../enterprise/godmode/alerts/alert_events_list.php:756 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:479 -#: ../../enterprise/godmode/agentes/inventory_manager.php:261 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:210 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:205 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:161 -#: ../../enterprise/godmode/setup/setup_skins.php:136 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:574 -#: ../../enterprise/godmode/modules/local_components.php:518 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:223 -#: ../../enterprise/godmode/reporting/graph_template_list.php:146 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:757 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:352 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:360 -#: ../../enterprise/godmode/reporting/mysql_builder.php:49 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:175 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:393 -#: ../../enterprise/godmode/policies/policies.php:376 -#: ../../enterprise/godmode/policies/policies.php:386 -#: ../../enterprise/godmode/policies/policies.php:404 -#: ../../enterprise/godmode/policies/policy_queue.php:440 -#: ../../enterprise/godmode/policies/policy_queue.php:476 -#: ../../enterprise/godmode/policies/policy_queue.php:492 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:269 -#: ../../enterprise/godmode/policies/policy_agents.php:220 -#: ../../enterprise/godmode/policies/policy_agents.php:301 -#: ../../enterprise/godmode/policies/policy_agents.php:441 -#: ../../enterprise/godmode/policies/policy_agents.php:494 -#: ../../enterprise/godmode/policies/policy_modules.php:1067 -#: ../../enterprise/godmode/policies/policy_modules.php:1074 -#: ../../enterprise/godmode/policies/policy_modules.php:1103 -#: ../../enterprise/godmode/policies/policy_alerts.php:411 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:246 -#: ../../extensions/files_repo/files_repo_list.php:105 -#: ../../include/functions_filemanager.php:730 -#: ../../include/functions_groups.php:2143 -#: ../../include/functions_events.php:1758 -#: ../../operation/events/events.build_table.php:666 -#: ../../operation/events/events.php:754 -#: ../../operation/users/user_edit.php:675 -#: ../../operation/messages/message_list.php:193 -#: ../../operation/messages/message_list.php:199 -#: ../../operation/snmpconsole/snmp_view.php:648 -#: ../../operation/snmpconsole/snmp_view.php:654 -#: ../../operation/snmpconsole/snmp_view.php:805 -#: ../../operation/agentes/networkmap_list.php:229 -#: ../../operation/incidents/incident_detail.php:425 -#: ../../operation/incidents/incident_detail.php:472 -#: ../../godmode/events/event_filter.php:142 -#: ../../godmode/users/configure_user.php:660 -#: ../../godmode/users/user_list.php:471 ../../godmode/users/user_list.php:473 -#: ../../godmode/users/profile_list.php:390 -#: ../../godmode/category/category.php:126 -#: ../../godmode/category/category.php:131 -#: ../../godmode/snmpconsole/snmp_alert.php:1094 -#: ../../godmode/snmpconsole/snmp_alert.php:1123 -#: ../../godmode/snmpconsole/snmp_alert.php:1335 -#: ../../godmode/snmpconsole/snmp_filters.php:143 -#: ../../godmode/alerts/alert_commands.php:354 -#: ../../godmode/alerts/alert_special_days.php:220 -#: ../../godmode/alerts/alert_templates.php:341 -#: ../../godmode/alerts/alert_list.list.php:803 -#: ../../godmode/alerts/alert_actions.php:385 -#: ../../godmode/alerts/alert_actions.php:388 -#: ../../godmode/agentes/agent_manager.php:198 -#: ../../godmode/agentes/modificar_agente.php:561 -#: ../../godmode/agentes/module_manager_editor_common.php:140 -#: ../../godmode/agentes/planned_downtime.editor.php:816 -#: ../../godmode/agentes/module_manager.php:700 -#: ../../godmode/agentes/module_manager.php:708 -#: ../../godmode/agentes/module_manager.php:723 -#: ../../godmode/agentes/module_manager.php:738 -#: ../../godmode/agentes/module_manager.php:749 -#: ../../godmode/agentes/agent_template.php:246 -#: ../../godmode/agentes/fields_manager.php:127 -#: ../../godmode/servers/plugin.php:732 -#: ../../godmode/netflow/nf_item_list.php:237 -#: ../../godmode/netflow/nf_edit.php:143 -#: ../../godmode/groups/modu_group_list.php:195 -#: ../../godmode/db/db_refine.php:119 ../../godmode/db/db_event.php:92 -#: ../../godmode/db/db_audit.php:107 ../../godmode/setup/news.php:267 -#: ../../godmode/setup/links.php:150 -#: ../../godmode/massive/massive_delete_agents.php:134 -#: ../../godmode/massive/massive_standby_alerts.php:167 -#: ../../godmode/massive/massive_delete_modules.php:499 -#: ../../godmode/massive/massive_add_alerts.php:183 -#: ../../godmode/massive/massive_delete_profiles.php:129 -#: ../../godmode/massive/massive_edit_plugins.php:533 -#: ../../godmode/massive/massive_add_tags.php:158 -#: ../../godmode/massive/massive_delete_tags.php:215 -#: ../../godmode/massive/massive_add_profiles.php:115 -#: ../../godmode/massive/massive_add_action_alerts.php:179 -#: ../../godmode/massive/massive_operations.php:239 -#: ../../godmode/massive/massive_operations.php:248 -#: ../../godmode/massive/massive_delete_action_alerts.php:185 -#: ../../godmode/massive/massive_enable_disable_alerts.php:167 -#: ../../godmode/modules/manage_nc_groups.php:219 -#: ../../godmode/modules/manage_network_components.php:591 -#: ../../godmode/modules/manage_network_templates.php:200 -#: ../../godmode/modules/manage_network_templates.php:205 -#: ../../godmode/reporting/visual_console_builder.elements.php:318 -#: ../../godmode/reporting/graphs.php:176 -#: ../../godmode/reporting/reporting_builder.php:701 -#: ../../godmode/tag/tag.php:273 -msgid "Are you sure?" -msgstr "Вы уверены?" - -#: ../../enterprise/dashboard/widgets/network_map.php:25 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:762 -#: ../../enterprise/operation/policies/networkmap.policies.php:128 -#: ../../operation/menu.php:115 -#: ../../operation/agentes/networkmap.topology.php:155 -#: ../../operation/agentes/networkmap_list.php:80 -#: ../../operation/agentes/networkmap.php:410 -#: ../../operation/agentes/networkmap.groups.php:147 -msgid "Network map" -msgstr "Карта сети" - -#: ../../enterprise/dashboard/widgets/network_map.php:29 -msgid "Show a map of the monitored network" -msgstr "Показать карту контролируемой сети" - -#: ../../enterprise/dashboard/widgets/network_map.php:35 -#: ../../enterprise/extensions/vmware/vmware_view.php:1064 -#: ../../enterprise/extensions/vmware/vmware_view.php:1085 -#: ../../operation/gis_maps/render_view.php:145 -msgid "Map" -msgstr "Карта" - -#: ../../enterprise/dashboard/widgets/network_map.php:37 -msgid "No overlap" -msgstr "Нет перекрытия" - -#: ../../enterprise/dashboard/widgets/network_map.php:40 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:582 -#: ../../enterprise/operation/services/services.list.php:168 -#: ../../enterprise/godmode/services/services.service.php:250 -#: ../../operation/agentes/networkmap.php:509 -msgid "Simple" -msgstr "Простой" - -#: ../../enterprise/dashboard/widgets/network_map.php:43 -#: ../../include/functions_config.php:442 -#: ../../godmode/setup/setup_visuals.php:232 -msgid "Font size" -msgstr "Кегль" - -#: ../../enterprise/dashboard/widgets/network_map.php:45 -msgid "8" -msgstr "8" - -#: ../../enterprise/dashboard/widgets/network_map.php:46 -msgid "9" -msgstr "9" - -#: ../../enterprise/dashboard/widgets/network_map.php:47 -msgid "10" -msgstr "10" - -#: ../../enterprise/dashboard/widgets/network_map.php:48 -msgid "11" -msgstr "11" - -#: ../../enterprise/dashboard/widgets/network_map.php:49 -msgid "12" -msgstr "12" - -#: ../../enterprise/dashboard/widgets/url.php:23 -msgid "Show the URL content" -msgstr "Показать содержание URL" - -#: ../../enterprise/dashboard/widgets/url.php:25 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1484 -#: ../../extensions/api_checker.php:192 ../../operation/gis_maps/ajax.php:293 -#: ../../godmode/events/event_responses.editor.php:114 -#: ../../godmode/events/event_responses.editor.php:121 -#: ../../godmode/events/event_responses.editor.php:124 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1093 -msgid "URL" -msgstr "Ссылка (URL)" - -#: ../../enterprise/dashboard/widgets/url.php:26 -msgid "My URL" -msgstr "Мой URL" - -#: ../../enterprise/dashboard/widgets/url.php:48 -#: ../../enterprise/dashboard/widgets/post.php:36 -#: ../../enterprise/dashboard/widgets/tactical.php:62 -#: ../../enterprise/dashboard/widgets/tactical.php:70 -msgid "Please, configure this widget before use" -msgstr "Пожалуйста, настроить этот виджет перед использованием" - -#: ../../enterprise/dashboard/widgets/url.php:66 -msgid "Invalid URL" -msgstr "Неверный адрес (URL)" - -#: ../../enterprise/dashboard/widgets/groups_status.php:24 -msgid "Groups status" -msgstr "Статус групп" - -#: ../../enterprise/dashboard/widgets/groups_status.php:26 -msgid "General and quick group status report" -msgstr "Общие и быстрый отчет статуса группы" - -#: ../../enterprise/dashboard/widgets/groups_status.php:28 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:35 -#: ../../enterprise/dashboard/widgets/events_list.php:57 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:35 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:300 -#: ../../mobile/include/functions_web.php:26 -#: ../../mobile/operation/groups.php:64 ../../mobile/operation/home.php:48 -#: ../../extensions/files_repo/files_repo_form.php:65 -#: ../../include/ajax/networkmap.ajax.php:57 -#: ../../operation/agentes/networkmap.php:476 ../../operation/tree.php:61 -#: ../../godmode/reporting/visual_console_builder.wizard.php:217 -msgid "Groups" -msgstr "Группы" - -#: ../../enterprise/dashboard/widgets/post.php:23 -msgid "Panel with a message" -msgstr "Панель с сообщением" - -#: ../../enterprise/dashboard/widgets/post.php:25 -#: ../../enterprise/include/functions_netflow_pdf.php:208 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1457 -#: ../../include/functions_reports.php:595 -#: ../../include/functions_reporting.php:3643 ../../godmode/setup/news.php:181 -#: ../../godmode/setup/setup_visuals.php:567 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1051 -msgid "Text" -msgstr "Текст" - -#: ../../enterprise/dashboard/widgets/post.php:26 -msgid "My Post" -msgstr "Мой пост" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:26 -msgid "Top N Events by agent." -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:28 -msgid "Top N events by agent." -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:31 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:31 -msgid "Amount to show" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:33 -#: ../../enterprise/dashboard/widgets/events_list.php:38 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:33 -#: ../../mobile/operation/events.php:642 -#: ../../operation/events/events_list.php:558 -#: ../../godmode/events/event_edit_filter.php:268 -#: ../../godmode/admin_access_logs.php:67 -#: ../../godmode/admin_access_logs.php:68 -msgid "Max. hours old" -msgstr "Максимальный возраст (в часах)" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:39 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:39 -msgid "Legend Position" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:42 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:42 -#: ../../godmode/setup/gis_step_2.php:244 -msgid "Bottom" -msgstr "Внизу" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:43 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:43 -msgid "No legend" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:63 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:64 -msgid "Please select one or more groups." -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:124 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:129 -msgid "There is not data to show." -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:130 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:135 -#: ../../enterprise/meta/advanced/metasetup.setup.php:102 -#: ../../enterprise/include/functions_reporting_pdf.php:1382 -#: ../../enterprise/include/functions_reporting_pdf.php:1520 -#: ../../mobile/operation/events.php:110 -#: ../../include/functions_graph.php:1886 -#: ../../include/functions_graph.php:2530 -#: ../../include/functions_graph.php:2942 -#: ../../include/functions_graph.php:2945 -#: ../../include/functions_reporting.php:4795 -#: ../../include/functions_reporting.php:5034 ../../include/functions.php:1014 -#: ../../include/functions_reporting_html.php:532 -#: ../../include/functions_reporting_html.php:1140 -#: ../../include/functions_events.php:973 -#: ../../include/functions_events.php:1425 -#: ../../operation/events/events_rss.php:178 -#: ../../operation/events/events.php:79 -#: ../../godmode/setup/setup_general.php:65 -msgid "System" -msgstr "Система" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:171 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:187 -#: ../../include/functions_graph.php:1751 -#: ../../include/functions_graph.php:1828 -#: ../../include/functions_graph.php:1899 -#: ../../include/functions_graph.php:2619 -#: ../../include/functions_graph.php:3062 -#: ../../include/functions_reporting.php:1077 -#: ../../include/functions_reporting.php:1233 -#: ../../include/functions_reporting.php:1257 -#: ../../include/functions_reporting.php:1282 -#: ../../include/functions_reporting.php:1308 -#: ../../include/functions_reporting.php:1961 -#: ../../include/functions_reporting.php:2140 -#: ../../include/functions_reporting.php:2164 -#: ../../include/functions_reporting.php:2188 -#: ../../include/functions_reporting_html.php:2094 -#: ../../include/functions_reporting_html.php:2172 -msgid "other" -msgstr "прочее" - -#: ../../enterprise/dashboard/widgets/tree_view.php:22 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1212 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1416 -msgid "Tree View" -msgstr "Просмотр в виде дерева" - -#: ../../enterprise/dashboard/widgets/tree_view.php:24 -msgid "Show the tree view" -msgstr "" - -#: ../../enterprise/dashboard/widgets/tree_view.php:38 -msgid "" -"The user doesn't have permission to read agents. Please contact with your " -"pandora administrator." -msgstr "" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:25 -msgid "Map made by user" -msgstr "Карта выполняется пользователем" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:27 -msgid "Show a map made by user" -msgstr "Показать карту, выполненную пользователем" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:32 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:560 -#: ../../operation/agentes/networkmap.php:467 -msgid "Layout" -msgstr "Расположение" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:63 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:149 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:152 -#: ../../mobile/operation/agent.php:241 -#: ../../mobile/operation/module_graph.php:469 -#: ../../mobile/operation/modules.php:596 -#: ../../mobile/operation/tactical.php:168 -#: ../../mobile/operation/visualmap.php:118 -#: ../../mobile/operation/events.php:787 ../../mobile/operation/agents.php:344 -#: ../../godmode/reporting/visual_console_builder.wizard.php:334 -msgid "Loading..." -msgstr "Идёт загрузка..." - -#: ../../enterprise/dashboard/widgets/single_graph.php:29 -msgid "Single graph" -msgstr "Один график" - -#: ../../enterprise/dashboard/widgets/single_graph.php:31 -msgid "Show a graph of an agent module" -msgstr "показать график агента модуля" - -#: ../../enterprise/dashboard/widgets/single_graph.php:46 -#: ../../enterprise/dashboard/widgets/top_n.php:129 -#: ../../enterprise/meta/agentsearch.php:92 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3237 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:245 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:333 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:404 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:512 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:593 -#: ../../enterprise/extensions/ipam/ipam_network.php:537 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:172 -#: ../../enterprise/include/functions_alert_event.php:923 -#: ../../enterprise/include/functions_inventory.php:233 -#: ../../enterprise/include/functions_inventory.php:505 -#: ../../enterprise/include/functions_inventory.php:561 -#: ../../enterprise/include/functions_reporting.php:1203 -#: ../../enterprise/include/functions_reporting.php:2237 -#: ../../enterprise/include/functions_reporting_csv.php:166 -#: ../../enterprise/include/functions_reporting_csv.php:184 -#: ../../enterprise/include/functions_reporting_csv.php:233 -#: ../../enterprise/include/functions_reporting_csv.php:255 -#: ../../enterprise/include/functions_reporting_csv.php:312 -#: ../../enterprise/include/functions_reporting_csv.php:338 -#: ../../enterprise/include/functions_reporting_csv.php:361 -#: ../../enterprise/include/functions_reporting_csv.php:384 -#: ../../enterprise/include/functions_reporting_csv.php:407 -#: ../../enterprise/include/functions_reporting_csv.php:458 -#: ../../enterprise/include/functions_reporting_csv.php:481 -#: ../../enterprise/include/functions_reporting_csv.php:504 -#: ../../enterprise/include/functions_reporting_csv.php:527 -#: ../../enterprise/include/functions_reporting_csv.php:550 -#: ../../enterprise/include/functions_reporting_csv.php:572 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/include/functions_services.php:1442 -#: ../../enterprise/include/functions_reporting_pdf.php:743 -#: ../../enterprise/include/functions_reporting_pdf.php:801 -#: ../../enterprise/include/functions_reporting_pdf.php:829 -#: ../../enterprise/include/functions_reporting_pdf.php:895 -#: ../../enterprise/include/functions_reporting_pdf.php:1077 -#: ../../enterprise/include/functions_reporting_pdf.php:1323 -#: ../../enterprise/include/functions_reporting_pdf.php:1597 -#: ../../enterprise/include/functions_reporting_pdf.php:1746 -#: ../../enterprise/include/functions_reporting_pdf.php:1880 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1648 -#: ../../enterprise/include/functions_log.php:318 -#: ../../enterprise/operation/log/log_viewer.php:188 -#: ../../enterprise/operation/inventory/inventory.php:204 -#: ../../enterprise/godmode/services/services.elements.php:317 -#: ../../enterprise/godmode/services/services.elements.php:326 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:213 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:84 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:231 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1395 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1828 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1978 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1985 -#: ../../enterprise/godmode/policies/policy_linking.php:120 -#: ../../mobile/operation/modules.php:427 ../../mobile/operation/home.php:86 -#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:505 -#: ../../mobile/operation/agents.php:69 ../../mobile/operation/agents.php:273 -#: ../../extensions/module_groups.php:41 -#: ../../extensions/agents_alerts.php:343 ../../extensions/insert_data.php:147 -#: ../../include/functions_graph.php:4862 -#: ../../include/functions_reporting.php:4733 -#: ../../include/functions_visual_map_editor.php:257 -#: ../../include/functions_reporting_html.php:320 -#: ../../include/functions_reporting_html.php:405 -#: ../../include/functions_reporting_html.php:484 -#: ../../include/functions_reporting_html.php:936 -#: ../../include/functions_reporting_html.php:1318 -#: ../../include/functions_reporting_html.php:1649 -#: ../../include/functions_reporting_html.php:1759 -#: ../../include/functions_reporting_html.php:1797 -#: ../../include/functions_reporting_html.php:2040 -#: ../../include/functions_reporting_html.php:2194 -#: ../../include/functions_reporting_html.php:2405 -#: ../../operation/search_modules.php:42 ../../operation/search_agents.php:44 -#: ../../operation/search_agents.php:50 ../../operation/gis_maps/ajax.php:216 -#: ../../operation/gis_maps/ajax.php:247 -#: ../../operation/agentes/exportdata.php:96 -#: ../../operation/agentes/estado_monitores.php:95 -#: ../../operation/agentes/ver_agente.php:670 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/estado_agente.php:446 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/alerts_status.php:419 -#: ../../operation/agentes/alerts_status.php:492 -#: ../../operation/agentes/status_monitor.php:918 -#: ../../operation/incidents/incident_detail.php:349 -#: ../../operation/search_alerts.php:39 -#: ../../godmode/gis_maps/configure_gis_map.php:410 -#: ../../godmode/alerts/alert_list.list.php:372 -#: ../../godmode/alerts/alert_list.list.php:568 -#: ../../godmode/alerts/alert_view.php:66 -#: ../../godmode/alerts/alert_list.builder.php:59 -#: ../../godmode/agentes/module_manager_editor_common.php:607 -#: ../../godmode/agentes/module_manager_editor_common.php:635 -#: ../../godmode/agentes/module_manager_editor_prediction.php:115 -#: ../../godmode/agentes/planned_downtime.list.php:169 -#: ../../godmode/servers/plugin.php:66 -#: ../../godmode/massive/massive_standby_alerts.php:154 -#: ../../godmode/massive/massive_standby_alerts.php:171 -#: ../../godmode/massive/massive_copy_modules.php:86 -#: ../../godmode/massive/massive_copy_modules.php:200 -#: ../../godmode/massive/massive_enable_disable_alerts.php:154 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -#: ../../godmode/reporting/reporting_builder.list_items.php:290 -#: ../../godmode/reporting/graph_builder.graph_editor.php:81 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../godmode/reporting/visual_console_builder.wizard.php:534 -#: ../../godmode/reporting/visual_console_builder.wizard.php:557 -#: ../../godmode/reporting/reporting_builder.item_editor.php:836 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1353 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1551 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1558 -msgid "Agent" -msgstr "Агент" - -#: ../../enterprise/dashboard/widgets/single_graph.php:57 -#: ../../enterprise/dashboard/widgets/single_graph.php:63 -#: ../../enterprise/dashboard/widgets/top_n.php:130 -#: ../../enterprise/dashboard/widgets/top_n.php:313 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3244 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/extensions/check_acls.php:121 -#: ../../enterprise/include/functions_alert_event.php:924 -#: ../../enterprise/include/functions_inventory.php:506 -#: ../../enterprise/include/functions_inventory.php:562 -#: ../../enterprise/include/functions_reporting.php:1203 -#: ../../enterprise/include/functions_reporting.php:2238 -#: ../../enterprise/include/functions_reporting_csv.php:166 -#: ../../enterprise/include/functions_reporting_csv.php:185 -#: ../../enterprise/include/functions_reporting_csv.php:233 -#: ../../enterprise/include/functions_reporting_csv.php:255 -#: ../../enterprise/include/functions_reporting_csv.php:312 -#: ../../enterprise/include/functions_reporting_csv.php:338 -#: ../../enterprise/include/functions_reporting_csv.php:361 -#: ../../enterprise/include/functions_reporting_csv.php:384 -#: ../../enterprise/include/functions_reporting_csv.php:407 -#: ../../enterprise/include/functions_reporting_csv.php:458 -#: ../../enterprise/include/functions_reporting_csv.php:481 -#: ../../enterprise/include/functions_reporting_csv.php:504 -#: ../../enterprise/include/functions_reporting_csv.php:527 -#: ../../enterprise/include/functions_reporting_csv.php:550 -#: ../../enterprise/include/functions_reporting_csv.php:572 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/include/functions_services.php:1492 -#: ../../enterprise/include/functions_reporting_pdf.php:744 -#: ../../enterprise/include/functions_reporting_pdf.php:802 -#: ../../enterprise/include/functions_reporting_pdf.php:896 -#: ../../enterprise/include/functions_reporting_pdf.php:1034 -#: ../../enterprise/include/functions_reporting_pdf.php:1078 -#: ../../enterprise/include/functions_reporting_pdf.php:1598 -#: ../../enterprise/include/functions_reporting_pdf.php:1746 -#: ../../enterprise/include/functions_reporting_pdf.php:1885 -#: ../../enterprise/operation/agentes/agent_inventory.php:64 -#: ../../enterprise/operation/agentes/policy_view.php:194 -#: ../../enterprise/operation/inventory/inventory.php:167 -#: ../../enterprise/godmode/services/services.elements.php:316 -#: ../../enterprise/godmode/services/services.elements.php:342 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:408 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:20 -#: ../../enterprise/godmode/agentes/inventory_manager.php:149 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:241 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:145 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1407 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1829 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1979 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1986 -#: ../../enterprise/godmode/policies/policy_linking.php:121 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 -#: ../../enterprise/godmode/policies/policy_alerts.php:240 -#: ../../enterprise/godmode/policies/policy_alerts.php:447 -#: ../../mobile/operation/alerts.php:268 ../../extensions/module_groups.php:43 -#: ../../extensions/agents_alerts.php:278 ../../extensions/insert_data.php:158 -#: ../../include/functions_graph.php:4978 -#: ../../include/functions_treeview.php:66 -#: ../../include/functions_visual_map_editor.php:290 -#: ../../include/functions_reporting_html.php:321 -#: ../../include/functions_reporting_html.php:406 -#: ../../include/functions_reporting_html.php:937 -#: ../../include/functions_reporting_html.php:1319 -#: ../../include/functions_reporting_html.php:1357 -#: ../../include/functions_reporting_html.php:1656 -#: ../../include/functions_reporting_html.php:1760 -#: ../../operation/search_modules.php:35 -#: ../../operation/agentes/exportdata.php:97 -#: ../../operation/agentes/estado_monitores.php:97 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/alerts_status.php:420 -#: ../../operation/agentes/alerts_status.php:460 -#: ../../operation/agentes/alerts_status.php:493 -#: ../../operation/agentes/alerts_status.php:526 -#: ../../operation/search_alerts.php:42 -#: ../../godmode/alerts/alert_list.list.php:397 -#: ../../godmode/alerts/alert_list.list.php:577 -#: ../../godmode/alerts/alert_view.php:71 -#: ../../godmode/alerts/alert_list.builder.php:71 -#: ../../godmode/agentes/module_manager_editor_common.php:617 -#: ../../godmode/agentes/module_manager_editor_common.php:636 -#: ../../godmode/agentes/module_manager_editor_prediction.php:140 -#: ../../godmode/agentes/planned_downtime.editor.php:807 -#: ../../godmode/agentes/planned_downtime.list.php:173 -#: ../../godmode/servers/plugin.php:67 -#: ../../godmode/massive/massive_standby_alerts.php:154 -#: ../../godmode/massive/massive_standby_alerts.php:171 -#: ../../godmode/massive/massive_enable_disable_alerts.php:154 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -#: ../../godmode/reporting/reporting_builder.list_items.php:295 -#: ../../godmode/reporting/graph_builder.graph_editor.php:82 -#: ../../godmode/reporting/visual_console_builder.elements.php:78 -#: ../../godmode/reporting/visual_console_builder.wizard.php:259 -#: ../../godmode/reporting/visual_console_builder.wizard.php:566 -#: ../../godmode/reporting/reporting_builder.item_editor.php:890 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1354 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1552 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1559 -msgid "Module" -msgstr "Модули" - -#: ../../enterprise/dashboard/widgets/single_graph.php:80 -#: ../../enterprise/dashboard/widgets/custom_graph.php:33 -#: ../../enterprise/dashboard/widgets/top_n.php:62 -#: ../../enterprise/include/functions_reporting_csv.php:120 -#: ../../enterprise/include/functions_reporting_csv.php:209 -#: ../../enterprise/include/functions_reporting_csv.php:232 -#: ../../enterprise/include/functions_reporting_csv.php:254 -#: ../../enterprise/include/functions_reporting_csv.php:311 -#: ../../enterprise/include/functions_reporting_csv.php:338 -#: ../../enterprise/include/functions_reporting_csv.php:361 -#: ../../enterprise/include/functions_reporting_csv.php:384 -#: ../../enterprise/include/functions_reporting_csv.php:407 -#: ../../enterprise/include/functions_reporting_csv.php:458 -#: ../../enterprise/include/functions_reporting_csv.php:481 -#: ../../enterprise/include/functions_reporting_csv.php:504 -#: ../../enterprise/include/functions_reporting_csv.php:527 -#: ../../enterprise/include/functions_reporting_csv.php:550 -#: ../../enterprise/include/functions_reporting_csv.php:594 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:251 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:97 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:80 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1174 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1204 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:105 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:198 -#: ../../include/functions_visual_map_editor.php:405 -#: ../../godmode/agentes/module_manager_editor_prediction.php:155 -#: ../../godmode/reporting/reporting_builder.list_items.php:301 -#: ../../godmode/reporting/visual_console_builder.elements.php:80 -#: ../../godmode/reporting/graph_builder.main.php:135 -#: ../../godmode/reporting/visual_console_builder.wizard.php:142 -#: ../../godmode/reporting/reporting_builder.item_editor.php:654 -#: ../../godmode/reporting/reporting_builder.item_editor.php:696 -msgid "Period" -msgstr "Период" - -#: ../../enterprise/dashboard/widgets/example.php:23 -msgid "Welcome message to Pandora FMS" -msgstr "Приветственное сообщение для Pandora FMS" - -#: ../../enterprise/dashboard/widgets/example.php:25 -#: ../../operation/users/webchat.php:86 -#: ../../operation/messages/message_edit.php:92 -#: ../../operation/messages/message_edit.php:210 -msgid "Message" -msgstr "Сообщение" - -#: ../../enterprise/dashboard/widgets/example.php:26 -msgid "Welcome" -msgstr "Добро пожаловать!" - -#: ../../enterprise/dashboard/widgets/example.php:37 -#: ../../general/login_help_dialog.php:39 -msgid "Welcome to Pandora FMS" -msgstr "Добро пожаловать в Pandora FMS" - -#: ../../enterprise/dashboard/widgets/example.php:40 -msgid "" -"This is an example of a dashboard widget. A widget may contain elements" -msgstr "" -"Это является примером панели виджета. Виджет может содержать элементы" - -#: ../../enterprise/dashboard/widgets/example.php:41 -msgid "" -"To add more elements, click on \"<em>Add widgets</em>\" on the top of this " -"page." -msgstr "" -"Чтобы добавить больше элементов, нажмите на \"<em>Add widgets</em>\" на " -"верхней части этой страницы." - -#: ../../enterprise/dashboard/widgets/example.php:42 -#: ../../enterprise/dashboard/widgets/example.php:44 -msgid "" -"To delete this message, click on the delete button on top right corner of " -"this element." -msgstr "" -"Чтобы удалить это сообщение, нажмите на кнопку Удалить в правом верхнем углу " -"этого элемента." - -#: ../../enterprise/dashboard/widgets/example.php:43 -msgid "" -"To do so, just click on the title and drag and drop it to the desired place." -msgstr "" -"Для этого просто нажмите на название и перетащить его в нужное место." - -#: ../../enterprise/dashboard/widgets/example.php:45 -msgid "Thanks for using Pandora FMS" -msgstr "Спасибо за использование Pandora FMS" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:23 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1431 -#: ../../include/functions_reports.php:429 -#: ../../include/functions_reports.php:505 -#: ../../include/functions_reports.php:507 -#: ../../include/functions_visual_map_editor.php:234 -#: ../../include/functions_visual_map_editor.php:244 -#: ../../godmode/reporting/reporting_builder.item_editor.php:989 -msgid "Custom graph" -msgstr "Пользовательский график" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:25 -msgid "Show a defined custom graph" -msgstr "Показать определенный график пользователя" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:30 -#: ../../enterprise/operation/services/services.service.php:134 -#: ../../enterprise/operation/services/services.list.php:321 -#: ../../extensions/realtime_graphs.php:72 -#: ../../include/functions_visual_map_editor.php:56 -#: ../../include/functions_events.php:2098 ../../include/ajax/module.php:715 -#: ../../operation/search_modules.php:52 -#: ../../operation/agentes/status_monitor.php:958 -msgid "Graph" -msgstr "График" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:36 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 -#: ../../operation/reporting/graph_viewer.php:205 -#: ../../godmode/setup/setup_visuals.php:376 -#: ../../godmode/reporting/graph_builder.main.php:145 -msgid "Area" -msgstr "Область" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:37 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:209 -#: ../../operation/reporting/graph_viewer.php:206 -#: ../../godmode/reporting/graph_builder.main.php:146 -msgid "Stacked area" -msgstr "Область накопления" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:38 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:210 -#: ../../include/functions_visual_map_editor.php:63 -#: ../../include/functions_visual_map_editor.php:579 -#: ../../operation/reporting/graph_viewer.php:207 -#: ../../godmode/setup/setup_visuals.php:379 -#: ../../godmode/reporting/visual_console_builder.elements.php:198 -#: ../../godmode/reporting/graph_builder.main.php:147 -msgid "Line" -msgstr "Строка" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:39 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:211 -#: ../../operation/reporting/graph_viewer.php:208 -#: ../../godmode/reporting/graph_builder.main.php:148 -msgid "Stacked line" -msgstr "График с накоплением" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:40 -#: ../../operation/reporting/graph_viewer.php:209 -#: ../../godmode/reporting/graph_builder.main.php:149 -msgid "Bullet chart" -msgstr "" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:41 -#: ../../operation/reporting/graph_viewer.php:210 -#: ../../godmode/reporting/graph_builder.main.php:150 -msgid "Gauge" -msgstr "" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:42 -#: ../../operation/reporting/graph_viewer.php:211 -msgid "Horizontal Bars" -msgstr "" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:43 -#: ../../operation/reporting/graph_viewer.php:212 -msgid "Vertical Bars" -msgstr "" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:44 -#: ../../operation/reporting/graph_viewer.php:213 -#: ../../godmode/reporting/graph_builder.main.php:153 -msgid "Pie" -msgstr "" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:46 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:202 -msgid "Stacked" -msgstr "Вложенные" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:69 -msgid "You don't have access" -msgstr "У Вас нет прав доступа" - -#: ../../enterprise/dashboard/widgets/tactical.php:27 -#: ../../enterprise/dashboard/widgets/tactical.php:29 -#: ../../enterprise/meta/general/main_header.php:89 -#: ../../enterprise/meta/monitoring/tactical.php:60 -#: ../../mobile/operation/tactical.php:81 ../../mobile/operation/home.php:36 -#: ../../operation/menu.php:45 ../../operation/users/user_edit.php:295 -#: ../../operation/agentes/tactical.php:54 -msgid "Tactical view" -msgstr "Тактический просмотр" - -#: ../../enterprise/dashboard/widgets/tactical.php:32 -#: ../../enterprise/meta/agentsearch.php:97 -#: ../../enterprise/meta/include/functions_events_meta.php:70 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1552 -#: ../../enterprise/meta/advanced/policymanager.queue.php:222 -#: ../../enterprise/meta/advanced/servers.build_table.php:60 -#: ../../enterprise/extensions/vmware/vmware_view.php:978 -#: ../../enterprise/extensions/backup/main.php:68 -#: ../../enterprise/include/functions_reporting.php:1204 -#: ../../enterprise/include/functions_reporting.php:2242 -#: ../../enterprise/include/functions_reporting.php:3054 -#: ../../enterprise/include/functions_reporting.php:3356 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/include/functions_services.php:1429 -#: ../../enterprise/include/functions_reporting_pdf.php:1172 -#: ../../enterprise/include/functions_reporting_pdf.php:1320 -#: ../../enterprise/include/functions_reporting_pdf.php:1455 -#: ../../enterprise/include/functions_reporting_pdf.php:1602 -#: ../../enterprise/include/functions_reporting_pdf.php:1747 -#: ../../enterprise/include/functions_reporting_pdf.php:1959 -#: ../../enterprise/include/functions_reporting_pdf.php:2237 -#: ../../enterprise/include/functions_reporting_pdf.php:2287 -#: ../../enterprise/operation/services/services.service.php:131 -#: ../../enterprise/operation/services/services.list.php:152 -#: ../../enterprise/operation/services/services.list.php:319 -#: ../../enterprise/operation/agentes/policy_view.php:47 -#: ../../enterprise/operation/agentes/policy_view.php:134 -#: ../../enterprise/operation/agentes/policy_view.php:198 -#: ../../enterprise/operation/agentes/policy_view.php:307 -#: ../../enterprise/operation/agentes/collection_view.php:66 -#: ../../enterprise/godmode/alerts/alert_events_list.php:425 -#: ../../enterprise/godmode/agentes/collection_manager.php:108 -#: ../../enterprise/godmode/agentes/collection_manager.php:166 -#: ../../enterprise/godmode/admin_access_logs.php:22 -#: ../../enterprise/godmode/policies/policies.php:252 -#: ../../enterprise/godmode/policies/policy_collections.php:124 -#: ../../enterprise/godmode/policies/policy_collections.php:195 -#: ../../enterprise/godmode/policies/policy_queue.php:348 -#: ../../enterprise/godmode/policies/policy_agents.php:350 -#: ../../mobile/operation/modules.php:119 -#: ../../mobile/operation/modules.php:120 -#: ../../mobile/operation/modules.php:212 -#: ../../mobile/operation/modules.php:213 -#: ../../mobile/operation/modules.php:433 -#: ../../mobile/operation/modules.php:437 -#: ../../mobile/operation/modules.php:441 -#: ../../mobile/operation/modules.php:445 -#: ../../mobile/operation/modules.php:453 -#: ../../mobile/operation/modules.php:458 -#: ../../mobile/operation/modules.php:463 -#: ../../mobile/operation/modules.php:526 -#: ../../mobile/operation/modules.php:576 -#: ../../mobile/operation/modules.php:645 ../../mobile/operation/alerts.php:75 -#: ../../mobile/operation/alerts.php:76 ../../mobile/operation/alerts.php:194 -#: ../../mobile/operation/alerts.php:195 ../../mobile/operation/alerts.php:274 -#: ../../mobile/operation/events.php:337 ../../mobile/operation/events.php:338 -#: ../../mobile/operation/events.php:488 ../../mobile/operation/events.php:608 -#: ../../mobile/operation/events.php:609 ../../mobile/operation/agents.php:81 -#: ../../mobile/operation/agents.php:111 ../../mobile/operation/agents.php:112 -#: ../../mobile/operation/agents.php:184 ../../mobile/operation/agents.php:185 -#: ../../mobile/operation/agents.php:285 ../../extensions/net_tools.php:239 -#: ../../extensions/agents_alerts.php:281 -#: ../../include/functions_snmp_browser.php:435 -#: ../../include/functions_reporting.php:4730 -#: ../../include/functions_reporting_html.php:325 -#: ../../include/functions_reporting_html.php:481 -#: ../../include/functions_reporting_html.php:612 -#: ../../include/functions_reporting_html.php:1093 -#: ../../include/functions_reporting_html.php:1487 -#: ../../include/functions_reporting_html.php:1522 -#: ../../include/functions_reporting_html.php:1984 -#: ../../include/functions_events.php:38 -#: ../../include/functions_events.php:2410 ../../include/ajax/module.php:710 -#: ../../operation/integria_incidents/incident.incident.php:98 -#: ../../operation/integria_incidents/incident.list.php:58 -#: ../../operation/integria_incidents/incident.list.php:96 -#: ../../operation/events/events.build_table.php:50 -#: ../../operation/search_modules.php:51 ../../operation/search_agents.php:64 -#: ../../operation/messages/message_list.php:121 -#: ../../operation/snmpconsole/snmp_view.php:394 -#: ../../operation/snmpconsole/snmp_view.php:495 -#: ../../operation/snmpconsole/snmp_view.php:811 -#: ../../operation/agentes/estado_agente.php:189 -#: ../../operation/agentes/estado_agente.php:475 -#: ../../operation/agentes/alerts_status.functions.php:83 -#: ../../operation/agentes/alerts_status.php:424 -#: ../../operation/agentes/alerts_status.php:464 -#: ../../operation/agentes/alerts_status.php:497 -#: ../../operation/agentes/alerts_status.php:530 -#: ../../operation/agentes/status_monitor.php:950 -#: ../../operation/servers/recon_view.php:98 -#: ../../operation/incidents/incident.php:235 -#: ../../operation/incidents/incident.php:331 -#: ../../operation/incidents/incident_detail.php:276 -#: ../../godmode/events/custom_events.php:83 -#: ../../godmode/events/custom_events.php:157 -#: ../../godmode/alerts/alert_list.list.php:404 -#: ../../godmode/alerts/alert_view.php:96 -#: ../../godmode/agentes/agent_incidents.php:86 -#: ../../godmode/agentes/agent_manager.php:310 -#: ../../godmode/agentes/module_manager.php:523 -#: ../../godmode/servers/servers.build_table.php:64 -#: ../../godmode/massive/massive_delete_agents.php:119 -#: ../../godmode/massive/massive_delete_modules.php:450 -#: ../../godmode/massive/massive_copy_modules.php:83 -#: ../../godmode/massive/massive_copy_modules.php:196 -#: ../../godmode/massive/massive_edit_agents.php:220 -#: ../../godmode/massive/massive_edit_agents.php:343 -#: ../../godmode/massive/massive_edit_modules.php:310 -msgid "Status" -msgstr "Состояние" - -#: ../../enterprise/dashboard/widgets/tactical.php:32 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:138 -#: ../../godmode/alerts/alert_templates.php:83 -msgid "and" -msgstr "и" - -#: ../../enterprise/dashboard/widgets/tactical.php:32 -#: ../../include/functions_reporting.php:5602 -#: ../../include/functions_reporting_html.php:2631 -msgid "Monitor checks" -msgstr "Статус слежения" - -#: ../../enterprise/dashboard/widgets/tactical.php:39 -#: ../../include/functions_reporting.php:8352 -msgid "Server performance" -msgstr "производительность сервера" - -#: ../../enterprise/dashboard/widgets/tactical.php:44 -#: ../../include/functions_reporting_html.php:1855 -#: ../../include/functions_reporting_html.php:1949 -#: ../../operation/gis_maps/index.php:26 -msgid "Summary" -msgstr "Сводка" - -#: ../../enterprise/dashboard/widgets/reports.php:27 -#: ../../enterprise/dashboard/widgets/reports.php:43 -#: ../../enterprise/extensions/cron/main.php:217 -#: ../../enterprise/extensions/cron/main.php:234 -#: ../../enterprise/extensions/cron/main.php:248 -#: ../../enterprise/extensions/cron/functions.php:361 -#: ../../extensions/resource_exportation.php:348 -msgid "Report" -msgstr "Отчёт" - -#: ../../enterprise/dashboard/widgets/reports.php:29 -msgid "Show a report made by user" -msgstr "Показать отчет, выполненный пользователем" - -#: ../../enterprise/dashboard/widgets/monitor_health.php:21 -msgid "Global health" -msgstr "Общая стабильность" - -#: ../../enterprise/dashboard/widgets/monitor_health.php:23 -msgid "Show a list of global monitor health" -msgstr "Показать список глобальный монитор здоровья" - -#: ../../enterprise/dashboard/widgets/events_list.php:26 -#: ../../enterprise/meta/general/logon_ok.php:43 -#: ../../enterprise/meta/general/main_header.php:119 -#: ../../enterprise/meta/monitoring/tactical.php:293 -#: ../../enterprise/extensions/ipam/ipam_network.php:539 -#: ../../enterprise/extensions/ipam/ipam_massive.php:76 -#: ../../enterprise/include/functions_reporting_pdf.php:722 -#: ../../mobile/include/functions_web.php:24 -#: ../../mobile/operation/home.php:42 ../../mobile/operation/events.php:559 -#: ../../include/functions_graph.php:728 -#: ../../include/functions_graph.php:3525 -#: ../../include/functions_graph.php:4194 -#: ../../include/functions_reports.php:612 -#: ../../include/functions_reports.php:614 -#: ../../include/functions_reports.php:616 -#: ../../include/functions_reporting_html.php:1072 -#: ../../operation/menu.php:261 ../../operation/events/events.php:397 -#: ../../operation/events/events.php:406 ../../operation/events/events.php:423 -#: ../../godmode/menu.php:173 -msgid "Events" -msgstr "События" - -#: ../../enterprise/dashboard/widgets/events_list.php:28 -msgid "Latest events list" -msgstr "Список последних событий" - -#: ../../enterprise/dashboard/widgets/events_list.php:31 -#: ../../enterprise/operation/services/services.list.php:153 -#: ../../enterprise/operation/services/services.list.php:170 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:156 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:159 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:207 -#: ../../enterprise/godmode/setup/setup_acl.php:131 -#: ../../include/functions_html.php:845 ../../include/functions_html.php:846 -#: ../../include/functions_html.php:847 ../../include/functions_html.php:848 -#: ../../include/functions_html.php:849 -#: ../../include/functions_visual_map_editor.php:292 -#: ../../include/functions_visual_map_editor.php:612 -#: ../../include/ajax/visual_console_builder.ajax.php:660 -#: ../../operation/integria_incidents/incident.list.php:33 -#: ../../operation/events/events_list.php:434 -#: ../../godmode/events/event_edit_filter.php:284 -#: ../../godmode/users/configure_user.php:689 -#: ../../godmode/agentes/planned_downtime.list.php:152 -#: ../../godmode/servers/manage_recontask_form.php:291 -#: ../../godmode/servers/manage_recontask.php:333 -#: ../../godmode/setup/setup_auth.php:107 -#: ../../godmode/massive/massive_add_action_alerts.php:146 -#: ../../godmode/reporting/visual_console_builder.wizard.php:329 -msgid "Any" -msgstr "Любой" - -#: ../../enterprise/dashboard/widgets/events_list.php:34 -#: ../../mobile/operation/modules.php:43 ../../include/functions.php:1055 -#: ../../include/functions_events.php:1434 -#: ../../operation/events/events_list.php:546 -#: ../../operation/agentes/estado_agente.php:186 -#: ../../operation/agentes/status_monitor.php:422 -#: ../../godmode/events/event_edit_filter.php:220 -#: ../../godmode/massive/massive_delete_agents.php:117 -#: ../../godmode/massive/massive_delete_modules.php:457 -#: ../../godmode/massive/massive_copy_modules.php:81 -#: ../../godmode/massive/massive_copy_modules.php:194 -#: ../../godmode/massive/massive_edit_agents.php:218 -#: ../../godmode/massive/massive_edit_modules.php:317 -msgid "Not normal" -msgstr "Не нормальный" - -#: ../../enterprise/dashboard/widgets/events_list.php:36 -#: ../../enterprise/meta/include/functions_events_meta.php:76 -#: ../../enterprise/include/functions_reporting_pdf.php:1174 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:210 -#: ../../include/functions_reporting_html.php:614 -#: ../../include/functions_events.php:40 -#: ../../operation/events/events.build_table.php:97 -#: ../../operation/events/events_list.php:543 -#: ../../godmode/events/event_filter.php:106 -#: ../../godmode/events/custom_events.php:89 -#: ../../godmode/events/custom_events.php:159 -#: ../../godmode/events/event_edit_filter.php:222 -msgid "Event type" -msgstr "Тип события" - -#: ../../enterprise/dashboard/widgets/events_list.php:39 -msgid "Limit" -msgstr "Лимит" - -#: ../../enterprise/dashboard/widgets/events_list.php:46 -#: ../../operation/events/events_list.php:555 -#: ../../godmode/events/event_filter.php:107 -#: ../../godmode/events/event_edit_filter.php:232 -msgid "Event status" -msgstr "Статус события" - -#: ../../enterprise/dashboard/widgets/events_list.php:47 -#: ../../include/functions_events.php:1501 -#: ../../include/functions_events.php:1520 -msgid "All event" -msgstr "Все события" - -#: ../../enterprise/dashboard/widgets/events_list.php:48 -#: ../../include/functions_events.php:1503 -#: ../../include/functions_events.php:1526 -msgid "Only validated" -msgstr "Только утвержденные" - -#: ../../enterprise/dashboard/widgets/events_list.php:49 -msgid "Only pending" -msgstr "Только ожидающие" - -#: ../../enterprise/dashboard/widgets/events_list.php:52 -#: ../../enterprise/meta/include/functions_agents_meta.php:854 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:530 -#: ../../enterprise/meta/include/functions_html_meta.php:51 -#: ../../enterprise/meta/include/functions_wizard_meta.php:251 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:226 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:265 -#: ../../enterprise/meta/include/functions_users_meta.php:79 -#: ../../enterprise/meta/include/functions_users_meta.php:89 -#: ../../enterprise/meta/advanced/policymanager.queue.php:214 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -#: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:105 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 -#: ../../enterprise/extensions/ipam/ipam_network.php:305 -#: ../../enterprise/include/functions_metaconsole.php:605 -#: ../../enterprise/include/functions_metaconsole.php:606 -#: ../../enterprise/include/functions_metaconsole.php:1210 -#: ../../enterprise/operation/log/log_viewer.php:189 -#: ../../enterprise/operation/log/log_viewer.php:204 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:32 -#: ../../enterprise/operation/agentes/agent_inventory.php:69 -#: ../../enterprise/operation/inventory/inventory.php:55 -#: ../../enterprise/operation/inventory/inventory.php:57 -#: ../../enterprise/operation/inventory/inventory.php:120 -#: ../../enterprise/operation/inventory/inventory.php:122 -#: ../../enterprise/operation/inventory/inventory.php:174 -#: ../../enterprise/godmode/setup/setup_acl.php:84 -#: ../../enterprise/godmode/setup/setup_acl.php:89 -#: ../../enterprise/godmode/setup/setup_acl.php:94 -#: ../../enterprise/godmode/setup/setup_acl.php:300 -#: ../../enterprise/godmode/setup/setup_acl.php:310 -#: ../../enterprise/godmode/setup/setup_acl.php:322 -#: ../../enterprise/godmode/setup/setup_acl.php:362 -#: ../../enterprise/godmode/setup/setup_acl.php:393 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:204 -#: ../../enterprise/godmode/modules/local_components.php:426 -#: ../../enterprise/godmode/modules/local_components.php:436 -#: ../../enterprise/godmode/modules/local_components.php:450 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:236 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:121 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:137 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:153 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1372 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1374 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1389 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:122 -#: ../../enterprise/godmode/policies/policy_queue.php:340 -#: ../../enterprise/godmode/policies/policy_queue.php:344 -#: ../../enterprise/godmode/policies/policy_queue.php:350 -#: ../../enterprise/godmode/policies/policy_queue.php:407 -#: ../../enterprise/godmode/policies/policy_agents.php:227 -#: ../../enterprise/godmode/policies/policy_agents.php:235 -#: ../../enterprise/godmode/policies/policy_agents.php:341 -#: ../../mobile/operation/networkmaps.php:137 -#: ../../mobile/operation/networkmaps.php:227 -#: ../../mobile/operation/modules.php:38 -#: ../../mobile/operation/modules.php:225 -#: ../../mobile/operation/modules.php:240 ../../mobile/operation/alerts.php:37 -#: ../../mobile/operation/alerts.php:43 ../../mobile/operation/events.php:619 -#: ../../mobile/operation/events.php:629 -#: ../../mobile/operation/events.php:1072 -#: ../../mobile/operation/events.php:1091 ../../mobile/operation/agents.php:32 -#: ../../extensions/files_repo/files_repo_form.php:50 -#: ../../extensions/agents_modules.php:77 -#: ../../include/functions_graph.php:2483 -#: ../../include/functions_groups.php:586 -#: ../../include/functions_groups.php:2329 -#: ../../include/functions_reporting.php:1505 ../../include/functions.php:878 -#: ../../include/functions.php:1101 ../../include/functions_users.php:187 -#: ../../include/functions_users.php:192 ../../include/functions_users.php:890 -#: ../../operation/events/events.build_query.php:112 -#: ../../operation/events/events.build_table.php:398 -#: ../../operation/events/events_list.php:444 -#: ../../operation/events/events_list.php:448 -#: ../../operation/events/events_list.php:456 -#: ../../operation/events/events_list.php:547 -#: ../../operation/events/events_list.php:550 -#: ../../operation/events/events_rss.php:110 -#: ../../operation/events/export_csv.php:54 -#: ../../operation/snmpconsole/snmp_view.php:374 -#: ../../operation/snmpconsole/snmp_view.php:391 -#: ../../operation/snmpconsole/snmp_view.php:396 -#: ../../operation/snmpconsole/snmp_view.php:535 -#: ../../operation/gis_maps/render_view.php:136 -#: ../../operation/agentes/estado_monitores.php:422 -#: ../../operation/agentes/estado_monitores.php:443 -#: ../../operation/agentes/estado_agente.php:190 -#: ../../operation/agentes/networkmap_list.php:185 -#: ../../operation/agentes/networkmap.php:474 -#: ../../operation/agentes/alerts_status.functions.php:73 -#: ../../operation/agentes/alerts_status.functions.php:79 -#: ../../operation/agentes/alerts_status.functions.php:94 -#: ../../operation/agentes/status_monitor.php:337 -#: ../../operation/agentes/status_monitor.php:394 -#: ../../operation/agentes/status_monitor.php:395 -#: ../../operation/agentes/status_monitor.php:425 -#: ../../operation/agentes/status_monitor.php:442 -#: ../../operation/agentes/status_monitor.php:454 -#: ../../operation/agentes/status_monitor.php:475 ../../operation/tree.php:130 -#: ../../operation/tree.php:155 ../../godmode/events/event_edit_filter.php:224 -#: ../../godmode/events/event_edit_filter.php:228 -#: ../../godmode/events/event_edit_filter.php:364 -#: ../../godmode/alerts/alert_list.php:262 -#: ../../godmode/alerts/alert_list.php:316 -#: ../../godmode/alerts/alert_list.php:329 -#: ../../godmode/alerts/alert_templates.php:255 -#: ../../godmode/alerts/alert_list.list.php:115 -#: ../../godmode/alerts/alert_list.list.php:121 -#: ../../godmode/alerts/alert_list.list.php:130 -#: ../../godmode/alerts/alert_list.list.php:135 -#: ../../godmode/admin_access_logs.php:62 -#: ../../godmode/admin_access_logs.php:64 -#: ../../godmode/setup/gis_step_2.php:154 -#: ../../godmode/massive/massive_delete_agents.php:121 -#: ../../godmode/massive/massive_delete_modules.php:409 -#: ../../godmode/massive/massive_delete_modules.php:437 -#: ../../godmode/massive/massive_delete_modules.php:460 -#: ../../godmode/massive/massive_copy_modules.php:85 -#: ../../godmode/massive/massive_copy_modules.php:198 -#: ../../godmode/massive/massive_edit_agents.php:222 -#: ../../godmode/massive/massive_edit_modules.php:252 -#: ../../godmode/massive/massive_edit_modules.php:280 -#: ../../godmode/massive/massive_edit_modules.php:320 -#: ../../godmode/modules/manage_network_components.php:490 -#: ../../godmode/modules/manage_network_templates_form.php:267 -#: ../../godmode/reporting/reporting_builder.list_items.php:162 -#: ../../godmode/reporting/reporting_builder.list_items.php:164 -#: ../../godmode/reporting/reporting_builder.list_items.php:166 -#: ../../godmode/reporting/reporting_builder.list_items.php:188 -#: ../../godmode/reporting/reporting_builder.list_items.php:191 -#: ../../godmode/reporting/reporting_builder.list_items.php:194 -#: ../../godmode/reporting/graph_builder.graph_editor.php:140 -#: ../../godmode/reporting/visual_console_builder.wizard.php:206 -#: ../../godmode/reporting/visual_console_builder.wizard.php:211 -#: ../../godmode/reporting/reporting_builder.item_editor.php:830 -#: ../../godmode/reporting/reporting_builder.item_editor.php:946 -msgid "All" -msgstr "Все" - -#: ../../enterprise/dashboard/widgets/events_list.php:54 -#: ../../enterprise/meta/include/functions_events_meta.php:85 -#: ../../enterprise/include/functions_reporting.php:1294 -#: ../../enterprise/include/functions_reporting.php:1785 -#: ../../enterprise/include/functions_reporting_pdf.php:1175 -#: ../../enterprise/include/functions_reporting_pdf.php:1324 -#: ../../enterprise/include/functions_reporting_pdf.php:1459 -#: ../../enterprise/include/functions_reporting_pdf.php:1848 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:232 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 -#: ../../mobile/operation/events.php:368 ../../mobile/operation/events.php:369 -#: ../../mobile/operation/events.php:484 ../../mobile/operation/events.php:627 -#: ../../mobile/operation/events.php:628 -#: ../../include/functions_reporting.php:4734 -#: ../../include/functions_reporting_html.php:485 -#: ../../include/functions_reporting_html.php:615 -#: ../../include/functions_reporting_html.php:1097 -#: ../../include/functions_events.php:43 -#: ../../include/functions_events.php:883 -#: ../../include/functions_events.php:2382 -#: ../../operation/events/events.build_table.php:117 -#: ../../operation/events/events_list.php:549 -#: ../../operation/snmpconsole/snmp_view.php:389 -#: ../../godmode/events/event_filter.php:108 -#: ../../godmode/events/custom_events.php:98 -#: ../../godmode/events/custom_events.php:162 -#: ../../godmode/events/event_edit_filter.php:226 -msgid "Severity" -msgstr "Важность" - -#: ../../enterprise/dashboard/widgets/events_list.php:62 -#: ../../enterprise/meta/include/functions_events_meta.php:91 -#: ../../enterprise/include/functions_reporting_pdf.php:2288 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:94 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:92 -#: ../../enterprise/godmode/modules/configure_local_component.php:354 -#: ../../mobile/operation/events.php:509 -#: ../../include/functions_treeview.php:164 -#: ../../include/functions_reporting_html.php:1523 -#: ../../include/functions_events.php:45 -#: ../../include/functions_events.php:2441 -#: ../../operation/events/events.build_table.php:129 -#: ../../operation/users/user_edit.php:421 -#: ../../operation/agentes/group_view.php:146 -#: ../../operation/agentes/alerts_status.functions.php:86 -#: ../../operation/agentes/status_monitor.php:461 -#: ../../operation/agentes/status_monitor.php:464 ../../operation/tree.php:49 -#: ../../godmode/events/custom_events.php:104 -#: ../../godmode/events/custom_events.php:164 -#: ../../godmode/users/configure_user.php:618 -#: ../../godmode/massive/massive_add_tags.php:147 -#: ../../godmode/massive/massive_delete_tags.php:187 -#: ../../godmode/massive/massive_edit_modules.php:531 -#: ../../godmode/modules/manage_network_components_form_common.php:184 -#: ../../godmode/tag/edit_tag.php:58 ../../godmode/tag/tag.php:106 -#: ../../general/firts_task/tags.php:25 -msgid "Tags" -msgstr "Метки" - -#: ../../enterprise/dashboard/widgets/events_list.php:183 -#: ../../enterprise/meta/monitoring/group_view.php:142 -#: ../../enterprise/meta/monitoring/group_view.php:145 -#: ../../enterprise/meta/monitoring/tactical.php:262 -#: ../../enterprise/extensions/cron/functions.php:190 -#: ../../enterprise/include/functions_reporting.php:1131 -#: ../../enterprise/include/functions_reporting.php:1220 -#: ../../enterprise/include/functions_reporting.php:1594 -#: ../../enterprise/include/functions_reporting.php:1750 -#: ../../enterprise/include/functions_reporting.php:2262 -#: ../../enterprise/include/functions_reporting.php:3073 -#: ../../enterprise/include/functions_reporting.php:3404 -#: ../../enterprise/include/functions_reporting_csv.php:614 -#: ../../enterprise/include/functions_reporting_pdf.php:323 -#: ../../enterprise/include/functions_reporting_pdf.php:661 -#: ../../enterprise/include/functions_reporting_pdf.php:679 -#: ../../enterprise/include/functions_reporting_pdf.php:1615 -#: ../../enterprise/include/functions_reporting_pdf.php:1676 -#: ../../enterprise/include/functions_reporting_pdf.php:1769 -#: ../../enterprise/include/functions_reporting_pdf.php:1979 -#: ../../enterprise/include/functions_reporting_pdf.php:2012 -#: ../../enterprise/operation/services/services.service.php:184 -#: ../../enterprise/operation/services/services.list.php:150 -#: ../../enterprise/operation/services/services.list.php:392 -#: ../../enterprise/operation/services/services.service_map.php:118 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:585 -#: ../../mobile/operation/groups.php:106 ../../mobile/operation/groups.php:108 -#: ../../mobile/operation/modules.php:42 ../../mobile/operation/agents.php:36 -#: ../../include/functions_alerts.php:574 -#: ../../include/functions_graph.php:749 -#: ../../include/functions_graph.php:1817 -#: ../../include/functions_graph.php:3546 -#: ../../include/functions_filemanager.php:697 -#: ../../include/functions_groups.php:773 -#: ../../include/functions_groups.php:775 -#: ../../include/functions_groups.php:777 -#: ../../include/functions_groups.php:778 -#: ../../include/functions_groups.php:779 ../../include/functions_ui.php:450 -#: ../../include/functions_ui.php:451 ../../include/functions_reports.php:426 -#: ../../include/functions_reporting.php:3023 -#: ../../include/functions_reporting.php:3227 -#: ../../include/functions_reporting.php:3861 -#: ../../include/functions_reporting.php:3862 -#: ../../include/functions_reporting.php:3863 -#: ../../include/functions_reporting.php:3864 -#: ../../include/functions_reporting.php:3865 -#: ../../include/functions_reporting.php:3866 ../../include/functions.php:1004 -#: ../../include/functions_visual_map.php:1134 -#: ../../include/functions_visual_map.php:1148 -#: ../../include/functions_visual_map.php:1161 -#: ../../include/functions_visual_map.php:1174 -#: ../../include/functions_reporting_html.php:344 -#: ../../include/functions_reporting_html.php:1009 -#: ../../include/functions_reporting_html.php:1030 -#: ../../include/functions_reporting_html.php:1446 -#: ../../include/functions_reporting_html.php:1608 -#: ../../include/functions_events.php:1398 -#: ../../include/functions_events.php:2739 ../../include/ajax/module.php:775 -#: ../../include/graphs/functions_flot.php:395 -#: ../../operation/agentes/estado_monitores.php:428 -#: ../../operation/agentes/group_view.php:148 -#: ../../operation/agentes/group_view.php:150 -#: ../../operation/agentes/estado_agente.php:185 -#: ../../operation/agentes/tactical.php:152 -#: ../../operation/agentes/status_monitor.php:421 ../../operation/tree.php:134 -#: ../../operation/tree.php:159 ../../operation/tree.php:293 -#: ../../godmode/alerts/alert_list.builder.php:206 -#: ../../godmode/massive/massive_delete_agents.php:116 -#: ../../godmode/massive/massive_delete_modules.php:456 -#: ../../godmode/massive/massive_copy_modules.php:80 -#: ../../godmode/massive/massive_copy_modules.php:193 -#: ../../godmode/massive/massive_edit_agents.php:217 -#: ../../godmode/massive/massive_edit_modules.php:316 -msgid "Unknown" -msgstr "Неизвестно" - -#: ../../enterprise/dashboard/widgets/maps_status.php:24 -msgid "Maps status" -msgstr "Статус карт" - -#: ../../enterprise/dashboard/widgets/maps_status.php:26 -msgid "General and quick visual maps report" -msgstr "Общий и быстрый визуальный отчет карты" - -#: ../../enterprise/dashboard/widgets/maps_status.php:28 -#: ../../operation/search_results.php:123 -msgid "Maps" -msgstr "Карты" - -#: ../../enterprise/dashboard/widgets/maps_status.php:73 -#: ../../enterprise/extensions/backup/main.php:114 -#: ../../enterprise/include/functions_reporting.php:1225 -#: ../../enterprise/include/functions_reporting.php:2254 -#: ../../enterprise/include/functions_reporting.php:3067 -#: ../../enterprise/include/functions_reporting.php:3409 -#: ../../enterprise/include/functions_reporting_csv.php:618 -#: ../../enterprise/include/functions_services.php:1700 -#: ../../enterprise/include/functions_reporting_pdf.php:1621 -#: ../../enterprise/include/functions_reporting_pdf.php:1774 -#: ../../enterprise/include/functions_reporting_pdf.php:1973 -#: ../../enterprise/include/functions_reporting_pdf.php:2021 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:288 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1558 -#: ../../include/functions_db.php:1097 -#: ../../include/functions_reporting_html.php:350 -#: ../../include/functions_reporting_html.php:1453 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1184 -msgid "OK" -msgstr "Ок" - -#: ../../enterprise/dashboard/widgets/maps_status.php:76 -#: ../../godmode/massive/massive_edit_agents.php:387 -msgid "Bad" -msgstr "Плохо" - -#: ../../enterprise/dashboard/widgets/top_n.php:31 -#: ../../include/functions_reporting.php:810 -msgid "Top N" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n.php:34 -msgid "Show a top n of agents modules." -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n.php:64 -#: ../../enterprise/godmode/agentes/inventory_manager.php:176 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:181 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:190 -#: ../../include/functions.php:1985 ../../include/functions.php:2544 -#: ../../include/functions_netflow.php:1049 -#: ../../include/functions_netflow.php:1082 ../../include/ajax/module.php:119 -#: ../../operation/gis_maps/render_view.php:130 -#: ../../godmode/setup/performance.php:85 -msgid "1 hour" -msgstr "1 час" - -#: ../../enterprise/dashboard/widgets/top_n.php:65 -#: ../../enterprise/godmode/agentes/inventory_manager.php:177 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:182 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:191 -#: ../../include/functions_netflow.php:1050 -#: ../../include/functions_netflow.php:1083 -#: ../../operation/gis_maps/render_view.php:131 -msgid "2 hours" -msgstr "2 часа" - -#: ../../enterprise/dashboard/widgets/top_n.php:66 -#: ../../include/functions_netflow.php:1051 -#: ../../include/functions_netflow.php:1084 -msgid "5 hours" -msgstr "5 часов" - -#: ../../enterprise/dashboard/widgets/top_n.php:67 -#: ../../enterprise/godmode/agentes/inventory_manager.php:179 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:185 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:193 -#: ../../include/functions_netflow.php:1052 -#: ../../include/functions_netflow.php:1085 ../../include/ajax/module.php:121 -#: ../../godmode/setup/performance.php:86 -msgid "12 hours" -msgstr "12 часов" - -#: ../../enterprise/dashboard/widgets/top_n.php:68 -#: ../../enterprise/godmode/agentes/inventory_manager.php:180 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:186 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:194 -#: ../../include/functions.php:1988 ../../include/functions_netflow.php:1053 -#: ../../include/functions_netflow.php:1086 ../../include/ajax/module.php:122 -msgid "1 day" -msgstr "1 день" - -#: ../../enterprise/dashboard/widgets/top_n.php:70 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:241 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1517 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1126 -msgid "Quantity (n)" -msgstr "Количество (н)" - -#: ../../enterprise/dashboard/widgets/top_n.php:72 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1500 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1634 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 -#: ../../godmode/netflow/nf_item_list.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1109 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1289 -msgid "Order" -msgstr "Порядок" - -#: ../../enterprise/dashboard/widgets/top_n.php:74 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:186 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1503 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:47 -#: ../../godmode/reporting/reporting_builder.item_editor.php:47 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1112 -msgid "Ascending" -msgstr "По возрастанию" - -#: ../../enterprise/dashboard/widgets/top_n.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:188 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:171 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1506 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:48 -#: ../../godmode/reporting/reporting_builder.item_editor.php:48 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1115 -msgid "Descending" -msgstr "По убыванию" - -#: ../../enterprise/dashboard/widgets/top_n.php:76 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:235 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:190 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1118 -msgid "By agent name" -msgstr "По имени агента" - -#: ../../enterprise/dashboard/widgets/top_n.php:78 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:249 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1523 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1136 -msgid "Display" -msgstr "Отображать" - -#: ../../enterprise/dashboard/widgets/top_n.php:80 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:250 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:279 -#: ../../enterprise/godmode/modules/configure_local_component.php:222 -#: ../../enterprise/godmode/modules/configure_local_component.php:237 -#: ../../include/functions_alerts.php:550 -#: ../../include/functions_graph.php:3855 -#: ../../include/functions_treeview.php:94 -#: ../../include/functions_treeview.php:107 -#: ../../include/functions_reporting_html.php:2301 -#: ../../godmode/alerts/configure_alert_template.php:617 -#: ../../godmode/agentes/module_manager_editor_common.php:240 -#: ../../godmode/agentes/module_manager_editor_common.php:260 -#: ../../godmode/massive/massive_edit_modules.php:358 -#: ../../godmode/massive/massive_edit_modules.php:404 -#: ../../godmode/massive/massive_edit_modules.php:485 -#: ../../godmode/modules/manage_network_components_form_common.php:110 -#: ../../godmode/modules/manage_network_components_form_common.php:123 -msgid "Max." -msgstr "Макс." - -#: ../../enterprise/dashboard/widgets/top_n.php:81 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:241 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:270 -#: ../../enterprise/godmode/modules/configure_local_component.php:219 -#: ../../enterprise/godmode/modules/configure_local_component.php:234 -#: ../../include/functions_alerts.php:551 -#: ../../include/functions_graph.php:3855 -#: ../../include/functions_treeview.php:94 -#: ../../include/functions_treeview.php:107 -#: ../../include/functions_reporting_html.php:2300 -#: ../../godmode/alerts/configure_alert_template.php:612 -#: ../../godmode/massive/massive_edit_modules.php:349 -#: ../../godmode/massive/massive_edit_modules.php:395 -#: ../../godmode/massive/massive_edit_modules.php:483 -#: ../../godmode/modules/manage_network_components_form_common.php:107 -#: ../../godmode/modules/manage_network_components_form_common.php:120 -msgid "Min." -msgstr "Мин." - -#: ../../enterprise/dashboard/widgets/top_n.php:82 -#: ../../include/functions_graph.php:3855 -msgid "Avg." -msgstr "Срд." - -#: ../../enterprise/dashboard/widgets/top_n.php:85 -#: ../../godmode/reporting/map_builder.php:209 -msgid "Items" -msgstr "Предметы" - -#: ../../enterprise/dashboard/widgets/top_n.php:111 -msgid "" -"Please could you fill the widget data previous to filling the list items." -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n.php:117 -#: ../../enterprise/dashboard/widgets/top_n.php:300 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:73 -msgid "avg" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n.php:118 -#: ../../enterprise/dashboard/widgets/top_n.php:301 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:74 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1539 -msgid "max" -msgstr "макс." - -#: ../../enterprise/dashboard/widgets/top_n.php:119 -#: ../../enterprise/dashboard/widgets/top_n.php:302 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1540 -msgid "min" -msgstr "мин." - -#: ../../enterprise/dashboard/widgets/top_n.php:120 -#: ../../enterprise/dashboard/widgets/top_n.php:303 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:76 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1541 -msgid "sum" -msgstr "итог" - -#: ../../enterprise/dashboard/widgets/top_n.php:131 -#: ../../enterprise/dashboard/widgets/top_n.php:340 -#: ../../enterprise/meta/advanced/policymanager.queue.php:216 -#: ../../enterprise/meta/advanced/policymanager.queue.php:258 -#: ../../enterprise/include/functions_reporting_pdf.php:804 -#: ../../enterprise/include/functions_reporting_pdf.php:897 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1987 -#: ../../enterprise/godmode/policies/policy_queue.php:342 -#: ../../enterprise/godmode/policies/policy_queue.php:376 -#: ../../extensions/net_tools.php:118 ../../extensions/api_checker.php:123 -#: ../../include/functions_menu.php:564 -#: ../../include/functions_reporting_html.php:938 -#: ../../include/functions_reporting_html.php:1762 -#: ../../godmode/extensions.php:153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1560 -msgid "Operation" -msgstr "Действие" - -#: ../../enterprise/dashboard/widgets/top_n.php:132 -#: ../../enterprise/extensions/ipam/ipam_list.php:68 -#: ../../enterprise/include/functions_services.php:1432 -#: ../../enterprise/operation/agentes/policy_view.php:196 -#: ../../enterprise/godmode/alerts/alert_events_list.php:424 -#: ../../enterprise/godmode/alerts/alert_events.php:510 -#: ../../enterprise/godmode/alerts/alert_events.php:522 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/admin_access_logs.php:25 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:158 -#: ../../enterprise/godmode/reporting/graph_template_list.php:130 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:151 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1833 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1980 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1988 -#: ../../enterprise/godmode/policies/policy_modules.php:1021 -#: ../../enterprise/godmode/policies/policy_alerts.php:455 -#: ../../mobile/operation/tactical.php:261 -#: ../../extensions/agents_alerts.php:279 -#: ../../include/functions_ui_renders.php:97 ../../include/functions.php:2263 -#: ../../include/functions_reporting_html.php:2757 -#: ../../operation/extensions.php:49 -#: ../../operation/integria_incidents/incident.list.php:102 -#: ../../operation/events/events.build_table.php:159 -#: ../../operation/snmpconsole/snmp_view.php:529 -#: ../../operation/snmpconsole/snmp_view.php:827 -#: ../../operation/agentes/networkmap_list.php:261 -#: ../../operation/agentes/alerts_status.php:422 -#: ../../operation/agentes/alerts_status.php:462 -#: ../../operation/agentes/alerts_status.php:495 -#: ../../operation/agentes/alerts_status.php:528 -#: ../../operation/incidents/incident.php:338 -#: ../../operation/search_alerts.php:48 -#: ../../godmode/events/event_filter.php:109 -#: ../../godmode/users/configure_user.php:619 -#: ../../godmode/snmpconsole/snmp_alert.php:1066 -#: ../../godmode/snmpconsole/snmp_alert.php:1151 -#: ../../godmode/snmpconsole/snmp_filters.php:133 -#: ../../godmode/alerts/alert_list.list.php:585 -#: ../../godmode/alerts/alert_view.php:417 -#: ../../godmode/agentes/planned_downtime.editor.php:808 -#: ../../godmode/agentes/module_manager.php:527 -#: ../../godmode/agentes/agent_template.php:226 -#: ../../godmode/servers/manage_recontask.php:287 -#: ../../godmode/netflow/nf_item_list.php:152 -#: ../../godmode/netflow/nf_edit.php:120 -#: ../../godmode/admin_access_logs.php:61 -#: ../../godmode/admin_access_logs.php:189 -#: ../../godmode/massive/massive_standby_alerts.php:163 -#: ../../godmode/massive/massive_add_action_alerts.php:155 -#: ../../godmode/massive/massive_operations.php:263 -#: ../../godmode/massive/massive_delete_action_alerts.php:164 -#: ../../godmode/massive/massive_enable_disable_alerts.php:163 -#: ../../godmode/modules/manage_nc_groups.php:194 -#: ../../godmode/modules/manage_network_components.php:545 -#: ../../godmode/modules/manage_network_templates.php:183 -#: ../../godmode/reporting/visual_console_builder.elements.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1359 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1553 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1562 -#: ../../general/logon_ok.php:222 ../../general/logon_ok.php:419 -msgid "Action" -msgstr "Действие" - -#: ../../enterprise/dashboard/widgets/top_n.php:182 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1959 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2148 -#: ../../godmode/reporting/reporting_builder.item_editor.php:927 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1491 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1526 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1687 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1715 -msgid "Select an Agent first" -msgstr "Выбрать Первого Агента" - -#: ../../enterprise/dashboard/widgets/top_n.php:275 -msgid "Selection module one by one" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n.php:286 -msgid "Selection several modules" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n.php:314 -msgid "Regex for to filter modules" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n.php:323 -msgid "Filter modules" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n.php:335 -#: ../../enterprise/meta/agentsearch.php:96 -#: ../../enterprise/meta/include/functions_wizard_meta.php:305 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1645 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 -#: ../../enterprise/meta/monitoring/group_view.php:96 -#: ../../enterprise/meta/monitoring/group_view.php:133 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:225 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:407 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:515 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:596 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 -#: ../../enterprise/include/functions_policies.php:3206 -#: ../../enterprise/include/functions_reporting_pdf.php:532 -#: ../../enterprise/include/functions_reporting_pdf.php:683 -#: ../../enterprise/operation/services/services.service_map.php:129 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:96 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:172 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:149 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:156 -#: ../../enterprise/godmode/policies/policies.php:339 -#: ../../enterprise/godmode/policies/policy_modules.php:324 -#: ../../mobile/operation/agent.php:181 ../../mobile/operation/modules.php:186 -#: ../../mobile/operation/home.php:66 ../../mobile/operation/agents.php:79 -#: ../../mobile/operation/agents.php:290 ../../mobile/operation/agents.php:291 -#: ../../extensions/agents_modules.php:194 -#: ../../include/functions_reports.php:555 -#: ../../include/functions_reports.php:557 -#: ../../include/functions_reports.php:559 -#: ../../include/functions_reports.php:561 -#: ../../include/functions_reports.php:563 -#: ../../include/functions_reports.php:565 -#: ../../include/functions_reports.php:567 -#: ../../include/functions_reporting_html.php:784 -#: ../../include/functions_reporting_html.php:2406 -#: ../../include/ajax/networkmap.ajax.php:71 -#: ../../operation/search_agents.php:63 -#: ../../operation/agentes/exportdata.php:266 -#: ../../operation/agentes/group_view.php:104 -#: ../../operation/agentes/group_view.php:141 -#: ../../operation/agentes/estado_agente.php:472 -#: ../../operation/agentes/graphs.php:124 ../../operation/tree.php:73 -#: ../../operation/search_results.php:133 -#: ../../godmode/agentes/modificar_agente.php:500 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:427 -#: ../../godmode/agentes/planned_downtime.editor.php:726 -#: ../../godmode/agentes/planned_downtime.editor.php:799 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:792 -#: ../../godmode/agentes/configurar_agente.php:277 -#: ../../godmode/agentes/configurar_agente.php:508 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:312 -#: ../../godmode/servers/servers.build_table.php:67 -#: ../../godmode/db/db_refine.php:95 -#: ../../godmode/massive/massive_delete_modules.php:467 -#: ../../godmode/massive/massive_copy_modules.php:144 -#: ../../godmode/massive/massive_edit_plugins.php:308 -#: ../../godmode/massive/massive_add_tags.php:139 -#: ../../godmode/massive/massive_delete_tags.php:199 -#: ../../godmode/massive/massive_edit_modules.php:294 -#: ../../godmode/reporting/reporting_builder.list_items.php:163 -#: ../../godmode/reporting/reporting_builder.list_items.php:189 -#: ../../godmode/reporting/graph_builder.graph_editor.php:144 -#: ../../godmode/reporting/visual_console_builder.wizard.php:251 -#: ../../godmode/reporting/reporting_builder.item_editor.php:952 -msgid "Modules" -msgstr "Модули" - -#: ../../enterprise/dashboard/widgets/top_n.php:349 -#: ../../godmode/modules/manage_network_templates_form.php:224 -msgid "Add modules" -msgstr "Добавить модули" - -#: ../../enterprise/dashboard/widgets/top_n.php:440 -msgid "Successful added modules" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n.php:444 -msgid "Unsuccessful added modules" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n.php:466 -#: ../../enterprise/include/functions_reporting_pdf.php:794 -#: ../../enterprise/include/functions_reporting_pdf.php:1583 -#: ../../enterprise/include/functions_reporting_pdf.php:1931 -#: ../../include/functions_reporting.php:867 -#: ../../include/functions_reporting.php:1692 -#: ../../include/functions_reporting_html.php:1699 -#: ../../include/functions_reporting_html.php:1824 -msgid "There are no Agent/Modules defined" -msgstr "Здесь нет определенных Агентов/Модулей" - -#: ../../enterprise/dashboard/widgets/top_n.php:472 -#: ../../enterprise/meta/include/functions_wizard_meta.php:838 -#: ../../enterprise/meta/include/functions_wizard_meta.php:847 -#: ../../enterprise/meta/include/functions_wizard_meta.php:924 -#: ../../enterprise/meta/include/functions_wizard_meta.php:933 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1125 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1134 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1341 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1350 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1422 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1431 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1538 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1547 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:204 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:258 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1243 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1526 -#: ../../include/functions_graph.php:737 ../../include/functions_graph.php:738 -#: ../../include/functions_graph.php:739 ../../include/functions_graph.php:742 -#: ../../include/functions_graph.php:1352 -#: ../../include/functions_graph.php:3536 -#: ../../include/functions_graph.php:3541 -#: ../../include/functions_graph.php:4202 -#: ../../include/functions_graph.php:4205 -#: ../../include/functions_graph.php:4208 ../../include/functions_ui.php:1983 -#: ../../include/functions_reporting.php:818 -#: ../../godmode/alerts/alert_view.php:310 -#: ../../godmode/reporting/reporting_builder.item_editor.php:727 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1139 -msgid "Max" -msgstr "Макс." - -#: ../../enterprise/dashboard/widgets/top_n.php:475 -#: ../../enterprise/meta/include/functions_wizard_meta.php:836 -#: ../../enterprise/meta/include/functions_wizard_meta.php:845 -#: ../../enterprise/meta/include/functions_wizard_meta.php:922 -#: ../../enterprise/meta/include/functions_wizard_meta.php:931 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1123 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1132 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1339 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1348 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1420 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1429 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1536 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1545 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:199 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:261 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1245 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1528 -#: ../../include/functions_graph.php:737 ../../include/functions_graph.php:738 -#: ../../include/functions_graph.php:739 ../../include/functions_graph.php:742 -#: ../../include/functions_graph.php:1354 -#: ../../include/functions_graph.php:3536 -#: ../../include/functions_graph.php:3541 -#: ../../include/functions_graph.php:4202 -#: ../../include/functions_graph.php:4205 -#: ../../include/functions_graph.php:4208 ../../include/functions_ui.php:1983 -#: ../../include/functions_reporting.php:821 -#: ../../godmode/alerts/alert_view.php:310 -#: ../../godmode/reporting/reporting_builder.item_editor.php:729 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1141 -msgid "Min" -msgstr "Мин." - -#: ../../enterprise/dashboard/widgets/top_n.php:480 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1530 -#: ../../include/functions_graph.php:737 ../../include/functions_graph.php:738 -#: ../../include/functions_graph.php:739 ../../include/functions_graph.php:742 -#: ../../include/functions_graph.php:1356 -#: ../../include/functions_graph.php:3536 -#: ../../include/functions_graph.php:3541 -#: ../../include/functions_graph.php:4202 -#: ../../include/functions_graph.php:4205 -#: ../../include/functions_graph.php:4208 -#: ../../include/functions_reporting.php:826 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1143 -msgid "Avg" -msgstr "Средн." - -#: ../../enterprise/dashboard/widgets/top_n.php:536 -#: ../../include/functions_reporting.php:920 -msgid "Insuficient data" -msgstr "Недостаточные данные" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:26 -msgid "Top N Events by module." -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:28 -msgid "Top N events by module." -msgstr "Топ N события по модулю." - -#: ../../enterprise/dashboard/widgets/alerts_fired.php:24 -msgid "Alerts Fired" -msgstr "Оповещвния запущены" - -#: ../../enterprise/dashboard/widgets/alerts_fired.php:26 -msgid "Alerts Fired report" -msgstr "Отчет запуска оповещвний" - -#: ../../enterprise/meta/agentsearch.php:26 -#: ../../enterprise/meta/index.php:469 -#: ../../enterprise/meta/advanced/synchronizing.php:33 -#: ../../enterprise/meta/advanced/agents_setup.php:35 -#: ../../enterprise/meta/advanced/policymanager.php:35 -#: ../../enterprise/meta/general/logon_ok.php:15 -#: ../../enterprise/meta/monitoring/group_view.php:32 -#: ../../enterprise/meta/monitoring/tactical.php:35 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:37 -#: ../../operation/agentes/ver_agente.php:811 -#: ../../operation/netflow/nf_live_view.php:131 -#: ../../godmode/netflow/nf_edit_form.php:65 -#: ../../godmode/netflow/nf_item_list.php:57 -#: ../../godmode/netflow/nf_edit.php:47 -msgid "Main" -msgstr "Главное" - -#: ../../enterprise/meta/agentsearch.php:28 -#: ../../enterprise/meta/agentsearch.php:32 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:242 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:331 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:401 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:509 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:590 -#: ../../operation/events/events_list.php:403 -#: ../../godmode/events/event_edit_filter.php:240 -msgid "Agent search" -msgstr "Поиск агента" - -#: ../../enterprise/meta/agentsearch.php:68 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:138 -#: ../../enterprise/meta/general/main_header.php:466 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:228 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:318 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:487 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:560 -#: ../../enterprise/extensions/translate_string.php:265 -#: ../../enterprise/operation/log/log_viewer.php:165 -#: ../../enterprise/operation/log/log_viewer.php:230 -#: ../../enterprise/operation/services/services.list.php:141 -#: ../../enterprise/operation/services/services.list.php:180 -#: ../../enterprise/operation/agentes/agent_inventory.php:90 -#: ../../enterprise/operation/agentes/agent_inventory.php:95 -#: ../../enterprise/operation/inventory/inventory.php:177 -#: ../../enterprise/operation/inventory/inventory.php:217 -#: ../../enterprise/godmode/alerts/alert_events_list.php:364 -#: ../../enterprise/godmode/alerts/alert_events_list.php:368 -#: ../../enterprise/godmode/agentes/collections.php:173 -#: ../../enterprise/godmode/agentes/collection_manager.php:50 -#: ../../enterprise/godmode/modules/local_components.php:438 -#: ../../enterprise/godmode/modules/local_components.php:452 -#: ../../enterprise/godmode/policies/policy_collections.php:182 -#: ../../enterprise/godmode/policies/policy_agents.php:337 -#: ../../enterprise/godmode/policies/policy_agents.php:342 -#: ../../include/functions_snmp_browser.php:556 -#: ../../operation/integria_incidents/incident.list.php:76 -#: ../../operation/agentes/estado_agente.php:176 -#: ../../operation/agentes/estado_agente.php:194 -#: ../../operation/agentes/status_monitor.php:456 -#: ../../operation/incidents/incident.php:289 -#: ../../operation/search_results.php:160 -#: ../../godmode/users/user_list.php:230 ../../godmode/users/user_list.php:234 -#: ../../godmode/alerts/alert_templates.php:256 -#: ../../godmode/alerts/alert_templates.php:260 -#: ../../godmode/agentes/modificar_agente.php:159 -#: ../../godmode/agentes/modificar_agente.php:163 -#: ../../godmode/agentes/planned_downtime.list.php:139 -#: ../../godmode/agentes/module_manager.php:37 -#: ../../godmode/modules/manage_network_components.php:499 -#: ../../godmode/reporting/reporting_builder.php:440 -#: ../../general/ui/agents_list.php:80 ../../general/ui/agents_list.php:91 -msgid "Search" -msgstr "Поиск" - -#: ../../enterprise/meta/agentsearch.php:71 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:108 -#: ../../enterprise/meta/advanced/policymanager.queue.php:244 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:148 -#: ../../enterprise/godmode/alerts/alert_events_list.php:382 -#: ../../enterprise/godmode/modules/local_components.php:445 -#: ../../operation/events/events_list.php:627 -#: ../../operation/agentes/alerts_status.php:384 -#: ../../operation/agentes/status_monitor.php:525 ../../operation/tree.php:184 -#: ../../godmode/users/user_list.php:243 -#: ../../godmode/alerts/alert_templates.php:268 -#: ../../godmode/modules/manage_network_components.php:507 -#: ../../godmode/reporting/reporting_builder.list_items.php:205 -#: ../../godmode/tag/tag.php:176 ../../godmode/tag/tag.php:281 -msgid "Show Options" -msgstr "" - -#: ../../enterprise/meta/agentsearch.php:79 -msgid "Search results for" -msgstr "Результаты поиска для" - -#: ../../enterprise/meta/agentsearch.php:91 -#: ../../enterprise/meta/include/functions_wizard_meta.php:133 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1620 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1081 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1371 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1494 -#: ../../enterprise/meta/advanced/policymanager.queue.php:255 -#: ../../enterprise/extensions/csv_import/main.php:75 -#: ../../enterprise/include/functions_reporting.php:1895 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1332 -#: ../../operation/events/events.build_table.php:45 -#: ../../operation/events/events_list.php:441 -#: ../../operation/servers/recon_view.php:173 -#: ../../godmode/agentes/agent_manager.php:267 -#: ../../godmode/agentes/module_manager.php:513 -#: ../../godmode/massive/massive_edit_agents.php:298 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1076 -msgid "Server" -msgstr "Сервер" - -#: ../../enterprise/meta/agentsearch.php:93 -#: ../../enterprise/extensions/ipam/ipam_network.php:538 -#: ../../enterprise/godmode/modules/local_components.php:434 -#: ../../enterprise/godmode/modules/local_components.php:448 -#: ../../enterprise/godmode/modules/local_components.php:470 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:156 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:82 -#: ../../enterprise/godmode/modules/configure_local_component.php:160 -#: ../../mobile/operation/agents.php:73 ../../mobile/operation/agents.php:279 -#: ../../include/functions_reporting_html.php:1484 -#: ../../include/functions_events.php:2028 -#: ../../operation/search_agents.php:45 ../../operation/search_agents.php:53 -#: ../../operation/gis_maps/ajax.php:276 -#: ../../operation/agentes/estado_agente.php:457 -#: ../../operation/agentes/estado_generalagente.php:128 -#: ../../operation/tree.php:55 ../../operation/tree.php:94 -#: ../../godmode/agentes/agent_manager.php:255 -#: ../../godmode/agentes/modificar_agente.php:426 -#: ../../godmode/agentes/planned_downtime.editor.php:724 -#: ../../godmode/servers/manage_recontask_form.php:286 -#: ../../godmode/servers/manage_recontask.php:287 -#: ../../godmode/massive/massive_edit_agents.php:287 -msgid "OS" -msgstr "ОС" - -#: ../../enterprise/meta/agentsearch.php:94 -#: ../../enterprise/meta/include/functions_wizard_meta.php:776 -#: ../../enterprise/meta/include/functions_wizard_meta.php:894 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1058 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1356 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1437 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1570 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1108 -#: ../../enterprise/extensions/ipam/ipam_network.php:125 -#: ../../enterprise/extensions/ipam/ipam_list.php:63 -#: ../../enterprise/include/functions_reporting_pdf.php:2285 -#: ../../enterprise/godmode/agentes/inventory_manager.php:174 -#: ../../enterprise/godmode/agentes/inventory_manager.php:236 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:80 -#: ../../enterprise/godmode/modules/configure_local_component.php:215 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:188 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:244 -#: ../../mobile/operation/modules.php:470 -#: ../../mobile/operation/modules.php:473 -#: ../../mobile/operation/modules.php:474 -#: ../../mobile/operation/modules.php:646 -#: ../../include/functions_treeview.php:85 -#: ../../include/functions_treeview.php:422 -#: ../../include/functions_reporting_html.php:1520 -#: ../../operation/search_modules.php:50 ../../operation/search_agents.php:46 -#: ../../operation/search_agents.php:56 -#: ../../operation/agentes/estado_agente.php:462 -#: ../../operation/agentes/estado_generalagente.php:201 -#: ../../operation/agentes/status_monitor.php:941 -#: ../../operation/servers/recon_view.php:92 -#: ../../operation/netflow/nf_live_view.php:242 -#: ../../godmode/agentes/agent_manager.php:249 -#: ../../godmode/agentes/module_manager_editor_common.php:332 -#: ../../godmode/agentes/module_manager_editor_common.php:358 -#: ../../godmode/agentes/module_manager.php:519 -#: ../../godmode/servers/manage_recontask_form.php:247 -#: ../../godmode/servers/manage_recontask.php:287 -#: ../../godmode/massive/massive_edit_agents.php:283 -#: ../../godmode/massive/massive_edit_modules.php:441 -#: ../../godmode/modules/manage_network_components_form_common.php:102 -msgid "Interval" -msgstr "Периодичность" - -#: ../../enterprise/meta/agentsearch.php:98 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1370 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1460 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1580 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:226 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:599 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:85 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:73 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:103 -#: ../../enterprise/include/functions_policies.php:3224 -#: ../../enterprise/include/functions_reporting_pdf.php:706 -#: ../../enterprise/godmode/services/services.service.php:312 -#: ../../enterprise/godmode/alerts/alert_events_list.php:67 -#: ../../enterprise/godmode/alerts/alert_events_list.php:114 -#: ../../enterprise/godmode/alerts/alert_events_list.php:129 -#: ../../enterprise/godmode/alerts/alert_events_list.php:144 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:69 -#: ../../enterprise/godmode/alerts/alert_events.php:71 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:91 -#: ../../enterprise/godmode/policies/policies.php:343 -#: ../../enterprise/godmode/policies/policy_alerts.php:32 -#: ../../mobile/include/functions_web.php:25 -#: ../../mobile/operation/agent.php:189 ../../mobile/operation/home.php:54 -#: ../../mobile/operation/alerts.php:154 ../../mobile/operation/agents.php:83 -#: ../../mobile/operation/agents.php:287 -#: ../../extensions/agents_alerts.php:252 -#: ../../include/functions_graph.php:732 -#: ../../include/functions_graph.php:3529 -#: ../../include/functions_graph.php:4198 -#: ../../include/functions_treeview.php:280 -#: ../../include/functions_reports.php:601 -#: ../../include/functions_reports.php:603 -#: ../../include/functions_reports.php:606 -#: ../../include/functions_reporting_html.php:1059 -#: ../../include/functions_reporting_html.php:2415 -#: ../../operation/search_agents.php:65 -#: ../../operation/agentes/ver_agente.php:823 -#: ../../operation/agentes/ver_agente.php:1016 -#: ../../operation/agentes/estado_agente.php:478 -#: ../../operation/search_results.php:93 ../../godmode/menu.php:132 -#: ../../godmode/alerts/alert_commands.php:242 -#: ../../godmode/alerts/configure_alert_special_days.php:52 -#: ../../godmode/alerts/configure_alert_command.php:41 -#: ../../godmode/alerts/alert_special_days.php:43 -#: ../../godmode/alerts/configure_alert_template.php:62 -#: ../../godmode/alerts/configure_alert_template.php:82 -#: ../../godmode/alerts/configure_alert_template.php:100 -#: ../../godmode/alerts/alert_list.php:297 -#: ../../godmode/alerts/alert_list.php:300 -#: ../../godmode/alerts/alert_templates.php:132 -#: ../../godmode/alerts/alert_templates.php:175 -#: ../../godmode/alerts/alert_templates.php:194 -#: ../../godmode/alerts/alert_templates.php:210 -#: ../../godmode/alerts/configure_alert_action.php:56 -#: ../../godmode/alerts/configure_alert_action.php:65 -#: ../../godmode/alerts/alert_actions.php:66 -#: ../../godmode/alerts/alert_actions.php:92 -#: ../../godmode/alerts/alert_actions.php:110 -#: ../../godmode/alerts/alert_actions.php:127 -#: ../../godmode/alerts/alert_actions.php:207 -#: ../../godmode/alerts/alert_actions.php:218 -#: ../../godmode/alerts/alert_actions.php:287 -#: ../../godmode/alerts/alert_actions.php:306 -#: ../../godmode/alerts/alert_actions.php:319 -#: ../../godmode/agentes/modificar_agente.php:504 -#: ../../godmode/agentes/configurar_agente.php:287 -#: ../../godmode/groups/group_list.php:336 -#: ../../godmode/groups/configure_group.php:161 -#: ../../godmode/massive/massive_copy_modules.php:153 -msgid "Alerts" -msgstr "Предупреждения" - -#: ../../enterprise/meta/agentsearch.php:99 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1149 -#: ../../enterprise/operation/agentes/policy_view.php:309 -#: ../../enterprise/operation/agentes/ver_agente.php:75 -#: ../../mobile/operation/agent.php:138 ../../mobile/operation/agents.php:85 -#: ../../mobile/operation/agents.php:300 ../../mobile/operation/agents.php:302 -#: ../../mobile/operation/agents.php:304 ../../mobile/operation/agents.php:305 -#: ../../include/functions_treeview.php:443 -#: ../../include/functions_events.php:2033 ../../include/ajax/module.php:716 -#: ../../operation/search_agents.php:66 ../../operation/gis_maps/ajax.php:219 -#: ../../operation/gis_maps/ajax.php:321 -#: ../../operation/agentes/ver_agente.php:548 -#: ../../operation/agentes/estado_agente.php:481 -#: ../../operation/agentes/estado_generalagente.php:206 -#: ../../operation/search_users.php:47 ../../godmode/users/user_list.php:272 -#: ../../godmode/agentes/planned_downtime.editor.php:725 -msgid "Last contact" -msgstr "Последний контакт" - -#: ../../enterprise/meta/agentsearch.php:191 -msgid "There are no agents included in this group" -msgstr "Нет агентов включенных в эту группу." - -#: ../../enterprise/meta/index.php:239 ../../mobile/include/user.class.php:172 -#: ../../index.php:233 ../../include/ajax/double_auth.ajax.php:489 -msgid "Invalid code" -msgstr "" - -#: ../../enterprise/meta/index.php:250 ../../index.php:244 -msgid "The code shouldn't be empty" -msgstr "" - -#: ../../enterprise/meta/index.php:262 ../../index.php:256 -msgid "Expired login" -msgstr "" - -#: ../../enterprise/meta/index.php:270 ../../enterprise/meta/index.php:276 -#: ../../index.php:264 ../../index.php:270 -msgid "Login error" -msgstr "" - -#: ../../enterprise/meta/index.php:499 ../../enterprise/meta/index.php:510 -#: ../../index.php:668 -msgid "Sorry! I can't find the page!" -msgstr "Приношу свои извинения! Не могу найти запрошенную страницу!" - -#: ../../enterprise/meta/include/functions_agents_meta.php:970 -#: ../../enterprise/meta/include/functions_agents_meta.php:981 -msgid "Agents movement" -msgstr "Агенты движения" - -#: ../../enterprise/meta/include/functions_agents_meta.php:975 -#: ../../enterprise/meta/include/functions_agents_meta.php:984 -msgid "Group management" -msgstr "управление группами" - -#: ../../enterprise/meta/include/functions_groups_meta.php:77 -#, php-format -msgid "(Error Duplicate ID (%d) ) " -msgstr "" - -#: ../../enterprise/meta/include/functions_groups_meta.php:99 -msgid "Different parent" -msgstr "" - -#: ../../enterprise/meta/include/functions_groups_meta.php:104 -msgid "Different name" -msgstr "" - -#: ../../enterprise/meta/include/functions_groups_meta.php:130 -#: ../../enterprise/meta/include/functions_meta.php:99 -#: ../../enterprise/meta/advanced/synchronizing.component.php:289 -#: ../../enterprise/meta/advanced/synchronizing.user.php:489 -#: ../../enterprise/meta/advanced/synchronizing.user.php:569 -#: ../../enterprise/meta/advanced/policymanager.sync.php:238 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:286 -#, php-format -msgid "Error connecting to %s" -msgstr "Ошибка соединения с %s" - -#: ../../enterprise/meta/include/functions_meta.php:128 -msgid "No admin user" -msgstr "Нет пользователя с правами администратора" - -#: ../../enterprise/meta/include/functions_meta.php:144 -#: ../../include/functions_config.php:212 -msgid "Activate Metaconsole" -msgstr "Активировать Мета Консоль" - -#: ../../enterprise/meta/include/functions_meta.php:154 -#: ../../enterprise/meta/advanced/metasetup.setup.php:91 -#: ../../include/functions_config.php:134 -#: ../../godmode/setup/setup_general.php:51 -msgid "Language code for Pandora" -msgstr "Язык веб-интерфейса Pandora" - -#: ../../enterprise/meta/include/functions_meta.php:164 -#: ../../enterprise/meta/advanced/metasetup.setup.php:97 -#: ../../include/functions_config.php:138 -#: ../../godmode/setup/setup_general.php:61 -msgid "Auto login (hash) password" -msgstr "Пароль для автовхода" - -#: ../../enterprise/meta/include/functions_meta.php:174 -#: ../../enterprise/meta/advanced/metasetup.setup.php:101 -#: ../../include/functions_config.php:141 -#: ../../godmode/setup/setup_general.php:64 -msgid "Time source" -msgstr "Источник времени" - -#: ../../enterprise/meta/include/functions_meta.php:184 -#: ../../enterprise/meta/advanced/metasetup.setup.php:108 -#: ../../include/functions_config.php:145 -#: ../../godmode/setup/setup_general.php:73 -msgid "Enforce https" -msgstr "Использовать HTTPS" - -#: ../../enterprise/meta/include/functions_meta.php:194 -#: ../../enterprise/meta/advanced/metasetup.setup.php:114 -#: ../../include/functions_config.php:147 -#: ../../godmode/setup/setup_general.php:77 -msgid "Attachment store" -msgstr "Папка для вложений" - -#: ../../enterprise/meta/include/functions_meta.php:204 -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -#: ../../include/functions_config.php:167 -#: ../../godmode/setup/setup_general.php:202 -msgid "Timezone setup" -msgstr "Настройка часового пояса" - -#: ../../enterprise/meta/include/functions_meta.php:214 -#: ../../enterprise/meta/advanced/metasetup.setup.php:155 -#: ../../include/functions_config.php:189 -#: ../../godmode/setup/setup_general.php:228 -msgid "Public URL" -msgstr "Общественный URL" - -#: ../../enterprise/meta/include/functions_meta.php:224 -msgid "Netflow disable custom live view filters" -msgstr "Сетевой поток отключил пользовательские фильтры живого просмотра" - -#: ../../enterprise/meta/include/functions_meta.php:234 -#: ../../enterprise/meta/include/functions_meta.php:244 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:261 -#: ../../enterprise/meta/advanced/metasetup.setup.php:209 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:183 -#: ../../include/functions_config.php:151 -#: ../../godmode/setup/setup_general.php:89 -msgid "API password" -msgstr "API пароль" - -#: ../../enterprise/meta/include/functions_meta.php:255 -#: ../../enterprise/meta/advanced/metasetup.setup.php:213 -#: ../../include/functions_config.php:149 -#: ../../godmode/setup/setup_general.php:80 -msgid "IP list with API access" -msgstr "Список IP адресов с доступом к API" - -#: ../../enterprise/meta/include/functions_meta.php:272 -msgid "Customizable section" -msgstr "Настраиваемые разделы" - -#: ../../enterprise/meta/include/functions_meta.php:282 -#: ../../enterprise/meta/advanced/metasetup.password.php:122 -#: ../../enterprise/godmode/setup/setup.php:289 -#: ../../include/functions_config.php:270 -msgid "Apply password policy to admin users" -msgstr "Применить политику паролей к пользователям-администраторам" - -#: ../../enterprise/meta/include/functions_meta.php:295 -#: ../../enterprise/meta/advanced/metasetup.password.php:78 -#: ../../enterprise/godmode/setup/setup.php:252 -#: ../../include/functions_config.php:253 -msgid "Enable password policy" -msgstr "Включить политику паролей" - -#: ../../enterprise/meta/include/functions_meta.php:305 -#: ../../enterprise/meta/advanced/metasetup.password.php:84 -#: ../../enterprise/godmode/setup/setup.php:257 -#: ../../include/functions_config.php:256 -msgid "Min. size password" -msgstr "Минимальный размер пароля" - -#: ../../enterprise/meta/include/functions_meta.php:315 -#: ../../enterprise/meta/advanced/metasetup.password.php:89 -#: ../../enterprise/godmode/setup/setup.php:261 -#: ../../include/functions_config.php:266 -msgid "Password must have numbers" -msgstr "Парль должен содержать номера" - -#: ../../enterprise/meta/include/functions_meta.php:325 -#: ../../enterprise/meta/advanced/metasetup.password.php:95 -#: ../../enterprise/godmode/setup/setup.php:266 -#: ../../include/functions_config.php:268 -msgid "Password must have symbols" -msgstr "Парольдолжен содержать символы" - -#: ../../enterprise/meta/include/functions_meta.php:335 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -#: ../../enterprise/godmode/setup/setup.php:271 -#: ../../include/functions_config.php:258 -msgid "Password expiration" -msgstr "Срок действия пароля" - -#: ../../enterprise/meta/include/functions_meta.php:345 -#: ../../enterprise/meta/advanced/metasetup.password.php:106 -#: ../../enterprise/godmode/setup/setup.php:275 -#: ../../include/functions_config.php:260 -msgid "Force change password on first login" -msgstr "Обязательная смены пароля при первом входе" - -#: ../../enterprise/meta/include/functions_meta.php:355 -#: ../../enterprise/meta/advanced/metasetup.password.php:112 -#: ../../enterprise/godmode/setup/setup.php:280 -#: ../../include/functions_config.php:262 -msgid "User blocked if login fails" -msgstr "Пользователь блокируется, если не удалось воити в систему" - -#: ../../enterprise/meta/include/functions_meta.php:365 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -#: ../../enterprise/godmode/setup/setup.php:284 -#: ../../include/functions_config.php:264 -msgid "Number of failed login attempts" -msgstr "Количество неудачных попыток входа" - -#: ../../enterprise/meta/include/functions_meta.php:375 -#: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/godmode/setup/setup.php:294 -#: ../../include/functions_config.php:272 -msgid "Enable password history" -msgstr "Включить историю паролей" - -#: ../../enterprise/meta/include/functions_meta.php:385 -#: ../../enterprise/meta/advanced/metasetup.password.php:134 -#: ../../enterprise/godmode/setup/setup.php:299 -#: ../../include/functions_config.php:274 -msgid "Compare previous password" -msgstr "Сравнить предыдущий пароль" - -#: ../../enterprise/meta/include/functions_meta.php:398 -#: ../../include/functions_config.php:280 -#: ../../godmode/setup/setup_auth.php:62 -msgid "Authentication method" -msgstr "способ проверки подлинности" - -#: ../../enterprise/meta/include/functions_meta.php:408 -#: ../../include/functions_config.php:318 -#: ../../godmode/setup/setup_auth.php:68 -msgid "Fallback to local authentication" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:418 -#: ../../include/functions_config.php:282 -#: ../../godmode/setup/setup_auth.php:77 -msgid "Autocreate remote users" -msgstr "Автосоздание удаленных пользователей" - -#: ../../enterprise/meta/include/functions_meta.php:428 -#: ../../include/functions_config.php:284 -#: ../../godmode/setup/setup_auth.php:89 -msgid "Autocreate profile" -msgstr "Автосоздание профиля" - -#: ../../enterprise/meta/include/functions_meta.php:438 -#: ../../include/functions_config.php:286 -#: ../../godmode/setup/setup_auth.php:97 -msgid "Autocreate profile group" -msgstr "Автосоздание профиля группы" - -#: ../../enterprise/meta/include/functions_meta.php:448 -#: ../../include/functions_config.php:288 -#: ../../godmode/setup/setup_auth.php:106 -msgid "Autocreate profile tags" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:458 -#: ../../include/functions_config.php:290 -#: ../../godmode/setup/setup_auth.php:114 -msgid "Autocreate blacklist" -msgstr "Автосоздание черного списка" - -#: ../../enterprise/meta/include/functions_meta.php:468 -#: ../../include/functions_config.php:352 -#: ../../operation/users/user_edit.php:349 -#: ../../godmode/setup/setup_auth.php:201 -msgid "Double authentication" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:478 -#: ../../include/functions_config.php:354 -msgid "Session timeout" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:490 -#: ../../enterprise/godmode/setup/setup_auth.php:93 -#: ../../include/functions_config.php:293 -msgid "Active directory server" -msgstr "Активный каталог сервера" - -#: ../../enterprise/meta/include/functions_meta.php:500 -#: ../../enterprise/godmode/setup/setup_auth.php:100 -#: ../../include/functions_config.php:295 -msgid "Active directory port" -msgstr "Активный каталог с портом" - -#: ../../enterprise/meta/include/functions_meta.php:510 -#: ../../enterprise/meta/include/functions_meta.php:582 -#: ../../enterprise/godmode/setup/setup_auth.php:107 -#: ../../include/functions_config.php:297 -#: ../../include/functions_config.php:312 -#: ../../godmode/setup/setup_auth.php:161 -msgid "Start TLS" -msgstr "Начать TLS" - -#: ../../enterprise/meta/include/functions_meta.php:520 -#: ../../enterprise/godmode/setup/setup_auth.php:70 -#: ../../include/functions_config.php:299 -msgid "Advance Config AD" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:530 -#: ../../enterprise/godmode/setup/setup_auth.php:115 -#: ../../include/functions_config.php:301 -msgid "Domain" -msgstr "Домен" - -#: ../../enterprise/meta/include/functions_meta.php:540 -#: ../../enterprise/godmode/setup/setup_auth.php:86 -#: ../../include/functions_config.php:303 -msgid "Advanced Permisions AD" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:552 -#: ../../include/functions_config.php:306 -#: ../../godmode/setup/setup_auth.php:139 -msgid "LDAP server" -msgstr "Сервер LDAP" - -#: ../../enterprise/meta/include/functions_meta.php:562 -#: ../../include/functions_config.php:308 -#: ../../godmode/setup/setup_auth.php:146 -msgid "LDAP port" -msgstr "Порт LDAP" - -#: ../../enterprise/meta/include/functions_meta.php:572 -#: ../../include/functions_config.php:310 -#: ../../godmode/setup/setup_auth.php:154 -msgid "LDAP version" -msgstr "Версия LDAP" - -#: ../../enterprise/meta/include/functions_meta.php:592 -#: ../../include/functions_config.php:314 -#: ../../godmode/setup/setup_auth.php:169 -msgid "Base DN" -msgstr "База DN" - -#: ../../enterprise/meta/include/functions_meta.php:602 -#: ../../include/functions_config.php:316 -#: ../../godmode/setup/setup_auth.php:176 -msgid "Login attribute" -msgstr "атрибут ввода" - -#: ../../enterprise/meta/include/functions_meta.php:615 -msgid "Pandora FMS host" -msgstr "Хост Pandora FMS" - -#: ../../enterprise/meta/include/functions_meta.php:625 -#: ../../enterprise/meta/include/functions_meta.php:678 -#: ../../enterprise/meta/include/functions_meta.php:731 -#: ../../enterprise/godmode/setup/setup_auth.php:145 -#: ../../enterprise/godmode/setup/setup_auth.php:197 -#: ../../enterprise/godmode/setup/setup_auth.php:249 -#: ../../include/functions_config.php:323 -#: ../../include/functions_config.php:334 -#: ../../include/functions_config.php:344 -msgid "MySQL port" -msgstr "MySQL порт" - -#: ../../enterprise/meta/include/functions_meta.php:635 -#: ../../enterprise/meta/include/functions_meta.php:688 -#: ../../enterprise/meta/include/functions_meta.php:741 -#: ../../enterprise/godmode/setup/setup_auth.php:152 -#: ../../enterprise/godmode/setup/setup_auth.php:204 -#: ../../enterprise/godmode/setup/setup_auth.php:256 -#: ../../enterprise/godmode/setup/setup_history.php:55 -#: ../../include/functions_config.php:325 -#: ../../include/functions_config.php:336 -#: ../../include/functions_config.php:346 -#: ../../include/functions_config.php:625 -msgid "Database name" -msgstr "Имя базы данных" - -#: ../../enterprise/meta/include/functions_meta.php:645 -#: ../../enterprise/meta/include/functions_meta.php:698 -#: ../../enterprise/meta/include/functions_meta.php:751 -#: ../../enterprise/meta/include/functions_events_meta.php:64 -#: ../../enterprise/meta/include/functions_wizard_meta.php:398 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1307 -#: ../../enterprise/meta/general/login_page.php:69 -#: ../../enterprise/extensions/check_acls.php:42 -#: ../../enterprise/extensions/check_acls.php:120 -#: ../../enterprise/extensions/cron/main.php:185 -#: ../../enterprise/extensions/vmware/main.php:225 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:167 -#: ../../enterprise/godmode/servers/manage_export_form.php:97 -#: ../../enterprise/godmode/setup/setup_auth.php:159 -#: ../../enterprise/godmode/setup/setup_auth.php:211 -#: ../../enterprise/godmode/setup/setup_auth.php:263 -#: ../../mobile/include/user.class.php:239 -#: ../../mobile/operation/tactical.php:262 -#: ../../extensions/users_connected.php:77 -#: ../../extensions/api_checker.php:105 ../../extensions/ssh_gateway.php:59 -#: ../../include/functions.php:2262 -#: ../../include/functions_reporting_html.php:2755 -#: ../../include/functions_events.php:36 -#: ../../include/functions_config.php:327 -#: ../../include/functions_config.php:338 -#: ../../include/functions_config.php:348 -#: ../../operation/integria_incidents/incident.tracking.php:22 -#: ../../operation/events/events.build_table.php:79 -#: ../../operation/events/events.build_table.php:474 -#: ../../operation/search_users.php:68 -#: ../../godmode/events/custom_events.php:77 -#: ../../godmode/events/custom_events.php:155 -#: ../../godmode/admin_access_logs.php:63 -#: ../../godmode/admin_access_logs.php:188 ../../general/logon_ok.php:220 -#: ../../general/logon_ok.php:417 ../../general/login_page.php:119 -msgid "User" -msgstr "Пользователь" - -#: ../../enterprise/meta/include/functions_meta.php:655 -#: ../../enterprise/meta/include/functions_meta.php:708 -#: ../../enterprise/meta/include/functions_meta.php:761 -#: ../../enterprise/meta/include/functions_wizard_meta.php:402 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1311 -#: ../../enterprise/meta/general/login_page.php:73 -#: ../../enterprise/extensions/vmware/main.php:230 -#: ../../enterprise/include/functions_setup.php:30 -#: ../../enterprise/include/functions_setup.php:59 -#: ../../enterprise/godmode/agentes/inventory_manager.php:191 -#: ../../enterprise/godmode/servers/manage_export_form.php:101 -#: ../../enterprise/godmode/setup/setup_auth.php:166 -#: ../../enterprise/godmode/setup/setup_auth.php:218 -#: ../../enterprise/godmode/setup/setup_auth.php:270 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:203 -#: ../../mobile/include/user.class.php:246 -#: ../../extensions/api_checker.php:110 ../../include/functions_config.php:329 -#: ../../include/functions_config.php:340 -#: ../../include/functions_config.php:350 -#: ../../godmode/users/configure_user.php:451 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:265 -#: ../../godmode/agentes/module_manager_editor_wmi.php:53 -#: ../../godmode/massive/massive_edit_modules.php:497 -#: ../../godmode/modules/manage_network_components_form_wmi.php:50 -#: ../../general/login_page.php:124 -msgid "Password" -msgstr "Пароль" - -#: ../../enterprise/meta/include/functions_meta.php:668 -#: ../../enterprise/godmode/setup/setup_auth.php:190 -#: ../../include/functions_config.php:332 -msgid "Babel Enterprise host" -msgstr "Хост Babel предприятия" - -#: ../../enterprise/meta/include/functions_meta.php:721 -#: ../../enterprise/godmode/setup/setup_auth.php:242 -#: ../../include/functions_config.php:342 -msgid "Integria host" -msgstr "хост Integria" - -#: ../../enterprise/meta/include/functions_meta.php:774 -#: ../../enterprise/meta/advanced/metasetup.visual.php:81 -#: ../../include/functions_config.php:399 -#: ../../godmode/setup/setup_visuals.php:539 -msgid "Date format string" -msgstr "Формат даты" - -#: ../../enterprise/meta/include/functions_meta.php:784 -#: ../../enterprise/meta/advanced/metasetup.visual.php:95 -#: ../../include/functions_config.php:401 -#: ../../godmode/setup/setup_visuals.php:552 -msgid "Timestamp or time comparation" -msgstr "Время печати или времени сравнения" - -#: ../../enterprise/meta/include/functions_meta.php:794 -#: ../../enterprise/meta/advanced/metasetup.visual.php:103 -#: ../../include/functions_config.php:403 -#: ../../godmode/setup/setup_visuals.php:296 -msgid "Graph color (min)" -msgstr "Цвет графика минимальный" - -#: ../../enterprise/meta/include/functions_meta.php:804 -#: ../../enterprise/meta/advanced/metasetup.visual.php:108 -#: ../../include/functions_config.php:405 -#: ../../godmode/setup/setup_visuals.php:300 -msgid "Graph color (avg)" -msgstr "Цвет графика средний" - -#: ../../enterprise/meta/include/functions_meta.php:814 -#: ../../enterprise/meta/advanced/metasetup.visual.php:113 -#: ../../include/functions_config.php:407 -#: ../../godmode/setup/setup_visuals.php:304 -msgid "Graph color (max)" -msgstr "Цвет графика макимальный" - -#: ../../enterprise/meta/include/functions_meta.php:824 -#: ../../enterprise/meta/advanced/metasetup.visual.php:118 -#: ../../include/functions_config.php:423 -msgid "Graphic resolution (1-low, 5-high)" -msgstr "Разрешение графика (1-низкое, 5-высокое)" - -#: ../../enterprise/meta/include/functions_meta.php:834 -#: ../../enterprise/meta/advanced/metasetup.visual.php:122 -#: ../../include/functions_config.php:425 -#: ../../godmode/setup/setup_visuals.php:340 -msgid "Value to interface graphics" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:847 -#: ../../enterprise/meta/advanced/metasetup.visual.php:126 -#: ../../include/functions_config.php:432 -#: ../../operation/events/events_list.php:457 -#: ../../operation/users/user_edit.php:250 -#: ../../operation/snmpconsole/snmp_view.php:378 -#: ../../godmode/events/event_edit_filter.php:263 -#: ../../godmode/users/configure_user.php:516 -#: ../../godmode/setup/setup_visuals.php:61 -msgid "Block size for pagination" -msgstr "Размер блока для нумерации страниц" - -#: ../../enterprise/meta/include/functions_meta.php:857 -#: ../../enterprise/meta/advanced/metasetup.visual.php:131 -#: ../../include/functions_config.php:434 -#: ../../godmode/setup/setup_visuals.php:349 -msgid "Use round corners" -msgstr "Использовать округлые уголки" - -#: ../../enterprise/meta/include/functions_meta.php:867 -#: ../../enterprise/meta/advanced/metasetup.visual.php:137 -#: ../../include/functions_config.php:444 -#: ../../operation/users/user_edit.php:263 -#: ../../godmode/users/configure_user.php:512 -#: ../../godmode/setup/setup_visuals.php:354 -msgid "Interactive charts" -msgstr "Интерактивные графики" - -#: ../../enterprise/meta/include/functions_meta.php:877 -#: ../../enterprise/meta/advanced/metasetup.visual.php:141 -msgid "Metaconsole elements" -msgstr "элементы Мета консоли" - -#: ../../enterprise/meta/include/functions_meta.php:887 -#: ../../enterprise/meta/advanced/metasetup.visual.php:173 -#: ../../godmode/setup/setup_visuals.php:523 -msgid "Show only the group name" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:927 -#: ../../enterprise/meta/advanced/metasetup.visual.php:157 -#: ../../include/functions_config.php:565 -#: ../../godmode/setup/setup_visuals.php:611 -msgid "Delete interval" -msgstr "Удалить интервал" - -#: ../../enterprise/meta/include/functions_meta.php:933 -#: ../../enterprise/meta/include/functions_meta.php:938 -#: ../../enterprise/meta/include/functions_meta.php:943 -#: ../../enterprise/meta/include/functions_meta.php:948 -#: ../../enterprise/meta/include/functions_meta.php:953 -#: ../../enterprise/meta/include/functions_meta.php:958 -#: ../../enterprise/meta/advanced/metasetup.visual.php:214 -#: ../../enterprise/meta/advanced/metasetup.visual.php:217 -#: ../../enterprise/meta/advanced/metasetup.visual.php:221 -#: ../../enterprise/meta/advanced/metasetup.visual.php:227 -#: ../../enterprise/meta/advanced/metasetup.visual.php:231 -#: ../../enterprise/meta/advanced/metasetup.visual.php:238 -#: ../../include/functions_config.php:573 -#: ../../include/functions_config.php:576 -#: ../../include/functions_config.php:579 -#: ../../include/functions_config.php:582 -#: ../../include/functions_config.php:585 -#: ../../include/functions_config.php:588 -#: ../../godmode/setup/setup_visuals.php:451 -#: ../../godmode/setup/setup_visuals.php:457 -#: ../../godmode/setup/setup_visuals.php:470 -#: ../../godmode/setup/setup_visuals.php:478 -#: ../../godmode/setup/setup_visuals.php:483 -#: ../../godmode/setup/setup_visuals.php:491 -msgid "Custom report front" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:938 -#: ../../enterprise/meta/advanced/metasetup.visual.php:214 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:116 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:82 -#: ../../include/functions_config.php:576 -#: ../../godmode/setup/setup_visuals.php:451 -msgid "Font family" -msgstr "Семейство шрифтов" - -#: ../../enterprise/meta/include/functions_meta.php:943 -#: ../../enterprise/meta/advanced/metasetup.visual.php:217 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:119 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:85 -#: ../../include/functions_config.php:446 -#: ../../include/functions_config.php:579 -#: ../../godmode/setup/setup_visuals.php:147 -#: ../../godmode/setup/setup_visuals.php:458 -msgid "Custom logo" -msgstr "Собственный логотип" - -#: ../../enterprise/meta/include/functions_meta.php:948 -#: ../../enterprise/meta/advanced/metasetup.visual.php:227 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:96 -#: ../../include/functions_config.php:582 -#: ../../godmode/setup/setup_visuals.php:478 -msgid "Header" -msgstr "Заголовок" - -#: ../../enterprise/meta/include/functions_meta.php:953 -#: ../../enterprise/meta/advanced/metasetup.visual.php:231 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:133 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:99 -#: ../../include/functions_config.php:585 -#: ../../godmode/setup/setup_visuals.php:483 -msgid "First page" -msgstr "Первая страница" - -#: ../../enterprise/meta/include/functions_meta.php:958 -#: ../../enterprise/meta/advanced/metasetup.visual.php:238 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102 -#: ../../include/functions_config.php:588 -#: ../../godmode/setup/setup_visuals.php:491 -msgid "Footer" -msgstr "Нижний колонтитул" - -#: ../../enterprise/meta/include/functions_meta.php:963 -#: ../../enterprise/meta/advanced/metasetup.visual.php:184 -#: ../../include/functions_config.php:490 -#: ../../godmode/setup/setup_visuals.php:84 -msgid "Display data of proc modules in other format" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:968 -#: ../../enterprise/meta/advanced/metasetup.visual.php:193 -#: ../../include/functions_config.php:492 -#: ../../godmode/setup/setup_visuals.php:94 -msgid "Display text proc modules have state is ok" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:973 -#: ../../enterprise/meta/advanced/metasetup.visual.php:196 -#: ../../include/functions_config.php:494 -#: ../../godmode/setup/setup_visuals.php:98 -msgid "Display text when proc modules have state critical" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:987 -#: ../../enterprise/meta/advanced/metasetup.performance.php:78 -#: ../../include/functions_config.php:364 -#: ../../godmode/setup/performance.php:47 -msgid "Max. days before delete events" -msgstr "Макс. количество дней до удаления событий" - -#: ../../enterprise/meta/include/functions_meta.php:997 -#: ../../enterprise/meta/advanced/metasetup.performance.php:82 -msgid "Active events history" -msgstr "История активных событий" - -#: ../../enterprise/meta/include/functions_meta.php:1007 -#: ../../enterprise/meta/advanced/metasetup.performance.php:87 -#: ../../include/functions_config.php:370 -#: ../../godmode/setup/performance.php:53 -msgid "Max. days before delete audit events" -msgstr "Количество дней до удаления задач аудита" - -#: ../../enterprise/meta/include/functions_meta.php:1017 -#: ../../enterprise/meta/advanced/metasetup.performance.php:92 -#: ../../include/functions_config.php:382 -#: ../../godmode/setup/performance.php:94 -msgid "Default hours for event view" -msgstr "Часы по умолчанию часа для просмотра событий" - -#: ../../enterprise/meta/include/functions_meta.php:1027 -#: ../../include/functions_config.php:388 -#: ../../godmode/setup/performance.php:104 -msgid "Use agent access graph" -msgstr "Использовать график агентского доступа" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:72 -#: ../../operation/agentes/networkmap_list.php:100 -#: ../../operation/agentes/networkmap.php:168 -msgid "Network map deleted successfully" -msgstr "Карта сети успешно удалена" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:73 -#: ../../operation/agentes/networkmap_list.php:101 -#: ../../operation/agentes/networkmap.php:169 -msgid "Could not delete network map" -msgstr "Не удается удалить карту сети" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:101 -#: ../../enterprise/meta/advanced/policymanager.queue.php:228 -#: ../../enterprise/extensions/ipam/ipam_network.php:328 -#: ../../enterprise/operation/services/services.list.php:270 -#: ../../enterprise/operation/services/services.list.php:276 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:150 -#: ../../enterprise/godmode/setup/setup_skins.php:91 -#: ../../enterprise/godmode/setup/setup_acl.php:133 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:179 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:230 -#: ../../enterprise/godmode/policies/policy_linking.php:68 -#: ../../enterprise/godmode/policies/policies.php:239 -#: ../../enterprise/godmode/policies/policy_queue.php:354 -#: ../../operation/agentes/estado_monitores.php:448 -#: ../../operation/agentes/networkmap_list.php:190 -#: ../../operation/agentes/alerts_status.functions.php:106 -#: ../../operation/agentes/alerts_status.functions.php:116 -#: ../../operation/agentes/graphs.php:169 -#: ../../operation/netflow/nf_live_view.php:302 ../../operation/tree.php:147 -#: ../../operation/incidents/incident.php:225 -#: ../../godmode/snmpconsole/snmp_alert.php:908 -#: ../../godmode/snmpconsole/snmp_filters.php:96 -#: ../../godmode/snmpconsole/snmp_filters.php:132 -#: ../../godmode/agentes/module_manager.php:41 -#: ../../godmode/netflow/nf_item_list.php:148 -#: ../../godmode/admin_access_logs.php:45 -#: ../../godmode/admin_access_logs.php:72 +#: ../../views/dashboard/list.php:98 +msgid "Favorite" +msgstr "Избранное" + +#: ../../views/dashboard/list.php:99 +#: ../../include/class/AgentsAlerts.class.php:840 +#: ../../operation/agentes/networkmap.dinamic.php:115 +#: ../../operation/agentes/pandora_networkmap.view.php:843 +#: ../../operation/snmpconsole/snmp_statistics.php:54 +#: ../../operation/snmpconsole/snmp_browser.php:66 +#: ../../operation/snmpconsole/snmp_view.php:128 +#: ../../operation/events/events.php:779 +msgid "Full screen" +msgstr "Полноэкранный режим" + +#: ../../views/dashboard/list.php:102 +#: ../../enterprise/godmode/policies/policy_modules.php:1676 +#: ../../enterprise/godmode/policies/policies.php:609 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:213 +#: ../../godmode/alerts/alert_actions.php:324 +#: ../../godmode/reporting/map_builder.php:362 +#: ../../operation/agentes/pandora_networkmap.php:700 +#: ../../operation/agentes/pandora_networkmap.php:798 +msgid "Copy" +msgstr "Копировать" + +#: ../../views/dashboard/list.php:103 +#: ../../enterprise/meta/advanced/servers.build_table.php:133 +#: ../../enterprise/meta/advanced/metasetup.visual.php:431 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:537 +#: ../../enterprise/meta/advanced/metasetup.relations.php:589 +#: ../../enterprise/meta/advanced/metasetup.relations.php:590 +#: ../../enterprise/meta/advanced/metasetup.relations.php:634 +#: ../../enterprise/meta/advanced/links.php:152 +#: ../../enterprise/meta/advanced/policymanager.queue.php:220 +#: ../../enterprise/meta/advanced/policymanager.queue.php:262 +#: ../../enterprise/meta/advanced/policymanager.queue.php:315 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:280 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:446 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:638 +#: ../../enterprise/meta/include/functions_autoprovision.php:491 +#: ../../enterprise/meta/include/functions_autoprovision.php:492 +#: ../../enterprise/meta/include/functions_autoprovision.php:659 +#: ../../enterprise/meta/include/functions_autoprovision.php:660 +#: ../../enterprise/meta/include/functions_wizard_meta.php:396 +#: ../../enterprise/extensions/backup/main.php:238 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:433 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:448 +#: ../../enterprise/godmode/modules/local_components.php:628 +#: ../../enterprise/godmode/modules/local_components.php:644 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:674 +#: ../../enterprise/godmode/agentes/inventory_manager.php:246 +#: ../../enterprise/godmode/agentes/plugins_manager.php:190 +#: ../../enterprise/godmode/agentes/plugins_manager.php:272 +#: ../../enterprise/godmode/policies/policy_plugins.php:154 +#: ../../enterprise/godmode/policies/policy_alerts.php:476 +#: ../../enterprise/godmode/policies/policy_modules.php:1589 +#: ../../enterprise/godmode/policies/policy_modules.php:1621 +#: ../../enterprise/godmode/policies/policy_queue.php:443 +#: ../../enterprise/godmode/policies/policy_queue.php:503 +#: ../../enterprise/godmode/policies/policy_queue.php:536 +#: ../../enterprise/godmode/policies/policies.php:630 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:302 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:292 +#: ../../enterprise/godmode/policies/policy_agents.php:948 +#: ../../enterprise/godmode/policies/policy_agents.php:1315 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:369 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:231 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:133 +#: ../../enterprise/godmode/massive/massive_delete_services.php:92 +#: ../../enterprise/godmode/alerts/alert_events_list.php:658 +#: ../../enterprise/godmode/alerts/alert_events_list.php:733 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:486 +#: ../../enterprise/godmode/setup/setup_acl.php:462 +#: ../../enterprise/godmode/reporting/graph_template_list.php:212 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:586 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:617 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:182 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:192 +#: ../../enterprise/godmode/reporting/visual_console_template.php:261 +#: ../../enterprise/godmode/reporting/mysql_builder.php:67 +#: ../../enterprise/godmode/reporting/mysql_builder.php:74 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 +#: ../../enterprise/include/functions_tasklist.php:483 +#: ../../enterprise/include/functions_tasklist.php:516 +#: ../../enterprise/include/ajax/transactional.ajax.php:119 +#: ../../enterprise/include/ajax/transactional.ajax.php:208 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:92 +#: ../../enterprise/include/ajax/servers.ajax.php:103 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1537 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1576 +#: ../../enterprise/include/class/AgentRepository.class.php:758 +#: ../../enterprise/include/class/AgentRepository.class.php:793 +#: ../../enterprise/include/class/Omnishell.class.php:1163 +#: ../../enterprise/include/class/LogSource.class.php:744 +#: ../../enterprise/include/class/LogSource.class.php:867 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2470 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3124 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3438 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:631 +#: ../../enterprise/include/lib/Metaconsole/Node.php:803 +#: ../../enterprise/include/lib/Metaconsole/Node.php:804 +#: ../../enterprise/operation/agentes/transactional_map.php:377 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:241 +#: ../../enterprise/operation/services/services.list.php:657 +#: ../../extensions/files_repo/files_repo_list.php:151 #: ../../godmode/modules/manage_network_templates_form.php:242 -#: ../../godmode/modules/manage_network_templates_form.php:298 -#: ../../godmode/reporting/reporting_builder.list_items.php:173 -#: ../../godmode/reporting/reporting_builder.list_items.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:624 -#: ../../godmode/tag/tag.php:161 -msgid "Filter" -msgstr "Фильтр" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:134 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:221 -msgid "Not networkmap defined." -msgstr "Карта сети не определена." - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:160 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:196 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:208 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:209 -#: ../../enterprise/meta/include/functions_wizard_meta.php:294 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1425 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1594 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/meta/advanced/policymanager.queue.php:312 -#: ../../enterprise/meta/advanced/servers.build_table.php:132 -#: ../../enterprise/meta/advanced/metasetup.visual.php:159 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:267 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:428 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:620 -#: ../../enterprise/extensions/cron/main.php:263 -#: ../../enterprise/extensions/backup/main.php:137 -#: ../../enterprise/include/functions_networkmap_enterprise.php:612 -#: ../../enterprise/operation/services/services.list.php:460 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:304 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:372 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:261 -#: ../../enterprise/godmode/alerts/alert_events_list.php:568 -#: ../../enterprise/godmode/alerts/alert_events_list.php:646 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:480 -#: ../../enterprise/godmode/agentes/inventory_manager.php:262 -#: ../../enterprise/godmode/agentes/plugins_manager.php:112 -#: ../../enterprise/godmode/agentes/plugins_manager.php:171 -#: ../../enterprise/godmode/setup/setup_acl.php:153 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:122 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:191 -#: ../../enterprise/godmode/modules/local_components.php:519 -#: ../../enterprise/godmode/modules/local_components.php:531 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:224 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:237 -#: ../../enterprise/godmode/reporting/graph_template_list.php:158 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:355 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:364 -#: ../../enterprise/godmode/reporting/mysql_builder.php:42 -#: ../../enterprise/godmode/reporting/mysql_builder.php:49 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:177 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:188 -#: ../../enterprise/godmode/policies/policies.php:390 -#: ../../enterprise/godmode/policies/policy_queue.php:344 -#: ../../enterprise/godmode/policies/policy_queue.php:379 -#: ../../enterprise/godmode/policies/policy_queue.php:421 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 -#: ../../enterprise/godmode/policies/policy_plugins.php:83 -#: ../../enterprise/godmode/policies/policy_agents.php:449 -#: ../../enterprise/godmode/policies/policy_modules.php:1085 -#: ../../enterprise/godmode/policies/policy_modules.php:1109 -#: ../../enterprise/godmode/policies/policy_alerts.php:422 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:257 -#: ../../extensions/files_repo/files_repo_list.php:106 -#: ../../include/functions_groups.php:2143 -#: ../../operation/integria_incidents/incident.files.php:46 -#: ../../operation/messages/message_list.php:128 -#: ../../operation/messages/message_list.php:194 -#: ../../operation/messages/message_list.php:200 -#: ../../operation/messages/message_list.php:216 -#: ../../operation/messages/message_edit.php:109 -#: ../../operation/snmpconsole/snmp_view.php:648 -#: ../../operation/snmpconsole/snmp_view.php:654 -#: ../../operation/snmpconsole/snmp_view.php:805 -#: ../../operation/snmpconsole/snmp_view.php:830 -#: ../../operation/gis_maps/gis_map.php:163 -#: ../../operation/agentes/networkmap_list.php:138 -#: ../../operation/agentes/networkmap_list.php:229 -#: ../../operation/agentes/networkmap_list.php:253 -#: ../../operation/incidents/incident_detail.php:456 -#: ../../godmode/extensions.php:280 ../../godmode/extensions.php:284 -#: ../../godmode/events/event_filter.php:144 -#: ../../godmode/events/event_filter.php:164 -#: ../../godmode/events/event_responses.list.php:66 -#: ../../godmode/users/user_list.php:471 -#: ../../godmode/snmpconsole/snmp_alert.php:1095 -#: ../../godmode/snmpconsole/snmp_alert.php:1124 -#: ../../godmode/snmpconsole/snmp_filters.php:144 -#: ../../godmode/gis_maps/index.php:111 -#: ../../godmode/alerts/alert_commands.php:326 -#: ../../godmode/alerts/alert_special_days.php:165 -#: ../../godmode/alerts/alert_templates.php:344 -#: ../../godmode/alerts/alert_list.list.php:688 -#: ../../godmode/alerts/alert_actions.php:343 -#: ../../godmode/agentes/module_manager_editor_common.php:638 -#: ../../godmode/agentes/planned_downtime.editor.php:766 -#: ../../godmode/agentes/planned_downtime.editor.php:771 -#: ../../godmode/agentes/planned_downtime.editor.php:819 -#: ../../godmode/agentes/planned_downtime.list.php:400 -#: ../../godmode/agentes/planned_downtime.list.php:468 -#: ../../godmode/agentes/module_manager.php:528 -#: ../../godmode/agentes/module_manager.php:740 -#: ../../godmode/agentes/module_manager.php:757 -#: ../../godmode/agentes/agent_template.php:246 -#: ../../godmode/agentes/fields_manager.php:127 -#: ../../godmode/servers/servers.build_table.php:167 -#: ../../godmode/servers/recon_script.php:350 -#: ../../godmode/netflow/nf_item_list.php:239 -#: ../../godmode/netflow/nf_item_list.php:250 -#: ../../godmode/netflow/nf_edit.php:145 ../../godmode/netflow/nf_edit.php:157 -#: ../../godmode/groups/modu_group_list.php:183 -#: ../../godmode/db/db_refine.php:119 ../../godmode/setup/news.php:225 -#: ../../godmode/setup/links.php:137 ../../godmode/setup/setup_visuals.php:582 -#: ../../godmode/setup/setup_visuals.php:613 ../../godmode/setup/gis.php:64 -#: ../../godmode/massive/massive_delete_agents.php:136 -#: ../../godmode/massive/massive_delete_alerts.php:237 -#: ../../godmode/massive/massive_delete_modules.php:501 -#: ../../godmode/massive/massive_delete_profiles.php:131 -#: ../../godmode/massive/massive_delete_tags.php:218 -#: ../../godmode/massive/massive_delete_action_alerts.php:187 -#: ../../godmode/modules/manage_nc_groups.php:221 -#: ../../godmode/modules/manage_nc_groups.php:232 -#: ../../godmode/modules/manage_network_components.php:592 -#: ../../godmode/modules/manage_network_components.php:604 -#: ../../godmode/modules/manage_network_templates.php:205 -#: ../../godmode/modules/manage_network_templates.php:218 -#: ../../godmode/modules/manage_network_templates_form.php:219 -#: ../../godmode/reporting/reporting_builder.list_items.php:426 -#: ../../godmode/reporting/reporting_builder.list_items.php:453 -#: ../../godmode/reporting/reporting_builder.list_items.php:472 -#: ../../godmode/reporting/reporting_builder.list_items.php:532 -#: ../../godmode/reporting/graph_builder.graph_editor.php:85 -#: ../../godmode/reporting/graph_builder.graph_editor.php:124 -#: ../../godmode/reporting/visual_console_builder.elements.php:505 -#: ../../godmode/reporting/map_builder.php:215 -#: ../../godmode/reporting/graphs.php:193 -#: ../../godmode/reporting/reporting_builder.php:705 +#: ../../godmode/modules/manage_nc_groups.php:267 +#: ../../godmode/modules/manage_nc_groups.php:283 +#: ../../godmode/modules/manage_network_components.php:828 +#: ../../godmode/modules/manage_network_components.php:829 +#: ../../godmode/modules/manage_network_components.php:853 +#: ../../godmode/modules/manage_network_templates.php:275 +#: ../../godmode/modules/manage_network_templates.php:288 +#: ../../godmode/groups/group_list.php:874 +#: ../../godmode/groups/group_list.php:875 +#: ../../godmode/groups/modu_group_list.php:236 +#: ../../godmode/extensions.php:257 ../../godmode/extensions.php:259 +#: ../../godmode/users/user_list.php:655 +#: ../../godmode/agentes/agent_template.php:257 +#: ../../godmode/agentes/planned_downtime.list.php:409 +#: ../../godmode/agentes/planned_downtime.list.php:498 +#: ../../godmode/agentes/planned_downtime.editor.php:952 +#: ../../godmode/agentes/planned_downtime.editor.php:955 +#: ../../godmode/agentes/planned_downtime.editor.php:1005 +#: ../../godmode/agentes/fields_manager.php:155 +#: ../../godmode/agentes/module_manager_editor_common.php:1261 +#: ../../godmode/agentes/module_manager.php:798 +#: ../../godmode/agentes/module_manager.php:1158 +#: ../../godmode/netflow/nf_item_list.php:272 +#: ../../godmode/netflow/nf_item_list.php:282 +#: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208 +#: ../../godmode/snmpconsole/snmp_alert.php:1372 +#: ../../godmode/snmpconsole/snmp_alert.php:1393 +#: ../../godmode/snmpconsole/snmp_filters.php:280 +#: ../../godmode/snmpconsole/snmp_filters.php:291 +#: ../../godmode/alerts/alert_actions.php:325 +#: ../../godmode/alerts/alert_actions.php:443 +#: ../../godmode/alerts/alert_list.list.php:893 +#: ../../godmode/alerts/alert_templates.php:439 +#: ../../godmode/setup/news.php:251 ../../godmode/setup/gis.php:67 +#: ../../godmode/setup/links.php:143 ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/setup/setup_visuals.php:1361 +#: ../../godmode/setup/setup_visuals.php:1400 +#: ../../godmode/setup/setup_visuals.php:1420 +#: ../../godmode/reporting/reporting_builder.list_items.php:629 +#: ../../godmode/reporting/reporting_builder.list_items.php:667 +#: ../../godmode/reporting/reporting_builder.list_items.php:690 +#: ../../godmode/reporting/reporting_builder.list_items.php:791 +#: ../../godmode/reporting/create_container.php:630 +#: ../../godmode/reporting/create_container.php:683 +#: ../../godmode/reporting/map_builder.php:363 +#: ../../godmode/reporting/map_builder.php:487 +#: ../../godmode/reporting/map_builder.php:498 +#: ../../godmode/reporting/graphs.php:324 +#: ../../godmode/reporting/graphs.php:325 +#: ../../godmode/reporting/graphs.php:351 +#: ../../godmode/reporting/graph_builder.graph_editor.php:216 +#: ../../godmode/reporting/graph_builder.graph_editor.php:256 +#: ../../godmode/reporting/visual_console_builder.elements.php:711 +#: ../../godmode/reporting/reporting_builder.php:1104 +#: ../../godmode/reporting/reporting_builder.php:1197 +#: ../../godmode/events/event_filter.php:192 +#: ../../godmode/events/event_filter.php:211 +#: ../../godmode/events/event_responses.list.php:71 +#: ../../godmode/servers/servers.build_table.php:245 +#: ../../include/functions_cron.php:760 ../../include/functions_cron.php:788 +#: ../../include/class/ConfigPEN.class.php:264 +#: ../../include/class/NetworkMap.class.php:2816 +#: ../../include/class/ManageNetScanScripts.class.php:405 +#: ../../include/class/CredentialStore.class.php:1082 +#: ../../include/class/CredentialStore.class.php:1270 +#: ../../include/class/ModuleTemplates.class.php:930 +#: ../../include/class/ModuleTemplates.class.php:1208 +#: ../../include/functions_container.php:191 +#: ../../include/functions_container.php:325 +#: ../../operation/visual_console/view.php:647 +#: ../../operation/agentes/pandora_networkmap.php:702 +#: ../../operation/agentes/pandora_networkmap.php:800 +#: ../../operation/messages/message_list.php:186 +#: ../../operation/messages/message_list.php:257 +#: ../../operation/messages/message_list.php:260 +#: ../../operation/messages/message_list.php:278 +#: ../../operation/snmpconsole/snmp_view.php:1040 +#: ../../operation/snmpconsole/snmp_view.php:1054 +#: ../../operation/snmpconsole/snmp_view.php:1226 +#: ../../operation/snmpconsole/snmp_view.php:1276 +#: ../../operation/gis_maps/gis_map.php:190 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:129 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:301 +#: ../../operation/incidents/list_integriaims_incidents.php:306 msgid "Delete" msgstr "Удалить" -#: ../../enterprise/meta/include/functions_networkmap_meta.php:236 -#: ../../enterprise/meta/screens/screens.networkmap.php:44 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:390 -msgid "Create networkmap" -msgstr "Создать карту сети" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:254 -msgid "Networkmap list" -msgstr "" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:425 -msgid "Successful update the networkmap." -msgstr "Карта сети успешно обновлена." - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:426 -msgid "Unsuccessful update the networkmap." -msgstr "Неудачное обновление карты сети." - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:438 -msgid "Unnamed " -msgstr "Неназвано " - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:519 -#: ../../godmode/events/event_edit_filter.php:206 -msgid "Save in group" -msgstr "" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:526 -#: ../../godmode/agentes/planned_downtime.editor.php:677 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:317 -msgid "Filter by group" -msgstr "Фильтр по группам" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:529 -msgid "Filter by tag" -msgstr "" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:529 -#: ../../operation/agentes/alerts_status.functions.php:86 -#: ../../operation/agentes/status_monitor.php:462 -#: ../../operation/agentes/status_monitor.php:465 -msgid "Only it is show tags in use." -msgstr "Только эти показанные теги используются." - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:535 -msgid "Filter by agents" -msgstr "Фильтр по агентам" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:545 -msgid "Filter by modules" -msgstr "Фильтр по модулям" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:555 -#: ../../enterprise/godmode/alerts/alert_events_list.php:597 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:147 -#: ../../enterprise/godmode/policies/policy_modules.php:276 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:276 -#: ../../include/functions_visual_map_editor.php:450 -#: ../../operation/events/events_list.php:569 -#: ../../godmode/agentes/agent_manager.php:398 -#: ../../godmode/agentes/module_manager_editor.php:465 -#: ../../godmode/massive/massive_edit_agents.php:403 -#: ../../godmode/massive/massive_add_action_alerts.php:157 -msgid "Advanced options" -msgstr "Дополнительные параметры" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:563 -#: ../../enterprise/extensions/vmware/vmware_view.php:1198 -#: ../../operation/agentes/networkmap.php:537 -msgid "Font" -msgstr "Шрифт" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:570 -msgid "Show modules" -msgstr "Показать модули" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:576 -#: ../../operation/agentes/networkmap.php:515 -msgid "Regenerate" -msgstr "Восстановить" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:585 -msgid "Show modulegroup" -msgstr "Показать модуль группы" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:594 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:605 -#: ../../operation/agentes/networkmap.php:489 -msgid "No Overlap" -msgstr "Нет Перекрытия" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:597 -#: ../../operation/agentes/networkmap.php:557 -msgid "Distance between nodes" -msgstr "Расстояние между узлами" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:598 -#: ../../operation/agentes/networkmap.php:558 -msgid "Separation between elements in the map (in Non-overlap mode)" -msgstr "Расстоянием между элементами на карте (в режиме Без перекрытий)" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:614 -msgid "Show children Metaconsole" -msgstr "Показать детскую мета консоль" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:623 -#: ../../enterprise/meta/advanced/policymanager.queue.php:306 -#: ../../enterprise/meta/advanced/policymanager.apply.php:215 -#: ../../enterprise/godmode/policies/policy_queue.php:415 -#: ../../enterprise/godmode/policies/policy_agents.php:352 -#: ../../include/functions_visual_map_editor.php:334 -msgid "Apply" -msgstr "Применить" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:660 -#: ../../operation/agentes/networkmap.php:588 -msgid "Map options" -msgstr "Опции карты" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:665 -msgid "There is no group selected" -msgstr "Здесь нет выбранных групп" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:682 -#: ../../enterprise/include/functions_networkmap_enterprise.php:74 -#: ../../enterprise/operation/policies/networkmap.policies.php:64 -#: ../../mobile/operation/networkmap.php:110 -#: ../../mobile/operation/networkmap.php:129 -#: ../../mobile/operation/networkmap.php:146 -#: ../../operation/agentes/networkmap.topology.php:73 -#: ../../operation/agentes/networkmap.dinamic.php:85 -#: ../../operation/agentes/networkmap.groups.php:68 -msgid "Pandora FMS" -msgstr "Pandora FMS" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:691 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:749 -#: ../../enterprise/meta/include/functions_networkmap_meta.php:770 -#: ../../enterprise/extensions/vmware/vmware_view.php:1228 -#: ../../enterprise/extensions/vmware/vmware_view.php:1260 -#: ../../enterprise/extensions/vmware/vmware_view.php:1276 -#: ../../enterprise/operation/policies/networkmap.policies.php:70 -#: ../../enterprise/operation/policies/networkmap.policies.php:119 -#: ../../enterprise/operation/policies/networkmap.policies.php:133 -#: ../../mobile/operation/networkmap.php:222 -#: ../../mobile/operation/networkmap.php:234 -#: ../../operation/agentes/networkmap.topology.php:80 -#: ../../operation/agentes/networkmap.topology.php:145 -#: ../../operation/agentes/networkmap.topology.php:160 -#: ../../operation/agentes/networkmap.groups.php:75 -#: ../../operation/agentes/networkmap.groups.php:134 -#: ../../operation/agentes/networkmap.groups.php:152 -msgid "Map could not be generated" -msgstr "Карта не может быть сгенерирована" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:693 -#: ../../enterprise/extensions/vmware/vmware_view.php:1229 -#: ../../enterprise/operation/policies/networkmap.policies.php:71 -#: ../../operation/agentes/networkmap.topology.php:81 -#: ../../operation/agentes/networkmap.groups.php:76 -#: ../../general/ui/agents_list.php:127 -msgid "No agents found" -msgstr "Не найдено ни одного агента" - -#: ../../enterprise/meta/include/functions_networkmap_meta.php:876 +#: ../../views/dashboard/list.php:136 #, php-format -msgid "Cannot connect to %s Pandora to generate networkmap." -msgstr "Не удается соединиться с %s Pandora для генерирования карты сети" +msgid "Private for (%s)" +msgstr "Исключительно для (%s)" -#: ../../enterprise/meta/include/functions_networkmap_meta.php:1124 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:374 -#: ../../enterprise/extensions/ipam/ipam_network.php:559 -#: ../../enterprise/extensions/ipam/ipam_network.php:594 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:159 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:181 -#: ../../enterprise/include/functions_servicemap.php:258 -#: ../../enterprise/include/functions_reporting.php:1219 -#: ../../enterprise/include/functions_reporting.php:3071 -#: ../../enterprise/include/functions_reporting.php:3403 -#: ../../enterprise/include/functions_services.php:1012 -#: ../../enterprise/include/functions_services.php:1219 -#: ../../enterprise/include/functions_services.php:1697 -#: ../../enterprise/include/functions_reporting_pdf.php:1613 -#: ../../enterprise/include/functions_reporting_pdf.php:1768 -#: ../../enterprise/include/functions_reporting_pdf.php:1977 -#: ../../enterprise/include/functions_visual_map.php:274 -#: ../../mobile/operation/agent.php:132 ../../mobile/operation/agent.php:143 -#: ../../mobile/operation/events.php:143 ../../mobile/operation/events.php:154 -#: ../../mobile/operation/events.php:162 ../../mobile/operation/events.php:235 -#: ../../mobile/operation/events.php:262 ../../mobile/operation/events.php:270 -#: ../../include/functions_db.php:156 ../../include/functions_ui.php:1989 -#: ../../include/functions_ui.php:1999 -#: ../../include/functions_treeview.php:157 -#: ../../include/functions_treeview.php:298 ../../include/functions.php:918 -#: ../../include/functions.php:924 ../../include/functions.php:927 -#: ../../include/functions_reporting_html.php:342 -#: ../../include/functions_reporting_html.php:2333 -#: ../../include/functions_reporting_html.php:2371 -#: ../../include/functions_events.php:1775 -#: ../../include/functions_events.php:1942 -#: ../../include/functions_events.php:2008 -#: ../../include/functions_events.php:2024 -#: ../../include/functions_events.php:2034 -#: ../../include/functions_events.php:2039 -#: ../../include/functions_events.php:2057 -#: ../../include/functions_events.php:2136 -#: ../../include/functions_events.php:2190 -#: ../../include/functions_events.php:2202 -#: ../../include/functions_events.php:2214 -#: ../../include/functions_events.php:2236 -#: ../../include/functions_events.php:2251 -#: ../../include/functions_events.php:2261 -#: ../../include/functions_events.php:2350 -#: ../../include/functions_events.php:2427 -#: ../../include/functions_events.php:2449 -#: ../../include/functions_events.php:2459 -#: ../../operation/snmpconsole/snmp_view.php:589 -#: ../../operation/snmpconsole/snmp_view.php:608 -#: ../../operation/agentes/estado_generalagente.php:152 -#: ../../operation/agentes/estado_generalagente.php:164 -#: ../../operation/agentes/estado_generalagente.php:177 -#: ../../operation/agentes/estado_generalagente.php:281 -#: ../../operation/agentes/estado_generalagente.php:360 -#: ../../godmode/alerts/alert_view.php:113 -#: ../../godmode/agentes/planned_downtime.list.php:475 -#: ../../godmode/modules/manage_network_components.php:558 -msgid "N/A" -msgstr "Н/Д" +#: ../../views/dashboard/list.php:185 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533 +#: ../../enterprise/meta/advanced/metasetup.relations.php:584 +#: ../../enterprise/meta/advanced/links.php:166 +#: ../../enterprise/meta/advanced/policymanager.queue.php:333 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1137 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:103 +#: ../../enterprise/extensions/backup/main.php:301 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:432 +#: ../../enterprise/godmode/modules/local_components.php:624 +#: ../../enterprise/godmode/agentes/inventory_manager.php:245 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:245 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:197 +#: ../../enterprise/godmode/policies/policy_alerts.php:455 +#: ../../enterprise/godmode/policies/policy_modules.php:1548 +#: ../../enterprise/godmode/policies/policy_modules.php:1564 +#: ../../enterprise/godmode/policies/policy_modules.php:1615 +#: ../../enterprise/godmode/policies/policy_queue.php:556 +#: ../../enterprise/godmode/policies/policy_queue.php:590 +#: ../../enterprise/godmode/policies/policy_queue.php:608 +#: ../../enterprise/godmode/policies/policies.php:599 +#: ../../enterprise/godmode/policies/policies.php:620 +#: ../../enterprise/godmode/policies/policies.php:655 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:281 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:286 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:291 +#: ../../enterprise/godmode/policies/policy_agents.php:451 +#: ../../enterprise/godmode/policies/policy_agents.php:699 +#: ../../enterprise/godmode/policies/policy_agents.php:941 +#: ../../enterprise/godmode/policies/policy_agents.php:1007 +#: ../../enterprise/godmode/policies/policy_agents.php:1116 +#: ../../enterprise/godmode/policies/policy_agents.php:1307 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:368 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +#: ../../enterprise/godmode/alerts/alert_events_list.php:730 +#: ../../enterprise/godmode/alerts/alert_events_list.php:841 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:485 +#: ../../enterprise/godmode/setup/setup_skins.php:143 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:833 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:628 +#: ../../enterprise/godmode/reporting/graph_template_list.php:200 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:413 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:559 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:578 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 +#: ../../enterprise/godmode/reporting/mysql_builder.php:74 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:336 +#: ../../enterprise/include/functions_tasklist.php:478 +#: ../../enterprise/include/functions_tasklist.php:511 +#: ../../enterprise/include/ajax/transactional.ajax.php:118 +#: ../../enterprise/include/ajax/transactional.ajax.php:207 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1558 +#: ../../enterprise/include/class/AgentRepository.class.php:775 +#: ../../enterprise/include/class/Omnishell.class.php:504 +#: ../../enterprise/include/class/Omnishell.class.php:1155 +#: ../../enterprise/include/class/LogSource.class.php:865 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3116 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3423 +#: ../../enterprise/include/functions_services.php:1835 +#: ../../enterprise/include/lib/Metaconsole/Node.php:793 +#: ../../enterprise/operation/agentes/transactional_map.php:360 +#: ../../enterprise/operation/agentes/transactional_map.php:364 +#: ../../enterprise/operation/agentes/transactional_map.php:376 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:240 +#: ../../enterprise/operation/services/services.list.php:651 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:417 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:492 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:305 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:382 +#: ../../extensions/files_repo/files_repo_list.php:146 +#: ../../godmode/modules/manage_nc_groups.php:266 +#: ../../godmode/modules/manage_network_components.php:824 +#: ../../godmode/modules/manage_network_templates.php:260 +#: ../../godmode/modules/manage_network_templates.php:275 +#: ../../godmode/groups/group_list.php:863 +#: ../../godmode/groups/modu_group_list.php:249 +#: ../../godmode/groups/modu_group_list.php:252 +#: ../../godmode/users/profile_list.php:394 +#: ../../godmode/users/user_list.php:655 ../../godmode/users/user_list.php:657 +#: ../../godmode/users/configure_user.php:1594 +#: ../../godmode/users/configure_user.php:1887 +#: ../../godmode/agentes/agent_template.php:257 +#: ../../godmode/agentes/modificar_agente.php:895 +#: ../../godmode/agentes/planned_downtime.editor.php:999 +#: ../../godmode/agentes/fields_manager.php:155 +#: ../../godmode/agentes/agent_manager.php:234 +#: ../../godmode/agentes/module_manager_editor_common.php:209 +#: ../../godmode/agentes/module_manager.php:1091 +#: ../../godmode/agentes/module_manager.php:1105 +#: ../../godmode/agentes/module_manager.php:1130 +#: ../../godmode/agentes/module_manager.php:1153 +#: ../../godmode/agentes/module_manager.php:1178 +#: ../../godmode/netflow/nf_item_list.php:271 +#: ../../godmode/netflow/nf_edit.php:195 +#: ../../godmode/snmpconsole/snmp_alert.php:1372 +#: ../../godmode/snmpconsole/snmp_alert.php:1393 +#: ../../godmode/snmpconsole/snmp_alert.php:1647 +#: ../../godmode/snmpconsole/snmp_filters.php:280 +#: ../../godmode/snmpconsole/snmp_filters.php:291 +#: ../../godmode/massive/massive_operations.php:381 +#: ../../godmode/massive/massive_standby_alerts.php:230 +#: ../../godmode/massive/massive_edit_plugins.php:571 +#: ../../godmode/massive/massive_enable_disable_alerts.php:218 +#: ../../godmode/alerts/alert_actions.php:418 +#: ../../godmode/alerts/alert_list.list.php:1097 +#: ../../godmode/alerts/alert_commands.php:693 +#: ../../godmode/alerts/alert_commands.php:696 +#: ../../godmode/alerts/alert_templates.php:430 +#: ../../godmode/alerts/alert_special_days.php:533 +#: ../../godmode/setup/news.php:290 ../../godmode/setup/links.php:157 +#: ../../godmode/reporting/create_container.php:682 +#: ../../godmode/reporting/map_builder.php:487 +#: ../../godmode/reporting/map_builder.php:498 +#: ../../godmode/reporting/graphs.php:319 +#: ../../godmode/reporting/visual_console_builder.elements.php:447 +#: ../../godmode/reporting/reporting_builder.php:1096 +#: ../../godmode/events/event_filter.php:188 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:615 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:922 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:948 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:961 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:969 +#: ../../godmode/servers/plugin.php:1076 ../../godmode/tag/tag.php:327 +#: ../../godmode/category/category.php:147 +#: ../../godmode/category/category.php:160 +#: ../../include/functions_profile.php:278 +#: ../../include/class/ConfigPEN.class.php:666 +#: ../../include/class/TreeGroupEdition.class.php:166 +#: ../../include/class/CredentialStore.class.php:1268 +#: ../../include/class/ModuleTemplates.class.php:915 +#: ../../include/class/ModuleTemplates.class.php:930 +#: ../../include/class/WelcomeWindow.class.php:171 +#: ../../include/functions_filemanager.php:733 +#: ../../include/functions_container.php:190 +#: ../../include/functions_container.php:324 +#: ../../include/functions_events.php:3721 +#: ../../operation/users/user_edit.php:1133 +#: ../../operation/agentes/pandora_networkmap.editor.php:591 +#: ../../operation/agentes/pandora_networkmap.php:800 +#: ../../operation/messages/message_list.php:257 +#: ../../operation/messages/message_list.php:260 +#: ../../operation/snmpconsole/snmp_browser.php:629 +#: ../../operation/snmpconsole/snmp_view.php:1035 +#: ../../operation/snmpconsole/snmp_view.php:1049 +#: ../../operation/snmpconsole/snmp_view.php:1226 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:245 +#: ../../operation/incidents/list_integriaims_incidents.php:305 +#: ../../operation/events/events.build_table.php:976 +msgid "Are you sure?" +msgstr "Вы уверены?" -#: ../../enterprise/meta/include/functions_ui_meta.php:54 -#: ../../include/functions_ui.php:1295 -msgid "the Flexible Monitoring System" -msgstr "Гибкая система мониторинга" +#: ../../views/dashboard/list.php:217 +msgid "Create a new dashboard" +msgstr "Создать новую приборную панель" -#: ../../enterprise/meta/include/functions_events_meta.php:55 -#: ../../include/functions_events.php:33 -#: ../../include/functions_events.php:1578 -#: ../../godmode/events/custom_events.php:68 -#: ../../godmode/events/custom_events.php:152 -msgid "Event id" -msgstr "Событие ID" +#: ../../views/dashboard/list.php:233 +msgid "New dashboard" +msgstr "Новая приборная панель" -#: ../../enterprise/meta/include/functions_events_meta.php:58 -#: ../../enterprise/include/functions_reporting_pdf.php:1173 -#: ../../include/functions_reporting_html.php:613 -#: ../../include/functions_reporting_html.php:1985 -#: ../../include/functions_events.php:34 -#: ../../include/functions_events.php:890 -#: ../../include/functions_events.php:2333 -#: ../../godmode/events/custom_events.php:71 -#: ../../godmode/events/custom_events.php:153 -msgid "Event name" -msgstr "Название события" +#: ../../views/dashboard/widget.php:35 ../../views/dashboard/listWidgets.php:85 +msgid "Add widget" +msgstr "Добавить виджет" -#: ../../enterprise/meta/include/functions_events_meta.php:61 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1071 -#: ../../enterprise/include/functions_inventory.php:64 -#: ../../enterprise/include/functions_reporting_pdf.php:2232 -#: ../../mobile/operation/modules.php:426 -#: ../../mobile/operation/modules.php:644 -#: ../../include/functions_treeview.php:396 -#: ../../include/functions_reporting_html.php:1482 -#: ../../include/functions_events.php:35 -#: ../../include/functions_events.php:893 -#: ../../operation/events/events.build_table.php:67 -#: ../../godmode/events/custom_events.php:74 -#: ../../godmode/events/custom_events.php:154 -#: ../../godmode/agentes/agent_manager.php:154 -#: ../../godmode/agentes/modificar_agente.php:421 -msgid "Agent name" -msgstr "Название агента" +#: ../../views/dashboard/widget.php:45 +msgid "Please select widget" +msgstr "Выберите виджет" -#: ../../enterprise/meta/include/functions_events_meta.php:73 -#: ../../enterprise/include/functions_inventory.php:65 -#: ../../enterprise/include/functions_inventory.php:240 -#: ../../enterprise/include/functions_reporting_csv.php:187 -#: ../../enterprise/include/functions_reporting_csv.php:572 -#: ../../enterprise/include/functions_reporting_pdf.php:1177 -#: ../../enterprise/include/functions_reporting_pdf.php:1326 -#: ../../enterprise/include/functions_reporting_pdf.php:1461 -#: ../../mobile/operation/modules.php:478 -#: ../../mobile/operation/modules.php:647 -#: ../../mobile/operation/events.php:468 -#: ../../include/functions_reporting.php:4736 -#: ../../include/functions_netflow.php:287 -#: ../../include/functions_reporting_html.php:487 -#: ../../include/functions_reporting_html.php:617 -#: ../../include/functions_reporting_html.php:1099 -#: ../../include/functions_reporting_html.php:1987 -#: ../../include/functions_events.php:39 -#: ../../include/functions_events.php:897 -#: ../../include/functions_events.php:2338 ../../include/ajax/events.php:465 -#: ../../operation/integria_incidents/incident.files.php:43 -#: ../../operation/events/events.build_table.php:73 -#: ../../operation/events/events.php:89 ../../operation/search_modules.php:54 -#: ../../operation/messages/message_list.php:127 -#: ../../operation/snmpconsole/snmp_view.php:521 -#: ../../operation/agentes/exportdata.php:99 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/estado_generalagente.php:400 -#: ../../operation/agentes/status_monitor.php:971 -#: ../../godmode/events/custom_events.php:86 -#: ../../godmode/events/custom_events.php:158 ../../godmode/setup/news.php:223 -msgid "Timestamp" -msgstr "Метка времени" +#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:63 +#: ../../operation/snmpconsole/snmp_view.php:1305 +#: ../../operation/events/events.php:2563 +msgid "Until next" +msgstr "До следующего" -#: ../../enterprise/meta/include/functions_events_meta.php:79 -#: ../../include/functions_events.php:41 -#: ../../godmode/events/custom_events.php:92 -#: ../../godmode/events/custom_events.php:160 -msgid "Agent module" -msgstr "Агент модуля" +#: ../../views/dashboard/formDashboard.php:90 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:442 +#: ../../godmode/reporting/reporting_builder.php:856 +msgid "Private" +msgstr "Личное" -#: ../../enterprise/meta/include/functions_events_meta.php:82 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:169 -#: ../../include/functions_events.php:42 -#: ../../include/functions_events.php:976 -#: ../../operation/events/events.build_table.php:110 -#: ../../operation/events/events_rss.php:185 -#: ../../operation/snmpconsole/snmp_view.php:372 -#: ../../operation/snmpconsole/snmp_view.php:525 -#: ../../operation/snmpconsole/snmp_view.php:819 -#: ../../operation/agentes/estado_monitores.php:424 -#: ../../godmode/events/custom_events.php:95 -#: ../../godmode/events/custom_events.php:161 -#: ../../godmode/agentes/configurar_agente.php:511 -msgid "Alert" -msgstr "Предупреждение" +#: ../../views/dashboard/formDashboard.php:121 +#: ../../enterprise/godmode/massive/massive_edit_services.php:707 +#: ../../enterprise/godmode/services/services.service.php:717 +#: ../../enterprise/godmode/reporting/visual_console_template.php:260 +msgid "Favourite" +msgstr "Избранное" -#: ../../enterprise/meta/include/functions_events_meta.php:88 -#: ../../include/functions_events.php:44 -#: ../../include/functions_events.php:1748 -#: ../../operation/events/events.build_table.php:123 -#: ../../operation/events/events.build_table.php:475 -#: ../../godmode/events/custom_events.php:101 -#: ../../godmode/events/custom_events.php:163 -msgid "Comment" -msgstr "Комментарий" +#: ../../views/dashboard/cell.php:42 +msgid "New widget" +msgstr "Новый виджет" -#: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:91 -#: ../../enterprise/meta/advanced/synchronizing.component.php:310 -#: ../../enterprise/meta/advanced/synchronizing.user.php:508 -#: ../../enterprise/meta/advanced/policymanager.sync.php:295 -#: ../../enterprise/meta/advanced/synchronizing.group.php:147 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:332 -#: ../../enterprise/include/functions_log.php:318 -#: ../../enterprise/operation/log/log_viewer.php:197 -#: ../../include/functions_events.php:46 -#: ../../include/functions_events.php:2141 -#: ../../include/functions_events.php:2256 -#: ../../operation/events/events.build_table.php:135 -#: ../../operation/incidents/incident.php:336 -#: ../../operation/incidents/incident_detail.php:289 -#: ../../godmode/events/custom_events.php:107 -#: ../../godmode/events/custom_events.php:165 -#: ../../godmode/agentes/agent_incidents.php:91 -#: ../../godmode/massive/massive_copy_modules.php:108 -msgid "Source" -msgstr "Источник" +#: ../../views/dashboard/cell.php:56 +msgid "Configure widget" +msgstr "Настройка виджета" -#: ../../enterprise/meta/include/functions_events_meta.php:97 -#: ../../include/functions_events.php:47 -#: ../../include/functions_events.php:2246 -#: ../../godmode/events/custom_events.php:110 -#: ../../godmode/events/custom_events.php:166 -msgid "Extra id" -msgstr "Дополнительный id" +#: ../../views/dashboard/cell.php:68 +msgid "Delete widget" +msgstr "Удалить виджет" -#: ../../enterprise/meta/include/functions_events_meta.php:100 -#: ../../mobile/operation/events.php:472 ../../include/functions_events.php:48 -#: ../../include/functions_events.php:2348 -#: ../../operation/integria_incidents/incident.list.php:101 -#: ../../operation/events/events.build_table.php:85 -#: ../../operation/incidents/incident.php:337 -#: ../../operation/incidents/incident_detail.php:266 -#: ../../godmode/events/custom_events.php:113 -#: ../../godmode/events/custom_events.php:167 -#: ../../godmode/agentes/agent_incidents.php:92 -msgid "Owner" -msgstr "Владелец" +#: ../../views/dashboard/slides.php:41 +#: ../../operation/snmpconsole/snmp_view.php:753 +msgid "Exit fullscreen" +msgstr "Выйти из полноэкранного режима" -#: ../../enterprise/meta/include/functions_events_meta.php:103 -#: ../../include/functions_events.php:49 -#: ../../operation/events/events.build_table.php:147 -#: ../../godmode/events/custom_events.php:116 -#: ../../godmode/events/custom_events.php:168 -msgid "ACK Timestamp" -msgstr "ACK Отметка времени" +#: ../../views/dashboard/slides.php:181 +msgid "Change every" +msgstr "Изменить каждый" -#: ../../enterprise/meta/include/functions_events_meta.php:106 -#: ../../include/functions_events.php:50 -#: ../../include/functions_events.php:2185 -#: ../../include/functions_events.php:2197 -#: ../../include/functions_events.php:2209 -#: ../../include/functions_events.php:2221 -#: ../../include/functions_events.php:2226 -#: ../../include/functions_events.php:2231 -#: ../../include/functions_events.php:2235 -#: ../../operation/events/events.build_table.php:153 -#: ../../godmode/events/custom_events.php:119 -#: ../../godmode/events/custom_events.php:169 -msgid "Instructions" -msgstr "Инструкции" +#: ../../views/dashboard/slides.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 +#: ../../include/functions.php:3873 +msgid "Previous" +msgstr "Предыдущий" -#: ../../enterprise/meta/include/functions_events_meta.php:109 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:250 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:326 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:171 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:247 -#: ../../include/functions_events.php:51 -#: ../../godmode/events/custom_events.php:122 -#: ../../godmode/events/custom_events.php:170 -msgid "Server name" -msgstr "Имя сервера" +#: ../../views/dashboard/slides.php:218 +#: ../../enterprise/operation/agentes/transactional_map.php:365 +msgid "Stop" +msgstr "Остановить" -#: ../../enterprise/meta/include/functions_alerts_meta.php:107 -#: ../../enterprise/meta/include/functions_alerts_meta.php:125 -#: ../../enterprise/include/functions_reporting.php:80 -#: ../../enterprise/include/functions_reporting.php:4658 -#: ../../enterprise/include/functions_reporting.php:4682 -#: ../../enterprise/include/functions_reporting.php:4736 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:251 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:137 -#: ../../godmode/menu.php:143 ../../godmode/agentes/configurar_agente.php:515 -msgid "Templates" -msgstr "Шаблоны" +#: ../../views/dashboard/slides.php:229 +msgid "Pause" +msgstr "Приостановить" -#: ../../enterprise/meta/include/functions_alerts_meta.php:111 -#: ../../enterprise/meta/include/functions_alerts_meta.php:128 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1196 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1408 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1500 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1583 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:98 -#: ../../enterprise/extensions/cron/main.php:191 -#: ../../enterprise/extensions/backup/main.php:69 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:261 -#: ../../enterprise/include/functions_reporting_pdf.php:1036 -#: ../../enterprise/include/functions_reporting_pdf.php:1080 -#: ../../enterprise/include/functions_reporting_pdf.php:1125 -#: ../../enterprise/operation/services/services.list.php:325 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:235 -#: ../../enterprise/godmode/alerts/alert_events_list.php:421 -#: ../../enterprise/godmode/agentes/collections.php:185 -#: ../../enterprise/godmode/agentes/inventory_manager.php:237 -#: ../../enterprise/godmode/setup/setup_skins.php:120 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:245 -#: ../../enterprise/godmode/policies/policy_alerts.php:241 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:171 -#: ../../extensions/module_groups.php:84 -#: ../../include/functions_filemanager.php:581 -#: ../../include/functions_treeview.php:288 -#: ../../include/functions_reporting_html.php:1321 -#: ../../include/functions_reporting_html.php:1359 -#: ../../include/functions_reporting_html.php:1395 ../../godmode/menu.php:148 -#: ../../godmode/events/event_responses.list.php:57 -#: ../../godmode/category/category.php:111 -#: ../../godmode/alerts/alert_list.list.php:114 -#: ../../godmode/alerts/alert_list.list.php:403 -#: ../../godmode/alerts/alert_view.php:344 -#: ../../godmode/alerts/alert_list.builder.php:105 -#: ../../godmode/agentes/modificar_agente.php:435 -#: ../../godmode/agentes/planned_downtime.editor.php:729 -#: ../../godmode/agentes/fields_manager.php:97 -#: ../../godmode/groups/group_list.php:338 ../../godmode/tag/tag.php:205 -msgid "Actions" -msgstr "Действия" +#: ../../views/dashboard/slides.php:240 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:92 +#: ../../enterprise/godmode/alerts/alert_events.php:675 +#: ../../enterprise/godmode/wizards/Cloud.class.php:571 +#: ../../enterprise/include/class/VMware.app.php:520 +#: ../../enterprise/include/class/Omnishell.class.php:643 +#: ../../enterprise/include/class/DB2.app.php:567 +#: ../../enterprise/include/class/SAP.app.php:442 +#: ../../enterprise/include/class/Aws.cloud.php:1416 +#: ../../enterprise/include/class/MySQL.app.php:589 +#: ../../enterprise/include/class/Oracle.app.php:568 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:815 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1094 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1866 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1962 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1193 +#: ../../godmode/alerts/configure_alert_template.php:1216 +#: ../../godmode/alerts/configure_alert_template.php:1223 +#: ../../godmode/wizards/HostDevices.class.php:769 +#: ../../include/class/CustomNetScan.class.php:550 +msgid "Next" +msgstr "Следующий" -#: ../../enterprise/meta/include/functions_alerts_meta.php:115 -#: ../../enterprise/meta/include/functions_alerts_meta.php:131 -#: ../../godmode/menu.php:154 -msgid "Commands" -msgstr "Команды" +#: ../../views/dashboard/slides.php:252 +msgid "Mode Cell" +msgstr "Режим Ячейки" -#: ../../enterprise/meta/include/functions_components_meta.php:48 -#: ../../enterprise/meta/include/functions_components_meta.php:66 -#: ../../godmode/menu.php:43 -msgid "Component groups" -msgstr "Группы компонентов" +#: ../../views/dashboard/slides.php:258 +msgid "Mode Layout" +msgstr "Режим Схема" -#: ../../enterprise/meta/include/functions_components_meta.php:52 -#: ../../enterprise/meta/include/functions_components_meta.php:69 -#: ../../enterprise/godmode/menu.php:62 -msgid "Local components" -msgstr "Местные компоненты" +#: ../../enterprise/views/cluster/list.php:31 +#: ../../enterprise/meta/general/main_header.php:91 +#: ../../enterprise/meta/general/logon_ok.php:75 +#: ../../enterprise/operation/services/services.treeview_services.php:100 +#: ../../enterprise/operation/services/services.treeview_services.php:106 +#: ../../enterprise/operation/services/services.list.php:99 +#: ../../enterprise/operation/services/services.list.php:102 +#: ../../enterprise/operation/services/services.table_services.php:77 +#: ../../enterprise/operation/services/services.table_services.php:83 +#: ../../enterprise/tools/ipam/ipam_editor.php:176 +#: ../../include/class/AgentsAlerts.class.php:739 +#: ../../operation/agentes/ver_agente.php:1804 ../../operation/menu.php:31 +#: ../../operation/menu.php:148 ../../general/first_task/cluster_builder.php:28 +msgid "Monitoring" +msgstr "Мониторинг" -#: ../../enterprise/meta/include/functions_components_meta.php:56 -#: ../../enterprise/meta/include/functions_components_meta.php:72 -#: ../../godmode/menu.php:98 -msgid "Network components" -msgstr "Сетевые компоненты" +#: ../../enterprise/views/cluster/list.php:31 +#: ../../general/first_task/HA_cluster_builder.php:42 +#: ../../general/first_task/cluster_builder.php:28 +#: ../../general/first_task/cluster_builder.php:43 +msgid "Clusters" +msgstr "Кластеры" -#: ../../enterprise/meta/include/functions_components_meta.php:60 -#: ../../enterprise/meta/include/functions_components_meta.php:75 -msgid "Plugin management" -msgstr "Управление плагином" - -#: ../../enterprise/meta/include/functions_components_meta.php:81 -msgid "Create plugin" -msgstr "Создать плагин" - -#: ../../enterprise/meta/include/functions_components_meta.php:84 -msgid "Edit plugin" -msgstr "Редактировать плагин" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:163 -#: ../../enterprise/meta/include/functions_wizard_meta.php:166 -#: ../../enterprise/meta/include/functions_wizard_meta.php:375 -#: ../../enterprise/meta/include/functions_wizard_meta.php:378 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1302 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1637 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1087 -#: ../../enterprise/include/functions_reporting_pdf.php:1882 -#: ../../include/functions_treeview.php:416 -#: ../../include/functions_reporting_html.php:1653 -#: ../../include/functions_events.php:2023 -#: ../../operation/gis_maps/ajax.php:269 -#: ../../godmode/agentes/agent_manager.php:201 -#: ../../godmode/servers/modificar_server.php:47 -msgid "IP Address" -msgstr "IP адрес" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:175 -#: ../../enterprise/meta/include/functions_wizard_meta.php:392 -#: ../../enterprise/meta/include/functions_wizard_meta.php:552 -#: ../../enterprise/include/functions_metaconsole.php:1272 -#: ../../enterprise/include/functions_metaconsole.php:1295 -#: ../../enterprise/include/functions_metaconsole.php:1318 -#: ../../enterprise/include/functions_metaconsole.php:1341 -#: ../../enterprise/include/functions_metaconsole.php:1364 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:77 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:151 -#: ../../enterprise/godmode/modules/configure_local_component.php:302 -msgid "Check" -msgstr "Проверка" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:179 -#: ../../enterprise/meta/include/functions_wizard_meta.php:407 -#: ../../enterprise/meta/include/functions_wizard_meta.php:476 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1005 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1366 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1456 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1641 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:408 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:680 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:890 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1073 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1364 -#: ../../enterprise/extensions/vmware/functions.php:20 -#: ../../enterprise/include/functions_reporting_pdf.php:2265 -#: ../../enterprise/godmode/setup/edit_skin.php:247 -#: ../../enterprise/godmode/setup/setup.php:99 -#: ../../enterprise/godmode/modules/configure_local_component.php:266 -#: ../../mobile/operation/agent.php:114 ../../mobile/operation/alerts.php:40 -#: ../../include/functions_groups.php:2128 -#: ../../include/functions_treeview.php:74 -#: ../../include/functions_treeview.php:392 -#: ../../include/functions_reporting.php:3390 -#: ../../include/functions_reporting_html.php:1499 -#: ../../operation/search_agents.php:90 -#: ../../operation/agentes/alerts_status.functions.php:76 -#: ../../operation/agentes/estado_generalagente.php:80 -#: ../../operation/agentes/estado_generalagente.php:295 -#: ../../godmode/alerts/configure_alert_template.php:648 -#: ../../godmode/alerts/alert_view.php:516 -#: ../../godmode/agentes/agent_manager.php:311 -#: ../../godmode/agentes/modificar_agente.php:488 -#: ../../godmode/agentes/module_manager_editor_common.php:153 -#: ../../godmode/agentes/module_manager_editor_common.php:424 -#: ../../godmode/massive/massive_edit_agents.php:345 -#: ../../godmode/massive/massive_edit_modules.php:444 -msgid "Disabled" -msgstr "Выключено" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:184 -#: ../../enterprise/meta/include/functions_wizard_meta.php:412 -#: ../../enterprise/meta/include/functions_wizard_meta.php:481 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1010 -#: ../../enterprise/include/functions_reporting_csv.php:303 -#: ../../enterprise/godmode/alerts/alert_events.php:97 -#: ../../enterprise/godmode/alerts/alert_events.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 -#: ../../include/functions_reports.php:573 -#: ../../include/functions_reporting.php:4011 -#: ../../include/ajax/events.php:298 -#: ../../godmode/alerts/configure_alert_template.php:148 -#: ../../godmode/alerts/configure_alert_template.php:153 -#: ../../godmode/servers/plugin.php:276 ../../godmode/servers/plugin.php:282 -#: ../../godmode/setup/setup.php:74 ../../godmode/setup/setup.php:108 -msgid "General" -msgstr "Общие" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:239 -#: ../../godmode/modules/manage_network_templates_form.php:302 -msgid "Components" -msgstr "Компоненты" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:241 -msgid "Agent modules" -msgstr "Модули агента" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:284 -msgid "Add selected modules to agent" -msgstr "Добавить выбранные модули к агенту" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:298 -msgid "Undo changes" -msgstr "Отменить изменения" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:469 -msgid "Latency" -msgstr "Латентность" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:470 -msgid "Response" -msgstr "Ответ" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:472 -msgid "Check type" -msgstr "Проверить тип" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:489 -#: ../../enterprise/meta/include/functions_wizard_meta.php:540 -#: ../../enterprise/include/functions_enterprise.php:273 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:51 -msgid "Web checks" -msgstr "Веб Проверки" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:517 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1666 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:108 -#: ../../include/functions_reporting.php:3608 -#: ../../godmode/tag/edit_tag.php:180 -msgid "Url" -msgstr "Адрес URL" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:521 -msgid "String to check" -msgstr "Строка для проверки" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:526 -msgid "Add check" -msgstr "Добавить проверку" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:534 -msgid "Delete check" -msgstr "Удалить проверку" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:548 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:73 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:146 -#: ../../enterprise/godmode/modules/configure_local_component.php:294 -msgid "Load basic" -msgstr "Загрузить основное" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:550 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:75 -msgid "Load a basic structure on Web Checks" -msgstr "Загрузите базовую структуру на Веб Проверки" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:554 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:79 -msgid "Check the correct structure of the WebCheck" -msgstr "Проверьте правильную структуру Веб Проверки" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:561 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:123 -msgid "First line must be \"task_begin\"" -msgstr "Первая строка должна быть \"task_begin\"" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:562 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:124 -msgid "Webchecks configuration is empty" -msgstr "Конфигурации веб проверок пусты" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:563 -#: ../../enterprise/meta/include/functions_wizard_meta.php:564 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:125 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:126 -msgid "Last line must be \"task_end\"" -msgstr "Первая строка должна быть \"task_end\"" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:565 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:127 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:169 -#: ../../enterprise/godmode/modules/configure_local_component.php:313 -msgid "There is a line with a unknown token 'token_fail'." -msgstr "Есть строка с неизвестным признаком 'token_fail'." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:566 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:128 -msgid "Web checks are built correctly" -msgstr "Веб проверки разработаны верно" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:782 -#: ../../enterprise/meta/include/functions_wizard_meta.php:900 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1078 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1361 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1442 +#: ../../enterprise/views/cluster/list.php:59 +#: ../../enterprise/views/cluster/view.php:283 +#: ../../enterprise/meta/advanced/collections.php:411 +#: ../../enterprise/meta/include/functions_autoprovision.php:449 +#: ../../enterprise/meta/include/functions_wizard_meta.php:198 +#: ../../enterprise/meta/include/functions_wizard_meta.php:473 +#: ../../enterprise/meta/include/functions_wizard_meta.php:585 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1137 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1454 #: ../../enterprise/meta/include/functions_wizard_meta.php:1575 -#: ../../enterprise/include/functions_reporting_pdf.php:2286 -#: ../../enterprise/godmode/modules/configure_local_component.php:275 -#: ../../include/functions_netflow.php:1128 -#: ../../include/functions_netflow.php:1138 -#: ../../include/functions_netflow.php:1156 -#: ../../include/functions_netflow.php:1164 -#: ../../include/functions_netflow.php:1187 -#: ../../include/functions_netflow.php:1245 -#: ../../include/functions_netflow.php:1251 -#: ../../include/functions_netflow.php:1283 -#: ../../include/functions_reporting_html.php:1521 -#: ../../godmode/agentes/module_manager_editor_common.php:319 -#: ../../godmode/massive/massive_edit_modules.php:507 -#: ../../godmode/modules/manage_network_components_form_common.php:152 -msgid "Unit" -msgstr "Единица" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:814 -#: ../../enterprise/meta/include/functions_wizard_meta.php:906 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1116 -msgid "Various" -msgstr "Разное" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:822 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1318 -#: ../../extensions/net_tools.php:145 -msgid "SNMP Community" -msgstr "SNMP сообщество" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:829 -#: ../../enterprise/meta/include/functions_wizard_meta.php:914 -#: ../../extensions/api_checker.php:162 -msgid "Credentials" -msgstr "Учётные данные" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:835 -#: ../../enterprise/meta/include/functions_wizard_meta.php:921 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1122 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1142 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1338 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1419 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1535 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1555 -#: ../../enterprise/meta/monitoring/group_view.php:148 -#: ../../enterprise/meta/monitoring/tactical.php:260 -#: ../../enterprise/include/functions_services.php:1267 -#: ../../enterprise/include/functions_reporting_pdf.php:678 -#: ../../enterprise/include/functions_reporting_pdf.php:2281 -#: ../../enterprise/operation/services/services.service.php:127 -#: ../../enterprise/operation/services/services.service.php:179 -#: ../../enterprise/operation/services/services.list.php:148 -#: ../../enterprise/operation/services/services.list.php:317 -#: ../../enterprise/operation/services/services.list.php:386 -#: ../../enterprise/operation/services/services.service_map.php:116 -#: ../../enterprise/godmode/services/services.service.php:263 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1605 -#: ../../mobile/operation/groups.php:118 ../../mobile/operation/groups.php:120 -#: ../../mobile/operation/modules.php:40 ../../mobile/operation/agents.php:35 -#: ../../include/functions_graph.php:1815 -#: ../../include/functions_graph.php:2878 -#: ../../include/functions_graph.php:2879 -#: ../../include/functions_graph.php:4763 -#: ../../include/functions_groups.php:800 -#: ../../include/functions_groups.php:802 -#: ../../include/functions_groups.php:804 -#: ../../include/functions_groups.php:805 -#: ../../include/functions_groups.php:806 ../../include/functions_ui.php:235 -#: ../../include/functions_ui.php:1983 ../../include/functions.php:848 -#: ../../include/functions.php:1051 ../../include/functions.php:1054 -#: ../../include/functions.php:1089 -#: ../../include/functions_reporting_html.php:1028 -#: ../../include/functions_events.php:1474 -#: ../../operation/gis_maps/render_view.php:138 -#: ../../operation/agentes/estado_monitores.php:427 -#: ../../operation/agentes/group_view.php:153 -#: ../../operation/agentes/estado_agente.php:183 -#: ../../operation/agentes/tactical.php:150 -#: ../../operation/agentes/status_monitor.php:419 -#: ../../operation/netflow/nf_live_view.php:264 ../../operation/tree.php:132 -#: ../../operation/tree.php:157 ../../operation/tree.php:288 -#: ../../godmode/servers/manage_recontask_form.php:188 -#: ../../godmode/setup/setup_netflow.php:70 -#: ../../godmode/massive/massive_delete_agents.php:114 -#: ../../godmode/massive/massive_delete_modules.php:454 -#: ../../godmode/massive/massive_copy_modules.php:78 -#: ../../godmode/massive/massive_copy_modules.php:191 -#: ../../godmode/massive/massive_edit_agents.php:215 -#: ../../godmode/massive/massive_edit_agents.php:388 -#: ../../godmode/massive/massive_edit_modules.php:314 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1246 -msgid "Warning" -msgstr "Предупреждение" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:840 -#: ../../enterprise/meta/include/functions_wizard_meta.php:849 -#: ../../enterprise/meta/include/functions_wizard_meta.php:926 -#: ../../enterprise/meta/include/functions_wizard_meta.php:935 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1127 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1136 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1343 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1352 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1424 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1433 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1540 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1549 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1565 -#: ../../enterprise/godmode/modules/configure_local_component.php:228 -#: ../../enterprise/godmode/modules/configure_local_component.php:243 -#: ../../godmode/agentes/module_manager_editor_common.php:250 -#: ../../godmode/agentes/module_manager_editor_common.php:270 -#: ../../godmode/massive/massive_edit_modules.php:377 -#: ../../godmode/massive/massive_edit_modules.php:423 -#: ../../godmode/modules/manage_network_components_form_common.php:116 -#: ../../godmode/modules/manage_network_components_form_common.php:129 -msgid "Inverse interval" -msgstr "Обратный интервал" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:844 -#: ../../enterprise/meta/include/functions_wizard_meta.php:930 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1131 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1148 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1347 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1428 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1544 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1562 -#: ../../enterprise/meta/monitoring/group_view.php:149 -#: ../../enterprise/meta/monitoring/tactical.php:259 -#: ../../enterprise/include/functions_services.php:1264 -#: ../../enterprise/include/functions_services.php:1423 -#: ../../enterprise/include/functions_reporting_pdf.php:677 -#: ../../enterprise/include/functions_reporting_pdf.php:2281 -#: ../../enterprise/operation/services/services.service.php:126 -#: ../../enterprise/operation/services/services.service.php:174 -#: ../../enterprise/operation/services/services.list.php:149 -#: ../../enterprise/operation/services/services.list.php:316 -#: ../../enterprise/operation/services/services.list.php:381 -#: ../../enterprise/operation/services/services.service_map.php:115 -#: ../../enterprise/godmode/services/services.elements.php:392 -#: ../../enterprise/godmode/services/services.service.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1603 -#: ../../mobile/operation/groups.php:122 ../../mobile/operation/groups.php:124 -#: ../../mobile/operation/modules.php:41 ../../mobile/operation/agents.php:33 -#: ../../include/functions_graph.php:1814 -#: ../../include/functions_graph.php:2886 -#: ../../include/functions_graph.php:2887 -#: ../../include/functions_graph.php:4766 -#: ../../include/functions_groups.php:809 -#: ../../include/functions_groups.php:811 -#: ../../include/functions_groups.php:813 -#: ../../include/functions_groups.php:814 -#: ../../include/functions_groups.php:815 ../../include/functions_ui.php:1983 -#: ../../include/functions.php:851 ../../include/functions.php:1053 -#: ../../include/functions.php:1054 ../../include/functions.php:1056 -#: ../../include/functions.php:1092 -#: ../../include/functions_reporting_html.php:1026 -#: ../../include/functions_events.php:1477 -#: ../../operation/gis_maps/render_view.php:137 -#: ../../operation/agentes/estado_monitores.php:423 -#: ../../operation/agentes/group_view.php:154 -#: ../../operation/agentes/estado_agente.php:184 -#: ../../operation/agentes/tactical.php:149 -#: ../../operation/agentes/status_monitor.php:420 ../../operation/tree.php:133 -#: ../../operation/tree.php:158 ../../operation/tree.php:283 -#: ../../godmode/massive/massive_delete_agents.php:115 -#: ../../godmode/massive/massive_delete_modules.php:455 -#: ../../godmode/massive/massive_copy_modules.php:79 -#: ../../godmode/massive/massive_copy_modules.php:192 -#: ../../godmode/massive/massive_edit_agents.php:216 -#: ../../godmode/massive/massive_edit_modules.php:315 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1244 -msgid "Critical" -msgstr "Критический" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:854 -#: ../../enterprise/meta/include/functions_wizard_meta.php:940 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1157 -msgid "Thresholds" -msgstr "Пороговые значения" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:946 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1451 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:95 -msgid "Proxy URL" -msgstr "URL прокси" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:951 -msgid "Web configuration" -msgstr "Веб конфигурация" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1143 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1149 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1556 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1563 -msgid "Str: " -msgstr "" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1145 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1151 -msgid " Inverse interval " -msgstr "" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1212 -msgid "Alerts in module" -msgstr "Оповещения в модуле" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1220 -#: ../../include/functions_reporting_html.php:2041 -msgid "Alert description" -msgstr "Описание оповещения" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1375 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1465 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1585 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1656 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:86 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:74 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:104 -msgid "Preview" -msgstr "Предварительный просмотр" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1447 -msgid "Checks" -msgstr "Проверки" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1650 -msgid "Deleted modules" -msgstr "Удаленные модули" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1851 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1951 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2424 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2540 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2629 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2840 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:290 -msgid "Another module already exists with the same name" -msgstr "Другой модуль уже существует с таким именем" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1862 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1959 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2434 -#, php-format -msgid "Error adding module %s" -msgstr "Ошибка при добавлении модуля %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1872 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1969 -msgid "" -"There was an error creating the alerts, the operation has been cancelled" -msgstr "Ошибка при создании оповещений, операция была отменена" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1904 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1998 -#: ../../enterprise/godmode/policies/policy_modules.php:653 -msgid "Successfully added module." -msgstr "Успешно добавлен модуль." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1905 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1999 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2477 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1419 -#: ../../enterprise/meta/screens/screens.visualmap.php:63 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:264 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:425 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:617 -#: ../../enterprise/extensions/cron/main.php:260 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:256 -#: ../../enterprise/include/functions_networkmap_enterprise.php:608 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1590 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:303 -#: ../../enterprise/godmode/alerts/alert_events_list.php:634 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:475 -#: ../../enterprise/godmode/agentes/collections.editor.php:178 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:349 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:348 -#: ../../enterprise/godmode/reporting/mysql_builder.php:86 -#: ../../enterprise/godmode/reporting/mysql_builder.php:100 -#: ../../enterprise/godmode/reporting/mysql_builder.php:110 -#: ../../enterprise/godmode/reporting/mysql_builder.php:152 -#: ../../extensions/files_repo/files_repo_list.php:101 -#: ../../include/functions_groups.php:2136 ../../include/ajax/module.php:817 -#: ../../operation/gis_maps/gis_map.php:161 -#: ../../operation/search_reports.php:52 -#: ../../operation/agentes/estado_agente.php:530 -#: ../../operation/agentes/status_monitor.php:1095 -#: ../../operation/servers/recon_view.php:110 -#: ../../godmode/events/event_responses.list.php:67 -#: ../../godmode/users/user_list.php:469 -#: ../../godmode/users/profile_list.php:389 -#: ../../godmode/gis_maps/index.php:110 -#: ../../godmode/agentes/modificar_agente.php:495 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1677 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1799 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 +#: ../../enterprise/meta/agentsearch.php:309 +#: ../../enterprise/extensions/backup/main.php:131 +#: ../../enterprise/extensions/backup/main.php:267 +#: ../../enterprise/godmode/modules/configure_local_component.php:458 +#: ../../enterprise/godmode/modules/configure_local_component.php:617 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:375 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:334 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:98 +#: ../../enterprise/godmode/agentes/collection_manager.php:117 +#: ../../enterprise/godmode/agentes/collection_manager.php:214 +#: ../../enterprise/godmode/agentes/inventory_manager.php:218 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:386 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:134 +#: ../../enterprise/godmode/agentes/collections.php:324 +#: ../../enterprise/godmode/policies/configure_policy.php:105 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:261 +#: ../../enterprise/godmode/policies/policy_collections.php:155 +#: ../../enterprise/godmode/policies/policy_collections.php:250 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:290 +#: ../../enterprise/godmode/massive/massive_edit_services.php:546 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:601 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:165 +#: ../../enterprise/godmode/alerts/alert_events.php:606 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222 +#: ../../enterprise/godmode/services/services.service.php:539 +#: ../../enterprise/godmode/services/services.elements.php:103 +#: ../../enterprise/godmode/setup/setup_skins.php:123 +#: ../../enterprise/godmode/setup/edit_skin.php:256 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205 +#: ../../enterprise/godmode/reporting/graph_template_list.php:170 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:167 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:434 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:441 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1593 +#: ../../enterprise/mobile/include/enterprise.class.php:88 +#: ../../enterprise/include/functions_cron.php:270 +#: ../../enterprise/include/ajax/ipam.ajax.php:330 +#: ../../enterprise/include/functions_reporting_pdf.php:1612 +#: ../../enterprise/include/functions_reporting_csv.php:459 +#: ../../enterprise/include/functions_reporting_csv.php:462 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:711 +#: ../../enterprise/include/functions_reporting_csv.php:738 +#: ../../enterprise/include/functions_reporting_csv.php:740 +#: ../../enterprise/include/functions_reporting_csv.php:777 +#: ../../enterprise/include/functions_reporting_csv.php:779 +#: ../../enterprise/include/functions_reporting_csv.php:821 +#: ../../enterprise/include/functions_reporting_csv.php:823 +#: ../../enterprise/include/functions_reporting_csv.php:853 +#: ../../enterprise/include/functions_reporting_csv.php:855 +#: ../../enterprise/include/functions_reporting_csv.php:890 +#: ../../enterprise/include/functions_reporting_csv.php:892 +#: ../../enterprise/include/functions_reporting_csv.php:913 +#: ../../enterprise/include/functions_reporting_csv.php:915 +#: ../../enterprise/include/functions_reporting_csv.php:1004 +#: ../../enterprise/include/functions_reporting_csv.php:1006 +#: ../../enterprise/include/functions_reporting_csv.php:1051 +#: ../../enterprise/include/functions_reporting_csv.php:1053 +#: ../../enterprise/include/functions_reporting_csv.php:1077 +#: ../../enterprise/include/functions_reporting_csv.php:1079 +#: ../../enterprise/include/functions_reporting_csv.php:1082 +#: ../../enterprise/include/functions_reporting_csv.php:1108 +#: ../../enterprise/include/functions_reporting_csv.php:1110 +#: ../../enterprise/include/functions_reporting_csv.php:1113 +#: ../../enterprise/include/functions_reporting_csv.php:1163 +#: ../../enterprise/include/functions_reporting_csv.php:1165 +#: ../../enterprise/include/functions_reporting_csv.php:1168 +#: ../../enterprise/include/functions_reporting_csv.php:1218 +#: ../../enterprise/include/functions_reporting_csv.php:1220 +#: ../../enterprise/include/functions_reporting_csv.php:1267 +#: ../../enterprise/include/functions_reporting_csv.php:1269 +#: ../../enterprise/include/functions_reporting_csv.php:1272 +#: ../../enterprise/include/functions_reporting_csv.php:1322 +#: ../../enterprise/include/functions_reporting_csv.php:1324 +#: ../../enterprise/include/functions_reporting_csv.php:1327 +#: ../../enterprise/include/functions_reporting_csv.php:1351 +#: ../../enterprise/include/functions_reporting_csv.php:1353 +#: ../../enterprise/include/functions_reporting_csv.php:1388 +#: ../../enterprise/include/functions_reporting_csv.php:1390 +#: ../../enterprise/include/functions_reporting_csv.php:1512 +#: ../../enterprise/include/functions_reporting_csv.php:1628 +#: ../../enterprise/include/functions_reporting_csv.php:1774 +#: ../../enterprise/include/functions_reporting_csv.php:1776 +#: ../../enterprise/include/functions_reporting_csv.php:1828 +#: ../../enterprise/include/functions_reporting_csv.php:1896 +#: ../../enterprise/include/functions_reporting_csv.php:2035 +#: ../../enterprise/include/functions_reporting_csv.php:2077 +#: ../../enterprise/include/functions_reporting_csv.php:2081 +#: ../../enterprise/include/functions_reporting_csv.php:2134 +#: ../../enterprise/include/functions_reporting_csv.php:2136 +#: ../../enterprise/include/functions_reporting_csv.php:2165 +#: ../../enterprise/include/functions_reporting_csv.php:2167 +#: ../../enterprise/include/functions_reporting_csv.php:2201 +#: ../../enterprise/include/functions_reporting_csv.php:2203 +#: ../../enterprise/include/functions_reporting_csv.php:2254 +#: ../../enterprise/include/functions_reporting_csv.php:2256 +#: ../../enterprise/include/functions_reporting_csv.php:2276 +#: ../../enterprise/include/functions_reporting_csv.php:2278 +#: ../../enterprise/include/functions_reporting_csv.php:2317 +#: ../../enterprise/include/functions_reporting_csv.php:2319 +#: ../../enterprise/include/functions_reporting_csv.php:2371 +#: ../../enterprise/include/functions_reporting_csv.php:2373 +#: ../../enterprise/include/functions_reporting_csv.php:2400 +#: ../../enterprise/include/functions_reporting_csv.php:2402 +#: ../../enterprise/include/functions_reporting_csv.php:2468 +#: ../../enterprise/include/functions_reporting_csv.php:2470 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:779 +#: ../../enterprise/include/functions_services.php:1501 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:805 +#: ../../enterprise/include/functions_update_manager.php:209 +#: ../../enterprise/include/functions_ipam.php:1237 +#: ../../enterprise/include/functions_ipam.php:1818 +#: ../../enterprise/operation/agentes/policy_view.php:51 +#: ../../enterprise/operation/agentes/transactional_map.php:181 +#: ../../enterprise/operation/agentes/tag_view.php:585 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:77 +#: ../../enterprise/operation/agentes/ver_agente.php:57 +#: ../../enterprise/operation/agentes/collection_view.php:64 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:325 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441 +#: ../../enterprise/operation/services/services.service.php:190 +#: ../../enterprise/operation/services/services.list.php:507 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:317 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:369 +#: ../../enterprise/tools/ipam/ipam_list.php:145 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:39 +#: ../../enterprise/tools/ipam/ipam_excel.php:114 +#: ../../enterprise/tools/ipam/ipam_excel.php:184 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:224 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:272 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:40 +#: ../../enterprise/tools/ipam/ipam_editor.php:151 +#: ../../extensions/files_repo/files_repo_form.php:83 +#: ../../extensions/files_repo/files_repo_list.php:56 +#: ../../godmode/modules/manage_network_templates_form.php:160 +#: ../../godmode/modules/manage_network_templates_form.php:222 +#: ../../godmode/modules/manage_network_components_form_common.php:318 +#: ../../godmode/modules/manage_network_components.php:726 +#: ../../godmode/modules/manage_network_components_form_wizard.php:434 +#: ../../godmode/modules/module_list.php:60 +#: ../../godmode/modules/manage_network_templates.php:235 +#: ../../godmode/groups/configure_group.php:228 +#: ../../godmode/groups/group_list.php:802 +#: ../../godmode/users/user_list.php:418 +#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/modificar_agente.php:618 #: ../../godmode/agentes/planned_downtime.list.php:399 -#: ../../godmode/agentes/fields_manager.php:126 -#: ../../godmode/servers/plugin.php:731 -#: ../../godmode/servers/servers.build_table.php:154 -#: ../../godmode/reporting/reporting_builder.list_items.php:424 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1044 -#: ../../godmode/reporting/reporting_builder.php:696 -msgid "Edit" -msgstr "Редактировать" +#: ../../godmode/agentes/planned_downtime.editor.php:560 +#: ../../godmode/agentes/agent_manager.php:420 +#: ../../godmode/agentes/module_manager_editor_common.php:1035 +#: ../../godmode/agentes/module_manager.php:792 +#: ../../godmode/netflow/nf_item_list.php:184 +#: ../../godmode/snmpconsole/snmp_alert.php:803 +#: ../../godmode/snmpconsole/snmp_alert.php:1333 +#: ../../godmode/snmpconsole/snmp_filters.php:180 +#: ../../godmode/snmpconsole/snmp_filters.php:268 +#: ../../godmode/massive/massive_edit_plugins.php:489 +#: ../../godmode/massive/massive_edit_agents.php:635 +#: ../../godmode/massive/massive_edit_modules.php:687 +#: ../../godmode/alerts/configure_alert_command.php:247 +#: ../../godmode/alerts/alert_commands.php:630 +#: ../../godmode/alerts/configure_alert_special_days.php:133 +#: ../../godmode/alerts/alert_templates.php:46 +#: ../../godmode/alerts/configure_alert_template.php:1141 +#: ../../godmode/setup/os.builder.php:34 ../../godmode/setup/os.list.php:33 +#: ../../godmode/setup/setup_integria.php:337 +#: ../../godmode/setup/setup_integria.php:460 +#: ../../godmode/setup/snmp_wizard.php:41 +#: ../../godmode/reporting/create_container.php:266 +#: ../../godmode/reporting/graphs.php:268 +#: ../../godmode/reporting/reporting_builder.item_editor.php:956 +#: ../../godmode/reporting/reporting_builder.main.php:215 +#: ../../godmode/reporting/reporting_builder.php:829 +#: ../../godmode/reporting/graph_builder.main.php:180 +#: ../../godmode/events/event_responses.editor.php:109 +#: ../../godmode/events/event_responses.list.php:51 +#: ../../godmode/servers/modificar_server.php:64 +#: ../../godmode/servers/plugin.php:360 ../../godmode/servers/plugin.php:487 +#: ../../godmode/tag/tag.php:188 ../../godmode/tag/tag.php:238 +#: ../../godmode/tag/edit_tag.php:200 ../../mobile/operation/tactical.php:350 +#: ../../include/functions_reporting_html.php:155 +#: ../../include/functions_reporting_html.php:2884 +#: ../../include/functions_reporting_html.php:2935 +#: ../../include/functions_reporting_html.php:4671 +#: ../../include/functions_reporting_html.php:5618 +#: ../../include/ajax/events_extended.php:91 ../../include/ajax/module.php:979 +#: ../../include/functions_treeview.php:127 +#: ../../include/functions_treeview.php:659 +#: ../../include/class/ConfigPEN.class.php:448 +#: ../../include/class/ConfigPEN.class.php:599 +#: ../../include/class/ManageNetScanScripts.class.php:404 +#: ../../include/class/ManageNetScanScripts.class.php:558 +#: ../../include/class/ManageNetScanScripts.class.php:607 +#: ../../include/class/ModuleTemplates.class.php:890 +#: ../../include/class/ModuleTemplates.class.php:1059 +#: ../../include/class/ModuleTemplates.class.php:1207 +#: ../../include/class/AgentWizard.class.php:1222 +#: ../../include/class/AgentWizard.class.php:3923 +#: ../../include/functions_container.php:147 +#: ../../include/functions_snmp_browser.php:570 +#: ../../include/functions_snmp_browser.php:1676 +#: ../../include/functions_events.php:3792 ../../operation/search_users.php:39 +#: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 +#: ../../operation/agentes/gis_view.php:219 +#: ../../operation/agentes/estado_agente.php:714 +#: ../../operation/agentes/pandora_networkmap.editor.php:312 +#: ../../operation/agentes/custom_fields.php:69 +#: ../../operation/agentes/estado_generalagente.php:246 +#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 +#: ../../operation/incidents/configure_integriaims_incident.php:301 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:256 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:298 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:311 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:443 +#: ../../operation/search_reports.php:35 ../../operation/search_graphs.php:30 +#: ../../operation/reporting/custom_reporting.php:35 +#: ../../operation/reporting/graph_viewer.php:427 +#: ../../operation/search_policies.php:35 +msgid "Description" +msgstr "Описание" -#: ../../enterprise/meta/include/functions_wizard_meta.php:2032 -#: ../../enterprise/extensions/csv_import/main.php:41 -#, php-format -msgid "Could not create agent %s" -msgstr "Агент не может быть создан %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2036 -msgid "Agent successfully added" -msgstr "Агент успешно добавлен" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2052 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2134 -#, php-format -msgid "%s Modules created" -msgstr "%s Модули созданы" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2090 -#, php-format -msgid "Could not update agent %s" -msgstr "Агент не может быть обновлен %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2094 -msgid "Agent successfully updated" -msgstr "Агент успешно обновлен" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2140 -#, php-format -msgid "%s Modules deleted" -msgstr "%s Модули удалены" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2445 -msgid "" -"There was an error creating the alerts, the operation has been cancelled ." -msgstr "" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2476 -msgid "Module successfully added." -msgstr "" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2548 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2637 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2848 -#, php-format -msgid "Error updating module %s" -msgstr "Ошибка при обновлении модуля %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2571 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2660 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2871 -msgid "" -"There was an error updating the alerts, the operation has been cancelled" -msgstr "Произошла ошибка при обновлении оповещений, операция была отменена" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2593 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2682 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2893 -msgid "Successfully updated module." -msgstr "Модуль успешно обновлен." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:3239 -msgid "Manage agent modules" -msgstr "Управление агентом модулей" - -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:486 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:93 -#: ../../operation/integria_incidents/incident.php:141 -#: ../../operation/incidents/incident_detail.php:120 -msgid "No description available" -msgstr "Описание недоступно" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:93 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 -#: ../../enterprise/include/functions_services.php:1412 -#: ../../enterprise/include/functions_reporting_pdf.php:1322 -#: ../../enterprise/include/functions_reporting_pdf.php:1458 -#: ../../enterprise/include/functions_reporting_pdf.php:2280 -#: ../../enterprise/operation/agentes/policy_view.php:306 -#: ../../enterprise/operation/agentes/ver_agente.php:30 -#: ../../enterprise/godmode/services/services.elements.php:320 -#: ../../enterprise/godmode/modules/configure_local_component.php:176 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:82 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:77 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1145 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:97 -#: ../../enterprise/godmode/policies/policy_modules.php:1020 -#: ../../mobile/operation/networkmaps.php:77 -#: ../../mobile/operation/networkmaps.php:78 -#: ../../mobile/operation/networkmaps.php:140 -#: ../../mobile/operation/networkmaps.php:141 -#: ../../mobile/operation/networkmaps.php:196 -#: ../../mobile/operation/events.php:347 ../../mobile/operation/events.php:348 -#: ../../mobile/operation/events.php:476 ../../mobile/operation/events.php:617 -#: ../../mobile/operation/events.php:618 -#: ../../mobile/operation/visualmaps.php:61 -#: ../../mobile/operation/visualmaps.php:62 -#: ../../include/functions_snmp_browser.php:410 -#: ../../include/functions_reporting.php:4732 -#: ../../include/functions_visual_map_editor.php:367 -#: ../../include/functions_visual_map_editor.php:386 -#: ../../include/functions_reporting_html.php:483 -#: ../../include/functions_reporting_html.php:1096 -#: ../../include/functions_reporting_html.php:1515 -#: ../../include/functions_reporting_html.php:2265 -#: ../../include/functions_events.php:886 -#: ../../include/functions_events.php:2362 ../../include/ajax/module.php:703 -#: ../../operation/events/events.php:74 -#: ../../operation/events/sound_events.php:73 -#: ../../operation/search_modules.php:49 -#: ../../operation/agentes/ver_agente.php:658 -#: ../../operation/agentes/networkmap_list.php:135 -#: ../../operation/agentes/networkmap_list.php:179 -#: ../../operation/agentes/networkmap_list.php:263 -#: ../../operation/agentes/status_monitor.php:924 -#: ../../operation/netflow/nf_live_view.php:251 -#: ../../godmode/events/event_responses.editor.php:115 -#: ../../godmode/alerts/alert_templates.php:38 -#: ../../godmode/alerts/alert_templates.php:253 -#: ../../godmode/alerts/alert_templates.php:301 -#: ../../godmode/agentes/module_manager_editor_common.php:156 -#: ../../godmode/agentes/planned_downtime.editor.php:479 -#: ../../godmode/agentes/planned_downtime.list.php:392 -#: ../../godmode/agentes/module_manager.php:117 -#: ../../godmode/agentes/module_manager.php:516 -#: ../../godmode/agentes/agent_template.php:224 -#: ../../godmode/servers/plugin.php:686 -#: ../../godmode/servers/servers.build_table.php:65 -#: ../../godmode/setup/news.php:221 ../../godmode/setup/gis_step_2.php:171 -#: ../../godmode/modules/manage_network_components.php:541 -#: ../../godmode/modules/manage_network_components_form_common.php:67 -#: ../../godmode/modules/manage_network_templates_form.php:197 -#: ../../godmode/reporting/reporting_builder.list_items.php:165 -#: ../../godmode/reporting/reporting_builder.list_items.php:192 -#: ../../godmode/reporting/reporting_builder.list_items.php:285 -#: ../../godmode/reporting/visual_console_builder.wizard.php:111 -#: ../../godmode/reporting/visual_console_builder.wizard.php:173 -#: ../../godmode/reporting/reporting_builder.item_editor.php:593 +#: ../../enterprise/views/cluster/list.php:61 +#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/metasetup.relations.php:335 +#: ../../enterprise/meta/advanced/metasetup.relations.php:413 +#: ../../enterprise/meta/advanced/metasetup.relations.php:548 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 +#: ../../enterprise/godmode/modules/configure_local_component.php:208 +#: ../../enterprise/godmode/policies/policy_modules.php:1471 +#: ../../enterprise/godmode/services/services.elements.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1553 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 +#: ../../enterprise/include/functions_reporting_csv.php:1503 +#: ../../enterprise/include/functions_reporting_csv.php:1619 +#: ../../enterprise/include/functions_reporting_csv.php:1819 +#: ../../enterprise/include/functions_reporting_csv.php:1887 +#: ../../enterprise/include/functions_services.php:1499 +#: ../../enterprise/operation/agentes/policy_view.php:383 +#: ../../enterprise/operation/agentes/tag_view.php:590 +#: ../../enterprise/operation/agentes/ver_agente.php:29 +#: ../../godmode/modules/manage_network_templates_form.php:220 +#: ../../godmode/modules/manage_network_components_form_common.php:60 +#: ../../godmode/modules/manage_network_components.php:725 +#: ../../godmode/agentes/agent_template.php:234 +#: ../../godmode/agentes/modificar_agente.php:616 +#: ../../godmode/agentes/planned_downtime.list.php:401 +#: ../../godmode/agentes/planned_downtime.editor.php:570 +#: ../../godmode/agentes/module_manager_editor_common.php:263 +#: ../../godmode/agentes/module_manager_editor_common.php:376 +#: ../../godmode/agentes/module_manager_editor_common.php:1259 +#: ../../godmode/agentes/module_manager.php:780 +#: ../../godmode/alerts/alert_templates.php:37 +#: ../../godmode/alerts/alert_templates.php:296 +#: ../../godmode/alerts/alert_templates.php:380 +#: ../../godmode/setup/news.php:247 ../../godmode/setup/gis_step_2.php:232 +#: ../../godmode/setup/setup_integria.php:399 +#: ../../godmode/setup/setup_integria.php:522 +#: ../../godmode/reporting/reporting_builder.list_items.php:212 +#: ../../godmode/reporting/reporting_builder.list_items.php:249 +#: ../../godmode/reporting/reporting_builder.list_items.php:372 +#: ../../godmode/reporting/reporting_builder.item_editor.php:854 +#: ../../godmode/reporting/visual_console_builder.wizard.php:135 +#: ../../godmode/reporting/visual_console_builder.wizard.php:303 +#: ../../godmode/events/event_responses.editor.php:157 +#: ../../godmode/servers/servers.build_table.php:67 +#: ../../godmode/servers/modificar_server.php:70 +#: ../../godmode/servers/plugin.php:1008 +#: ../../mobile/operation/visualmaps.php:118 +#: ../../mobile/operation/visualmaps.php:119 +#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378 +#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:680 +#: ../../mobile/operation/events.php:681 +#: ../../include/functions_visual_map_editor.php:702 +#: ../../include/functions_visual_map_editor.php:720 +#: ../../include/functions_visual_map_editor.php:848 +#: ../../include/functions_reporting_html.php:1028 +#: ../../include/functions_reporting_html.php:1036 +#: ../../include/functions_reporting_html.php:1248 +#: ../../include/functions_reporting_html.php:1256 +#: ../../include/functions_reporting_html.php:2040 +#: ../../include/functions_reporting_html.php:2931 +#: ../../include/functions_reporting_html.php:4670 +#: ../../include/ajax/module.php:977 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:461 +#: ../../include/class/ModuleTemplates.class.php:1206 +#: ../../include/class/AgentWizard.class.php:1221 +#: ../../include/class/AgentWizard.class.php:3916 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:327 +#: ../../include/lib/Dashboard/Widgets/clock.php:221 +#: ../../include/functions_snmp_browser.php:564 +#: ../../include/functions_events.php:2546 +#: ../../include/functions_events.php:4893 +#: ../../operation/agentes/estado_agente.php:729 +#: ../../operation/agentes/ver_agente.php:1081 +#: ../../operation/netflow/nf_live_view.php:311 +#: ../../operation/incidents/configure_integriaims_incident.php:215 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:377 +#: ../../operation/search_modules.php:33 +#: ../../operation/events/sound_events.php:124 msgid "Type" msgstr "Тип" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:107 -#: ../../enterprise/godmode/alerts/alert_events.php:505 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:172 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:223 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:276 -#: ../../include/functions_reporting_html.php:2043 -#: ../../include/functions_events.php:2168 -#: ../../operation/integria_incidents/incident.incident.php:90 -#: ../../operation/integria_incidents/incident.list.php:97 -#: ../../operation/agentes/estado_generalagente.php:405 -#: ../../operation/incidents/incident.php:241 -#: ../../operation/incidents/incident.php:333 -#: ../../operation/incidents/incident_detail.php:318 -#: ../../godmode/snmpconsole/snmp_alert.php:835 -#: ../../godmode/snmpconsole/snmp_alert.php:900 -#: ../../godmode/alerts/configure_alert_template.php:727 -#: ../../godmode/alerts/alert_templates.php:52 -#: ../../godmode/alerts/alert_list.list.php:120 -#: ../../godmode/alerts/alert_view.php:102 -#: ../../godmode/agentes/agent_incidents.php:88 -msgid "Priority" -msgstr "Приоритет" +#: ../../enterprise/views/cluster/list.php:62 +#: ../../include/functions_reporting_html.php:5105 +#: ../../operation/agentes/pandora_networkmap.php:695 +msgid "Nodes" +msgstr "Узлы" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:117 -#: ../../godmode/alerts/alert_templates.php:62 -msgid "Everyday" -msgstr "Каждый день" +#: ../../enterprise/views/cluster/list.php:63 +#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:449 +#: ../../enterprise/meta/advanced/policymanager.queue.php:225 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:694 +#: ../../enterprise/meta/include/functions_events_meta.php:78 +#: ../../enterprise/meta/agentsearch.php:121 +#: ../../enterprise/meta/agentsearch.php:311 +#: ../../enterprise/extensions/backup/main.php:134 +#: ../../enterprise/extensions/vmware/vmware_view.php:1085 +#: ../../enterprise/godmode/agentes/collection_manager.php:118 +#: ../../enterprise/godmode/agentes/collection_manager.php:215 +#: ../../enterprise/godmode/policies/policy_alerts.php:291 +#: ../../enterprise/godmode/policies/policy_modules.php:1472 +#: ../../enterprise/godmode/policies/policy_queue.php:448 +#: ../../enterprise/godmode/policies/policies.php:442 +#: ../../enterprise/godmode/policies/policy_collections.php:156 +#: ../../enterprise/godmode/policies/policy_collections.php:251 +#: ../../enterprise/godmode/policies/policy_agents.php:785 +#: ../../enterprise/godmode/policies/policy_agents.php:1165 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:108 +#: ../../enterprise/godmode/admin_access_logs.php:24 +#: ../../enterprise/godmode/alerts/alert_events_list.php:506 +#: ../../enterprise/godmode/servers/HA_cluster.php:145 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../enterprise/include/functions_reporting_csv.php:793 +#: ../../enterprise/include/functions_reporting_csv.php:1851 +#: ../../enterprise/include/functions_reporting.php:1815 +#: ../../enterprise/include/functions_reporting.php:2749 +#: ../../enterprise/include/functions_reporting.php:3746 +#: ../../enterprise/include/functions_reporting.php:5862 +#: ../../enterprise/include/functions_services.php:1510 +#: ../../enterprise/operation/agentes/policy_view.php:49 +#: ../../enterprise/operation/agentes/policy_view.php:153 +#: ../../enterprise/operation/agentes/policy_view.php:249 +#: ../../enterprise/operation/agentes/policy_view.php:384 +#: ../../enterprise/operation/agentes/tag_view.php:592 +#: ../../enterprise/operation/agentes/tag_view.php:669 +#: ../../enterprise/operation/agentes/collection_view.php:65 +#: ../../enterprise/operation/services/services.service.php:198 +#: ../../enterprise/operation/services/services.list.php:253 +#: ../../enterprise/operation/services/services.list.php:514 +#: ../../enterprise/operation/services/services.table_services.php:205 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412 +#: ../../godmode/agentes/status_monitor_custom_fields.php:97 +#: ../../godmode/agentes/status_monitor_custom_fields.php:148 +#: ../../godmode/agentes/agent_incidents.php:89 +#: ../../godmode/agentes/module_manager.php:793 +#: ../../godmode/massive/massive_copy_modules.php:120 +#: ../../godmode/massive/massive_copy_modules.php:280 +#: ../../godmode/massive/massive_delete_modules.php:410 +#: ../../godmode/massive/massive_delete_agents.php:157 +#: ../../godmode/massive/massive_edit_agents.php:449 +#: ../../godmode/massive/massive_edit_agents.php:677 +#: ../../godmode/alerts/alert_list.list.php:126 +#: ../../godmode/alerts/alert_list.list.php:473 +#: ../../godmode/alerts/alert_view.php:91 +#: ../../godmode/setup/setup_integria.php:417 +#: ../../godmode/setup/setup_integria.php:540 +#: ../../godmode/events/custom_events.php:100 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:551 +#: ../../godmode/servers/servers.build_table.php:66 +#: ../../mobile/operation/agents.php:79 ../../mobile/operation/agents.php:126 +#: ../../mobile/operation/agents.php:224 ../../mobile/operation/agents.php:225 +#: ../../mobile/operation/agents.php:387 ../../mobile/operation/modules.php:145 +#: ../../mobile/operation/modules.php:146 +#: ../../mobile/operation/modules.php:256 +#: ../../mobile/operation/modules.php:257 +#: ../../mobile/operation/modules.php:590 +#: ../../mobile/operation/modules.php:596 +#: ../../mobile/operation/modules.php:602 +#: ../../mobile/operation/modules.php:608 +#: ../../mobile/operation/modules.php:619 +#: ../../mobile/operation/modules.php:627 +#: ../../mobile/operation/modules.php:635 +#: ../../mobile/operation/modules.php:707 +#: ../../mobile/operation/modules.php:719 +#: ../../mobile/operation/modules.php:837 ../../mobile/operation/alerts.php:87 +#: ../../mobile/operation/alerts.php:88 ../../mobile/operation/alerts.php:228 +#: ../../mobile/operation/alerts.php:229 ../../mobile/operation/alerts.php:331 +#: ../../mobile/operation/events.php:368 ../../mobile/operation/events.php:369 +#: ../../mobile/operation/events.php:536 ../../mobile/operation/events.php:671 +#: ../../mobile/operation/events.php:672 +#: ../../include/functions_reporting_html.php:527 +#: ../../include/functions_reporting_html.php:1025 +#: ../../include/functions_reporting_html.php:1034 +#: ../../include/functions_reporting_html.php:1246 +#: ../../include/functions_reporting_html.php:1254 +#: ../../include/functions_reporting_html.php:2034 +#: ../../include/functions_reporting_html.php:2380 +#: ../../include/functions_reporting_html.php:2885 +#: ../../include/functions_reporting_html.php:2938 +#: ../../include/functions_reporting_html.php:4483 +#: ../../include/ajax/alert_list.ajax.php:282 +#: ../../include/ajax/alert_list.ajax.php:307 ../../include/ajax/module.php:980 +#: ../../include/ajax/custom_fields.php:416 +#: ../../include/functions_snmp.php:369 +#: ../../include/class/NetworkMap.class.php:2933 +#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/class/ExternalTools.class.php:766 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:318 +#: ../../include/functions_snmp_browser.php:594 +#: ../../include/functions_events.php:194 +#: ../../include/functions_events.php:248 +#: ../../include/functions_events.php:2564 +#: ../../include/functions_events.php:4936 +#: ../../include/functions_events.php:6479 ../../operation/search_agents.php:55 +#: ../../operation/agentes/alerts_status.php:541 +#: ../../operation/agentes/alerts_status.php:576 +#: ../../operation/agentes/alerts_status.php:611 +#: ../../operation/agentes/alerts_status.php:643 +#: ../../operation/agentes/estado_agente.php:251 +#: ../../operation/agentes/estado_agente.php:735 +#: ../../operation/agentes/status_monitor.php:1246 +#: ../../operation/agentes/alerts_status.functions.php:104 +#: ../../operation/messages/message_list.php:177 +#: ../../operation/snmpconsole/snmp_view.php:606 +#: ../../operation/snmpconsole/snmp_view.php:851 +#: ../../operation/snmpconsole/snmp_view.php:1233 +#: ../../operation/incidents/integriaims_export_csv.php:91 +#: ../../operation/incidents/configure_integriaims_incident.php:231 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:373 +#: ../../operation/incidents/list_integriaims_incidents.php:116 +#: ../../operation/search_modules.php:35 +#: ../../operation/events/events.build_table.php:351 +#: ../../operation/search_policies.php:37 +#: ../../operation/servers/recon_view.php:103 +msgid "Status" +msgstr "Статус" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:120 -#: ../../enterprise/include/functions_reporting.php:1114 -#: ../../enterprise/include/functions_reporting.php:1370 -#: ../../enterprise/include/functions_reporting.php:1804 -#: ../../enterprise/include/functions_reporting_pdf.php:1659 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1267 -#: ../../include/functions_html.php:827 -#: ../../godmode/alerts/configure_alert_special_days.php:78 -#: ../../godmode/alerts/alert_special_days.php:196 -#: ../../godmode/alerts/alert_templates.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:751 -msgid "Monday" -msgstr "Понедельник" +#: ../../enterprise/views/cluster/list.php:87 +#: ../../enterprise/godmode/policies/policy_agents.php:486 +#: ../../enterprise/godmode/policies/policy_agents.php:518 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:353 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:199 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:173 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:117 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:666 +#: ../../enterprise/include/class/Omnishell.class.php:812 +#: ../../enterprise/include/class/Omnishell.class.php:891 +#: ../../godmode/reporting/graph_builder.graph_editor.php:334 +#: ../../include/ajax/events.php:610 ../../include/functions_html.php:1070 +#: ../../include/functions_html.php:1221 +#: ../../include/functions_snmp_browser.php:1472 +#: ../../operation/events/events_list.php:426 +msgid "Filter group" +msgstr "Отфильтровать группу" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:121 -#: ../../enterprise/include/functions_reporting.php:1115 -#: ../../enterprise/include/functions_reporting.php:1371 -#: ../../enterprise/include/functions_reporting.php:1805 -#: ../../enterprise/include/functions_reporting_pdf.php:1660 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1273 -#: ../../include/functions_html.php:828 -#: ../../godmode/alerts/configure_alert_special_days.php:79 -#: ../../godmode/alerts/alert_special_days.php:199 -#: ../../godmode/alerts/alert_templates.php:66 -#: ../../godmode/reporting/reporting_builder.item_editor.php:757 -msgid "Tuesday" -msgstr "Вторник" +#: ../../enterprise/views/cluster/list.php:95 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:736 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:190 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:250 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:727 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3034 +#: ../../enterprise/include/class/LogSource.class.php:628 +#: ../../enterprise/include/functions_events.php:117 +#: ../../enterprise/include/functions_ipam.php:1500 +#: ../../godmode/snmpconsole/snmp_alert.php:1174 +#: ../../godmode/events/event_edit_filter.php:355 +#: ../../mobile/operation/agents.php:234 ../../mobile/operation/modules.php:299 +#: ../../mobile/operation/alerts.php:222 ../../mobile/operation/events.php:700 +#: ../../include/ajax/module.php:292 +#: ../../include/class/ConfigPEN.class.php:627 +#: ../../include/class/CredentialStore.class.php:825 +#: ../../operation/snmpconsole/snmp_view.php:622 +#: ../../operation/events/events_list.php:755 +#: ../../operation/events/events.php:1048 +msgid "Free search" +msgstr "Свободный поиск" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 -#: ../../enterprise/include/functions_reporting.php:1116 -#: ../../enterprise/include/functions_reporting.php:1372 -#: ../../enterprise/include/functions_reporting.php:1806 -#: ../../enterprise/include/functions_reporting_pdf.php:1661 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1279 -#: ../../include/functions_html.php:829 -#: ../../godmode/alerts/configure_alert_special_days.php:80 -#: ../../godmode/alerts/alert_special_days.php:202 -#: ../../godmode/alerts/alert_templates.php:67 -#: ../../godmode/reporting/reporting_builder.item_editor.php:763 -msgid "Wednesday" -msgstr "Среда" +#: ../../enterprise/views/cluster/list.php:121 +msgid "New cluster" +msgstr "Новый кластер" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:123 -#: ../../enterprise/include/functions_reporting.php:1117 -#: ../../enterprise/include/functions_reporting.php:1373 -#: ../../enterprise/include/functions_reporting.php:1807 -#: ../../enterprise/include/functions_reporting_pdf.php:1662 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1285 -#: ../../include/functions_html.php:830 -#: ../../godmode/alerts/configure_alert_special_days.php:81 -#: ../../godmode/alerts/alert_special_days.php:205 -#: ../../godmode/alerts/alert_templates.php:68 -#: ../../godmode/reporting/reporting_builder.item_editor.php:769 -msgid "Thursday" -msgstr "Четверг" +#: ../../enterprise/views/cluster/view.php:44 +#: ../../enterprise/views/cluster/view.php:63 +#: ../../enterprise/views/cluster/edit.php:41 +#: ../../enterprise/views/cluster/edit.php:68 +msgid "Cluster list" +msgstr "Список кластеров" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:124 -#: ../../enterprise/include/functions_reporting.php:1118 -#: ../../enterprise/include/functions_reporting.php:1374 -#: ../../enterprise/include/functions_reporting.php:1808 -#: ../../enterprise/include/functions_reporting_pdf.php:1663 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1291 -#: ../../include/functions_html.php:831 -#: ../../godmode/alerts/configure_alert_special_days.php:82 -#: ../../godmode/alerts/alert_special_days.php:208 -#: ../../godmode/alerts/alert_templates.php:69 -#: ../../godmode/reporting/reporting_builder.item_editor.php:775 -msgid "Friday" -msgstr "Пятница" +#: ../../enterprise/views/cluster/view.php:50 +#: ../../enterprise/views/cluster/view.php:81 +msgid "Cluster details" +msgstr "Детали кластера" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:125 -#: ../../enterprise/include/functions_reporting.php:1119 -#: ../../enterprise/include/functions_reporting.php:1375 -#: ../../enterprise/include/functions_reporting.php:1809 -#: ../../enterprise/include/functions_reporting_pdf.php:1664 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1297 -#: ../../include/functions_html.php:832 -#: ../../godmode/alerts/configure_alert_special_days.php:83 -#: ../../godmode/alerts/alert_special_days.php:211 -#: ../../godmode/alerts/alert_templates.php:70 -#: ../../godmode/reporting/reporting_builder.item_editor.php:781 -msgid "Saturday" -msgstr "Суббота" +#: ../../enterprise/views/cluster/view.php:74 +msgid "Edit this cluster" +msgstr "Изменить кластер" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:126 -#: ../../enterprise/include/functions_reporting.php:1120 -#: ../../enterprise/include/functions_reporting.php:1376 -#: ../../enterprise/include/functions_reporting.php:1810 -#: ../../enterprise/include/functions_reporting_pdf.php:1665 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1303 -#: ../../include/functions_html.php:826 -#: ../../godmode/alerts/configure_alert_special_days.php:84 -#: ../../godmode/alerts/alert_special_days.php:214 -#: ../../godmode/alerts/alert_templates.php:71 -#: ../../godmode/reporting/reporting_builder.item_editor.php:787 -msgid "Sunday" -msgstr "Воскресенье" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:128 -#: ../../enterprise/extensions/ipam/ipam_editor.php:82 -#: ../../enterprise/godmode/setup/setup_history.php:64 -#: ../../include/functions_config.php:631 -#: ../../godmode/alerts/alert_templates.php:73 -msgid "Days" -msgstr "Дней" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:128 -#: ../../godmode/alerts/alert_templates.php:73 -msgid "Every" -msgstr "Каждый(ое)" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:143 -#: ../../enterprise/godmode/alerts/alert_events.php:453 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 -#: ../../godmode/snmpconsole/snmp_alert.php:813 -#: ../../godmode/alerts/configure_alert_template.php:545 -#: ../../godmode/alerts/alert_templates.php:89 -#: ../../godmode/alerts/alert_view.php:306 -msgid "Time threshold" -msgstr "Временной порог" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:148 -#: ../../enterprise/include/functions_reporting_pdf.php:2085 -#: ../../enterprise/include/functions_reporting_pdf.php:2135 -#: ../../enterprise/include/functions_reporting_pdf.php:2171 -#: ../../enterprise/include/functions_reporting_pdf.php:2209 -#: ../../enterprise/godmode/alerts/alert_events_list.php:559 -#: ../../enterprise/godmode/policies/policy_alerts.php:336 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:222 -#: ../../operation/agentes/gis_view.php:181 -#: ../../operation/reporting/reporting_viewer.php:199 -#: ../../godmode/alerts/alert_templates.php:94 -#: ../../godmode/alerts/alert_list.list.php:521 -#: ../../godmode/alerts/alert_list.list.php:525 -#: ../../godmode/agentes/planned_downtime.list.php:141 -msgid "From" -msgstr "От" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:150 -#: ../../enterprise/include/functions_reporting.php:1928 -#: ../../enterprise/include/functions_reporting.php:2039 -#: ../../enterprise/include/functions_reporting.php:3214 -#: ../../enterprise/godmode/alerts/alert_events_list.php:560 -#: ../../enterprise/godmode/alerts/alert_events_list.php:601 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:107 -#: ../../enterprise/godmode/policies/policy_alerts.php:337 -#: ../../enterprise/godmode/policies/policy_alerts.php:469 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:223 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:280 -#: ../../include/functions_reporting.php:8425 -#: ../../operation/reporting/reporting_viewer.php:203 -#: ../../godmode/alerts/alert_templates.php:96 -#: ../../godmode/alerts/alert_list.list.php:522 -#: ../../godmode/alerts/alert_list.list.php:597 -#: ../../godmode/alerts/alert_list.builder.php:121 -#: ../../godmode/massive/massive_add_action_alerts.php:161 -msgid "to" -msgstr "до" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:464 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:744 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:951 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:96 -#: ../../enterprise/operation/agentes/policy_view.php:146 -#: ../../enterprise/operation/agentes/policy_view.php:210 -#: ../../enterprise/operation/agentes/policy_view.php:442 -#: ../../include/functions.php:1999 -#: ../../godmode/alerts/configure_alert_template.php:874 -#: ../../godmode/alerts/alert_list.builder.php:209 -#: ../../godmode/modules/manage_network_components_form_wmi.php:58 -#: ../../godmode/modules/manage_network_components_form_plugin.php:29 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -msgid "Empty" -msgstr "Очистить" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:637 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:872 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1540 -#: ../../enterprise/meta/monitoring/group_view.php:150 -#: ../../enterprise/operation/agentes/policy_view.php:265 -#: ../../enterprise/godmode/alerts/alert_events_list.php:617 -#: ../../mobile/operation/alerts.php:253 -#: ../../extensions/agents_alerts.php:322 ../../include/functions_ui.php:909 -#: ../../include/functions_agents.php:2074 -#: ../../include/functions_agents.php:2086 -#: ../../include/functions_reporting.php:6329 ../../include/functions.php:1007 -#: ../../include/functions_events.php:1143 -#: ../../include/functions_events.php:1410 -#: ../../operation/events/sound_events.php:74 -#: ../../operation/snmpconsole/snmp_view.php:633 -#: ../../operation/agentes/group_view.php:155 -#: ../../godmode/alerts/alert_list.list.php:620 -#: ../../godmode/alerts/alert_view.php:85 -msgid "Alert fired" -msgstr "Запуск оповещений" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:639 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:880 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1548 -#: ../../enterprise/operation/agentes/policy_view.php:273 -#: ../../enterprise/godmode/alerts/alert_events_list.php:626 -#: ../../mobile/operation/alerts.php:261 -#: ../../extensions/agents_alerts.php:330 ../../include/functions_ui.php:917 -#: ../../include/functions_agents.php:2077 -#: ../../include/functions_agents.php:2089 -#: ../../include/functions_reporting.php:6274 -#: ../../operation/snmpconsole/snmp_view.php:636 -#: ../../godmode/alerts/alert_list.list.php:628 -#: ../../godmode/alerts/alert_view.php:93 -msgid "Alert not fired" -msgstr "Оповещение не запущено" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:872 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1540 -#: ../../enterprise/operation/agentes/policy_view.php:265 -#: ../../enterprise/godmode/alerts/alert_events_list.php:618 -#: ../../mobile/operation/alerts.php:253 -#: ../../extensions/agents_alerts.php:322 ../../include/functions_ui.php:909 -#: ../../godmode/alerts/alert_list.list.php:620 -#: ../../godmode/alerts/alert_view.php:85 -msgid "times" -msgstr "раз(а)" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:876 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1544 -#: ../../enterprise/operation/agentes/policy_view.php:269 -#: ../../enterprise/godmode/alerts/alert_events_list.php:622 -#: ../../mobile/operation/alerts.php:257 -#: ../../extensions/agents_alerts.php:326 ../../include/functions_ui.php:913 -#: ../../include/functions_reporting.php:6335 -#: ../../godmode/alerts/alert_list.list.php:624 -#: ../../godmode/alerts/alert_view.php:89 -msgid "Alert disabled" -msgstr "Оповещение отключено" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:892 -#: ../../enterprise/extensions/ipam/ipam_network.php:542 -#: ../../enterprise/extensions/ipam/ipam_massive.php:79 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:196 -#: ../../enterprise/include/functions_reporting_pdf.php:2262 -#: ../../enterprise/godmode/setup/setup.php:98 -#: ../../include/functions_groups.php:2128 -#: ../../include/functions_reporting_html.php:1496 -#: ../../operation/agentes/estado_generalagente.php:298 -#: ../../godmode/alerts/configure_alert_template.php:648 -msgid "Enabled" -msgstr "Включено" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:898 -#: ../../enterprise/operation/agentes/policy_view.php:221 -#: ../../mobile/operation/alerts.php:44 ../../include/functions_ui.php:815 -#: ../../operation/agentes/alerts_status.functions.php:80 +#: ../../enterprise/views/cluster/view.php:162 +#: ../../enterprise/views/cluster/view.php:164 +#: ../../enterprise/meta/include/functions_wizard_meta.php:242 +#: ../../enterprise/meta/include/functions_wizard_meta.php:525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1141 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1523 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1615 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1807 +#: ../../enterprise/meta/agentsearch.php:232 +#: ../../enterprise/meta/agentsearch.php:239 +#: ../../enterprise/godmode/modules/configure_local_component.php:440 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118 +#: ../../enterprise/godmode/policies/policy_agents.php:1500 +#: ../../enterprise/godmode/policies/policy_agents.php:1517 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 +#: ../../enterprise/godmode/setup/edit_skin.php:273 +#: ../../enterprise/include/class/VMware.app.php:874 +#: ../../enterprise/include/class/DatabaseHA.class.php:210 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3282 +#: ../../enterprise/include/functions_policies.php:5010 +#: ../../godmode/groups/group_list.php:846 +#: ../../godmode/agentes/modificar_agente.php:727 +#: ../../godmode/agentes/module_manager_editor_common.php:233 +#: ../../godmode/agentes/module_manager_editor_common.php:851 +#: ../../godmode/agentes/module_manager_editor_common.php:1013 +#: ../../godmode/massive/massive_edit_agents.php:679 +#: ../../godmode/massive/massive_edit_agents.php:755 +#: ../../godmode/massive/massive_edit_modules.php:709 #: ../../godmode/alerts/alert_list.list.php:133 -msgid "Standby on" -msgstr "Режим ожидания включен" +#: ../../godmode/alerts/configure_alert_template.php:938 +#: ../../godmode/alerts/alert_view.php:519 ../../mobile/operation/agent.php:148 +#: ../../mobile/operation/alerts.php:50 +#: ../../include/functions_visual_map_editor.php:826 +#: ../../include/functions_reporting_html.php:2897 +#: ../../include/functions_treeview.php:72 +#: ../../include/functions_treeview.php:620 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:390 +#: ../../include/functions_reporting.php:5462 +#: ../../operation/search_agents.php:80 +#: ../../operation/agentes/estado_generalagente.php:108 +#: ../../operation/agentes/estado_generalagente.php:110 +#: ../../operation/agentes/alerts_status.functions.php:97 +msgid "Disabled" +msgstr "Выключено" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:900 -#: ../../mobile/operation/alerts.php:45 -#: ../../operation/agentes/alerts_status.functions.php:81 -#: ../../godmode/alerts/alert_list.list.php:134 -msgid "Standby off" -msgstr "Режим ожидания выключен" +#: ../../enterprise/views/cluster/view.php:168 +#: ../../enterprise/views/cluster/view.php:170 +#: ../../enterprise/godmode/massive/massive_edit_services.php:717 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:950 +#: ../../enterprise/godmode/services/services.service.php:727 +#: ../../godmode/agentes/modificar_agente.php:741 +#: ../../godmode/agentes/planned_downtime.list.php:437 +#: ../../godmode/agentes/planned_downtime.editor.php:576 +#: ../../godmode/agentes/agent_manager.php:735 +#: ../../godmode/agentes/module_manager_editor_common.php:1010 +#: ../../godmode/agentes/module_manager.php:915 +#: ../../godmode/massive/massive_edit_agents.php:728 +#: ../../godmode/massive/massive_edit_modules.php:1048 +#: ../../mobile/operation/agent.php:155 ../../include/ajax/module.php:1128 +#: ../../include/class/Tree.class.php:847 ../../operation/search_agents.php:87 +#: ../../operation/agentes/estado_agente.php:803 +#: ../../operation/agentes/estado_generalagente.php:119 +#: ../../operation/agentes/estado_generalagente.php:129 +msgid "Quiet" +msgstr "\"Тихий\" режим" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1057 -#: ../../include/functions_treeview.php:369 -#: ../../operation/agentes/custom_fields.php:28 -#: ../../operation/agentes/agent_fields.php:28 -#: ../../operation/agentes/estado_generalagente.php:46 -msgid "There was a problem loading agent" -msgstr "Произошла ошибка при загрузке агента" +#: ../../enterprise/views/cluster/view.php:178 +#: ../../enterprise/views/cluster/view.php:186 +#: ../../godmode/agentes/modificar_agente.php:749 +#: ../../operation/search_agents.php:98 +#: ../../operation/agentes/estado_agente.php:811 +#: ../../operation/agentes/estado_generalagente.php:140 +#: ../../operation/agentes/estado_generalagente.php:148 +msgid "Agent in planned downtime" +msgstr "Агент при запланированной остановке" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1102 -#: ../../mobile/operation/agent.php:134 -#: ../../include/functions_treeview.php:412 -#: ../../operation/agentes/estado_generalagente.php:269 -msgid "Other IP addresses" -msgstr "Другие IP адреса" +#: ../../enterprise/views/cluster/view.php:223 +msgid "Force cluster status calculation" +msgstr "Начать принудительный расчет статуса кластера" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1117 -#: ../../include/functions_treeview.php:483 -#: ../../operation/gis_maps/ajax.php:315 -#: ../../operation/agentes/estado_generalagente.php:160 +#: ../../enterprise/views/cluster/view.php:253 +#: ../../enterprise/meta/agentsearch.php:117 +#: ../../enterprise/godmode/modules/configure_local_component.php:173 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:376 +#: ../../enterprise/godmode/modules/local_components.php:506 +#: ../../enterprise/godmode/modules/local_components.php:531 +#: ../../enterprise/godmode/modules/local_components.php:566 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:216 +#: ../../enterprise/include/class/DeploymentCenter.class.php:756 +#: ../../enterprise/include/class/DeploymentCenter.class.php:817 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1289 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/AgentRepository.class.php:336 +#: ../../enterprise/include/class/AgentRepository.class.php:613 +#: ../../enterprise/include/class/AgentRepository.class.php:656 +#: ../../enterprise/operation/agentes/tag_view.php:587 +#: ../../enterprise/tools/ipam/ipam_network.php:358 +#: ../../godmode/agentes/modificar_agente.php:615 +#: ../../godmode/agentes/planned_downtime.editor.php:904 +#: ../../godmode/agentes/agent_manager.php:378 +#: ../../godmode/massive/massive_edit_agents.php:594 +#: ../../mobile/operation/agents.php:76 ../../mobile/operation/agents.php:385 +#: ../../include/functions_reporting_html.php:2882 +#: ../../include/class/Diagnostics.class.php:742 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:332 +#: ../../include/functions_events.php:4390 ../../operation/search_agents.php:43 +#: ../../operation/search_agents.php:49 ../../operation/tree.php:60 +#: ../../operation/tree.php:128 ../../operation/agentes/estado_agente.php:720 +#: ../../operation/agentes/estado_generalagente.php:203 +#: ../../operation/gis_maps/ajax.php:297 +msgid "OS" +msgstr "ОС" + +#: ../../enterprise/views/cluster/view.php:272 +#: ../../operation/agentes/estado_generalagente.php:221 +msgid "IP address" +msgstr "IP адрес" + +#: ../../enterprise/views/cluster/view.php:275 +#: ../../enterprise/views/cluster/view.php:290 +#: ../../enterprise/meta/advanced/servers.build_table.php:100 +#: ../../enterprise/meta/advanced/servers.build_table.php:101 +#: ../../enterprise/meta/advanced/servers.build_table.php:107 +#: ../../enterprise/meta/advanced/metasetup.visual.php:831 +#: ../../enterprise/include/functions_visual_map.php:320 +#: ../../enterprise/include/functions_servicemap.php:465 +#: ../../enterprise/include/functions_aws.php:507 +#: ../../enterprise/include/functions_aws.php:508 +#: ../../enterprise/include/functions_reporting.php:5880 +#: ../../enterprise/include/functions_services.php:1098 +#: ../../enterprise/include/functions_services.php:1272 +#: ../../enterprise/include/functions_services.php:1890 +#: ../../enterprise/include/lib/Metaconsole/Node.php:391 +#: ../../enterprise/include/lib/Metaconsole/Node.php:741 +#: ../../enterprise/tools/ipam/ipam_network.php:395 +#: ../../enterprise/tools/ipam/ipam_network.php:475 +#: ../../enterprise/tools/ipam/ipam_ajax.php:221 +#: ../../enterprise/tools/ipam/ipam_ajax.php:242 +#: ../../godmode/modules/manage_network_components.php:742 +#: ../../godmode/modules/manage_network_components.php:743 +#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201 +#: ../../godmode/agentes/planned_downtime.list.php:510 +#: ../../godmode/alerts/alert_view.php:112 +#: ../../godmode/servers/servers.build_table.php:133 +#: ../../godmode/servers/servers.build_table.php:134 +#: ../../godmode/servers/servers.build_table.php:140 +#: ../../mobile/operation/agent.php:173 ../../mobile/operation/agent.php:181 +#: ../../mobile/operation/events.php:161 ../../mobile/operation/events.php:167 +#: ../../mobile/operation/events.php:175 ../../mobile/operation/events.php:260 +#: ../../mobile/operation/events.php:290 ../../mobile/operation/events.php:298 +#: ../../include/functions_servers.php:1319 +#: ../../include/functions_reporting_html.php:631 +#: ../../include/functions_reporting_html.php:634 +#: ../../include/functions_reporting_html.php:4744 +#: ../../include/functions_reporting_html.php:4797 +#: ../../include/functions.php:1123 ../../include/functions.php:1129 +#: ../../include/functions.php:1133 ../../include/ajax/module.php:1168 +#: ../../include/functions_treeview.php:162 +#: ../../include/functions_treeview.php:327 +#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2585 +#: ../../include/functions_ui.php:2593 ../../include/functions_db.php:208 +#: ../../include/functions_events.php:3747 +#: ../../include/functions_events.php:3897 +#: ../../include/functions_events.php:3918 +#: ../../include/functions_events.php:3923 +#: ../../include/functions_events.php:3936 +#: ../../include/functions_events.php:3937 +#: ../../include/functions_events.php:3949 +#: ../../include/functions_events.php:4000 +#: ../../include/functions_events.php:4027 +#: ../../include/functions_events.php:4083 +#: ../../include/functions_events.php:4100 +#: ../../include/functions_events.php:4107 +#: ../../include/functions_events.php:4210 +#: ../../include/functions_events.php:4347 +#: ../../include/functions_events.php:4386 +#: ../../include/functions_events.php:4400 +#: ../../include/functions_events.php:4405 +#: ../../include/functions_events.php:4435 +#: ../../include/functions_events.php:4528 +#: ../../include/functions_events.php:4602 +#: ../../include/functions_events.php:4612 +#: ../../include/functions_events.php:4810 +#: ../../include/functions_events.php:4878 +#: ../../include/functions_events.php:4965 +#: ../../include/functions_events.php:4994 +#: ../../include/functions_events.php:5009 +#: ../../include/functions_events.php:5019 +#: ../../include/functions_events.php:5029 +#: ../../include/functions_events.php:7258 +#: ../../include/functions_events.php:7277 +#: ../../include/functions_events.php:7282 +#: ../../include/functions_events.php:7289 +#: ../../include/functions_events.php:7302 +#: ../../include/functions_events.php:7315 +#: ../../include/functions_events.php:7327 +#: ../../include/functions_events.php:7380 +#: ../../include/functions_events.php:7407 +#: ../../include/functions_events.php:7432 +#: ../../operation/agentes/status_monitor.php:1591 +#: ../../operation/agentes/estado_generalagente.php:226 +#: ../../operation/agentes/estado_generalagente.php:239 +#: ../../operation/agentes/estado_generalagente.php:251 +#: ../../operation/agentes/estado_generalagente.php:399 +#: ../../operation/agentes/estado_generalagente.php:415 +#: ../../operation/agentes/estado_generalagente.php:426 +#: ../../operation/snmpconsole/snmp_view.php:976 +#: ../../operation/snmpconsole/snmp_view.php:996 +msgid "N/A" +msgstr "Недоступно" + +#: ../../enterprise/views/cluster/view.php:306 +#: ../../include/functions_treeview.php:738 +#: ../../operation/agentes/estado_generalagente.php:234 +#: ../../operation/gis_maps/ajax.php:341 msgid "Agent Version" msgstr "Версия агента" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1124 -#: ../../include/functions_treeview.php:500 -#: ../../operation/agentes/estado_generalagente.php:311 -msgid "Position (Long, Lat)" -msgstr "Позиция (Длина, Широта)" +#: ../../enterprise/views/cluster/view.php:311 +msgid "Cluster agent" +msgstr "Агент кластера" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1128 -#: ../../operation/agentes/estado_generalagente.php:314 -msgid "There is no GIS data." -msgstr "Здесь нет ГИС данных." +#: ../../enterprise/views/cluster/view.php:366 +#: ../../operation/agentes/estado_generalagente.php:877 +msgid "Events (Last 24h)" +msgstr "События (последние 24ч)" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1144 -#: ../../include/functions_treeview.php:509 -#: ../../operation/agentes/ver_agente.php:880 -#: ../../operation/agentes/ver_agente.php:1040 -#: ../../operation/agentes/estado_generalagente.php:330 -#: ../../godmode/agentes/agent_manager.php:389 -msgid "Url address" -msgstr "Url адрес" +#: ../../enterprise/views/cluster/view.php:438 +#: ../../operation/agentes/stat_win.php:391 +#: ../../operation/agentes/interface_traffic_graph_win.php:271 +msgid "Reload" +msgstr "Перезагрузить" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1149 -#: ../../include/functions_treeview.php:443 -#: ../../operation/gis_maps/ajax.php:332 -#: ../../operation/agentes/estado_generalagente.php:206 -msgid "Remote" -msgstr "Удалённый вход" +#: ../../enterprise/views/cluster/edit.php:57 +msgid "cluster " +msgstr "кластер " -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1155 -#: ../../enterprise/extensions/cron/main.php:258 -#: ../../enterprise/extensions/ipam/ipam_list.php:91 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:229 -#: ../../include/functions_ui.php:450 ../../include/functions_treeview.php:436 -#: ../../operation/gis_maps/ajax.php:323 ../../operation/gis_maps/ajax.php:334 -#: ../../operation/agentes/estado_generalagente.php:211 -#: ../../godmode/snmpconsole/snmp_alert.php:1111 -#: ../../godmode/db/db_main.php:183 -msgid "Never" -msgstr "Никогда" +#: ../../enterprise/views/cluster/edit.php:88 +msgid "View this cluster" +msgstr "Посмотреть кластер" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1164 -#: ../../include/functions_treeview.php:517 -#: ../../operation/agentes/estado_generalagente.php:339 -msgid "Timezone Offset" -msgstr "смещение часового пояса" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1170 -#: ../../include/functions_treeview.php:451 -msgid "Next agent contact" -msgstr "Следующий контактный агент" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1180 -#: ../../include/functions_treeview.php:532 -#: ../../operation/agentes/agent_fields.php:45 -#: ../../operation/agentes/estado_generalagente.php:355 -msgid "Custom field" -msgstr "Пользовательское поле" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1183 -#: ../../operation/agentes/custom_fields.php:87 -#: ../../operation/agentes/agent_fields.php:48 -msgid "empty" -msgstr "пусто" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1202 -msgid "Go to agent detail" -msgstr "Перейти к деталям агента" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1204 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1412 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1588 -#: ../../enterprise/extensions/csv_import_group/main.php:84 -#: ../../enterprise/extensions/csv_import/main.php:88 -#: ../../include/functions_filemanager.php:636 -msgid "Go" -msgstr "Перейти" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1209 -msgid "Create new module" -msgstr "Создать новый модуль" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1215 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1430 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 -#: ../../enterprise/extensions/cron/main.php:320 -#: ../../enterprise/extensions/backup/main.php:167 -#: ../../enterprise/extensions/ipam/ipam_editor.php:108 -#: ../../enterprise/extensions/ipam/ipam_list.php:125 -#: ../../enterprise/godmode/services/services.elements.php:408 -#: ../../enterprise/godmode/services/services.service.php:360 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:89 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:276 -#: ../../enterprise/godmode/alerts/alert_events_list.php:671 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:220 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:511 -#: ../../enterprise/godmode/agentes/collections.php:235 -#: ../../enterprise/godmode/agentes/collections.data.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:125 -#: ../../enterprise/godmode/agentes/collections.data.php:144 -#: ../../enterprise/godmode/agentes/collections.data.php:159 -#: ../../enterprise/godmode/agentes/collections.data.php:181 -#: ../../enterprise/godmode/agentes/collections.data.php:223 -#: ../../enterprise/godmode/agentes/collections.editor.php:117 -#: ../../enterprise/godmode/servers/manage_export.php:125 -#: ../../enterprise/godmode/servers/manage_export.php:157 -#: ../../enterprise/godmode/setup/edit_skin.php:269 -#: ../../enterprise/godmode/modules/local_components.php:539 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:245 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 -#: ../../enterprise/godmode/modules/configure_local_component.php:469 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:232 -#: ../../enterprise/godmode/policies/policies.php:424 -#: ../../enterprise/godmode/policies/configure_policy.php:90 -#: ../../enterprise/godmode/policies/policy_modules.php:304 -#: ../../include/functions_filemanager.php:615 -#: ../../include/functions_filemanager.php:652 -#: ../../include/functions_visual_map_editor.php:437 -#: ../../operation/integria_incidents/incident.incident.php:126 -#: ../../operation/gis_maps/gis_map.php:180 -#: ../../operation/agentes/networkmap_list.php:252 -#: ../../operation/incidents/incident_detail.php:379 -#: ../../godmode/events/event_responses.editor.php:134 -#: ../../godmode/events/event_edit_filter.php:388 -#: ../../godmode/users/configure_user.php:581 -#: ../../godmode/users/profile_list.php:404 -#: ../../godmode/category/edit_category.php:174 -#: ../../godmode/snmpconsole/snmp_alert.php:874 -#: ../../godmode/snmpconsole/snmp_alert.php:1221 -#: ../../godmode/snmpconsole/snmp_filters.php:108 -#: ../../godmode/snmpconsole/snmp_filters.php:156 -#: ../../godmode/gis_maps/index.php:127 -#: ../../godmode/alerts/alert_commands.php:370 -#: ../../godmode/alerts/configure_alert_special_days.php:101 -#: ../../godmode/alerts/configure_alert_command.php:202 -#: ../../godmode/alerts/alert_special_days.php:235 -#: ../../godmode/alerts/alert_list.php:300 -#: ../../godmode/alerts/alert_templates.php:363 -#: ../../godmode/alerts/alert_list.list.php:720 -#: ../../godmode/alerts/configure_alert_action.php:227 -#: ../../godmode/alerts/alert_actions.php:403 -#: ../../godmode/agentes/agent_manager.php:459 -#: ../../godmode/agentes/planned_downtime.list.php:364 -#: ../../godmode/agentes/planned_downtime.list.php:514 -#: ../../godmode/agentes/module_manager_editor.php:490 -#: ../../godmode/agentes/module_manager.php:122 -#: ../../godmode/agentes/configure_field.php:65 -#: ../../godmode/servers/plugin.php:492 -#: ../../godmode/servers/recon_script.php:220 -#: ../../godmode/servers/manage_recontask.php:381 -#: ../../godmode/netflow/nf_edit_form.php:244 -#: ../../godmode/groups/configure_modu_group.php:80 -#: ../../godmode/groups/configure_group.php:208 -#: ../../godmode/setup/news.php:204 ../../godmode/setup/links.php:117 -#: ../../godmode/setup/os.php:49 ../../godmode/setup/os.php:73 -#: ../../godmode/setup/gis.php:93 -#: ../../godmode/massive/massive_add_profiles.php:117 -#: ../../godmode/modules/manage_nc_groups.php:244 -#: ../../godmode/modules/manage_network_components.php:620 -#: ../../godmode/modules/manage_network_templates.php:228 -#: ../../godmode/modules/manage_nc_groups_form.php:83 -#: ../../godmode/modules/manage_network_components_form.php:267 -#: ../../godmode/modules/manage_network_templates_form.php:157 -#: ../../godmode/reporting/graph_builder.main.php:164 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1041 -#: ../../godmode/reporting/map_builder.php:312 -#: ../../godmode/tag/edit_tag.php:227 -msgid "Create" -msgstr "Создать" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1256 -#: ../../godmode/groups/configure_modu_group.php:47 -#: ../../godmode/groups/configure_group.php:68 -msgid "There was a problem loading group" -msgstr "Найдена проблема при загрузке группы" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1270 -msgid "Group name" -msgstr "Название группы" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1277 -#: ../../include/functions_visual_map_editor.php:492 -#: ../../operation/agentes/ver_agente.php:706 -#: ../../operation/agentes/estado_generalagente.php:279 -#: ../../godmode/agentes/agent_manager.php:233 -#: ../../godmode/groups/configure_group.php:132 -#: ../../godmode/massive/massive_edit_agents.php:267 -#: ../../godmode/modules/manage_nc_groups_form.php:69 -#: ../../godmode/reporting/visual_console_builder.elements.php:81 -msgid "Parent" -msgstr "Родитель" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1283 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:76 -#: ../../include/functions_visual_map.php:2296 -#: ../../include/functions_visual_map_editor.php:60 -#: ../../include/functions_visual_map_editor.php:576 -#: ../../godmode/groups/group_list.php:335 -#: ../../godmode/groups/configure_group.php:117 -#: ../../godmode/setup/os.builder.php:39 -#: ../../godmode/modules/module_list.php:57 -#: ../../godmode/reporting/visual_console_builder.elements.php:183 -msgid "Icon" -msgstr "Значок" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1347 -#: ../../include/functions_treeview.php:47 -msgid "There was a problem loading module" -msgstr "Найдена проблема при загрузке модуля" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1361 -#: ../../enterprise/include/functions_reporting_pdf.php:2279 -#: ../../mobile/operation/modules.php:420 -#: ../../mobile/operation/modules.php:643 ../../include/ajax/module.php:706 -#: ../../operation/agentes/status_monitor.php:448 -#: ../../operation/agentes/status_monitor.php:931 -#: ../../godmode/alerts/alert_list.list.php:84 -#: ../../godmode/agentes/agent_template.php:223 -#: ../../godmode/modules/manage_network_components.php:540 -#: ../../godmode/modules/manage_network_templates_form.php:196 -msgid "Module name" -msgstr "Имя модуля" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1377 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:157 -#: ../../enterprise/operation/agentes/ver_agente.php:33 -#: ../../enterprise/godmode/modules/configure_local_component.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1384 -#: ../../mobile/operation/modules.php:140 -#: ../../mobile/operation/modules.php:141 -#: ../../mobile/operation/modules.php:229 -#: ../../mobile/operation/modules.php:230 -#: ../../extensions/agents_modules.php:75 -#: ../../include/functions_graph.php:4884 -#: ../../include/functions_treeview.php:123 -#: ../../include/functions_events.php:2070 -#: ../../operation/agentes/estado_monitores.php:438 -#: ../../operation/agentes/ver_agente.php:662 -#: ../../operation/agentes/networkmap.php:459 -#: ../../operation/agentes/status_monitor.php:428 -#: ../../godmode/agentes/module_manager_editor_common.php:223 -#: ../../godmode/massive/massive_edit_modules.php:487 -#: ../../godmode/modules/manage_network_components_form_common.php:93 -#: ../../godmode/reporting/reporting_builder.item_editor.php:825 -msgid "Module group" -msgstr "Группа модулей" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1382 -#: ../../include/functions_graph.php:4837 -#: ../../include/functions_treeview.php:118 -#: ../../operation/agentes/status_monitor.php:440 -#: ../../godmode/agentes/module_manager_editor_common.php:225 -#: ../../godmode/massive/massive_edit_modules.php:490 -msgid "Not assigned" -msgstr "Не назначено" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1387 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:144 -#: ../../godmode/massive/massive_delete_modules.php:405 -#: ../../godmode/massive/massive_edit_modules.php:248 -msgid "Module type" -msgstr "Тип модуля" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1410 -msgid "Go to module detail" -msgstr "Перейти к деталям модуля" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1417 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:101 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:87 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 -msgid "Edit module" -msgstr "Редактировать модуль" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1423 -#: ../../godmode/agentes/module_manager_editor_common.php:142 -msgid "Delete module" -msgstr "Удалить модуль" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1428 -msgid "Create new alert" -msgstr "Создать новое оповещение" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1469 -msgid "There was a problem loading alert" -msgstr "Найдена проблема при агрузке оповещения" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1484 -#: ../../enterprise/godmode/reporting/graph_template_list.php:124 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:284 -#: ../../godmode/alerts/alert_list.list.php:56 -msgid "Template name" -msgstr "Название шаблона" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1487 -#: ../../enterprise/operation/agentes/policy_view.php:193 -#: ../../operation/agentes/alerts_status.functions.php:102 -#: ../../operation/agentes/alerts_status.php:410 -#: ../../operation/agentes/alerts_status.php:454 -#: ../../operation/agentes/alerts_status.php:488 -#: ../../operation/agentes/alerts_status.php:522 -#: ../../godmode/alerts/alert_list.list.php:131 -msgid "Standby" -msgstr "Режим ожидания" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1528 -#: ../../enterprise/operation/agentes/policy_view.php:197 -#: ../../extensions/agents_alerts.php:280 -#: ../../include/functions_reporting_html.php:2269 -#: ../../operation/agentes/alerts_status.php:423 -#: ../../operation/agentes/alerts_status.php:463 -#: ../../operation/agentes/alerts_status.php:496 -#: ../../operation/agentes/alerts_status.php:529 -#: ../../godmode/snmpconsole/snmp_alert.php:1063 -#: ../../godmode/alerts/alert_view.php:79 -msgid "Last fired" -msgstr "Последний запуск" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1560 -msgid "Stand By" -msgstr "Поддерживаемое" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1563 -#: ../../enterprise/meta/advanced/metasetup.password.php:79 -#: ../../enterprise/meta/advanced/metasetup.password.php:90 -#: ../../enterprise/meta/advanced/metasetup.password.php:96 -#: ../../enterprise/meta/advanced/metasetup.password.php:107 -#: ../../enterprise/meta/advanced/metasetup.password.php:123 -#: ../../enterprise/meta/advanced/metasetup.password.php:129 -#: ../../enterprise/meta/advanced/metasetup.visual.php:132 -#: ../../enterprise/meta/advanced/metasetup.visual.php:138 -#: ../../enterprise/meta/advanced/metasetup.visual.php:176 -#: ../../enterprise/meta/advanced/metasetup.visual.php:185 -#: ../../enterprise/meta/advanced/metasetup.performance.php:83 -#: ../../enterprise/meta/advanced/metasetup.setup.php:109 -#: ../../enterprise/meta/advanced/metasetup.setup.php:160 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:94 -#: ../../enterprise/godmode/setup/setup.php:31 -#: ../../enterprise/godmode/setup/setup.php:40 -#: ../../enterprise/godmode/setup/setup.php:56 -#: ../../enterprise/godmode/setup/setup.php:149 -#: ../../enterprise/godmode/setup/setup.php:214 -#: ../../enterprise/godmode/setup/setup.php:253 -#: ../../enterprise/godmode/setup/setup.php:262 -#: ../../enterprise/godmode/setup/setup.php:267 -#: ../../enterprise/godmode/setup/setup.php:276 -#: ../../enterprise/godmode/setup/setup.php:290 -#: ../../enterprise/godmode/setup/setup.php:295 -#: ../../enterprise/godmode/setup/setup_auth.php:61 -#: ../../enterprise/godmode/setup/setup_auth.php:72 -#: ../../enterprise/godmode/setup/setup_auth.php:108 -#: ../../enterprise/godmode/setup/setup_history.php:46 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:325 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:171 -#: ../../operation/users/user_edit.php:261 -#: ../../operation/snmpconsole/snmp_view.php:426 -#: ../../operation/netflow/nf_live_view.php:265 -#: ../../godmode/users/configure_user.php:513 -#: ../../godmode/alerts/alert_view.php:107 -#: ../../godmode/alerts/alert_view.php:301 -#: ../../godmode/agentes/agent_manager.php:381 -#: ../../godmode/agentes/agent_conf_gis.php:79 -#: ../../godmode/servers/manage_recontask_form.php:305 -#: ../../godmode/servers/manage_recontask.php:329 -#: ../../godmode/setup/setup_netflow.php:63 -#: ../../godmode/setup/setup_netflow.php:71 -#: ../../godmode/setup/setup_general.php:70 -#: ../../godmode/setup/setup_general.php:74 -#: ../../godmode/setup/setup_general.php:94 -#: ../../godmode/setup/setup_general.php:98 -#: ../../godmode/setup/setup_general.php:179 -#: ../../godmode/setup/setup_general.php:234 -#: ../../godmode/setup/setup_general.php:242 -#: ../../godmode/setup/setup_general.php:251 -#: ../../godmode/setup/setup_general.php:272 -#: ../../godmode/setup/performance.php:98 -#: ../../godmode/setup/performance.php:105 -#: ../../godmode/setup/performance.php:112 -#: ../../godmode/setup/setup_auth.php:70 ../../godmode/setup/setup_auth.php:78 -#: ../../godmode/setup/setup_auth.php:162 -#: ../../godmode/setup/setup_auth.php:203 -#: ../../godmode/setup/setup_visuals.php:85 -#: ../../godmode/setup/setup_visuals.php:155 -#: ../../godmode/setup/setup_visuals.php:163 -#: ../../godmode/setup/setup_visuals.php:191 -#: ../../godmode/setup/setup_visuals.php:350 -#: ../../godmode/setup/setup_visuals.php:356 -#: ../../godmode/setup/setup_visuals.php:366 -#: ../../godmode/setup/setup_visuals.php:499 -#: ../../godmode/setup/setup_visuals.php:526 -#: ../../godmode/massive/massive_edit_agents.php:277 -#: ../../godmode/massive/massive_edit_agents.php:393 -#: ../../godmode/massive/massive_edit_agents.php:400 -#: ../../godmode/massive/massive_edit_modules.php:384 -#: ../../godmode/massive/massive_edit_modules.php:429 -#: ../../godmode/massive/massive_edit_modules.php:448 -#: ../../godmode/massive/massive_edit_modules.php:527 -#: ../../godmode/massive/massive_edit_modules.php:554 -#: ../../godmode/massive/massive_edit_modules.php:573 -#: ../../godmode/reporting/visual_console_builder.wizard.php:226 -#: ../../godmode/reporting/visual_console_builder.wizard.php:269 -#: ../../godmode/reporting/reporting_builder.php:629 -#: ../../godmode/reporting/reporting_builder.main.php:111 -msgid "Yes" -msgstr "Да" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1565 -#: ../../enterprise/meta/advanced/metasetup.password.php:80 -#: ../../enterprise/meta/advanced/metasetup.password.php:91 -#: ../../enterprise/meta/advanced/metasetup.password.php:97 -#: ../../enterprise/meta/advanced/metasetup.password.php:108 -#: ../../enterprise/meta/advanced/metasetup.password.php:124 -#: ../../enterprise/meta/advanced/metasetup.password.php:130 -#: ../../enterprise/meta/advanced/metasetup.visual.php:133 -#: ../../enterprise/meta/advanced/metasetup.visual.php:139 -#: ../../enterprise/meta/advanced/metasetup.visual.php:180 -#: ../../enterprise/meta/advanced/metasetup.visual.php:189 -#: ../../enterprise/meta/advanced/metasetup.performance.php:84 -#: ../../enterprise/meta/advanced/metasetup.setup.php:110 -#: ../../enterprise/meta/advanced/metasetup.setup.php:161 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:95 -#: ../../enterprise/godmode/setup/setup.php:32 -#: ../../enterprise/godmode/setup/setup.php:41 -#: ../../enterprise/godmode/setup/setup.php:57 -#: ../../enterprise/godmode/setup/setup.php:150 -#: ../../enterprise/godmode/setup/setup.php:215 -#: ../../enterprise/godmode/setup/setup.php:254 -#: ../../enterprise/godmode/setup/setup.php:263 -#: ../../enterprise/godmode/setup/setup.php:268 -#: ../../enterprise/godmode/setup/setup.php:277 -#: ../../enterprise/godmode/setup/setup.php:291 -#: ../../enterprise/godmode/setup/setup.php:296 -#: ../../enterprise/godmode/setup/setup_auth.php:64 -#: ../../enterprise/godmode/setup/setup_auth.php:75 -#: ../../enterprise/godmode/setup/setup_auth.php:109 -#: ../../enterprise/godmode/setup/setup_history.php:47 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:327 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 -#: ../../mobile/operation/events.php:181 ../../mobile/operation/events.php:188 -#: ../../include/functions_events.php:2370 -#: ../../include/functions_events.php:2377 -#: ../../operation/users/user_edit.php:261 -#: ../../operation/snmpconsole/snmp_view.php:429 -#: ../../operation/netflow/nf_live_view.php:266 -#: ../../godmode/users/configure_user.php:513 -#: ../../godmode/alerts/alert_view.php:107 -#: ../../godmode/alerts/alert_view.php:303 -#: ../../godmode/alerts/alert_view.php:385 -#: ../../godmode/agentes/agent_manager.php:384 -#: ../../godmode/agentes/agent_conf_gis.php:80 -#: ../../godmode/servers/manage_recontask_form.php:305 -#: ../../godmode/servers/manage_recontask.php:329 -#: ../../godmode/setup/setup_netflow.php:64 -#: ../../godmode/setup/setup_netflow.php:72 ../../godmode/setup/news.php:264 -#: ../../godmode/setup/setup_general.php:71 -#: ../../godmode/setup/setup_general.php:75 -#: ../../godmode/setup/setup_general.php:95 -#: ../../godmode/setup/setup_general.php:99 -#: ../../godmode/setup/setup_general.php:180 -#: ../../godmode/setup/setup_general.php:237 -#: ../../godmode/setup/setup_general.php:245 -#: ../../godmode/setup/setup_general.php:252 -#: ../../godmode/setup/setup_general.php:273 -#: ../../godmode/setup/performance.php:99 -#: ../../godmode/setup/performance.php:106 -#: ../../godmode/setup/performance.php:113 -#: ../../godmode/setup/setup_auth.php:71 ../../godmode/setup/setup_auth.php:79 -#: ../../godmode/setup/setup_auth.php:163 -#: ../../godmode/setup/setup_auth.php:206 -#: ../../godmode/setup/setup_visuals.php:89 -#: ../../godmode/setup/setup_visuals.php:158 -#: ../../godmode/setup/setup_visuals.php:166 -#: ../../godmode/setup/setup_visuals.php:193 -#: ../../godmode/setup/setup_visuals.php:351 -#: ../../godmode/setup/setup_visuals.php:358 -#: ../../godmode/setup/setup_visuals.php:370 -#: ../../godmode/setup/setup_visuals.php:503 -#: ../../godmode/setup/setup_visuals.php:530 -#: ../../godmode/massive/massive_edit_agents.php:277 -#: ../../godmode/massive/massive_edit_agents.php:394 -#: ../../godmode/massive/massive_edit_agents.php:400 -#: ../../godmode/massive/massive_edit_modules.php:385 -#: ../../godmode/massive/massive_edit_modules.php:430 -#: ../../godmode/massive/massive_edit_modules.php:449 -#: ../../godmode/massive/massive_edit_modules.php:527 -#: ../../godmode/massive/massive_edit_modules.php:555 -#: ../../godmode/massive/massive_edit_modules.php:573 -#: ../../godmode/reporting/visual_console_builder.wizard.php:231 -#: ../../godmode/reporting/visual_console_builder.wizard.php:272 -#: ../../godmode/reporting/reporting_builder.php:631 -#: ../../godmode/reporting/reporting_builder.main.php:115 -msgid "No" -msgstr "Нет" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1586 -msgid "Go to Alert detail" -msgstr "Перейтик деталям Оповещения" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1592 -msgid "Delete alert" -msgstr "Удалить оповещение" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1636 -msgid "There was a problem loading tag" -msgstr "Найдена проблема при загрузке тега" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1651 -#: ../../godmode/tag/tag.php:199 -msgid "Tag name" -msgstr "Имя тэга" - -#: ../../enterprise/meta/include/functions_users_meta.php:168 -#: ../../enterprise/meta/include/functions_users_meta.php:187 -#: ../../enterprise/meta/general/main_header.php:242 -#: ../../enterprise/meta/general/main_header.php:308 -#: ../../godmode/users/configure_user.php:82 -#: ../../godmode/users/configure_profile.php:41 -#: ../../godmode/users/configure_profile.php:49 -#: ../../godmode/users/user_list.php:113 ../../godmode/users/user_list.php:121 -#: ../../godmode/users/profile_list.php:45 -#: ../../godmode/users/profile_list.php:53 -msgid "User management" -msgstr "Управление пользователями" - -#: ../../enterprise/meta/include/functions_users_meta.php:172 -#: ../../enterprise/meta/include/functions_users_meta.php:193 -#: ../../godmode/menu.php:74 ../../godmode/users/configure_user.php:86 -#: ../../godmode/users/configure_profile.php:45 -#: ../../godmode/users/user_list.php:117 -#: ../../godmode/users/profile_list.php:49 -msgid "Profile management" -msgstr "управление профилем" - -#: ../../enterprise/meta/include/functions_users_meta.php:178 -#: ../../enterprise/meta/include/functions_users_meta.php:190 -#: ../../enterprise/meta/general/main_header.php:408 -#: ../../enterprise/meta/general/main_header.php:413 -#: ../../operation/menu.php:325 ../../general/header.php:272 -#: ../../general/header.php:274 -msgid "Edit my user" -msgstr "Редактировать моего пользователя" - -#: ../../enterprise/meta/include/functions_users_meta.php:184 -msgid "User synchronization" -msgstr "Синхронизация пользователей" - -#: ../../enterprise/meta/include/functions_users_meta.php:196 -msgid "Group synchronization" -msgstr "Синхронизация групп" - -#: ../../enterprise/meta/screens/screens.visualmap.php:60 +#: ../../enterprise/meta/screens/screens.visualmap.php:69 msgid "Create visualmap" msgstr "Создать визуальную карту" -#: ../../enterprise/meta/screens/screens.visualmap.php:120 -#: ../../godmode/reporting/visual_console_builder.php:240 -msgid "Successfully created." -msgstr "Успешно создано." +#: ../../enterprise/meta/screens/screens.visualmap.php:71 +#: ../../enterprise/meta/advanced/collections.editor.php:179 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:277 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:443 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:635 +#: ../../enterprise/meta/include/functions_autoprovision.php:480 +#: ../../enterprise/meta/include/functions_autoprovision.php:481 +#: ../../enterprise/meta/include/functions_autoprovision.php:646 +#: ../../enterprise/meta/include/functions_autoprovision.php:647 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2054 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2149 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2686 +#: ../../enterprise/godmode/agentes/collections.editor.php:222 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:186 +#: ../../enterprise/godmode/alerts/alert_events_list.php:722 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:552 +#: ../../enterprise/godmode/reporting/mysql_builder.php:113 +#: ../../enterprise/godmode/reporting/mysql_builder.php:125 +#: ../../enterprise/godmode/reporting/mysql_builder.php:134 +#: ../../enterprise/godmode/reporting/mysql_builder.php:194 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382 +#: ../../enterprise/include/functions_tasklist.php:472 +#: ../../enterprise/include/functions_tasklist.php:503 +#: ../../enterprise/include/ajax/transactional.ajax.php:117 +#: ../../enterprise/include/ajax/transactional.ajax.php:205 +#: ../../enterprise/include/class/Omnishell.class.php:1137 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2455 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3108 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:615 +#: ../../enterprise/include/lib/Metaconsole/Node.php:706 +#: ../../enterprise/include/lib/Metaconsole/Node.php:707 +#: ../../enterprise/operation/agentes/tag_view.php:726 +#: ../../enterprise/tools/ipam/ipam_ajax.php:374 +#: ../../extensions/files_repo/files_repo_list.php:138 +#: ../../godmode/groups/group_list.php:854 +#: ../../godmode/groups/group_list.php:855 +#: ../../godmode/users/profile_list.php:389 +#: ../../godmode/users/user_list.php:653 +#: ../../godmode/agentes/modificar_agente.php:769 +#: ../../godmode/agentes/modificar_agente.php:775 +#: ../../godmode/agentes/planned_downtime.list.php:408 +#: ../../godmode/agentes/fields_manager.php:154 +#: ../../godmode/alerts/alert_special_days.php:527 +#: ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/reporting/reporting_builder.list_items.php:624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1876 +#: ../../godmode/reporting/reporting_builder.php:1085 +#: ../../godmode/events/event_responses.list.php:79 +#: ../../godmode/servers/servers.build_table.php:220 +#: ../../godmode/servers/plugin.php:163 ../../godmode/servers/plugin.php:1072 +#: ../../include/functions_cron.php:746 ../../include/functions_cron.php:774 +#: ../../include/ajax/module.php:1110 +#: ../../include/class/NetworkMap.class.php:3041 +#: ../../operation/agentes/estado_agente.php:849 +#: ../../operation/agentes/estado_agente.php:852 +#: ../../operation/agentes/pandora_networkmap.php:701 +#: ../../operation/agentes/status_monitor.php:1421 +#: ../../operation/gis_maps/gis_map.php:190 +#: ../../operation/incidents/list_integriaims_incidents.php:299 +#: ../../operation/search_reports.php:48 +#: ../../operation/servers/recon_view.php:115 +msgid "Edit" +msgstr "Редактировать" -#: ../../enterprise/meta/screens/screens.visualmap.php:123 -#: ../../godmode/reporting/visual_console_builder.php:253 -msgid "Could not be created." -msgstr "Не может быть создано" - -#: ../../enterprise/meta/screens/screens.visualmap.php:149 -#: ../../enterprise/meta/screens/screens.visualmap.php:165 -#: ../../enterprise/operation/agentes/policy_view.php:51 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:79 -#: ../../operation/agentes/estado_agente.php:527 -#: ../../operation/visual_console/render_view.php:128 -#: ../../godmode/gis_maps/index.php:72 -#: ../../godmode/agentes/modificar_agente.php:52 -#: ../../godmode/agentes/modificar_agente.php:508 -#: ../../godmode/agentes/configurar_agente.php:256 -#: ../../godmode/servers/manage_recontask.php:32 -#: ../../godmode/setup/setup_visuals.php:129 -#: ../../godmode/setup/setup_visuals.php:144 -#: ../../godmode/setup/setup_visuals.php:151 -#: ../../godmode/setup/setup_visuals.php:207 -#: ../../godmode/reporting/visual_console_builder.php:665 +#: ../../enterprise/meta/screens/screens.visualmap.php:161 +#: ../../enterprise/meta/screens/screens.visualmap.php:192 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:90 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:598 +#: ../../enterprise/operation/agentes/policy_view.php:53 +#: ../../godmode/agentes/configurar_agente.php:378 +#: ../../godmode/agentes/modificar_agente.php:67 +#: ../../godmode/agentes/modificar_agente.php:802 +#: ../../godmode/agentes/modificar_agente.php:807 ../../godmode/menu.php:545 +#: ../../godmode/setup/setup_visuals.php:160 +#: ../../godmode/setup/setup_visuals.php:224 +#: ../../godmode/setup/setup_visuals.php:278 +#: ../../godmode/setup/setup_visuals.php:283 +#: ../../godmode/setup/setup_visuals.php:322 +#: ../../godmode/setup/setup_visuals.php:359 +#: ../../godmode/setup/setup_visuals.php:381 +#: ../../godmode/setup/setup_visuals.php:406 +#: ../../godmode/setup/setup_visuals.php:425 +#: ../../godmode/setup/setup_visuals.php:444 +#: ../../godmode/setup/setup_visuals.php:463 +#: ../../godmode/setup/setup_visuals.php:605 +#: ../../godmode/reporting/visual_console_builder.php:798 +#: ../../godmode/module_library/module_library_view.php:56 +#: ../../godmode/module_library/module_library_view.php:65 +#: ../../operation/visual_console/pure_ajax.php:186 +#: ../../operation/visual_console/view.php:195 +#: ../../operation/visual_console/legacy_view.php:189 +#: ../../operation/agentes/estado_agente.php:830 +#: ../../operation/agentes/estado_agente.php:833 +#: ../../operation/agentes/status_monitor.php:60 +#: ../../operation/agentes/ver_agente.php:1805 msgid "View" -msgstr "Вид" +msgstr "Просмотр" -#: ../../enterprise/meta/screens/screens.visualmap.php:169 -#: ../../operation/visual_console/render_view.php:125 -#: ../../godmode/reporting/visual_console_builder.php:662 +#: ../../enterprise/meta/screens/screens.visualmap.php:204 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +#: ../../godmode/reporting/visual_console_builder.php:792 +#: ../../operation/visual_console/pure_ajax.php:176 +#: ../../operation/visual_console/legacy_view.php:179 msgid "Builder" -msgstr "Разработчик" +msgstr "Создатель" -#: ../../enterprise/meta/screens/screens.visualmap.php:173 -#: ../../enterprise/meta/general/logon_ok.php:38 -#: ../../enterprise/meta/general/main_header.php:110 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:82 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:42 -#: ../../enterprise/include/functions_reporting.php:31 -#: ../../enterprise/include/functions_reporting.php:4664 -#: ../../enterprise/include/functions_reporting.php:4686 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:68 -#: ../../operation/visual_console/render_view.php:122 -#: ../../godmode/reporting/visual_console_builder.wizard.php:311 -#: ../../godmode/reporting/visual_console_builder.php:659 +#: ../../enterprise/meta/screens/screens.visualmap.php:217 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:44 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:83 +#: ../../enterprise/meta/general/main_header.php:134 +#: ../../enterprise/meta/general/logon_ok.php:48 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:95 +#: ../../enterprise/include/functions_reporting.php:56 +#: ../../enterprise/include/functions_reporting.php:7557 +#: ../../enterprise/include/functions_reporting.php:7583 +#: ../../godmode/reporting/visual_console_builder.php:787 +#: ../../godmode/reporting/visual_console_builder.wizard.php:538 +#: ../../operation/visual_console/pure_ajax.php:168 +#: ../../operation/visual_console/view.php:185 +#: ../../operation/visual_console/legacy_view.php:171 msgid "Wizard" -msgstr "Мастер" +msgstr "Помощник" -#: ../../enterprise/meta/screens/screens.visualmap.php:177 -#: ../../operation/visual_console/render_view.php:112 -#: ../../godmode/reporting/visual_console_builder.php:649 +#: ../../enterprise/meta/screens/screens.visualmap.php:228 +#: ../../godmode/reporting/visual_console_builder.php:775 +#: ../../operation/visual_console/pure_ajax.php:148 +#: ../../operation/visual_console/view.php:165 +#: ../../operation/visual_console/legacy_view.php:151 msgid "List elements" msgstr "Список элементов" -#: ../../enterprise/meta/screens/screens.visualmap.php:181 -#: ../../enterprise/meta/screens/screens.visualmap.php:206 -#: ../../operation/visual_console/render_view.php:109 -#: ../../operation/reporting/graph_viewer.php:133 -#: ../../operation/reporting/reporting_viewer.php:82 -#: ../../godmode/reporting/graph_builder.php:189 -#: ../../godmode/reporting/visual_console_builder.php:646 -#: ../../godmode/reporting/reporting_builder.php:1826 -#: ../../godmode/reporting/reporting_builder.main.php:51 +#: ../../enterprise/meta/screens/screens.visualmap.php:239 +#: ../../godmode/reporting/visual_console_builder.php:771 +#: ../../godmode/reporting/graph_builder.php:303 +#: ../../godmode/reporting/reporting_builder.main.php:73 +#: ../../godmode/reporting/reporting_builder.php:3190 +#: ../../operation/visual_console/pure_ajax.php:140 +#: ../../operation/visual_console/view.php:157 +#: ../../operation/visual_console/legacy_view.php:143 +#: ../../operation/reporting/reporting_viewer.php:99 +#: ../../operation/reporting/graph_viewer.php:172 msgid "Main data" msgstr "Основные данные" -#: ../../enterprise/meta/screens/screens.visualmap.php:188 -#: ../../operation/gis_maps/render_view.php:116 -#: ../../operation/visual_console/render_view.php:104 -#: ../../godmode/reporting/visual_console_builder.php:643 +#: ../../enterprise/meta/screens/screens.visualmap.php:258 +#: ../../godmode/reporting/visual_console_builder.php:767 +#: ../../operation/visual_console/pure_ajax.php:130 +#: ../../operation/visual_console/view.php:147 +#: ../../operation/visual_console/legacy_view.php:133 +#: ../../operation/gis_maps/render_view.php:132 msgid "Show link to public Visual Console" -msgstr "Показать ссылку на общедоступные Визуальный Консоли" +msgstr "Показать ссылку на общедоступную Визуальную Консоль" -#: ../../enterprise/meta/screens/screens.visualmap.php:196 -#: ../../operation/visual_console/render_view.php:95 -#: ../../godmode/reporting/visual_console_builder.php:640 +#: ../../enterprise/meta/screens/screens.visualmap.php:283 +#: ../../godmode/reporting/visual_console_builder.php:763 +#: ../../operation/visual_console/pure_ajax.php:118 +#: ../../operation/visual_console/view.php:119 +#: ../../operation/visual_console/legacy_view.php:119 msgid "Visual consoles list" msgstr "Список визуальных консолей" -#: ../../enterprise/meta/screens/screens.visualmap.php:208 -#: ../../godmode/reporting/visual_console_builder.php:671 +#: ../../enterprise/meta/screens/screens.visualmap.php:294 +#: ../../godmode/reporting/visual_console_builder.php:806 msgid "New visual console" msgstr "Новая визуальная консоль" -#: ../../enterprise/meta/screens/screens.visualmap.php:216 -#: ../../enterprise/meta/screens/screens.visualmap.php:220 -#: ../../extensions/resource_exportation.php:351 ../../operation/menu.php:127 -#: ../../operation/users/user_edit.php:292 +#: ../../enterprise/meta/screens/screens.visualmap.php:302 +#: ../../enterprise/meta/screens/screens.visualmap.php:307 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117 +#: ../../enterprise/godmode/reporting/visual_console_template.php:118 +#: ../../extensions/resource_exportation.php:430 +#: ../../godmode/users/configure_user.php:1078 +#: ../../godmode/reporting/map_builder.php:116 +#: ../../godmode/reporting/visual_console_favorite.php:108 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:311 +#: ../../operation/users/user_edit.php:357 ../../operation/menu.php:171 +#: ../../operation/menu.php:175 msgid "Visual console" msgstr "Визуальная консоль" -#: ../../enterprise/meta/screens/screens.php:35 -#: ../../enterprise/meta/general/logon_ok.php:60 -#: ../../enterprise/meta/general/main_header.php:174 +#: ../../enterprise/meta/screens/screens.php:37 +#: ../../enterprise/meta/general/main_header.php:232 +#: ../../enterprise/meta/general/logon_ok.php:84 msgid "Screens" msgstr "Экраны" -#: ../../enterprise/meta/advanced/synchronizing.tag.php:69 -#, php-format -msgid "Error creating/updating %s/%s tags" -msgstr "Ошибка при создании/ обновление %s/%s тегов" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:72 -#, php-format -msgid "Created/Updated %s/%s tags" -msgstr "Создано/Обновлено %s/%s тегов" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:84 -msgid "Synchronizing Tags" -msgstr "" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:92 -#: ../../enterprise/meta/advanced/synchronizing.component.php:311 -#: ../../enterprise/meta/advanced/synchronizing.user.php:509 -#: ../../enterprise/meta/advanced/policymanager.sync.php:296 -#: ../../enterprise/meta/advanced/synchronizing.group.php:148 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:333 -msgid "This metaconsole" -msgstr "Даная Мета консоль" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:101 -#: ../../enterprise/meta/advanced/synchronizing.component.php:320 -#: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../enterprise/meta/advanced/synchronizing.group.php:157 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:344 -#: ../../godmode/massive/massive_copy_modules.php:168 -msgid "Targets" -msgstr "Цели" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:108 -#: ../../enterprise/meta/advanced/synchronizing.component.php:327 -#: ../../enterprise/meta/advanced/synchronizing.user.php:578 -#: ../../enterprise/meta/advanced/policymanager.sync.php:315 -#: ../../enterprise/meta/advanced/synchronizing.group.php:164 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:351 -msgid "Sync" -msgstr "Синхр" - -#: ../../enterprise/meta/advanced/synchronizing.php:35 -#: ../../enterprise/meta/general/main_header.php:237 -msgid "Synchronizing" -msgstr "Синхронизация" - -#: ../../enterprise/meta/advanced/synchronizing.php:60 -#: ../../enterprise/meta/advanced/synchronizing.php:82 -msgid "Users synchronization" -msgstr "Синхронизация пользователей" - -#: ../../enterprise/meta/advanced/synchronizing.php:64 -#: ../../enterprise/meta/advanced/synchronizing.php:85 -msgid "Groups synchronization" -msgstr "Синхронизация групп" - -#: ../../enterprise/meta/advanced/synchronizing.php:68 -#: ../../enterprise/meta/advanced/synchronizing.php:88 -msgid "Alerts synchronization" -msgstr "Синхронизация оповещений" - -#: ../../enterprise/meta/advanced/synchronizing.php:72 -#: ../../enterprise/meta/advanced/synchronizing.php:91 -msgid "Components synchronization" -msgstr "Синхронизация компонентов" - -#: ../../enterprise/meta/advanced/synchronizing.php:76 -#: ../../enterprise/meta/advanced/synchronizing.php:94 -msgid "Tags synchronization" -msgstr "Синхронизация тегов" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:60 -#: ../../enterprise/godmode/policies/policy_queue.php:59 -msgid "Operation successfully deleted from the queue" -msgstr "Операция успешно удалена из очереди" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:61 -#: ../../enterprise/godmode/policies/policy_queue.php:60 -msgid "Operation cannot be deleted from the queue" -msgstr "Операция не может быть удалена из очереди" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:212 -#: ../../enterprise/meta/advanced/policymanager.queue.php:256 -#: ../../enterprise/meta/advanced/policymanager.sync.php:306 -#: ../../enterprise/extensions/resource_exportation/functions.php:17 -#: ../../enterprise/include/functions_policies.php:3751 -#: ../../enterprise/operation/agentes/policy_view.php:48 -#: ../../enterprise/operation/agentes/collection_view.php:62 -#: ../../enterprise/godmode/agentes/inventory_manager.php:231 -#: ../../enterprise/godmode/agentes/plugins_manager.php:110 -#: ../../enterprise/godmode/agentes/collection_manager.php:162 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:83 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:82 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:91 -#: ../../enterprise/godmode/policies/policy_queue.php:331 -#: ../../enterprise/godmode/policies/policy_queue.php:374 -#: ../../include/ajax/module.php:700 -#: ../../operation/agentes/ver_agente.php:1034 -#: ../../operation/agentes/alerts_status.php:406 -#: ../../operation/agentes/alerts_status.php:451 -#: ../../operation/agentes/status_monitor.php:916 -#: ../../godmode/alerts/alert_view.php:123 -#: ../../godmode/agentes/module_manager.php:510 -msgid "Policy" -msgstr "Правило" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/godmode/policies/policy_queue.php:344 -msgid "Apply (database and files)" -msgstr "Применить (базу данных и файлы)" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:309 -#: ../../enterprise/godmode/policies/policy_queue.php:344 -#: ../../enterprise/godmode/policies/policy_queue.php:418 -msgid "Apply (only database)" -msgstr "Применить (только базу данных)" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -#: ../../enterprise/godmode/policies/policy_queue.php:350 -msgid "Complete" -msgstr "Завершить" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -#: ../../enterprise/godmode/policies/policy_queue.php:350 -msgid "Incomplete" -msgstr "Не завершено" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:257 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:161 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163 -#: ../../enterprise/meta/monitoring/group_view.php:95 -#: ../../enterprise/meta/monitoring/group_view.php:132 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:228 -#: ../../enterprise/include/functions_policies.php:3271 -#: ../../enterprise/include/functions_reporting.php:4026 -#: ../../enterprise/include/functions_reporting_pdf.php:532 -#: ../../enterprise/include/functions_reporting_pdf.php:664 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1683 -#: ../../enterprise/operation/services/services.service_map.php:124 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:83 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:221 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:146 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:150 -#: ../../enterprise/godmode/policies/policy.php:50 -#: ../../enterprise/godmode/policies/policies.php:254 -#: ../../enterprise/godmode/policies/policies.php:355 -#: ../../enterprise/godmode/policies/policy_queue.php:375 -#: ../../enterprise/godmode/policies/policy_agents.php:258 -#: ../../enterprise/godmode/policies/policy_agents.php:316 -#: ../../mobile/include/functions_web.php:22 -#: ../../mobile/operation/groups.php:98 ../../mobile/operation/groups.php:100 -#: ../../mobile/operation/home.php:60 ../../mobile/operation/agents.php:158 -#: ../../extensions/agents_modules.php:194 -#: ../../extensions/agents_alerts.php:176 -#: ../../include/functions_groups.php:46 -#: ../../include/functions_groups.php:754 -#: ../../include/functions_groups.php:756 -#: ../../include/functions_groups.php:758 -#: ../../include/functions_groups.php:759 -#: ../../include/functions_groups.php:760 -#: ../../include/functions_reporting_html.php:784 -#: ../../include/functions_reporting_html.php:1013 -#: ../../include/ajax/networkmap.ajax.php:64 -#: ../../include/ajax/networkmap.ajax.php:92 -#: ../../operation/agentes/group_view.php:103 -#: ../../operation/agentes/group_view.php:140 -#: ../../operation/agentes/networkmap.php:475 -#: ../../operation/search_results.php:73 -#: ../../godmode/alerts/alert_list.list.php:69 -#: ../../godmode/massive/massive_delete_agents.php:123 -#: ../../godmode/massive/massive_delete_alerts.php:218 -#: ../../godmode/massive/massive_standby_alerts.php:142 -#: ../../godmode/massive/massive_delete_modules.php:484 -#: ../../godmode/massive/massive_add_alerts.php:157 -#: ../../godmode/massive/massive_edit_plugins.php:299 -#: ../../godmode/massive/massive_add_tags.php:129 -#: ../../godmode/massive/massive_edit_agents.php:224 -#: ../../godmode/massive/massive_delete_tags.php:192 -#: ../../godmode/massive/massive_edit_modules.php:328 -#: ../../godmode/massive/massive_enable_disable_alerts.php:141 -#: ../../godmode/reporting/reporting_builder.list_items.php:161 -#: ../../godmode/reporting/reporting_builder.list_items.php:186 -#: ../../godmode/reporting/graph_builder.graph_editor.php:142 -#: ../../godmode/reporting/visual_console_builder.wizard.php:240 -#: ../../godmode/reporting/reporting_builder.item_editor.php:936 -msgid "Agents" -msgstr "Агенты" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:259 -#: ../../enterprise/extensions/ipam/ipam_network.php:151 -#: ../../enterprise/extensions/ipam/ipam_network.php:167 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:613 -#: ../../enterprise/godmode/policies/policy_queue.php:377 -#: ../../operation/servers/recon_view.php:104 -#: ../../operation/servers/recon_view.php:158 -msgid "Progress" -msgstr "Прогресс" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:260 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:354 -#: ../../enterprise/godmode/policies/policy_queue.php:378 -msgid "Finished" -msgstr "Завершено" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:334 -#: ../../enterprise/godmode/policies/policy_queue.php:446 -msgid "Delete from queue" -msgstr "Удалить из очереди" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:352 -msgid "Empty queue." -msgstr "" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:132 -#: ../../enterprise/extensions/translate_string.php:250 -#: ../../operation/users/user_edit.php:267 -#: ../../godmode/users/configure_user.php:446 -msgid "Language" -msgstr "Язык" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:139 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:140 -#: ../../enterprise/extensions/translate_string.php:254 -#: ../../enterprise/extensions/translate_string.php:255 -#: ../../enterprise/godmode/agentes/collections.php:169 -#: ../../enterprise/godmode/agentes/collection_manager.php:44 -#: ../../enterprise/godmode/policies/policies.php:235 -#: ../../enterprise/godmode/policies/policy_collections.php:176 -#: ../../godmode/admin_access_logs.php:65 -#: ../../godmode/admin_access_logs.php:66 -msgid "Free text for search (*)" -msgstr "Свободный текст для поиска (*)" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:151 -#: ../../enterprise/extensions/translate_string.php:271 -msgid "Please search for anything text." -msgstr "Пожалуйста ищете весь текст." - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:161 -#: ../../enterprise/extensions/translate_string.php:280 -msgid "Original string" -msgstr "Оригинальная строка" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:162 -#: ../../enterprise/extensions/translate_string.php:281 -msgid "Translation in selected language" -msgstr "Перевод на выбранном языке" - -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:163 -#: ../../enterprise/extensions/translate_string.php:282 -msgid "Customize translation" -msgstr "Настроить перевод" - -#: ../../enterprise/meta/advanced/agents_setup.php:37 -msgid "Propagation" -msgstr "Пропагация" - -#: ../../enterprise/meta/advanced/license_meta.php:35 -#: ../../godmode/setup/license.php:37 -msgid "License updated" -msgstr "" - -#: ../../enterprise/meta/advanced/license_meta.php:62 -msgid "Licence" -msgstr "" - -#: ../../enterprise/meta/advanced/license_meta.php:69 -#: ../../godmode/setup/license.php:64 -msgid "Customer key" -msgstr "Ключ клиента" - -#: ../../enterprise/meta/advanced/license_meta.php:72 -#: ../../godmode/setup/license.php:67 -msgid "Expires" -msgstr "Срок действия до" - -#: ../../enterprise/meta/advanced/license_meta.php:75 -#: ../../godmode/setup/license.php:70 -msgid "Platform Limit" -msgstr "Пределы платформы" - -#: ../../enterprise/meta/advanced/license_meta.php:76 -#: ../../enterprise/meta/advanced/license_meta.php:79 -#: ../../godmode/setup/license.php:71 ../../godmode/setup/license.php:74 -msgid "agents" -msgstr "" - -#: ../../enterprise/meta/advanced/license_meta.php:76 -#: ../../enterprise/meta/advanced/license_meta.php:79 -#: ../../operation/tree.php:103 ../../godmode/setup/license.php:71 -#: ../../godmode/setup/license.php:74 -msgid "modules" -msgstr "модули" - -#: ../../enterprise/meta/advanced/license_meta.php:78 -#: ../../godmode/setup/license.php:73 -msgid "Current Platform Count" -msgstr "Текущее количество платформ" - -#: ../../enterprise/meta/advanced/license_meta.php:81 -#: ../../godmode/setup/license.php:76 -msgid "License Mode" -msgstr "лицензионный режим" - -#: ../../enterprise/meta/advanced/license_meta.php:84 -#: ../../godmode/setup/license.php:79 -msgid "NMS" -msgstr "" - -#: ../../enterprise/meta/advanced/license_meta.php:85 -#: ../../enterprise/meta/advanced/license_meta.php:88 -#: ../../godmode/setup/license.php:80 ../../godmode/setup/license.php:83 -msgid "enabled" -msgstr "" - -#: ../../enterprise/meta/advanced/license_meta.php:85 -#: ../../enterprise/meta/advanced/license_meta.php:88 -#: ../../godmode/setup/license.php:80 ../../godmode/setup/license.php:83 -msgid "disabled" -msgstr "отключено" - -#: ../../enterprise/meta/advanced/license_meta.php:87 -#: ../../godmode/setup/license.php:82 -msgid "Satellite" -msgstr "" - -#: ../../enterprise/meta/advanced/license_meta.php:90 -#: ../../godmode/setup/license.php:85 -msgid "Licensed to" -msgstr "" - -#: ../../enterprise/meta/advanced/license_meta.php:96 -#: ../../enterprise/extensions/vmware/main.php:181 -#: ../../enterprise/extensions/vmware/main.php:188 -#: ../../enterprise/godmode/alerts/alert_events_list.php:426 -#: ../../enterprise/godmode/alerts/alert_events_list.php:676 -#: ../../enterprise/load_enterprise.php:402 -#: ../../mobile/operation/events.php:523 -#: ../../operation/snmpconsole/snmp_view.php:643 -#: ../../operation/snmpconsole/snmp_view.php:800 -#: ../../operation/snmpconsole/snmp_view.php:828 -#: ../../operation/agentes/alerts_status.php:428 -#: ../../operation/agentes/alerts_status.php:468 -#: ../../operation/agentes/alerts_status.php:501 -#: ../../operation/agentes/alerts_status.php:534 -#: ../../operation/agentes/alerts_status.php:579 -#: ../../godmode/setup/license.php:91 -msgid "Validate" -msgstr "Подтверждать" - -#: ../../enterprise/meta/advanced/license_meta.php:98 -#: ../../enterprise/meta/advanced/license_meta.php:102 -#: ../../godmode/setup/license.php:93 ../../godmode/setup/license.php:97 -msgid "Request new license" -msgstr "Запрос новой лицензии" - -#: ../../enterprise/meta/advanced/license_meta.php:106 -#: ../../godmode/setup/license.php:101 -msgid "To get your <b>Pandora FMS Enterprise License</b>:" -msgstr "Для получения вашей <b>Pandora FMS Enterprise License</b>:" - -#: ../../enterprise/meta/advanced/license_meta.php:109 -#: ../../godmode/setup/license.php:104 -#, php-format -msgid "Go to %s" -msgstr "" - -#: ../../enterprise/meta/advanced/license_meta.php:112 -#: ../../godmode/setup/license.php:107 -msgid "Enter the <b>auth key</b> and the following <b>request key</b>:" -msgstr "" - -#: ../../enterprise/meta/advanced/license_meta.php:118 -#: ../../godmode/setup/license.php:113 -msgid "Enter your name (or a company name) and a contact email address." -msgstr "" -"Введите ваше имя (или имя компании) и контактный адрес электронной почты." - -#: ../../enterprise/meta/advanced/license_meta.php:121 -#: ../../godmode/setup/license.php:116 -msgid "Click on <b>Generate</b>." -msgstr "Нажмите на <b>Generate</b>." - -#: ../../enterprise/meta/advanced/license_meta.php:124 -#: ../../godmode/setup/license.php:119 -msgid "" -"Click <a href=\"javascript: close_code_license_dialog();\">here</a>, enter " -"the generated license key and click on <b>Validate</b>." -msgstr "" -"Нажмите <a href=\"javascript: close_code_license_dialog();\">here</a>, " -"enter the generated license key and click on <b>Validate</b>." - -#: ../../enterprise/meta/advanced/policymanager.apply.php:135 -#: ../../enterprise/godmode/policies/policy.php:116 -#: ../../enterprise/godmode/policies/policy.php:137 -msgid "Duplicated or incompatible operation in the queue" -msgstr "Дублированный или несовместимые операции в очереди" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:142 -#: ../../enterprise/meta/advanced/policymanager.apply.php:146 -#: ../../enterprise/godmode/policies/policy.php:110 -#: ../../enterprise/godmode/policies/policy.php:133 -msgid "Operation successfully added to the queue" -msgstr "Операция успешно добавлена к очереди" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:146 -#: ../../enterprise/meta/advanced/policymanager.apply.php:154 -msgid "Only database" -msgstr "Только база данных" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:150 -#: ../../enterprise/meta/advanced/policymanager.apply.php:154 -#: ../../enterprise/meta/advanced/policymanager.apply.php:158 -#: ../../enterprise/godmode/policies/policy.php:113 -#: ../../enterprise/godmode/policies/policy.php:134 -msgid "Operation cannot be added to the queue" -msgstr "Операция не может быть добавлена к очереди" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:188 -msgid "Apply Policies" -msgstr "" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/include/functions_groups.php:32 -#: ../../enterprise/operation/agentes/ver_agente.php:208 -#: ../../include/ajax/networkmap.ajax.php:50 ../../operation/tree.php:80 -msgid "Policies" -msgstr "Правила" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:202 -#: ../../mobile/include/functions_web.php:27 ../../godmode/menu.php:194 -#: ../../godmode/reporting/visual_console_builder.wizard.php:203 -msgid "Servers" -msgstr "Серверы" - -#: ../../enterprise/meta/advanced/servers.build_table.php:33 +#: ../../enterprise/meta/advanced/servers.build_table.php:34 #: ../../godmode/servers/servers.build_table.php:37 msgid "There are no servers configured into the database" -msgstr "Нет настроенных серверов" +msgstr "Нет серверов, настроенных в базе данных" -#: ../../enterprise/meta/advanced/servers.build_table.php:62 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:327 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:39 -#: ../../extensions/realtime_graphs.php:111 -#: ../../include/functions_snmp_browser.php:513 -#: ../../operation/extensions.php:48 ../../godmode/extensions.php:144 -#: ../../godmode/servers/servers.build_table.php:66 +#: ../../enterprise/meta/advanced/servers.build_table.php:63 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:699 +#: ../../enterprise/godmode/servers/list_satellite.php:38 +#: ../../enterprise/include/class/AgentRepository.class.php:360 +#: ../../enterprise/include/class/AgentRepository.class.php:615 +#: ../../enterprise/tools/ipam/ipam_calculator.php:52 +#: ../../godmode/extensions.php:139 +#: ../../godmode/servers/servers.build_table.php:68 +#: ../../include/functions_snmp_browser.php:746 msgid "Version" msgstr "Версия" #: ../../enterprise/meta/advanced/servers.build_table.php:64 -#: ../../godmode/servers/servers.build_table.php:68 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:426 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:536 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:615 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:255 +#: ../../enterprise/meta/monitoring/group_view.php:155 +#: ../../enterprise/meta/monitoring/group_view.php:221 +#: ../../enterprise/meta/include/functions_wizard_meta.php:407 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1811 +#: ../../enterprise/meta/agentsearch.php:120 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:108 +#: ../../enterprise/godmode/policies/policy_modules.php:454 +#: ../../enterprise/godmode/policies/policies.php:548 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:159 +#: ../../enterprise/godmode/massive/massive_edit_services.php:863 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:438 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:222 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:230 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:197 +#: ../../enterprise/include/functions_reporting_pdf.php:794 +#: ../../enterprise/include/functions_policies.php:3749 +#: ../../enterprise/operation/agentes/tag_view.php:591 +#: ../../enterprise/operation/services/services.service_map.php:182 +#: ../../extensions/agents_modules.php:689 +#: ../../godmode/agentes/configurar_agente.php:411 +#: ../../godmode/agentes/configurar_agente.php:715 +#: ../../godmode/agentes/modificar_agente.php:783 +#: ../../godmode/agentes/planned_downtime.editor.php:906 +#: ../../godmode/agentes/planned_downtime.editor.php:983 +#: ../../godmode/massive/massive_copy_modules.php:198 +#: ../../godmode/massive/massive_delete_modules.php:458 +#: ../../godmode/massive/massive_edit_plugins.php:378 +#: ../../godmode/massive/massive_edit_modules.php:413 +#: ../../godmode/reporting/reporting_builder.list_items.php:210 +#: ../../godmode/reporting/reporting_builder.list_items.php:239 +#: ../../godmode/reporting/graph_builder.graph_editor.php:353 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1630 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1722 +#: ../../godmode/reporting/visual_console_builder.wizard.php:452 +#: ../../godmode/servers/servers.build_table.php:69 +#: ../../mobile/operation/agents.php:78 ../../mobile/operation/agents.php:390 +#: ../../mobile/operation/modules.php:218 ../../mobile/operation/home.php:88 +#: ../../mobile/operation/agent.php:309 +#: ../../include/functions_reporting_html.php:1629 +#: ../../include/functions_reporting_html.php:4842 +#: ../../include/functions_reports.php:722 +#: ../../include/functions_reports.php:726 +#: ../../include/functions_reports.php:730 +#: ../../include/functions_reports.php:734 +#: ../../include/functions_reports.php:738 +#: ../../include/functions_reports.php:742 +#: ../../include/functions_reports.php:746 +#: ../../include/functions_reports.php:750 +#: ../../include/functions_reports.php:754 +#: ../../include/functions_reports.php:758 +#: ../../include/functions_html.php:1487 +#: ../../include/class/AgentsAlerts.class.php:246 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:385 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:391 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:397 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:331 +#: ../../operation/search_agents.php:54 ../../operation/tree.php:96 +#: ../../operation/search_results.php:157 +#: ../../operation/agentes/estado_agente.php:732 +#: ../../operation/agentes/graphs.php:188 +#: ../../operation/agentes/exportdata.php:281 +#: ../../operation/agentes/group_view.php:155 +#: ../../operation/agentes/group_view.php:188 +msgid "Modules" +msgstr "Модули" + +#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:70 msgid "Lag" -msgstr "Отставание" +msgstr "Задержка" -#: ../../enterprise/meta/advanced/servers.build_table.php:64 -#: ../../godmode/servers/servers.build_table.php:68 +#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:70 msgid "Avg. Delay(sec)/Modules delayed" -msgstr "" +msgstr "Среднее отставание(сек)/Отстающие модули" -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -#: ../../godmode/servers/servers.build_table.php:69 +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:71 msgid "T/Q" -msgstr "T/Q" +msgstr "П/Т" -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -#: ../../godmode/servers/servers.build_table.php:69 +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:71 msgid "Threads / Queued modules currently" msgstr "Потоки / Текущая очередь модулей" -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:221 -#: ../../operation/integria_incidents/incident.list.php:98 -#: ../../operation/incidents/incident.php:335 -#: ../../godmode/agentes/agent_incidents.php:90 -#: ../../godmode/servers/servers.build_table.php:71 +#: ../../enterprise/meta/advanced/servers.build_table.php:68 +#: ../../enterprise/include/class/DatabaseHA.class.php:797 +#: ../../enterprise/tools/ipam/ipam_ajax.php:341 +#: ../../godmode/agentes/agent_incidents.php:93 +#: ../../godmode/servers/servers.build_table.php:73 +#: ../../operation/incidents/integriaims_export_csv.php:94 msgid "Updated" msgstr "Обновлено" -#: ../../enterprise/meta/advanced/servers.build_table.php:71 -#: ../../enterprise/godmode/alerts/alert_events_list.php:427 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:412 -#: ../../enterprise/godmode/modules/local_components.php:472 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:255 -#: ../../enterprise/godmode/policies/policies.php:256 -#: ../../enterprise/godmode/policies/policy_alerts.php:242 -#: ../../operation/gis_maps/gis_map.php:94 -#: ../../godmode/users/user_list.php:278 -#: ../../godmode/users/profile_list.php:327 -#: ../../godmode/gis_maps/index.php:75 -#: ../../godmode/alerts/alert_templates.php:302 -#: ../../godmode/alerts/alert_list.list.php:405 -#: ../../godmode/servers/plugin.php:689 -#: ../../godmode/servers/servers.build_table.php:75 -#: ../../godmode/reporting/reporting_builder.list_items.php:304 -#: ../../godmode/reporting/graphs.php:153 -#: ../../godmode/reporting/reporting_builder.php:570 -#: ../../godmode/reporting/reporting_builder.php:685 +#: ../../enterprise/meta/advanced/servers.build_table.php:72 +#: ../../enterprise/meta/include/functions_autoprovision.php:618 +#: ../../enterprise/godmode/modules/local_components.php:568 +#: ../../enterprise/godmode/policies/policy_alerts.php:291 +#: ../../enterprise/godmode/policies/policies.php:446 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 +#: ../../enterprise/godmode/alerts/alert_events_list.php:507 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 +#: ../../godmode/users/profile_list.php:315 +#: ../../godmode/users/user_list.php:419 +#: ../../godmode/alerts/alert_list.list.php:476 +#: ../../godmode/alerts/alert_templates.php:381 +#: ../../godmode/reporting/reporting_builder.list_items.php:427 +#: ../../godmode/reporting/graphs.php:280 +#: ../../godmode/reporting/reporting_builder.php:875 +#: ../../godmode/reporting/reporting_builder.php:1072 +#: ../../godmode/servers/servers.build_table.php:77 +#: ../../godmode/servers/plugin.php:1011 +#: ../../include/functions_container.php:157 +#: ../../operation/gis_maps/gis_map.php:109 msgid "Op." msgstr "Опц." -#: ../../enterprise/meta/advanced/servers.build_table.php:92 -#: ../../godmode/servers/servers.build_table.php:97 +#: ../../enterprise/meta/advanced/servers.build_table.php:91 +#: ../../godmode/servers/servers.build_table.php:120 msgid "This is a master server" msgstr "Это главный сервер" -#: ../../enterprise/meta/advanced/servers.build_table.php:104 -#: ../../enterprise/meta/advanced/servers.build_table.php:109 -#: ../../godmode/servers/servers.build_table.php:110 -#: ../../godmode/servers/servers.build_table.php:115 +#: ../../enterprise/meta/advanced/servers.build_table.php:106 +#: ../../enterprise/meta/advanced/servers.build_table.php:112 +#: ../../godmode/servers/servers.build_table.php:139 +#: ../../godmode/servers/servers.build_table.php:145 msgid "of" msgstr "из" -#: ../../enterprise/meta/advanced/servers.build_table.php:133 -#: ../../godmode/servers/servers.build_table.php:168 +#: ../../enterprise/meta/advanced/servers.build_table.php:134 +#: ../../godmode/servers/servers.build_table.php:246 msgid "" "Modules run by this server will stop working. Do you want to continue?" msgstr "" -"Модули работающие на этом сервере перестанут работать. Вы хотите продолжить?" +"Модули, работающие на этом сервере, перестанут работать. Вы хотите " +"продолжить?" -#: ../../enterprise/meta/advanced/servers.build_table.php:154 -#: ../../godmode/servers/servers.build_table.php:189 +#: ../../enterprise/meta/advanced/servers.build_table.php:160 +#: ../../godmode/servers/servers.build_table.php:273 msgid "Tactical server information" msgstr "Тактическая информация о сервере" -#: ../../enterprise/meta/advanced/policymanager.php:37 -msgid "Policy Manager" -msgstr "Манеджер политики" +#: ../../enterprise/meta/advanced/component_management.php:49 +#: ../../include/functions_menu.php:500 +msgid "Tags management" +msgstr "Управление тегами" -#: ../../enterprise/meta/advanced/policymanager.php:66 -msgid "Apply policies" -msgstr "Применить Политику" +#: ../../enterprise/meta/advanced/component_management.php:53 +msgid "Module groups Management" +msgstr "Управление группами модулей" -#: ../../enterprise/meta/advanced/policymanager.php:70 -#: ../../enterprise/meta/advanced/policymanager.php:84 -msgid "Policies queue" -msgstr "Очередь Политики" +#: ../../enterprise/meta/advanced/component_management.php:57 +msgid "OS Management" +msgstr "Управление ОС" -#: ../../enterprise/meta/advanced/policymanager.php:81 -msgid "Policies apply" -msgstr "Правила применения" +#: ../../enterprise/meta/advanced/metasetup.visual.php:48 +#: ../../enterprise/meta/advanced/metasetup.relations.php:96 +#: ../../enterprise/meta/advanced/metasetup.password.php:43 +#: ../../enterprise/meta/advanced/metasetup.log.php:38 +#: ../../enterprise/meta/advanced/metasetup.setup.php:79 +#: ../../enterprise/meta/advanced/metasetup.auth.php:44 +#: ../../enterprise/meta/advanced/metasetup.performance.php:44 +#, php-format +msgid "Could not be update: Error in %s" +msgstr "Не может быть обновлено: Ошибка в %s" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:83 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:126 -msgid "Could not be create, duplicated server name." -msgstr "" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:109 -#: ../../enterprise/meta/advanced/metasetup.password.php:53 -#: ../../enterprise/meta/advanced/metasetup.visual.php:56 -#: ../../enterprise/meta/advanced/metasetup.performance.php:53 -#: ../../enterprise/meta/advanced/metasetup.auth.php:53 -#: ../../enterprise/meta/advanced/metasetup.setup.php:57 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:76 +#: ../../enterprise/meta/advanced/metasetup.visual.php:55 +#: ../../enterprise/meta/advanced/metasetup.relations.php:103 +#: ../../enterprise/meta/advanced/metasetup.password.php:50 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:217 +#: ../../enterprise/meta/advanced/metasetup.log.php:45 +#: ../../enterprise/meta/advanced/metasetup.setup.php:86 +#: ../../enterprise/meta/advanced/metasetup.auth.php:51 +#: ../../enterprise/meta/advanced/metasetup.performance.php:51 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:82 msgid "Successfully update" msgstr "Успешно обновлено" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:110 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:77 -msgid "Could not be update" -msgstr "Не может быть обновлено" +#: ../../enterprise/meta/advanced/metasetup.visual.php:95 +#: ../../godmode/menu.php:330 ../../godmode/setup/setup.php:134 +#: ../../godmode/setup/setup.php:263 +msgid "Visual styles" +msgstr "Визуальные стили" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:159 -#: ../../enterprise/extensions/cron/main.php:77 -#: ../../enterprise/extensions/cron/main.php:131 -#: ../../enterprise/extensions/ipam/ipam_action.php:101 -#: ../../enterprise/godmode/alerts/alert_events.php:350 -#: ../../enterprise/godmode/servers/manage_export.php:105 -#: ../../enterprise/godmode/servers/manage_export.php:114 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:107 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:35 -#: ../../include/functions_planned_downtimes.php:113 -#: ../../include/functions_planned_downtimes.php:731 -#: ../../godmode/users/configure_user.php:234 -#: ../../godmode/users/profile_list.php:241 -#: ../../godmode/snmpconsole/snmp_alert.php:231 -#: ../../godmode/snmpconsole/snmp_filters.php:66 -#: ../../godmode/alerts/alert_commands.php:286 -#: ../../godmode/alerts/alert_special_days.php:93 -#: ../../godmode/alerts/configure_alert_template.php:428 -#: ../../godmode/alerts/alert_list.php:101 -#: ../../godmode/alerts/alert_actions.php:184 -#: ../../godmode/agentes/planned_downtime.editor.php:359 -#: ../../godmode/agentes/configurar_agente.php:595 -#: ../../godmode/setup/news.php:56 ../../godmode/setup/links.php:41 -#: ../../godmode/setup/gis.php:45 -#: ../../godmode/modules/manage_nc_groups.php:73 -msgid "Successfully created" -msgstr "Успешно создано" +#: ../../enterprise/meta/advanced/metasetup.visual.php:102 +#: ../../enterprise/meta/include/functions_meta.php:1391 +#: ../../godmode/setup/setup_visuals.php:1297 +#: ../../include/functions_config.php:883 +msgid "Date format string" +msgstr "Формат даты" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:160 -#: ../../enterprise/extensions/ipam/ipam_action.php:97 -#: ../../enterprise/extensions/ipam/ipam_action.php:105 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:130 -#: ../../enterprise/godmode/alerts/alert_events.php:350 -#: ../../enterprise/godmode/servers/manage_export.php:105 -#: ../../enterprise/godmode/servers/manage_export.php:114 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:108 -#: ../../enterprise/godmode/modules/local_components.php:107 -#: ../../enterprise/godmode/modules/local_components.php:239 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:36 -#: ../../enterprise/godmode/policies/policies.php:128 -#: ../../enterprise/godmode/policies/policy_alerts.php:148 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:74 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 -#: ../../include/functions_planned_downtimes.php:110 -#: ../../include/functions_planned_downtimes.php:727 -#: ../../godmode/users/configure_user.php:235 -#: ../../godmode/alerts/alert_commands.php:287 -#: ../../godmode/alerts/alert_special_days.php:94 -#: ../../godmode/alerts/configure_alert_template.php:119 -#: ../../godmode/alerts/configure_alert_template.php:429 -#: ../../godmode/alerts/alert_list.php:101 -#: ../../godmode/alerts/alert_actions.php:185 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:284 -#: ../../godmode/agentes/planned_downtime.editor.php:350 -#: ../../godmode/agentes/configurar_agente.php:244 -#: ../../godmode/agentes/configurar_agente.php:591 -#: ../../godmode/setup/news.php:57 ../../godmode/setup/gis.php:47 -#: ../../godmode/modules/manage_nc_groups.php:74 -#: ../../godmode/modules/manage_network_components.php:149 -#: ../../godmode/modules/manage_network_components.php:239 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2068 -msgid "Could not be created" -msgstr "Не может быть создано" +#: ../../enterprise/meta/advanced/metasetup.visual.php:106 +#: ../../godmode/setup/setup_visuals.php:1298 +msgid "Example" +msgstr "Пример" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:170 -#: ../../operation/events/events.php:777 -msgid "Successfully delete" -msgstr "Успешно удалено" +#: ../../enterprise/meta/advanced/metasetup.visual.php:133 +#: ../../godmode/setup/setup_visuals.php:1316 +msgid "Timestamp, time comparison, or compact mode" +msgstr "Временная метка, сравнение времени или компактный режим" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:171 -msgid "Could not be delete" -msgstr "Не может быть удалено" +#: ../../enterprise/meta/advanced/metasetup.visual.php:136 +#: ../../godmode/setup/setup_visuals.php:1318 +msgid "Comparation in rollover" +msgstr "Сравнение при наведении курсора" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:181 -#: ../../enterprise/godmode/alerts/alert_events_list.php:221 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:123 -#: ../../enterprise/godmode/policies/policy_modules.php:356 -#: ../../enterprise/godmode/policies/policy_alerts.php:88 -#: ../../include/ajax/alert_list.ajax.php:79 -#: ../../godmode/users/user_list.php:208 -#: ../../godmode/alerts/alert_list.php:201 -#: ../../godmode/agentes/modificar_agente.php:111 -#: ../../godmode/agentes/configurar_agente.php:1457 -#: ../../godmode/massive/massive_enable_disable_alerts.php:78 -msgid "Successfully enabled" -msgstr "Успешно включено" +#: ../../enterprise/meta/advanced/metasetup.visual.php:145 +#: ../../godmode/setup/setup_visuals.php:1319 +msgid "Timestamp in rollover" +msgstr "Временная метка при наведении курсора" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:182 -#: ../../enterprise/godmode/alerts/alert_events_list.php:222 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:124 -#: ../../enterprise/godmode/policies/policy_modules.php:356 -#: ../../enterprise/godmode/policies/policy_alerts.php:88 -#: ../../include/ajax/alert_list.ajax.php:81 -#: ../../godmode/alerts/alert_list.php:201 -#: ../../godmode/agentes/modificar_agente.php:111 -#: ../../godmode/agentes/configurar_agente.php:1457 -#: ../../godmode/massive/massive_enable_disable_alerts.php:78 -msgid "Could not be enabled" -msgstr "Не удается включить" +#: ../../enterprise/meta/advanced/metasetup.visual.php:154 +#: ../../godmode/setup/setup_visuals.php:1320 +msgid "Compact mode" +msgstr "Компактный режим" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:192 -#: ../../enterprise/godmode/alerts/alert_events_list.php:238 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:129 -#: ../../enterprise/godmode/policies/policy_modules.php:370 -#: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../include/ajax/alert_list.ajax.php:90 -#: ../../godmode/users/user_list.php:203 -#: ../../godmode/alerts/alert_list.php:218 -#: ../../godmode/agentes/modificar_agente.php:125 -#: ../../godmode/agentes/configurar_agente.php:1472 -#: ../../godmode/massive/massive_enable_disable_alerts.php:96 -msgid "Successfully disabled" -msgstr "Успешно отключено" +#: ../../enterprise/meta/advanced/metasetup.visual.php:163 +#: ../../godmode/setup/setup_visuals.php:725 +#: ../../include/functions_config.php:891 +msgid "Graph color #1" +msgstr "График цвет #1" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:193 -#: ../../enterprise/godmode/alerts/alert_events_list.php:239 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:130 -#: ../../enterprise/godmode/policies/policy_modules.php:370 -#: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../include/ajax/alert_list.ajax.php:92 -#: ../../godmode/alerts/alert_list.php:218 -#: ../../godmode/agentes/modificar_agente.php:125 -#: ../../godmode/agentes/configurar_agente.php:1472 -#: ../../godmode/massive/massive_enable_disable_alerts.php:96 -msgid "Could not be disabled" -msgstr "Не удается отключить" +#: ../../enterprise/meta/advanced/metasetup.visual.php:173 +#: ../../godmode/setup/setup_visuals.php:736 +#: ../../include/functions_config.php:895 +msgid "Graph color #2" +msgstr "График цвет #2" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:244 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:168 -msgid "Pandora FMS Metaconsole item edition" -msgstr "Редактирование элементов Мета консоли Pandora FMS" +#: ../../enterprise/meta/advanced/metasetup.visual.php:183 +#: ../../godmode/setup/setup_visuals.php:747 +#: ../../include/functions_config.php:899 +msgid "Graph color #3" +msgstr "График цвет #3" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:253 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:175 -msgid "Auth token" -msgstr "Аутентифакация признаков" +#: ../../enterprise/meta/advanced/metasetup.visual.php:194 +msgid "Data precision for reports and visual consoles" +msgstr "Настройка даты для отчетов и визуальной консоли" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:255 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:175 -msgid "" -"Token previously configured on the destination Pandora console in order to " -"use delegated authentification." +#: ../../enterprise/meta/advanced/metasetup.visual.php:197 +msgid "Precision must be a integer number between 0 and 5" +msgstr "При настройке нужно записать целое число между 0 и 5" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:213 +#: ../../enterprise/meta/include/functions_meta.php:1436 +#: ../../godmode/setup/setup_visuals.php:962 +#: ../../godmode/reporting/visual_console_builder.wizard.php:305 +#: ../../include/functions_visual_map_editor.php:686 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:452 +msgid "Percentile" +msgstr "Процентиль" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:216 +msgid "Show percentile 95 in graphs" +msgstr "Показать процентиль 95 на графиках" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:229 +#: ../../enterprise/meta/include/functions_meta.php:1513 +#: ../../godmode/setup/setup_visuals.php:835 +#: ../../include/functions_config.php:931 +msgid "Value to interface graphics" +msgstr "Значение для графического интерфейса" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:239 +#: ../../enterprise/meta/include/functions_meta.php:1525 +#: ../../godmode/users/configure_user.php:1151 +#: ../../godmode/setup/setup_visuals.php:63 +#: ../../godmode/events/event_edit_filter.php:387 +#: ../../include/functions_config.php:948 +#: ../../operation/users/user_edit.php:308 +#: ../../operation/snmpconsole/snmp_view.php:577 +#: ../../operation/events/events_list.php:840 +msgid "Block size for pagination" +msgstr "Размер блока для нумерации страниц" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:249 +#: ../../enterprise/meta/include/functions_meta.php:1449 +#: ../../godmode/setup/setup_visuals.php:896 +msgid "Number of elements in Custom Graph" +msgstr "Номер элементов в Пользовательском Графике" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:262 +#: ../../enterprise/meta/include/functions_meta.php:1534 +#: ../../godmode/setup/setup_visuals.php:910 +#: ../../include/functions_config.php:952 +msgid "Use round corners" +msgstr "Использовать округлые уголки" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:270 +#: ../../enterprise/meta/include/functions_meta.php:1544 +#: ../../godmode/setup/setup_visuals.php:919 +#: ../../include/functions_config.php:956 +msgid "Chart fit to content" +msgstr "Таблица адаптирована под содержимое" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:278 +#: ../../enterprise/meta/include/functions_meta.php:1554 +#: ../../include/functions_config.php:1160 +msgid "Disable help" +msgstr "Отключить помощь" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:286 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:737 +#: ../../enterprise/meta/advanced/metasetup.relations.php:245 +#: ../../enterprise/meta/advanced/metasetup.setup.php:395 +#: ../../enterprise/meta/advanced/metasetup.setup.php:401 +#: ../../enterprise/meta/advanced/metasetup.setup.php:411 +#: ../../enterprise/meta/advanced/metasetup.setup.php:417 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:176 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:248 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:345 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:402 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:512 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:583 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:102 +#: ../../enterprise/meta/event/custom_events.php:227 +#: ../../enterprise/meta/event/custom_events.php:273 +#: ../../enterprise/godmode/modules/configure_local_component.php:524 +#: ../../enterprise/godmode/modules/configure_local_component.php:679 +#: ../../enterprise/godmode/modules/configure_local_component.php:685 +#: ../../enterprise/godmode/modules/configure_local_component.php:693 +#: ../../enterprise/godmode/modules/configure_local_component.php:699 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:844 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:432 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:563 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:659 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167 +#: ../../enterprise/godmode/policies/policy_alerts.php:520 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:322 +#: ../../enterprise/godmode/policies/policy_agents.php:444 +#: ../../enterprise/godmode/policies/policy_agents.php:1460 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:107 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:193 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:93 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:114 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:126 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:391 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:468 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:544 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:545 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:546 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:547 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:596 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:237 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:103 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:183 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:106 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:127 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:436 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:784 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:899 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1013 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1048 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1095 +#: ../../enterprise/godmode/alerts/alert_events.php:567 +#: ../../enterprise/godmode/alerts/alert_events_list.php:688 +#: ../../enterprise/godmode/setup/setup.php:687 +#: ../../enterprise/godmode/setup/setup.php:704 +#: ../../enterprise/godmode/setup/setup.php:713 +#: ../../enterprise/godmode/setup/setup.php:730 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:770 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:791 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:806 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:816 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:826 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:857 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:184 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:568 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:587 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:601 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:625 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:651 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:518 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:535 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:551 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:567 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:591 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:607 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:649 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:682 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:710 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:159 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:364 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:383 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:394 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:409 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:441 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:81 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:387 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:410 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:907 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:923 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:944 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:953 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1310 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1338 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1357 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1384 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:90 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:337 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:489 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:499 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:521 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:574 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:607 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:627 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:637 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:658 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:678 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:703 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:726 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:747 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1086 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1210 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1225 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1235 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1250 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2984 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:189 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:221 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:227 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:239 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:249 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:283 +#: ../../enterprise/include/class/Omnishell.class.php:858 +#: ../../enterprise/include/class/Omnishell.class.php:859 +#: ../../enterprise/include/class/SAP.app.php:612 +#: ../../enterprise/include/class/SAP.app.php:807 +#: ../../enterprise/include/class/SAP.app.php:808 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:892 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:900 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1048 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1172 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1182 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1903 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2540 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2585 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3543 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:142 +#: ../../enterprise/operation/agentes/ver_agente.php:35 +#: ../../enterprise/operation/log/log_viewer.php:715 +#: ../../enterprise/tools/ipam/ipam_network.php:554 +#: ../../godmode/modules/manage_nc_groups_form.php:77 +#: ../../godmode/modules/manage_network_components_form_plugin.php:41 +#: ../../godmode/modules/manage_network_components_form_common.php:326 +#: ../../godmode/modules/manage_network_components_form_network.php:248 +#: ../../godmode/modules/manage_network_components_form.php:635 +#: ../../godmode/modules/manage_network_components_form.php:641 +#: ../../godmode/modules/manage_network_components_form.php:650 +#: ../../godmode/modules/manage_network_components_form.php:656 +#: ../../godmode/groups/configure_group.php:174 +#: ../../godmode/groups/configure_group.php:196 +#: ../../godmode/users/configure_user.php:1041 +#: ../../godmode/users/configure_user.php:1055 +#: ../../godmode/users/configure_user.php:1229 +#: ../../godmode/users/configure_user.php:1241 +#: ../../godmode/agentes/status_monitor_custom_fields.php:218 +#: ../../godmode/agentes/status_monitor_custom_fields.php:266 +#: ../../godmode/agentes/module_manager_editor_plugin.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:458 +#: ../../godmode/agentes/agent_manager.php:414 +#: ../../godmode/agentes/agent_manager.php:770 +#: ../../godmode/agentes/agent_manager.php:940 +#: ../../godmode/agentes/agent_manager.php:1209 +#: ../../godmode/agentes/module_manager_editor_common.php:687 +#: ../../godmode/agentes/module_manager_editor_common.php:1103 +#: ../../godmode/agentes/module_manager_editor_common.php:1359 +#: ../../godmode/agentes/module_manager_editor_common.php:1373 +#: ../../godmode/snmpconsole/snmp_alert.php:27 +#: ../../godmode/snmpconsole/snmp_alert.php:1182 +#: ../../godmode/gis_maps/configure_gis_map.php:552 +#: ../../godmode/massive/massive_copy_modules.php:373 +#: ../../godmode/massive/massive_copy_modules.php:506 +#: ../../godmode/massive/massive_delete_modules.php:497 +#: ../../godmode/massive/massive_delete_modules.php:589 +#: ../../godmode/massive/massive_delete_modules.php:674 +#: ../../godmode/massive/massive_delete_modules.php:721 +#: ../../godmode/massive/massive_delete_modules.php:729 +#: ../../godmode/massive/massive_delete_modules.php:730 +#: ../../godmode/massive/massive_delete_modules.php:731 +#: ../../godmode/massive/massive_delete_modules.php:732 +#: ../../godmode/massive/massive_delete_modules.php:798 +#: ../../godmode/massive/massive_delete_modules.php:828 +#: ../../godmode/massive/massive_add_alerts.php:289 +#: ../../godmode/massive/massive_edit_plugins.php:331 +#: ../../godmode/massive/massive_edit_agents.php:615 +#: ../../godmode/massive/massive_delete_alerts.php:344 +#: ../../godmode/massive/massive_add_action_alerts.php:335 +#: ../../godmode/massive/massive_edit_modules.php:446 +#: ../../godmode/massive/massive_edit_modules.php:863 +#: ../../godmode/massive/massive_edit_modules.php:997 +#: ../../godmode/massive/massive_edit_modules.php:1113 +#: ../../godmode/massive/massive_edit_modules.php:1148 +#: ../../godmode/massive/massive_edit_modules.php:1203 +#: ../../godmode/massive/massive_edit_modules.php:1289 +#: ../../godmode/massive/massive_edit_modules.php:1360 +#: ../../godmode/massive/massive_edit_modules.php:1469 +#: ../../godmode/massive/massive_edit_modules.php:1470 +#: ../../godmode/massive/massive_edit_modules.php:1471 +#: ../../godmode/massive/massive_edit_modules.php:1472 +#: ../../godmode/massive/massive_edit_modules.php:1705 +#: ../../godmode/massive/massive_edit_modules.php:1765 +#: ../../godmode/alerts/alert_actions.php:285 +#: ../../godmode/alerts/alert_list.list.php:739 +#: ../../godmode/alerts/alert_commands.php:298 +#: ../../godmode/alerts/alert_commands.php:312 +#: ../../godmode/alerts/alert_commands.php:372 +#: ../../godmode/alerts/alert_commands.php:385 +#: ../../godmode/alerts/configure_alert_action.php:245 +#: ../../godmode/alerts/configure_alert_template.php:816 +#: ../../godmode/alerts/configure_alert_template.php:837 +#: ../../godmode/setup/os.builder.php:38 +#: ../../godmode/setup/setup_visuals.php:397 +#: ../../godmode/setup/setup_visuals.php:416 +#: ../../godmode/setup/setup_visuals.php:976 +#: ../../godmode/reporting/create_container.php:489 +#: ../../godmode/reporting/graph_builder.graph_editor.php:329 +#: ../../godmode/reporting/graph_builder.graph_editor.php:425 +#: ../../godmode/reporting/graph_builder.graph_editor.php:445 +#: ../../godmode/reporting/reporting_builder.item_editor.php:782 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1667 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1730 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1803 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1824 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1856 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2666 +#: ../../godmode/reporting/visual_console_builder.elements.php:432 +#: ../../godmode/reporting/visual_console_builder.elements.php:581 +#: ../../godmode/reporting/visual_console_builder.elements.php:591 +#: ../../godmode/reporting/visual_console_builder.wizard.php:286 +#: ../../godmode/reporting/visual_console_builder.wizard.php:458 +#: ../../godmode/reporting/visual_console_builder.wizard.php:471 +#: ../../godmode/reporting/visual_console_builder.wizard.php:505 +#: ../../godmode/reporting/visual_console_builder.wizard.php:518 +#: ../../godmode/reporting/visual_console_builder.wizard.php:557 +#: ../../godmode/reporting/visual_console_builder.wizard.php:752 +#: ../../godmode/reporting/visual_console_builder.wizard.php:762 +#: ../../godmode/reporting/visual_console_builder.wizard.php:794 +#: ../../godmode/events/event_edit_filter.php:671 +#: ../../godmode/events/custom_events.php:179 +#: ../../godmode/events/custom_events.php:227 +#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../mobile/operation/events.php:638 +#: ../../include/functions_visual_map_editor.php:404 +#: ../../include/functions_visual_map_editor.php:406 +#: ../../include/functions_visual_map_editor.php:622 +#: ../../include/functions_visual_map_editor.php:957 +#: ../../include/functions_visual_map_editor.php:1010 +#: ../../include/functions_visual_map_editor.php:1072 +#: ../../include/functions.php:1072 ../../include/functions_networkmap.php:1514 +#: ../../include/ajax/planned_downtime.ajax.php:82 +#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:431 +#: ../../include/functions_integriaims.php:146 +#: ../../include/functions_profile.php:297 +#: ../../include/functions_profile.php:315 +#: ../../include/functions_profile.php:330 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:363 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:398 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:624 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:636 +#: ../../include/rest-api/models/VisualConsole/Item.php:2035 +#: ../../include/rest-api/models/VisualConsole/Item.php:2146 +#: ../../include/rest-api/models/VisualConsole/Item.php:2259 +#: ../../include/rest-api/models/VisualConsole/Item.php:2381 +#: ../../include/functions_html.php:366 ../../include/functions_html.php:789 +#: ../../include/functions_html.php:1065 ../../include/functions_html.php:1115 +#: ../../include/functions_html.php:1162 ../../include/functions_html.php:1163 +#: ../../include/functions_html.php:1216 ../../include/functions_html.php:1263 +#: ../../include/functions_html.php:4254 +#: ../../include/class/NetworkMap.class.php:2807 +#: ../../include/class/NetworkMap.class.php:3051 +#: ../../include/class/NetworkMap.class.php:3060 +#: ../../include/class/NetworkMap.class.php:3120 +#: ../../include/class/NetworkMap.class.php:3130 +#: ../../include/class/NetworkMap.class.php:3215 +#: ../../include/class/NetworkMap.class.php:3221 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:336 +#: ../../include/lib/Dashboard/Widgets/events_list.php:301 +#: ../../include/lib/Dashboard/Widgets/events_list.php:459 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326 +#: ../../include/lib/Dashboard/Widgets/service_map.php:266 +#: ../../include/lib/Dashboard/Widgets/service_map.php:294 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:571 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:311 +#: ../../include/lib/Dashboard/Widgets/reports.php:490 +#: ../../include/lib/Dashboard/Widgets/top_n.php:241 +#: ../../include/functions_events.php:3562 +#: ../../include/functions_events.php:3578 +#: ../../operation/users/user_edit.php:405 +#: ../../operation/users/user_edit.php:448 +#: ../../operation/users/user_edit.php:505 +#: ../../operation/users/user_edit.php:519 +#: ../../operation/users/user_edit.php:863 +#: ../../operation/users/user_edit.php:870 +#: ../../operation/users/user_edit.php:879 +#: ../../operation/users/user_edit.php:886 +#: ../../operation/agentes/pandora_networkmap.editor.php:340 +#: ../../operation/agentes/ver_agente.php:1092 +#: ../../operation/agentes/ver_agente.php:1148 +#: ../../operation/agentes/ver_agente.php:1163 +#: ../../operation/snmpconsole/snmp_browser.php:375 +#: ../../operation/snmpconsole/snmp_browser.php:390 +#: ../../operation/snmpconsole/snmp_browser.php:400 +#: ../../operation/snmpconsole/snmp_browser.php:519 +#: ../../operation/snmpconsole/snmp_view.php:652 +#: ../../operation/snmpconsole/snmp_view.php:1118 +#: ../../operation/snmpconsole/snmp_view.php:1129 +#: ../../operation/gis_maps/render_view.php:150 +#: ../../operation/incidents/list_integriaims_incidents.php:278 +#: ../../operation/incidents/list_integriaims_incidents.php:282 +#: ../../operation/events/events_list.php:518 +#: ../../operation/events/events_list.php:1271 +#: ../../operation/events/events.php:1728 +msgid "None" +msgstr "Нет" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:287 +#: ../../enterprise/meta/advanced/metasetup.relations.php:419 +#: ../../enterprise/meta/advanced/collections.data.php:383 +#: ../../enterprise/meta/advanced/policymanager.queue.php:212 +#: ../../enterprise/meta/advanced/policymanager.queue.php:217 +#: ../../enterprise/meta/advanced/policymanager.queue.php:228 +#: ../../enterprise/meta/advanced/policymanager.queue.php:300 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:208 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:235 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:253 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:749 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:108 +#: ../../enterprise/meta/include/functions_users_meta.php:87 +#: ../../enterprise/meta/include/functions_users_meta.php:98 +#: ../../enterprise/meta/include/functions_wizard_meta.php:320 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:381 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:428 +#: ../../enterprise/meta/include/functions_html_meta.php:75 +#: ../../enterprise/extensions/backup/main.php:112 +#: ../../enterprise/godmode/modules/local_components.php:486 +#: ../../enterprise/godmode/modules/local_components.php:512 +#: ../../enterprise/godmode/modules/local_components.php:537 +#: ../../enterprise/godmode/agentes/collections.data.php:467 +#: ../../enterprise/godmode/policies/policy_queue.php:435 +#: ../../enterprise/godmode/policies/policy_queue.php:440 +#: ../../enterprise/godmode/policies/policy_queue.php:451 +#: ../../enterprise/godmode/policies/policy_queue.php:520 +#: ../../enterprise/godmode/policies/policy_agents.php:773 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:114 +#: ../../enterprise/godmode/setup/setup_acl.php:362 +#: ../../enterprise/godmode/setup/setup_acl.php:379 +#: ../../enterprise/godmode/setup/setup_acl.php:396 +#: ../../enterprise/godmode/setup/setup_acl.php:620 +#: ../../enterprise/godmode/setup/setup_acl.php:628 +#: ../../enterprise/godmode/setup/setup_acl.php:639 +#: ../../enterprise/godmode/setup/setup_acl.php:680 +#: ../../enterprise/godmode/setup/setup_acl.php:711 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:236 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:188 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:613 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:639 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:143 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1917 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2615 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2642 +#: ../../enterprise/include/functions_metaconsole.php:850 +#: ../../enterprise/include/functions_metaconsole.php:851 +#: ../../enterprise/include/functions_metaconsole.php:1199 +#: ../../enterprise/include/functions_ipam.php:1525 +#: ../../enterprise/include/functions_ipam.php:1570 +#: ../../enterprise/operation/agentes/tag_view.php:124 +#: ../../enterprise/operation/agentes/tag_view.php:150 +#: ../../enterprise/operation/agentes/tag_view.php:190 +#: ../../enterprise/operation/agentes/tag_view.php:218 +#: ../../enterprise/operation/agentes/tag_view.php:282 +#: ../../enterprise/operation/agentes/tag_view.php:285 +#: ../../enterprise/operation/agentes/tag_view.php:371 +#: ../../enterprise/operation/agentes/agent_inventory.php:74 +#: ../../enterprise/operation/log/log_viewer.php:600 +#: ../../enterprise/operation/log/log_viewer.php:618 +#: ../../enterprise/operation/log/log_viewer.php:668 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:33 +#: ../../enterprise/operation/inventory/inventory.php:58 +#: ../../enterprise/operation/inventory/inventory.php:59 +#: ../../enterprise/operation/inventory/inventory.php:130 +#: ../../enterprise/operation/inventory/inventory.php:131 +#: ../../enterprise/operation/inventory/inventory.php:206 +#: ../../extensions/agents_modules.php:390 +#: ../../extensions/files_repo/files_repo_form.php:46 +#: ../../godmode/modules/manage_network_templates_form.php:291 +#: ../../godmode/modules/manage_network_components.php:630 +#: ../../godmode/massive/massive_copy_modules.php:126 +#: ../../godmode/massive/massive_copy_modules.php:286 +#: ../../godmode/massive/massive_delete_modules.php:322 +#: ../../godmode/massive/massive_delete_modules.php:369 +#: ../../godmode/massive/massive_delete_modules.php:424 +#: ../../godmode/massive/massive_delete_modules.php:445 +#: ../../godmode/massive/massive_delete_agents.php:163 +#: ../../godmode/massive/massive_delete_agents.php:177 +#: ../../godmode/massive/massive_edit_agents.php:455 +#: ../../godmode/massive/massive_edit_agents.php:468 +#: ../../godmode/massive/massive_edit_modules.php:299 +#: ../../godmode/massive/massive_edit_modules.php:346 +#: ../../godmode/massive/massive_edit_modules.php:384 +#: ../../godmode/massive/massive_edit_modules.php:470 +#: ../../godmode/admin_access_logs.php:96 +#: ../../godmode/admin_access_logs.php:100 +#: ../../godmode/alerts/alert_list.list.php:115 +#: ../../godmode/alerts/alert_list.list.php:121 +#: ../../godmode/alerts/alert_list.list.php:130 +#: ../../godmode/alerts/alert_list.list.php:139 +#: ../../godmode/alerts/alert_templates.php:302 +#: ../../godmode/alerts/alert_list.php:417 +#: ../../godmode/alerts/alert_list.php:466 +#: ../../godmode/alerts/alert_list.php:480 +#: ../../godmode/setup/gis_step_2.php:214 +#: ../../godmode/setup/setup_visuals.php:977 +#: ../../godmode/reporting/reporting_builder.list_items.php:209 +#: ../../godmode/reporting/reporting_builder.list_items.php:211 +#: ../../godmode/reporting/reporting_builder.list_items.php:213 +#: ../../godmode/reporting/reporting_builder.list_items.php:235 +#: ../../godmode/reporting/reporting_builder.list_items.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:255 +#: ../../godmode/reporting/create_container.php:546 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1356 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1374 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1708 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2458 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2485 +#: ../../godmode/reporting/visual_console_builder.wizard.php:360 +#: ../../godmode/reporting/visual_console_builder.wizard.php:374 +#: ../../godmode/events/event_edit_filter.php:317 +#: ../../godmode/events/event_edit_filter.php:332 +#: ../../godmode/events/event_edit_filter.php:595 +#: ../../mobile/operation/agents.php:38 ../../mobile/operation/modules.php:50 +#: ../../mobile/operation/modules.php:270 +#: ../../mobile/operation/modules.php:285 ../../mobile/operation/alerts.php:47 +#: ../../mobile/operation/alerts.php:54 ../../mobile/operation/events.php:682 +#: ../../mobile/operation/events.php:692 ../../mobile/operation/events.php:1158 +#: ../../mobile/operation/events.php:1187 ../../include/functions.php:1070 +#: ../../include/functions.php:1329 ../../include/ajax/events.php:369 +#: ../../include/functions_groupview.php:95 +#: ../../include/functions_modules.php:3269 +#: ../../include/functions_modules.php:3271 +#: ../../include/functions_users.php:425 ../../include/functions_users.php:673 +#: ../../include/functions_notifications.php:108 +#: ../../include/functions_html.php:1391 +#: ../../include/class/CredentialStore.class.php:524 +#: ../../include/functions_reporting.php:2469 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:399 +#: ../../include/lib/Dashboard/Widgets/events_list.php:401 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:380 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:413 +#: ../../include/functions_groups.php:648 +#: ../../include/functions_groups.php:1927 +#: ../../include/functions_events.php:6259 +#: ../../include/functions_events.php:6857 ../../operation/tree.php:175 +#: ../../operation/tree.php:219 ../../operation/agentes/estado_agente.php:252 +#: ../../operation/agentes/status_monitor.php:448 +#: ../../operation/agentes/status_monitor.php:476 +#: ../../operation/agentes/status_monitor.php:513 +#: ../../operation/agentes/status_monitor.php:592 +#: ../../operation/agentes/status_monitor.php:595 +#: ../../operation/agentes/status_monitor.php:687 +#: ../../operation/agentes/estado_monitores.php:520 +#: ../../operation/agentes/estado_monitores.php:565 +#: ../../operation/agentes/alerts_status.functions.php:94 +#: ../../operation/agentes/alerts_status.functions.php:100 +#: ../../operation/agentes/alerts_status.functions.php:114 +#: ../../operation/agentes/alerts_status.functions.php:131 +#: ../../operation/agentes/alerts_status.functions.php:134 +#: ../../operation/snmpconsole/snmp_view.php:571 +#: ../../operation/snmpconsole/snmp_view.php:600 +#: ../../operation/snmpconsole/snmp_view.php:608 +#: ../../operation/snmpconsole/snmp_view.php:904 +#: ../../operation/incidents/list_integriaims_incidents.php:122 +#: ../../operation/incidents/list_integriaims_incidents.php:133 +#: ../../operation/incidents/list_integriaims_incidents.php:150 +#: ../../operation/incidents/list_integriaims_incidents.php:161 +#: ../../operation/events/events_list.php:815 +#: ../../operation/events/events_list.php:827 +#: ../../operation/events/events_list.php:936 +#: ../../operation/events/events_list.php:948 +#: ../../operation/events/events.php:993 ../../operation/events/events.php:1062 +#: ../../operation/events/events.php:1154 +#: ../../operation/events/events.php:1206 +#: ../../operation/events/events.php:2134 +#: ../../operation/events/events.build_table.php:619 +#: ../../general/subselect_data_module.php:62 +msgid "All" +msgstr "Все" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:288 +#: ../../godmode/setup/setup_visuals.php:978 +msgid "On Boolean graphs" +msgstr "В Булевых графиках" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:291 +msgid "Graph TIP view" +msgstr "Просмотр графика TIP" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:292 +msgid "This option may cause performance issues" +msgstr "Эта опция может вызвать проблемы с работой" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:306 +#: ../../godmode/setup/setup_visuals.php:997 +msgid "Show only average by default" +msgstr "Показывать среднее по умолчанию" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:307 +#: ../../godmode/setup/setup_visuals.php:998 +msgid "Show MAX/AVG/MIN by default" +msgstr "Показывать МАКС/СРД/МИН по умолчанию" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:309 +#: ../../godmode/setup/setup_visuals.php:994 +msgid "Graph mode" +msgstr "Режим графика" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:329 +#: ../../godmode/setup/setup_visuals.php:1013 +msgid "Zoom graphs:" +msgstr "Увеличенные графики:" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:343 +#: ../../godmode/setup/setup_visuals.php:928 +msgid "Type of module charts" +msgstr "Тип таблицы модулей" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:345 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:213 +#: ../../godmode/setup/setup_visuals.php:929 +#: ../../godmode/setup/setup_visuals.php:946 +#: ../../godmode/reporting/create_container.php:358 +#: ../../godmode/reporting/graph_builder.main.php:214 +#: ../../include/functions_visual_map_editor.php:558 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:644 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:315 +#: ../../operation/agentes/graphs.php:236 +#: ../../operation/agentes/graphs.php:243 +#: ../../operation/agentes/graphs.php:409 +#: ../../operation/agentes/graphs.php:428 +#: ../../operation/reporting/graph_viewer.php:315 +msgid "Area" +msgstr "Область" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:354 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:215 +#: ../../godmode/setup/setup_visuals.php:936 +#: ../../godmode/setup/setup_visuals.php:953 +#: ../../godmode/reporting/create_container.php:359 +#: ../../godmode/reporting/visual_console_builder.elements.php:314 +#: ../../godmode/reporting/graph_builder.main.php:216 +#: ../../include/functions_visual_map_editor.php:72 +#: ../../include/functions_visual_map_editor.php:557 +#: ../../include/functions_visual_map_editor.php:1399 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:643 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:317 +#: ../../operation/visual_console/view.php:337 +#: ../../operation/agentes/graphs.php:238 +#: ../../operation/agentes/graphs.php:244 +#: ../../operation/agentes/graphs.php:417 +#: ../../operation/agentes/graphs.php:432 +#: ../../operation/reporting/graph_viewer.php:317 +msgid "Line" +msgstr "Строка" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:364 +#: ../../enterprise/meta/include/functions_meta.php:1617 +msgid "Metaconsole elements" +msgstr "Элементы Метаконсоли" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:366 +msgid "The number of elements retrieved for each instance in some views." msgstr "" -"Маркер ранее настроенный на консоли Pandora предназначенной для " -"использования делегированной аутентификации." +"Количество элементов, извлекаемых для каждого экземпляра в некоторых видах." -#: ../../enterprise/meta/advanced/metasetup.consoles.php:258 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:328 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:179 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:248 -msgid "Console URL" -msgstr "Консоль URL" +#: ../../enterprise/meta/advanced/metasetup.visual.php:379 +#: ../../enterprise/meta/advanced/metasetup.visual.php:785 +#: ../../enterprise/meta/advanced/metasetup.visual.php:786 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:320 +#: ../../godmode/snmpconsole/snmp_alert.php:1094 +#: ../../godmode/setup/setup_visuals.php:1057 +#: ../../godmode/setup/setup_visuals.php:1058 +#: ../../godmode/setup/setup_visuals.php:1383 +#: ../../include/functions_visual_map_editor.php:1223 +#: ../../include/functions_visual_map_editor.php:1224 +#: ../../include/functions.php:499 ../../include/functions.php:629 +#: ../../include/functions_html.php:1880 +#: ../../include/class/AgentsAlerts.class.php:380 +msgid "seconds" +msgstr "секунд(ы)" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:259 -msgid "" -"Complete path to Pandora console without last \"/\" character. Example " -msgstr "" -"Полный путь к консоли Pandora без последнего символа \"/\". Например " +#: ../../enterprise/meta/advanced/metasetup.visual.php:380 +#: ../../enterprise/meta/advanced/metasetup.visual.php:787 +#: ../../enterprise/meta/advanced/metasetup.visual.php:788 +#: ../../enterprise/meta/advanced/metasetup.visual.php:789 +#: ../../enterprise/meta/advanced/metasetup.visual.php:790 +#: ../../godmode/setup/setup_visuals.php:1059 +#: ../../godmode/setup/setup_visuals.php:1060 +#: ../../godmode/setup/setup_visuals.php:1061 +#: ../../godmode/setup/setup_visuals.php:1062 +#: ../../godmode/setup/setup_visuals.php:1384 +#: ../../include/functions_visual_map_editor.php:1225 +#: ../../include/functions_visual_map_editor.php:1226 +#: ../../include/functions_visual_map_editor.php:1227 +#: ../../include/functions_visual_map_editor.php:1228 +#: ../../include/functions.php:503 ../../include/functions.php:633 +#: ../../include/functions_html.php:1881 +msgid "minutes" +msgstr "минут(ы)" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:264 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:329 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:188 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:249 -msgid "DB Host" -msgstr "Хост БД" +#: ../../enterprise/meta/advanced/metasetup.visual.php:381 +#: ../../godmode/setup/setup_visuals.php:1385 ../../include/functions.php:504 +#: ../../include/functions.php:634 ../../include/functions_snmp.php:402 +#: ../../include/functions_html.php:1882 +msgid "hours" +msgstr "часа/часов" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:267 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:192 -msgid "DB Name" -msgstr "Название БД" +#: ../../enterprise/meta/advanced/metasetup.visual.php:382 +#: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 +#: ../../godmode/setup/setup_visuals.php:1386 ../../include/functions.php:500 +#: ../../include/functions.php:630 ../../include/functions_html.php:1883 +msgid "days" +msgstr "дня/дней" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:270 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:197 -msgid "DB User" -msgstr "Пользователь БД" +#: ../../enterprise/meta/advanced/metasetup.visual.php:383 +#: ../../godmode/setup/setup_visuals.php:1387 ../../include/functions.php:501 +#: ../../include/functions.php:631 ../../include/functions_html.php:1885 +msgid "months" +msgstr "месяца/месяцев" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:273 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:201 -msgid "DB Password" -msgstr "Пароль БД" +#: ../../enterprise/meta/advanced/metasetup.visual.php:384 +#: ../../godmode/setup/setup_visuals.php:1388 ../../include/functions.php:502 +#: ../../include/functions.php:632 ../../include/functions_html.php:1886 +msgid "years" +msgstr "год(а)/лет" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:276 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 -msgid "Console User" -msgstr "Пользователь Консоли" +#: ../../enterprise/meta/advanced/metasetup.visual.php:387 +msgid "Add new custom value to intervals" +msgstr "Добавить новые пользовательские значения к интервалам" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:279 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 -msgid "Console Password" -msgstr "Пароль Консоли" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:321 +#: ../../enterprise/meta/advanced/metasetup.visual.php:408 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:656 +#: ../../enterprise/meta/advanced/links.php:175 +#: ../../enterprise/meta/include/functions_autoprovision.php:677 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1359 +#: ../../enterprise/godmode/agentes/collection_manager.php:119 +#: ../../enterprise/godmode/agentes/collection_manager.php:148 +#: ../../enterprise/godmode/agentes/inventory_manager.php:182 +#: ../../enterprise/godmode/agentes/plugins_manager.php:157 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:226 +#: ../../enterprise/godmode/policies/policy_plugins.php:129 +#: ../../enterprise/godmode/policies/policy_alerts.php:542 +#: ../../enterprise/godmode/policies/policy_alerts.php:606 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:333 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:401 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:221 +#: ../../enterprise/godmode/policies/policy_collections.php:252 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:150 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:120 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:138 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398 +#: ../../enterprise/godmode/alerts/alert_events_list.php:701 #: ../../enterprise/godmode/setup/setup_metaconsole.php:244 -msgid "DB" -msgstr "БД" +#: ../../enterprise/godmode/setup/setup_metaconsole.php:354 +#: ../../enterprise/godmode/setup/setup_acl.php:407 +#: ../../enterprise/godmode/setup/setup_acl.php:426 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:237 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:498 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:255 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:834 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:240 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:398 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:217 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:164 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 +#: ../../enterprise/godmode/servers/manage_export_form.php:138 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:89 +#: ../../enterprise/include/ajax/servers.ajax.php:144 +#: ../../enterprise/include/ajax/servers.ajax.php:177 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:280 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:467 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:356 +#: ../../extensions/files_repo/files_repo_form.php:105 +#: ../../godmode/modules/manage_network_templates_form.php:335 +#: ../../godmode/users/configure_profile.php:369 +#: ../../godmode/agentes/planned_downtime.editor.php:863 +#: ../../godmode/agentes/planned_downtime.editor.php:1025 +#: ../../godmode/snmpconsole/snmp_alert.php:1512 +#: ../../godmode/gis_maps/configure_gis_map.php:603 +#: ../../godmode/alerts/alert_list.list.php:792 +#: ../../godmode/setup/news.php:299 ../../godmode/setup/links.php:170 +#: ../../godmode/setup/setup_visuals.php:1338 +#: ../../godmode/setup/setup_visuals.php:1393 +#: ../../godmode/setup/setup_visuals.php:1413 +#: ../../godmode/reporting/graph_builder.graph_editor.php:394 +#: ../../godmode/reporting/visual_console_builder.wizard.php:551 +#: ../../godmode/events/event_edit_filter.php:503 +#: ../../godmode/events/event_edit_filter.php:556 +#: ../../godmode/servers/plugin.php:1111 +#: ../../include/functions_notifications.php:974 +#: ../../include/class/ManageNetScanScripts.class.php:471 +#: ../../include/functions_snmp_browser.php:1552 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:321 +#: ../../operation/events/events_list.php:601 +#: ../../operation/events/events_list.php:677 +#: ../../operation/events/events.php:578 ../../operation/events/events.php:654 +msgid "Add" +msgstr "Добавить" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:322 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 -msgid "API" -msgstr "API" +#: ../../enterprise/meta/advanced/metasetup.visual.php:417 +#: ../../enterprise/meta/include/functions_meta.php:1773 +#: ../../godmode/setup/setup_visuals.php:1398 +#: ../../include/functions_config.php:1329 +msgid "Delete interval" +msgstr "Удалить интервал" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:323 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:246 -msgid "Compatibility" -msgstr "Совместимость" +#: ../../enterprise/meta/advanced/metasetup.visual.php:451 +#: ../../enterprise/meta/include/functions_meta.php:1626 +#: ../../godmode/setup/setup_visuals.php:1288 +msgid "Show only the group name" +msgstr "Показывать только имя группы" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 -#: ../../enterprise/godmode/setup/setup.php:54 -#: ../../include/functions_config.php:216 -msgid "Events replication" -msgstr "События репликации" +#: ../../enterprise/meta/advanced/metasetup.visual.php:453 +#: ../../include/functions_config.php:1188 +msgid "Show the group name instead the group icon." +msgstr "Показывать имя группы вместо иконы группы" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:325 -msgid "Agent cache" +#: ../../enterprise/meta/advanced/metasetup.visual.php:463 +#: ../../enterprise/meta/include/functions_meta.php:1825 +#: ../../godmode/setup/setup_visuals.php:85 +#: ../../include/functions_config.php:1208 +msgid "Display data of proc modules in other format" +msgstr "Показать данные proc модулей в другом формате" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:471 +#: ../../enterprise/meta/include/functions_meta.php:1830 +#: ../../godmode/setup/setup_visuals.php:94 +#: ../../include/functions_config.php:1212 +msgid "Display text proc modules have state is ok" +msgstr "Показывать текст о положительном состоянии proc модулей" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:481 +#: ../../enterprise/meta/include/functions_meta.php:1835 +#: ../../godmode/setup/setup_visuals.php:98 +#: ../../include/functions_config.php:1216 +msgid "Display text when proc modules have state critical" +msgstr "Показывать текст о критическом состоянии proc модулей" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:502 +#: ../../godmode/setup/setup_visuals.php:173 +#: ../../include/functions_config.php:1032 +msgid "Login background" +msgstr "Фон входа в систему" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:504 +msgid "You can place your custom images into the folder images/backgrounds/" msgstr "" +"Вы можете разместить пользовательские изображения в папку изображения/фоны/" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:330 -#: ../../enterprise/extensions/check_acls.php:61 -#: ../../enterprise/extensions/check_acls.php:141 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:250 -#: ../../operation/search_users.php:63 ../../godmode/users/user_list.php:275 -#: ../../godmode/users/user_list.php:413 -msgid "Admin" -msgstr "Администратор" +#: ../../enterprise/meta/advanced/metasetup.visual.php:518 +#: ../../enterprise/meta/advanced/metasetup.visual.php:552 +#: ../../enterprise/meta/advanced/metasetup.visual.php:911 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1009 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:101 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:443 +#: ../../enterprise/godmode/policies/policy_alerts.php:343 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:131 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:145 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:89 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 +#: ../../enterprise/operation/agentes/policy_view.php:319 +#: ../../godmode/users/configure_user.php:878 +#: ../../godmode/users/configure_user.php:1077 +#: ../../godmode/agentes/module_manager_editor_common.php:589 +#: ../../godmode/massive/massive_edit_agents.php:719 +#: ../../godmode/alerts/alert_list.list.php:607 +#: ../../godmode/alerts/alert_special_days.php:325 +#: ../../godmode/alerts/alert_special_days.php:337 +#: ../../godmode/alerts/alert_view.php:43 +#: ../../godmode/setup/gis_step_2.php:533 +#: ../../godmode/setup/gis_step_2.php:619 +#: ../../godmode/setup/setup_visuals.php:193 +#: ../../godmode/setup/setup_visuals.php:215 +#: ../../godmode/setup/setup_visuals.php:435 +#: ../../godmode/setup/setup_visuals.php:454 +#: ../../godmode/setup/setup_visuals.php:1159 +#: ../../godmode/setup/setup_visuals.php:1200 +#: ../../godmode/events/event_edit_filter.php:393 +#: ../../include/functions_ui.php:1216 +#: ../../include/class/AgentsAlerts.class.php:945 +#: ../../operation/users/user_edit.php:317 +#: ../../operation/users/user_edit.php:320 +#: ../../operation/users/user_edit.php:331 +#: ../../operation/users/user_edit.php:356 +#: ../../operation/snmpconsole/snmp_view.php:588 +#: ../../operation/gis_maps/gis_map.php:106 +#: ../../operation/events/events_list.php:851 +msgid "Default" +msgstr "По умолчанию" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:409 -msgid "There aren't server added to metaconsole" -msgstr "Здесь нет сервера, добавленного к мата консоли" +#: ../../enterprise/meta/advanced/metasetup.visual.php:542 +#: ../../enterprise/meta/include/functions_meta.php:1653 +#: ../../godmode/setup/setup_visuals.php:187 +#: ../../include/functions_config.php:976 +msgid "Custom favicon" +msgstr "Настроить favicon" -#: ../../enterprise/meta/advanced/synchronizing.component.php:263 -#, php-format -msgid "Error creating %s components groups " -msgstr "Ошибка создания %s компонентов группы " +#: ../../enterprise/meta/advanced/metasetup.visual.php:544 +msgid "" +"You can place your favicon into the folder images/custom_favicon/. This file " +"should be in .ico format with a size of 16x16." +msgstr "" +"Вы можете разместить вашу иконку в папку изображения/custom_favicon/. Это " +"файл должен быть в формате .ico размера 16x16." -#: ../../enterprise/meta/advanced/synchronizing.component.php:266 -#, php-format -msgid "Created %s component groups" -msgstr "Созданные %s компоненты группы" +#: ../../enterprise/meta/advanced/metasetup.visual.php:570 +msgid "Custom logo (header)" +msgstr "Значок пользователя (заголовок)" -#: ../../enterprise/meta/advanced/synchronizing.component.php:271 -#, php-format -msgid "Error creating/updating %s/%s local components " -msgstr "Ошибка при создании/обновление %s/%s местных компонентов " +#: ../../enterprise/meta/advanced/metasetup.visual.php:600 +#: ../../godmode/setup/setup_visuals.php:286 +msgid "Custom logo (header white background)" +msgstr "Значок пользователя (заголовок белый фон)" -#: ../../enterprise/meta/advanced/synchronizing.component.php:274 -#, php-format -msgid "Created/Updated %s/%s local components" -msgstr "Создано/Обновлено %s/%s местные компоненты" +#: ../../enterprise/meta/advanced/metasetup.visual.php:629 +#: ../../godmode/setup/setup_visuals.php:325 +msgid "Custom logo (login)" +msgstr "Значок пользователя (Вход)" +#: ../../enterprise/meta/advanced/metasetup.visual.php:658 +#: ../../godmode/setup/setup_visuals.php:364 +msgid "Custom Splash (login)" +msgstr "Пользовательская страница приветствия (Вход)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:686 +#: ../../enterprise/meta/include/functions_meta.php:1680 +#: ../../godmode/setup/setup_visuals.php:504 +#: ../../include/functions_config.php:1044 +msgid "Product name" +msgstr "Название продукта" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:697 +#: ../../enterprise/meta/include/functions_meta.php:1689 +#: ../../godmode/setup/setup_visuals.php:510 +#: ../../include/functions_config.php:1048 +msgid "Copyright notice" +msgstr "Предупреждение об Авторских правах" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:708 +#: ../../godmode/setup/setup_visuals.php:479 +msgid "Title 1 (login)" +msgstr "Название 1 (вход в систему)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:719 +#: ../../godmode/setup/setup_visuals.php:486 +msgid "Title 2 (login)" +msgstr "Название 2 (вход в систему)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:729 +#: ../../enterprise/meta/include/functions_meta.php:1716 +#: ../../godmode/setup/setup_visuals.php:492 +msgid "Docs URL (login)" +msgstr "Документы URL (Вход в систему)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:739 +#: ../../enterprise/meta/include/functions_meta.php:1725 +#: ../../godmode/setup/setup_visuals.php:498 +msgid "Support URL (login)" +msgstr "Поддержка URL (Вход в систему)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:749 +#: ../../godmode/setup/setup_visuals.php:619 +msgid "Graphs font family" +msgstr "Семейство графических шрифтов" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:762 +#: ../../enterprise/meta/include/functions_meta.php:1599 +#: ../../godmode/setup/setup_visuals.php:560 +msgid "Visual effects and animation" +msgstr "Визуальные эффекты и анимация" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:772 +#: ../../godmode/setup/setup_visuals.php:1047 +msgid "Legacy Visual Console View" +msgstr "Просмотр Визуальной консоли унаследованной" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:774 +msgid "To use the old view when using the Visual Console visor" +msgstr "" +"Использовать предыдущий вид при работе с средством просмотра Visual Console" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:791 +#: ../../godmode/setup/setup_visuals.php:1063 +#: ../../include/functions_visual_map_editor.php:1229 +msgid "hour" +msgstr "час" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:793 +#: ../../godmode/setup/setup_visuals.php:1065 +msgid "Default cache expiration" +msgstr "Время истечения кэша по умолчанию" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:798 +#: ../../godmode/setup/setup_visuals.php:1070 +#: ../../include/functions_visual_map_editor.php:1255 +msgid "No cache" +msgstr "Нет кэша" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:810 +#: ../../enterprise/meta/include/functions_meta.php:1850 +#: ../../godmode/setup/setup_visuals.php:1082 +#: ../../include/functions_config.php:1096 +msgid "Default interval for refresh on Visual Console" +msgstr "Интервал обновления Визуальной консоли по умолчанию" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:813 +msgid "This interval will affect to Visual Console pages" +msgstr "Этот интервал будет влиять на страницы Визуальной Консоли" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:839 +#: ../../godmode/setup/setup_visuals.php:1492 +msgid "Data multiplier to use in graphs/data" +msgstr "Множитель данных для использования в графиках/данных" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:843 +#: ../../godmode/setup/setup_visuals.php:1494 +msgid "Use 1024 when module unit are bytes" +msgstr "Используйте 1024, если единицей модуля являются байты" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:844 +#: ../../godmode/setup/setup_visuals.php:1495 +msgid "Use always 1000" +msgstr "Используйте всегда 1000" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:845 +#: ../../godmode/setup/setup_visuals.php:1496 +msgid "Use always 1024" +msgstr "Используйте всегда 1024" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:869 +msgid "Reports configuration" +msgstr "Конфигурация отчетов" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:875 +#: ../../godmode/setup/setup_visuals.php:1124 +msgid "Show report info with description" +msgstr "Показывать информацию об отчете в описании" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:876 +msgid "" +"Custom report description info. It will be applied to all reports and " +"templates by default." +msgstr "" +"Пользовательская информация в описании отчета. Это будет применено ко всем " +"отчетам и шаблонам по умолчанию" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:887 +#: ../../godmode/setup/setup_visuals.php:1133 +msgid "Custom report front page" +msgstr "Первая страница пользовательского отчета" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:888 +msgid "" +"Custom report front page. It will be applied to all reports and templates by " +"default." +msgstr "" +"Первая страница пользовательского отчета. Она будет применена ко всем " +"отчетам и шаблонам по умолчанию" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:899 +#: ../../enterprise/meta/include/functions_meta.php:1477 +#: ../../godmode/setup/setup_visuals.php:1143 +#: ../../include/functions_config.php:1365 +msgid "PDF font size (px)" +msgstr "Размер шрифта PDF (px)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:902 +#: ../../enterprise/meta/include/functions_meta.php:1468 +#: ../../godmode/setup/setup_visuals.php:1148 +#: ../../include/functions_config.php:1361 +msgid "HTML font size for SLA (em)" +msgstr "Размер шрифта HTML для SLA (em)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:905 +#: ../../godmode/setup/setup_visuals.php:1153 +msgid "PDF font family" +msgstr "Семейство шрифтов PDF" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:916 +#: ../../enterprise/meta/include/functions_meta.php:1581 +#: ../../godmode/setup/setup_visuals.php:1167 +msgid "Graph image height for HTML reports" +msgstr "Высота изображения графика для отчетов HTML" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:918 +msgid "" +"This is the height in pixels of the module graph or custom graph in the " +"reports (only: HTML)" +msgstr "" +"Это высота в пикселях графика модуля или пользовательского графика в отчетах " +"(только: HTML)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:935 +#: ../../enterprise/meta/include/functions_meta.php:1495 +#: ../../godmode/setup/setup_visuals.php:1441 +#: ../../include/functions_config.php:1393 +msgid "CSV divider" +msgstr "Делитель CSV" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:975 +#: ../../enterprise/meta/include/functions_meta.php:1504 +#: ../../godmode/setup/setup_visuals.php:1487 +#: ../../include/functions_config.php:1397 +msgid "CSV decimal separator" +msgstr "Десятичный сепаратор CSV" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:983 +#: ../../enterprise/meta/include/functions_meta.php:1486 +#: ../../godmode/setup/setup_visuals.php:1176 +msgid "Interval description" +msgstr "Описание Интервала" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:985 +msgid "" +"A long interval description is for example 10 hours, 20 minutes 33 " +"secondsâ, a short one is 10h 20m 33s" +msgstr "" +"Долгий формат описания интервала - это, например, 10 часов, 20 минут, 33 " +"секунды, а короткий формат 10ч 20м 33с" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1000 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1013 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1024 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1034 +#: ../../enterprise/meta/include/functions_meta.php:1789 +#: ../../enterprise/meta/include/functions_meta.php:1800 +#: ../../enterprise/meta/include/functions_meta.php:1805 +#: ../../enterprise/meta/include/functions_meta.php:1810 +#: ../../enterprise/meta/include/functions_meta.php:1815 +#: ../../enterprise/meta/include/functions_meta.php:1820 +#: ../../godmode/setup/setup_visuals.php:1190 +#: ../../godmode/setup/setup_visuals.php:1205 +#: ../../godmode/setup/setup_visuals.php:1213 +#: ../../godmode/setup/setup_visuals.php:1233 +#: ../../godmode/setup/setup_visuals.php:1249 +#: ../../include/functions_config.php:1369 +#: ../../include/functions_config.php:1373 +#: ../../include/functions_config.php:1377 +#: ../../include/functions_config.php:1381 +#: ../../include/functions_config.php:1385 +#: ../../include/functions_config.php:1389 +msgid "Custom report front" +msgstr "Пользовательская отчетная страница" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1000 +#: ../../enterprise/meta/include/functions_meta.php:1635 +#: ../../enterprise/meta/include/functions_meta.php:1805 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:136 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 +#: ../../godmode/setup/setup_visuals.php:1190 +#: ../../include/functions_config.php:980 +#: ../../include/functions_config.php:1377 +msgid "Custom logo" +msgstr "Значок пользователя" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1001 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:137 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 +msgid "" +"The path of custom logos is 'images/custom_logo' in the console " +"installation. You can upload more files (ONLY JPEG AND PNG) with the upload " +"tool." +msgstr "" +"Путь к пользовательским значкам - 'images/custom_logo' при установке " +"консоли. Вы можете загрузить больше файлов (ТОЛЬКО JPEG И PNG) с помощью " +"инструмента загрузки." + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1024 +#: ../../enterprise/meta/include/functions_meta.php:1810 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:162 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 +#: ../../godmode/setup/setup_visuals.php:1213 +#: ../../include/functions_config.php:1381 +msgid "Header" +msgstr "Заголовок" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1034 +#: ../../enterprise/meta/include/functions_meta.php:1815 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:172 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 +#: ../../godmode/setup/setup_visuals.php:1233 +#: ../../include/functions_config.php:1385 +msgid "First page" +msgstr "Первая страница" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1097 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:228 +#: ../../enterprise/meta/advanced/metasetup.relations.php:278 +#: ../../enterprise/meta/advanced/metasetup.password.php:154 +#: ../../enterprise/meta/advanced/metasetup.mail.php:133 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:649 +#: ../../enterprise/meta/advanced/links.php:135 +#: ../../enterprise/meta/advanced/collections.data.php:150 +#: ../../enterprise/meta/advanced/collections.data.php:219 +#: ../../enterprise/meta/advanced/collections.data.php:260 +#: ../../enterprise/meta/advanced/collections.data.php:331 +#: ../../enterprise/meta/advanced/collections.data.php:332 +#: ../../enterprise/meta/advanced/collections.editor.php:125 +#: ../../enterprise/meta/advanced/collections.editor.php:200 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:160 +#: ../../enterprise/meta/advanced/cron_main.php:450 +#: ../../enterprise/meta/advanced/metasetup.setup.php:376 +#: ../../enterprise/meta/advanced/metasetup.performance.php:133 +#: ../../enterprise/meta/event/custom_events.php:213 +#: ../../enterprise/meta/include/functions_autoprovision.php:564 +#: ../../enterprise/meta/include/functions_autoprovision.php:765 +#: ../../enterprise/extensions/translate_string.php:364 +#: ../../enterprise/extensions/vmware/vmware_view.php:1254 +#: ../../enterprise/extensions/vmware/vmware_view.php:1744 +#: ../../enterprise/godmode/modules/configure_local_component.php:658 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:415 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:342 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:660 +#: ../../enterprise/godmode/agentes/collection_manager.php:159 +#: ../../enterprise/godmode/agentes/collection_manager.php:160 +#: ../../enterprise/godmode/agentes/collection_manager.php:271 +#: ../../enterprise/godmode/agentes/collection_manager.php:272 +#: ../../enterprise/godmode/agentes/inventory_manager.php:180 +#: ../../enterprise/godmode/agentes/inventory_manager.php:250 +#: ../../enterprise/godmode/agentes/collections.data.php:109 +#: ../../enterprise/godmode/agentes/collections.data.php:257 +#: ../../enterprise/godmode/agentes/collections.data.php:329 +#: ../../enterprise/godmode/agentes/collections.data.php:416 +#: ../../enterprise/godmode/agentes/collections.data.php:417 +#: ../../enterprise/godmode/agentes/collections.editor.php:171 +#: ../../enterprise/godmode/agentes/collections.editor.php:242 +#: ../../enterprise/godmode/agentes/plugins_manager.php:188 +#: ../../enterprise/godmode/agentes/plugins_manager.php:245 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:253 +#: ../../enterprise/godmode/policies/configure_policy.php:122 +#: ../../enterprise/godmode/policies/policy_modules.php:424 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:219 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 +#: ../../enterprise/godmode/policies/policy_collections.php:206 +#: ../../enterprise/godmode/policies/policy_collections.php:279 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:364 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:336 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:176 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1091 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:273 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +#: ../../enterprise/godmode/services/services.service.php:908 +#: ../../enterprise/godmode/setup/setup_history.php:521 +#: ../../enterprise/godmode/setup/setup.php:450 +#: ../../enterprise/godmode/setup/setup.php:639 +#: ../../enterprise/godmode/setup/setup_module_library.php:59 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:242 +#: ../../enterprise/godmode/setup/setup_log_collector.php:71 +#: ../../enterprise/godmode/setup/edit_skin.php:287 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:586 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:344 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:846 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 +#: ../../enterprise/godmode/servers/manage_export_form.php:136 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:95 +#: ../../enterprise/include/ajax/servers.ajax.php:102 +#: ../../enterprise/include/ajax/servers.ajax.php:303 +#: ../../enterprise/include/functions_HA_cluster.php:495 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1672 +#: ../../enterprise/include/class/DatabaseHA.class.php:884 +#: ../../enterprise/include/class/AgentRepository.class.php:885 +#: ../../enterprise/include/class/Omnishell.class.php:646 +#: ../../enterprise/include/class/LogSource.class.php:822 +#: ../../enterprise/include/class/SAPView.class.php:309 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314 +#: ../../enterprise/include/functions_update_manager.php:252 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 +#: ../../enterprise/operation/agentes/policy_view.php:195 +#: ../../enterprise/operation/agentes/policy_view.php:196 +#: ../../enterprise/operation/agentes/collection_view.php:100 +#: ../../enterprise/operation/agentes/collection_view.php:101 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:236 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:482 +#: ../../enterprise/tools/ipam/ipam_network.php:655 +#: ../../enterprise/tools/ipam/ipam_massive.php:112 +#: ../../enterprise/tools/ipam/ipam_editor.php:274 +#: ../../extensions/files_repo/files_repo_form.php:99 +#: ../../godmode/modules/manage_nc_groups_form.php:90 +#: ../../godmode/modules/manage_network_templates_form.php:166 +#: ../../godmode/modules/manage_network_components_form.php:365 +#: ../../godmode/groups/configure_group.php:270 +#: ../../godmode/groups/configure_modu_group.php:80 +#: ../../godmode/update_manager/update_manager.setup.php:271 +#: ../../godmode/users/configure_profile.php:374 +#: ../../godmode/users/configure_user.php:1442 +#: ../../godmode/agentes/agent_template.php:258 +#: ../../godmode/agentes/status_monitor_custom_fields.php:206 +#: ../../godmode/agentes/module_manager_editor.php:743 +#: ../../godmode/agentes/agent_conf_gis.php:134 +#: ../../godmode/agentes/planned_downtime.list.php:496 +#: ../../godmode/agentes/planned_downtime.list.php:508 +#: ../../godmode/agentes/planned_downtime.editor.php:855 +#: ../../godmode/agentes/agent_manager.php:1019 +#: ../../godmode/agentes/configure_field.php:135 +#: ../../godmode/netflow/nf_edit_form.php:268 +#: ../../godmode/snmpconsole/snmp_alert.php:1153 +#: ../../godmode/snmpconsole/snmp_alert.php:1393 +#: ../../godmode/snmpconsole/snmp_filters.php:240 +#: ../../godmode/snmpconsole/snmp_filters.php:280 +#: ../../godmode/snmpconsole/snmp_filters.php:291 +#: ../../godmode/alerts/configure_alert_command.php:348 +#: ../../godmode/alerts/alert_list.list.php:155 +#: ../../godmode/alerts/alert_list.list.php:162 +#: ../../godmode/alerts/alert_list.list.php:901 +#: ../../godmode/alerts/configure_alert_special_days.php:152 +#: ../../godmode/alerts/configure_alert_action.php:358 +#: ../../godmode/setup/news.php:233 ../../godmode/setup/setup_ehorus.php:163 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/os.php:57 ../../godmode/setup/os.php:126 +#: ../../godmode/setup/setup_auth.php:333 +#: ../../godmode/setup/setup_integria.php:620 ../../godmode/setup/links.php:126 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../godmode/setup/setup_visuals.php:1570 +#: ../../godmode/setup/setup_general.php:625 +#: ../../godmode/setup/performance.php:680 +#: ../../godmode/reporting/visual_console_builder.data.php:229 +#: ../../godmode/reporting/create_container.php:330 +#: ../../godmode/reporting/visual_console_builder.elements.php:709 +#: ../../godmode/reporting/reporting_builder.main.php:56 +#: ../../godmode/reporting/graph_builder.main.php:296 +#: ../../godmode/events/event_responses.editor.php:221 +#: ../../godmode/events/event_edit_filter.php:650 +#: ../../godmode/events/custom_events.php:167 +#: ../../godmode/servers/modificar_server.php:98 +#: ../../godmode/servers/plugin.php:182 ../../godmode/servers/plugin.php:600 +#: ../../godmode/tag/edit_tag.php:253 +#: ../../godmode/category/edit_category.php:180 +#: ../../include/functions_visual_map_editor.php:880 +#: ../../include/ajax/alert_list.ajax.php:545 +#: ../../include/class/ConfigPEN.class.php:697 +#: ../../include/class/ConfigPEN.class.php:698 +#: ../../include/class/NetworkMap.class.php:3068 +#: ../../include/class/ManageNetScanScripts.class.php:764 +#: ../../include/class/CredentialStore.class.php:1226 +#: ../../include/class/ModuleTemplates.class.php:1009 +#: ../../include/class/ExternalTools.class.php:374 +#: ../../include/functions_events.php:3583 +#: ../../include/functions_events.php:3663 +#: ../../include/functions_update_manager.php:1455 +#: ../../operation/users/user_edit.php:744 +#: ../../operation/agentes/datos_agente.php:218 +#: ../../operation/network/network_report.php:132 +#: ../../operation/snmpconsole/snmp_view.php:682 +#: ../../operation/incidents/configure_integriaims_incident.php:325 +#: ../../operation/reporting/reporting_viewer.php:259 +#: ../../operation/events/events_list.php:1061 +msgid "Update" +msgstr "Обновить" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1265 +#: ../../godmode/setup/setup_visuals.php:1793 +msgid "Logo preview" +msgstr "Пред показ значка" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1287 +#: ../../godmode/setup/setup_visuals.php:1823 +msgid "Splash Preview" +msgstr "Пред показ страницы приветствия" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1292 +#: ../../godmode/setup/setup_visuals.php:1847 +msgid "Background preview" +msgstr "Пред показ фона" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:287 +#: ../../enterprise/meta/advanced/synchronizing.user.php:565 +#: ../../enterprise/meta/advanced/synchronizing.user.php:661 #: ../../enterprise/meta/advanced/synchronizing.component.php:279 +#: ../../enterprise/meta/advanced/policymanager.sync.php:247 +#: ../../enterprise/meta/include/functions_groups_meta.php:174 +#: ../../enterprise/meta/include/functions_meta.php:116 +#: ../../enterprise/meta/include/functions_meta.php:218 +#: ../../godmode/groups/group_list.php:618 #, php-format -msgid "Error creating/updating %s/%s network components " -msgstr "Ошибка при создании/обновление %s/%s сетевых компонентов " +msgid "Error connecting to %s" +msgstr "Ошибка соединения с %s" -#: ../../enterprise/meta/advanced/synchronizing.component.php:282 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:295 #, php-format -msgid "Created/Updated %s/%s network components" -msgstr "Созданы/Обновлены %s/%s сетевые компоненты" +msgid "Error creating/updating %s/%s comamnds" +msgstr "Ошибка при создании/обновлении %s/%s комманд" -#: ../../enterprise/meta/advanced/synchronizing.component.php:303 -msgid "Synchronizing Components" +#: ../../enterprise/meta/advanced/synchronizing.alert.php:299 +#, php-format +msgid "Created/Updated %s/%s commands" +msgstr "Созданы/Обновлены %s/%s комманды" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:304 +#, php-format +msgid "Error creating/updating %s/%s actions" +msgstr "Ошибка при создании/обновлении %s/%s действий" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:308 +#, php-format +msgid "Created/Updated %s/%s actions" +msgstr "Созданы/Обновлены %s/%s действия" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:313 +#, php-format +msgid "Error creating/updating %s/%s templates" +msgstr "Ошибка создания/обновления %s/%s шаблонов" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:317 +#, php-format +msgid "Created/Updated %s/%s templates" +msgstr "Созданы/Обновлены %s/%s шаблоны" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:328 +msgid "Synchronizing Alerts" +msgstr "Предупреждения синхронизации" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:335 +#: ../../enterprise/meta/advanced/synchronizing.group.php:177 +#: ../../enterprise/meta/advanced/synchronizing.user.php:584 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:75 +#: ../../enterprise/meta/advanced/synchronizing.component.php:300 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:88 +#: ../../enterprise/meta/advanced/synchronizing.os.php:71 +#: ../../enterprise/meta/advanced/policymanager.sync.php:307 +#: ../../enterprise/meta/include/functions_events_meta.php:110 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:130 +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +#: ../../enterprise/include/class/LogSource.class.php:598 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:104 +#: ../../enterprise/operation/log/log_viewer.php:634 +#: ../../godmode/massive/massive_copy_modules.php:143 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1323 +#: ../../godmode/events/event_edit_filter.php:621 +#: ../../godmode/events/custom_events.php:108 +#: ../../include/functions_events.php:202 +#: ../../include/functions_events.php:272 +#: ../../include/functions_events.php:4533 +#: ../../include/functions_events.php:4608 +#: ../../include/functions_events.php:6566 +#: ../../operation/agentes/log_sources_status.php:29 +#: ../../operation/agentes/pandora_networkmap.editor.php:327 +#: ../../operation/events/events_list.php:987 +#: ../../operation/events/events.php:1101 +#: ../../operation/events/events.build_table.php:293 +msgid "Source" +msgstr "Источник" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:336 +#: ../../enterprise/meta/advanced/synchronizing.group.php:178 +#: ../../enterprise/meta/advanced/synchronizing.user.php:585 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:76 +#: ../../enterprise/meta/advanced/synchronizing.component.php:301 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:89 +#: ../../enterprise/meta/advanced/synchronizing.os.php:72 +#: ../../enterprise/meta/advanced/policymanager.sync.php:308 +#: ../../include/lib/Dashboard/Widget.php:583 +msgid "This metaconsole" +msgstr "Эта Метаконсоль" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:348 +#: ../../enterprise/meta/advanced/synchronizing.group.php:216 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:86 +#: ../../enterprise/meta/advanced/synchronizing.component.php:311 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:99 +#: ../../enterprise/meta/advanced/synchronizing.os.php:82 +#: ../../enterprise/meta/advanced/policymanager.sync.php:321 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:182 +#: ../../godmode/massive/massive_copy_modules.php:238 +msgid "Targets" +msgstr "Цели" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:355 +#: ../../enterprise/meta/advanced/synchronizing.group.php:223 +#: ../../enterprise/meta/advanced/synchronizing.user.php:670 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:697 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:93 +#: ../../enterprise/meta/advanced/synchronizing.component.php:318 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:106 +#: ../../enterprise/meta/advanced/synchronizing.os.php:89 +#: ../../enterprise/meta/advanced/policymanager.sync.php:328 +#: ../../enterprise/godmode/servers/HA_cluster.php:141 +#: ../../enterprise/include/functions_setup.php:201 +msgid "Sync" +msgstr "Синхр" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:123 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:126 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:130 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:134 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:138 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:142 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:146 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:150 +msgid "Agent: " +msgstr "Агент: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:123 +msgid " already exists in target node" +msgstr " уже существует в целевом узле" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:126 +msgid " group does not exist in target node" +msgstr " группа не найдена в целевом узле" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:130 +msgid "" +" policies definitions does not match with defined ones in target node" +msgstr " Определения политики не соответствует выбранным в целевом узле" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:134 +msgid " plugins does not exist in target node" +msgstr " плагины не найдены в целевом узле" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:138 +msgid " collections does not exist in target node" +msgstr " коллекции не найдены в целевом узле" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:142 +msgid " inventory does not exist in target node" +msgstr " файлы инвентаризации не найдены в целевом узле" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:146 +msgid " alerts template does not exist in target node" +msgstr " шаблоны предупреждений не найдены в целевом узле" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:150 +msgid " alerts action does not exist in target node" +msgstr " действия предупреждения не найдены в целевом узле" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:154 +msgid "Exists agent conf for agent: " +msgstr "Существует настройка агента для: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:154 +msgid " please remove configuration file from target node." +msgstr " пожалуйста, удалите файл конфигурации из целевого узла." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:158 +#: ../../enterprise/include/functions_metaconsole.php:2773 +msgid "There are differences between MR versions" +msgstr "Существуют различия между версиями незначительных обновлений" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:162 +#: ../../enterprise/include/functions_metaconsole.php:2766 +msgid "Target server ip address is set" +msgstr "IP адрес целевого сервера установлен" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:251 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:253 +msgid "The agent: " +msgstr "Агент: " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:251 +msgid " has been successfully added to the migration queue " +msgstr " был успешно добавлен в очередь миграции " + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:253 +msgid " has not been added due to problems in the insertion" +msgstr " не был добавлен из-за проблем с вставкой" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:256 +#, php-format +msgid "The agent: %d has already been added to the migration queue" +msgstr "Агент: %d уже добавлен в очередь миграции" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:273 +#: ../../enterprise/meta/advanced/metasetup.relations.php:87 +#: ../../enterprise/godmode/reporting/graph_template_list.php:123 +#: ../../enterprise/godmode/reporting/graph_template_list.php:150 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:98 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:126 +#: ../../godmode/modules/manage_nc_groups.php:143 +#: ../../godmode/agentes/planned_downtime.list.php:113 +#: ../../godmode/netflow/nf_item_list.php:130 +#: ../../godmode/netflow/nf_item_list.php:158 +#: ../../godmode/netflow/nf_edit.php:105 ../../godmode/netflow/nf_edit.php:138 +#: ../../godmode/reporting/map_builder.php:189 +#: ../../godmode/reporting/graphs.php:119 +#: ../../godmode/reporting/graphs.php:130 +#: ../../godmode/reporting/graphs.php:171 +#: ../../godmode/events/event_filter.php:70 +#: ../../godmode/events/event_filter.php:97 +#: ../../operation/reporting/graph_viewer.php:44 +#: ../../operation/reporting/graph_viewer.php:52 +msgid "Not deleted. Error deleting data" +msgstr "Не удалено. Ошибка при удалении данных" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:276 +msgid "Problems delete queue" +msgstr "Проблема при удалении очереди" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:296 +msgid "Move Agents" +msgstr "Переместить Агентов" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312 +msgid "Source Server" +msgstr "Сервер Источника" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:314 +msgid "Destination Server" +msgstr "Сервер Назначения" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:346 +#: ../../enterprise/meta/advanced/policymanager.queue.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:265 +#: ../../enterprise/meta/monitoring/group_view.php:154 +#: ../../enterprise/meta/monitoring/group_view.php:215 +#: ../../enterprise/meta/include/functions_autoprovision.php:450 +#: ../../enterprise/godmode/agentes/collections.agents.php:55 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 +#: ../../enterprise/godmode/agentes/collections.data.php:139 +#: ../../enterprise/godmode/agentes/collections.data.php:273 +#: ../../enterprise/godmode/agentes/collections.editor.php:71 +#: ../../enterprise/godmode/policies/policy_queue.php:480 +#: ../../enterprise/godmode/policies/policies.php:444 +#: ../../enterprise/godmode/policies/policies.php:570 +#: ../../enterprise/godmode/policies/policy_agents.php:567 +#: ../../enterprise/godmode/policies/policy_agents.php:677 +#: ../../enterprise/godmode/policies/policy_agents.php:725 +#: ../../enterprise/godmode/policies/policy.php:71 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:243 +#: ../../enterprise/godmode/massive/massive_edit_services.php:862 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:206 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 +#: ../../enterprise/include/functions_cron.php:211 +#: ../../enterprise/include/functions_tasklist.php:279 +#: ../../enterprise/include/functions_reporting_pdf.php:794 +#: ../../enterprise/include/functions_policies.php:3851 +#: ../../enterprise/operation/services/services.service_map.php:177 +#: ../../extensions/agents_modules.php:405 +#: ../../extensions/agents_modules.php:689 +#: ../../godmode/massive/massive_standby_alerts.php:179 +#: ../../godmode/massive/massive_delete_modules.php:530 +#: ../../godmode/massive/massive_add_alerts.php:219 +#: ../../godmode/massive/massive_delete_agents.php:187 +#: ../../godmode/massive/massive_edit_plugins.php:360 +#: ../../godmode/massive/massive_enable_disable_alerts.php:166 +#: ../../godmode/massive/massive_edit_agents.php:477 +#: ../../godmode/massive/massive_delete_alerts.php:293 +#: ../../godmode/massive/massive_edit_modules.php:499 +#: ../../godmode/alerts/alert_list.list.php:68 +#: ../../godmode/reporting/reporting_builder.list_items.php:208 +#: ../../godmode/reporting/reporting_builder.list_items.php:229 +#: ../../godmode/reporting/graph_builder.graph_editor.php:348 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1499 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1561 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1681 +#: ../../godmode/reporting/visual_console_builder.wizard.php:428 +#: ../../mobile/include/functions_web.php:23 +#: ../../mobile/operation/agents.php:186 ../../mobile/operation/home.php:81 +#: ../../mobile/operation/agent.php:136 +#: ../../include/functions_reporting_html.php:1629 +#: ../../include/functions_reporting_html.php:1971 +#: ../../include/functions_reporting_html.php:2619 +#: ../../include/functions_cron.php:563 ../../include/functions_html.php:1438 +#: ../../include/class/Diagnostics.class.php:1155 +#: ../../include/class/Diagnostics.class.php:1159 +#: ../../include/class/Diagnostics.class.php:1163 +#: ../../include/class/Diagnostics.class.php:1167 +#: ../../include/class/NetworkMap.class.php:3219 +#: ../../include/class/AgentsAlerts.class.php:245 +#: ../../include/class/AgentsAlerts.class.php:535 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:311 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:316 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:397 +#: ../../include/functions_groups.php:53 ../../operation/search_results.php:79 +#: ../../operation/agentes/group_view.php:154 +#: ../../operation/agentes/group_view.php:187 +msgid "Agents" +msgstr "Агенты" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:348 +msgid "Agents to move" +msgstr "Агенты для перемещения" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:369 +msgid "Add agents to destination server" +msgstr "Добавить агенты к серверу назначения" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:378 +msgid "Remove agents to doesn't move to destination server" +msgstr "Удалить агентов, чтобы не перемещать их в сервер назначения" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:397 +msgid "Discard history data" +msgstr "Сбросить базу данных" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:410 +msgid "Agents do not exist in target server." +msgstr "Агенты не найдены на целевом сервере" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:411 +msgid "Check group is synchronized with target server." +msgstr "Проверочная группа синхронизирована с целевым сервером." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:412 +msgid "All policies needed are synchronized with target server." +msgstr "Все необходимые политики синхронизированы с целевым сервером." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 +msgid "All remote plugins needed are synchronized with target server." +msgstr "Все необходимые плагины синхронизированы с целевым сервером." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:414 +msgid "All collections needed are syncronized with target server." +msgstr "Все необходимые коллекции синхронизированы с целевым сервером." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:415 +msgid "" +"All remote inventory definitions needed are syncronized with target server." msgstr "" +"Все дистанционные определения инвентаря синхронизированы с целевым сервером." -#: ../../enterprise/meta/advanced/synchronizing.user.php:264 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:416 +msgid "" +"All alert templates definitions needed are syncronized with target server." +msgstr "" +"Все необходимые определения шаблонов предупреждений синхронизированы с " +"целевым сервером." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:417 +msgid "All alert actions needed are syncronized with target server." +msgstr "" +"Все необходимые действия предупреждений синхронизированы с целевым сервером." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:418 +msgid "Agents conf does not exists in target server." +msgstr "Конфигурация Агента не найдена в целевом сервере." + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:419 +#, php-format +msgid "Both %s servers must be in the same version" +msgstr "Оба %s сервера должны быть одной версии" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:420 +msgid "Check target server ip address is set" +msgstr "Проверь установлен ли IP адрес целевого сервера" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430 +msgid "Move" +msgstr "Переместить" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:444 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:108 +#: ../../enterprise/include/functions_inventory.php:93 +#: ../../enterprise/include/functions_inventory.php:127 +#: ../../include/functions_events.php:239 +msgid "Agent alias" +msgstr "Алиас Агента" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:445 +msgid "Source node" +msgstr "Исходный узел" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446 +msgid "Target node" +msgstr "Целевой узел" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:447 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:321 +#: ../../enterprise/godmode/alerts/alert_events.php:616 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:405 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:461 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:513 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:799 +#: ../../godmode/agentes/agent_incidents.php:91 +#: ../../godmode/snmpconsole/snmp_alert.php:1097 +#: ../../godmode/snmpconsole/snmp_alert.php:1181 +#: ../../godmode/alerts/alert_list.list.php:120 +#: ../../godmode/alerts/alert_templates.php:51 +#: ../../godmode/alerts/configure_alert_template.php:1153 +#: ../../godmode/alerts/alert_view.php:101 +#: ../../godmode/setup/setup_integria.php:370 +#: ../../godmode/setup/setup_integria.php:493 +#: ../../include/functions_reporting_html.php:4554 +#: ../../include/functions_events.php:4565 +#: ../../operation/agentes/estado_generalagente.php:638 +#: ../../operation/incidents/integriaims_export_csv.php:93 +#: ../../operation/incidents/configure_integriaims_incident.php:277 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:376 +#: ../../operation/incidents/list_integriaims_incidents.php:144 +msgid "Priority" +msgstr "Приоритет" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:448 +#: ../../enterprise/godmode/alerts/alert_events.php:120 +#: ../../enterprise/godmode/alerts/alert_events.php:124 +#: ../../enterprise/godmode/alerts/alert_events.php:141 +#: ../../enterprise/godmode/alerts/alert_events.php:145 +#: ../../enterprise/godmode/alerts/alert_events.php:162 +#: ../../enterprise/godmode/alerts/alert_events.php:166 +#: ../../godmode/alerts/configure_alert_template.php:187 +#: ../../godmode/alerts/configure_alert_template.php:191 +#: ../../godmode/alerts/configure_alert_template.php:208 +#: ../../godmode/alerts/configure_alert_template.php:212 +#: ../../godmode/alerts/configure_alert_template.php:229 +#: ../../godmode/alerts/configure_alert_template.php:233 +#: ../../include/functions_config.php:1524 +msgid "Step" +msgstr "Шаг" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:450 +msgid "Active db only" +msgstr "Только активные БД" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:451 +#: ../../enterprise/meta/advanced/collections.php:413 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:100 +#: ../../enterprise/meta/include/functions_autoprovision.php:451 +#: ../../enterprise/meta/include/functions_alerts_meta.php:125 +#: ../../enterprise/meta/include/functions_alerts_meta.php:144 +#: ../../enterprise/extensions/backup/main.php:136 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:366 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +#: ../../enterprise/godmode/agentes/inventory_manager.php:221 +#: ../../enterprise/godmode/agentes/collections.php:326 +#: ../../enterprise/godmode/policies/policy_alerts.php:290 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:206 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:343 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223 +#: ../../enterprise/godmode/alerts/alert_events_list.php:502 +#: ../../enterprise/godmode/setup/setup_skins.php:124 +#: ../../enterprise/include/functions_reporting_csv.php:2323 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2367 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2534 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3496 +#: ../../enterprise/operation/agentes/transactional_map.php:187 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:162 +#: ../../enterprise/operation/services/services.list.php:520 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:372 +#: ../../enterprise/tools/ipam/ipam_ajax.php:379 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:274 +#: ../../godmode/groups/group_list.php:804 +#: ../../godmode/agentes/modificar_agente.php:619 +#: ../../godmode/agentes/planned_downtime.editor.php:909 +#: ../../godmode/agentes/fields_manager.php:121 ../../godmode/menu.php:230 +#: ../../godmode/alerts/alert_list.list.php:114 +#: ../../godmode/alerts/alert_list.list.php:475 +#: ../../godmode/alerts/alert_commands.php:631 +#: ../../godmode/alerts/alert_view.php:351 +#: ../../godmode/alerts/alert_list.builder.php:95 +#: ../../godmode/events/event_responses.list.php:53 +#: ../../godmode/tag/tag.php:243 ../../godmode/category/category.php:126 +#: ../../include/functions_reporting_html.php:2677 +#: ../../include/functions_cron.php:460 +#: ../../include/functions_treeview.php:413 +#: ../../include/class/AgentsAlerts.class.php:247 +#: ../../include/class/AgentsAlerts.class.php:278 +#: ../../include/functions_filemanager.php:628 +msgid "Actions" +msgstr "Действия" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:487 +msgid "Creating modules in target node" +msgstr "Создание модулей в целевом узле" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:491 +msgid "Disabling agent in source node and enabling in target one" +msgstr "Отключение Агента в исходном узле и его подключение в целевом узле" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:495 +msgid "Transferring data" +msgstr "Перенесение данных" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:500 +msgid "Creating agent in target node" +msgstr "Создание Агента в целевом узле" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:506 +#: ../../enterprise/include/functions_HA_cluster.php:542 +#: ../../enterprise/include/functions_HA_cluster.php:547 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1618 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1623 +#: ../../enterprise/include/class/DatabaseHA.class.php:207 +#: ../../enterprise/include/class/AgentRepository.class.php:832 +#: ../../enterprise/include/class/AgentRepository.class.php:837 +#: ../../enterprise/include/class/Omnishell.class.php:1079 +#: ../../enterprise/include/class/LogSource.class.php:768 +#: ../../enterprise/include/class/LogSource.class.php:773 +#: ../../enterprise/include/class/WebServerModuleDebug.class.php:366 +#: ../../enterprise/include/class/WebServerModuleDebug.class.php:371 +#: ../../enterprise/include/functions_ux_console.php:472 +#: ../../enterprise/operation/agentes/transactional_map.php:318 +#: ../../enterprise/operation/agentes/ux_console_view.php:210 +#: ../../enterprise/operation/agentes/ux_console_view.php:352 +#: ../../enterprise/operation/agentes/wux_console_view.php:433 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1006 +#: ../../include/ajax/snmp_browser.ajax.php:259 +#: ../../include/class/ConfigPEN.class.php:744 +#: ../../include/class/ConfigPEN.class.php:749 +#: ../../include/class/HelpFeedBack.class.php:354 +#: ../../include/class/Diagnostics.class.php:2080 +#: ../../include/class/CredentialStore.class.php:1172 +#: ../../include/class/CredentialStore.class.php:1177 +#: ../../include/class/ModuleTemplates.class.php:1421 +#: ../../include/class/ModuleTemplates.class.php:1426 +#: ../../include/class/AgentWizard.class.php:5627 +#: ../../include/class/AgentWizard.class.php:5632 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 +#: ../../operation/visual_console/view.php:683 +#: ../../operation/visual_console/view.php:688 +msgid "Failed" +msgstr "Неудачно" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:510 +#: ../../enterprise/meta/advanced/policymanager.queue.php:261 +#: ../../enterprise/godmode/policies/policy_queue.php:502 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:438 +#: ../../enterprise/include/class/Omnishell.class.php:362 +msgid "Finished" +msgstr "Окончено" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:511 +msgid "Completed" +msgstr "Завершено" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:516 +msgid "Queued" +msgstr "Поставлено в очередь" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:521 +#: ../../enterprise/extensions/backup/main.php:170 +#: ../../enterprise/operation/agentes/transactional_map.php:241 +#: ../../godmode/agentes/planned_downtime.list.php:404 +#: ../../godmode/agentes/planned_downtime.list.php:470 +msgid "Running" +msgstr "Работает" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:583 +msgid "checking migration requirements" +msgstr "проверка требований миграции" + +#: ../../enterprise/meta/advanced/servers.php:39 +#: ../../godmode/servers/modificar_server.php:178 +msgid "Server deleted successfully" +msgstr "Сервер удален успешно" + +#: ../../enterprise/meta/advanced/servers.php:41 +#: ../../godmode/servers/modificar_server.php:180 +msgid "There was a problem deleting the server" +msgstr "Проблема при удалении сервера" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:126 +#: ../../enterprise/extensions/translate_string.php:253 +msgid "Translation added successfully" +msgstr "Перевод добавлен удачно" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:128 +#: ../../enterprise/extensions/translate_string.php:255 +msgid "Translation string could not be created" +msgstr "Невозможно создать строку перевода" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:141 +#: ../../enterprise/extensions/translate_string.php:268 +msgid "Translation updated successfully" +msgstr "Перевод успешно обновлен" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:143 +#: ../../enterprise/extensions/translate_string.php:270 +msgid "Translation string could not be updated" +msgstr "Невозможно обновить строку перевода" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:171 +#: ../../enterprise/extensions/translate_string.php:302 +#: ../../godmode/users/configure_user.php:872 +#: ../../operation/users/user_edit.php:325 +msgid "Language" +msgstr "Язык" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:183 +#: ../../enterprise/meta/advanced/metasetup.relations.php:451 +#: ../../enterprise/meta/advanced/collections.php:301 +#: ../../enterprise/meta/advanced/collections.php:314 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:244 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:341 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:508 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:579 +#: ../../enterprise/meta/agentsearch.php:91 +#: ../../enterprise/meta/general/main_header.php:694 +#: ../../enterprise/meta/general/main_header.php:696 +#: ../../enterprise/extensions/translate_string.php:323 +#: ../../enterprise/godmode/modules/local_components.php:518 +#: ../../enterprise/godmode/modules/local_components.php:543 +#: ../../enterprise/godmode/agentes/collection_manager.php:48 +#: ../../enterprise/godmode/agentes/collections.php:307 +#: ../../enterprise/godmode/policies/policy_collections.php:238 +#: ../../enterprise/godmode/policies/policy_agents.php:769 +#: ../../enterprise/godmode/policies/policy_agents.php:774 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:151 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:162 +#: ../../enterprise/godmode/alerts/alert_events_list.php:425 +#: ../../enterprise/godmode/alerts/alert_events_list.php:436 +#: ../../enterprise/operation/agentes/tag_view.php:200 +#: ../../enterprise/operation/agentes/agent_inventory.php:109 +#: ../../enterprise/operation/agentes/agent_inventory.php:114 +#: ../../enterprise/operation/log/log_viewer.php:499 +#: ../../enterprise/operation/log/log_viewer.php:769 +#: ../../enterprise/operation/inventory/inventory.php:209 +#: ../../enterprise/operation/inventory/inventory.php:250 +#: ../../enterprise/operation/services/services.treeview_services.php:156 +#: ../../enterprise/operation/services/services.list.php:235 +#: ../../enterprise/operation/services/services.list.php:328 +#: ../../enterprise/operation/services/services.table_services.php:187 +#: ../../enterprise/operation/services/services.table_services.php:278 +#: ../../extensions/module_groups.php:271 +#: ../../godmode/modules/manage_network_components.php:655 +#: ../../godmode/groups/group_list.php:737 +#: ../../godmode/groups/group_list.php:747 +#: ../../godmode/users/user_list.php:354 ../../godmode/users/user_list.php:364 +#: ../../godmode/agentes/modificar_agente.php:327 +#: ../../godmode/agentes/modificar_agente.php:336 +#: ../../godmode/agentes/planned_downtime.list.php:144 +#: ../../godmode/agentes/planned_downtime.list.php:183 +#: ../../godmode/agentes/module_manager.php:49 +#: ../../godmode/admin_access_logs.php:82 +#: ../../godmode/alerts/alert_actions.php:238 +#: ../../godmode/alerts/alert_actions.php:296 +#: ../../godmode/alerts/alert_templates.php:308 +#: ../../godmode/alerts/alert_templates.php:319 +#: ../../godmode/reporting/map_builder.php:325 +#: ../../godmode/reporting/map_builder.php:347 +#: ../../godmode/reporting/graphs.php:198 +#: ../../godmode/reporting/visual_console_favorite.php:129 +#: ../../godmode/reporting/visual_console_favorite.php:159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1012 +#: ../../godmode/reporting/reporting_builder.php:713 +#: ../../godmode/module_library/module_library_view.php:84 +#: ../../godmode/module_library/module_library_view.php:94 +#: ../../mobile/operation/agent.php:302 ../../include/functions_snmp.php:358 +#: ../../include/class/AgentWizard.class.php:2520 +#: ../../include/functions_snmp_browser.php:925 +#: ../../include/functions_snmp_browser.php:1495 +#: ../../operation/search_results.php:191 +#: ../../operation/agentes/estado_agente.php:238 +#: ../../operation/agentes/estado_agente.php:262 +#: ../../operation/agentes/status_monitor.php:498 +#: ../../operation/agentes/alerts_status.functions.php:194 +#: ../../operation/agentes/alerts_status.functions.php:203 +#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 +msgid "Search" +msgstr "Поиск" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:184 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:185 +#: ../../enterprise/extensions/translate_string.php:313 +#: ../../enterprise/extensions/translate_string.php:314 +#: ../../enterprise/godmode/agentes/collection_manager.php:42 +#: ../../enterprise/godmode/agentes/collections.php:303 +#: ../../enterprise/godmode/policies/policies.php:363 +#: ../../enterprise/godmode/policies/policy_collections.php:232 +#: ../../godmode/admin_access_logs.php:83 +msgid "Free text for search (*)" +msgstr "Свободный текст для поиска (*)" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:203 +#: ../../enterprise/extensions/translate_string.php:334 +msgid "Original string" +msgstr "Исходная строка" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:204 +#: ../../enterprise/extensions/translate_string.php:335 +msgid "Translation in selected language" +msgstr "Перевод на выбранном языке" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:205 +#: ../../enterprise/extensions/translate_string.php:336 +msgid "Customize translation" +msgstr "Настроить перевод" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:218 +#: ../../enterprise/meta/advanced/metasetup.relations.php:572 +#: ../../enterprise/meta/include/functions_autoprovision.php:388 +#: ../../enterprise/meta/include/functions_wizard_meta.php:494 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:677 +#: ../../enterprise/godmode/setup/setup_acl.php:338 +#: ../../enterprise/godmode/setup/setup_acl.php:632 +#: ../../enterprise/include/functions_cron.php:564 +#: ../../enterprise/include/functions_backup.php:523 +#: ../../enterprise/include/functions_backup.php:524 +#: ../../godmode/agentes/module_manager_editor_wmi.php:61 +#: ../../godmode/agentes/module_manager_editor_network.php:96 +#: ../../godmode/massive/massive_edit_modules.php:763 +#: ../../include/functions_html.php:1657 ../../include/functions_html.php:1658 +#: ../../include/functions_html.php:1762 ../../include/functions_html.php:1763 +#: ../../include/functions_html.php:1923 ../../include/functions_html.php:1924 +#: ../../include/class/CredentialStore.class.php:925 +#: ../../operation/netflow/nf_live_view.php:384 +msgid "Custom" +msgstr "Пользовательский" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:239 +msgid "Node Address Default" +msgstr "Адрес узла по умолчанию" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:271 +#: ../../enterprise/meta/advanced/metasetup.relations.php:388 +msgid "This value will be the one returned by the API" +msgstr "Это значение будет возвращено с помощью API" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:305 +msgid "Import file" +msgstr "Импортировать файл" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:319 +msgid "Ip Gateway" +msgstr "Ip Шлюз" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:320 +#: ../../enterprise/meta/advanced/metasetup.relations.php:564 +msgid "Imei" +msgstr "Imei" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:330 +#: ../../include/class/NetworkMap.class.php:3086 +#: ../../include/class/NetworkMap.class.php:3087 +msgid "Relations" +msgstr "Отношения" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:351 +msgid "Relation" +msgstr "Отношение" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:361 +#: ../../enterprise/meta/advanced/metasetup.relations.php:440 +msgid "Node Address" +msgstr "Адрес узла" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:398 +msgid "Insert relation" +msgstr "Вставить отношение" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:406 +msgid "Show list relations" +msgstr "Показать список отношений" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:430 +#: ../../enterprise/meta/include/functions_autoprovision.php:617 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:363 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:548 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:749 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:405 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2334 +#: ../../enterprise/include/functions_reporting_csv.php:1056 +#: ../../enterprise/include/functions_reporting_csv.php:1082 +#: ../../enterprise/include/functions_reporting_csv.php:1113 +#: ../../enterprise/include/functions_reporting_csv.php:1168 +#: ../../enterprise/include/functions_reporting_csv.php:1272 +#: ../../enterprise/operation/services/services.service.php:195 +#: ../../enterprise/operation/services/services.list.php:513 +#: ../../godmode/agentes/module_manager_editor_common.php:1168 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:102 +#: ../../godmode/massive/massive_edit_modules.php:828 +#: ../../godmode/alerts/configure_alert_template.php:855 +#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../godmode/setup/setup_visuals.php:1390 +#: ../../godmode/setup/setup_visuals.php:1410 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2196 +#: ../../godmode/reporting/visual_console_builder.wizard.php:339 +#: ../../include/functions_visual_map_editor.php:693 +#: ../../include/functions_reporting_html.php:920 +#: ../../include/functions_reporting_html.php:1866 +#: ../../include/functions_reporting_html.php:4154 +#: ../../include/functions_reporting_html.php:4672 +#: ../../include/ajax/events.php:1849 ../../include/functions_graph.php:5396 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:499 +#: ../../include/functions_netflow.php:212 +#: ../../include/functions_snmp_browser.php:560 +msgid "Value" +msgstr "Значение" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:462 +msgid "Show Filters" +msgstr "Показать фильтры" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:549 +msgid "Node address" +msgstr "Адрес узла" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:550 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:380 +#: ../../enterprise/godmode/policies/policy_alerts.php:512 +#: ../../enterprise/godmode/policies/policy_modules.php:1472 +#: ../../enterprise/godmode/admin_access_logs.php:28 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:240 +#: ../../enterprise/godmode/alerts/alert_events.php:630 +#: ../../enterprise/godmode/alerts/alert_events.php:649 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379 +#: ../../enterprise/godmode/alerts/alert_events_list.php:505 +#: ../../enterprise/godmode/reporting/graph_template_list.php:175 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3258 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3456 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3479 +#: ../../enterprise/godmode/servers/manage_export.php:142 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:395 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:453 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2658 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2977 +#: ../../enterprise/include/functions_services.php:1512 +#: ../../enterprise/operation/agentes/policy_view.php:247 +#: ../../enterprise/tools/ipam/ipam_list.php:169 +#: ../../godmode/modules/manage_nc_groups.php:234 +#: ../../godmode/modules/manage_network_components.php:729 +#: ../../godmode/modules/manage_network_templates.php:236 +#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/planned_downtime.editor.php:992 +#: ../../godmode/agentes/module_manager.php:797 +#: ../../godmode/netflow/nf_item_list.php:187 +#: ../../godmode/netflow/nf_edit.php:161 +#: ../../godmode/snmpconsole/snmp_alert.php:1342 +#: ../../godmode/snmpconsole/snmp_alert.php:1432 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/massive/massive_operations.php:403 +#: ../../godmode/massive/massive_standby_alerts.php:226 +#: ../../godmode/massive/massive_delete_action_alerts.php:258 +#: ../../godmode/massive/massive_enable_disable_alerts.php:214 +#: ../../godmode/massive/massive_add_action_alerts.php:242 +#: ../../godmode/admin_access_logs.php:95 +#: ../../godmode/admin_access_logs.php:210 +#: ../../godmode/alerts/alert_list.list.php:736 +#: ../../godmode/alerts/alert_view.php:419 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3545 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3566 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../godmode/events/event_filter.php:141 +#: ../../mobile/operation/tactical.php:346 +#: ../../include/functions_reporting_html.php:2678 +#: ../../include/functions_reporting_html.php:5192 +#: ../../include/functions.php:3053 ../../include/ajax/alert_list.ajax.php:280 +#: ../../include/ajax/alert_list.ajax.php:305 +#: ../../include/ajax/alert_list.ajax.php:476 +#: ../../include/functions_profile.php:217 +#: ../../include/class/AgentsAlerts.class.php:909 +#: ../../include/class/ModuleTemplates.class.php:891 +#: ../../include/functions_events.php:6602 +#: ../../include/functions_ui_renders.php:117 +#: ../../operation/agentes/alerts_status.php:539 +#: ../../operation/agentes/alerts_status.php:574 +#: ../../operation/agentes/alerts_status.php:609 +#: ../../operation/agentes/alerts_status.php:641 +#: ../../operation/agentes/alerts_status.functions.php:126 +#: ../../operation/snmpconsole/snmp_view.php:893 +#: ../../operation/snmpconsole/snmp_view.php:1273 +#: ../../operation/search_alerts.php:36 +#: ../../operation/events/events.build_table.php:362 +#: ../../general/logon_ok.php:246 +msgid "Action" +msgstr "Действие" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:562 +msgid "Gateway" +msgstr "Шлюз" + +#: ../../enterprise/meta/advanced/metasetup.relations.php:642 +msgid "There are no relations yet" +msgstr "Отношения еще не созданы" + +#: ../../enterprise/meta/advanced/metasetup.password.php:70 +msgid "Passwords" +msgstr "Пароли" + +#: ../../enterprise/meta/advanced/metasetup.password.php:76 +#: ../../enterprise/meta/include/functions_meta.php:613 +#: ../../enterprise/godmode/setup/setup.php:479 +#: ../../include/functions_config.php:476 +msgid "Enable password policy" +msgstr "Включить политику паролей" + +#: ../../enterprise/meta/advanced/metasetup.password.php:77 +#: ../../enterprise/meta/advanced/metasetup.password.php:119 +#: ../../enterprise/meta/advanced/metasetup.password.php:124 +#: ../../enterprise/meta/advanced/metasetup.password.php:130 +#: ../../enterprise/meta/advanced/metasetup.password.php:136 +#: ../../enterprise/meta/advanced/metasetup.password.php:140 +#: ../../enterprise/meta/advanced/metasetup.password.php:144 +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#: ../../enterprise/meta/advanced/metasetup.setup.php:153 +#: ../../enterprise/meta/advanced/metasetup.setup.php:207 +#: ../../enterprise/meta/advanced/metasetup.setup.php:223 +#: ../../enterprise/meta/advanced/metasetup.setup.php:227 +#: ../../enterprise/meta/advanced/metasetup.setup.php:289 +#: ../../enterprise/meta/advanced/metasetup.setup.php:300 +#: ../../enterprise/meta/advanced/metasetup.setup.php:322 +#: ../../enterprise/meta/advanced/metasetup.setup.php:326 +#: ../../enterprise/meta/advanced/metasetup.setup.php:348 +#: ../../enterprise/meta/advanced/metasetup.performance.php:82 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:96 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:518 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:587 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:627 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:889 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:927 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:955 +#: ../../enterprise/godmode/setup/setup_auth.php:206 +#: ../../enterprise/godmode/setup/setup_auth.php:336 +#: ../../enterprise/godmode/setup/setup_auth.php:384 +#: ../../enterprise/godmode/setup/setup_auth.php:1160 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:493 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:176 +#: ../../enterprise/godmode/reporting/visual_console_template.php:274 +#: ../../enterprise/include/functions_cron.php:736 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2272 +#: ../../godmode/update_manager/update_manager.setup.php:261 +#: ../../godmode/users/configure_user.php:1067 +#: ../../godmode/agentes/agent_conf_gis.php:125 +#: ../../godmode/massive/massive_edit_agents.php:557 +#: ../../godmode/massive/massive_edit_agents.php:724 +#: ../../godmode/massive/massive_edit_agents.php:733 +#: ../../godmode/massive/massive_edit_modules.php:604 +#: ../../godmode/massive/massive_edit_modules.php:673 +#: ../../godmode/massive/massive_edit_modules.php:713 +#: ../../godmode/massive/massive_edit_modules.php:987 +#: ../../godmode/massive/massive_edit_modules.php:1025 +#: ../../godmode/massive/massive_edit_modules.php:1053 +#: ../../godmode/alerts/alert_view.php:106 +#: ../../godmode/alerts/alert_view.php:311 +#: ../../godmode/reporting/reporting_builder.main.php:194 +#: ../../godmode/reporting/reporting_builder.php:1008 +#: ../../godmode/reporting/visual_console_builder.wizard.php:400 +#: ../../godmode/reporting/visual_console_builder.wizard.php:487 +#: ../../godmode/servers/modificar_server.php:47 +#: ../../include/functions_profile.php:276 ../../include/functions_snmp.php:390 +#: ../../operation/users/user_edit.php:321 +#: ../../operation/netflow/nf_live_view.php:452 +#: ../../operation/snmpconsole/snmp_view.php:675 +msgid "Yes" +msgstr "Да" + +#: ../../enterprise/meta/advanced/metasetup.password.php:78 +#: ../../enterprise/meta/advanced/metasetup.password.php:120 +#: ../../enterprise/meta/advanced/metasetup.password.php:125 +#: ../../enterprise/meta/advanced/metasetup.password.php:131 +#: ../../enterprise/meta/advanced/metasetup.password.php:137 +#: ../../enterprise/meta/advanced/metasetup.password.php:141 +#: ../../enterprise/meta/advanced/metasetup.password.php:145 +#: ../../enterprise/meta/advanced/metasetup.setup.php:150 +#: ../../enterprise/meta/advanced/metasetup.setup.php:154 +#: ../../enterprise/meta/advanced/metasetup.setup.php:217 +#: ../../enterprise/meta/advanced/metasetup.setup.php:224 +#: ../../enterprise/meta/advanced/metasetup.setup.php:228 +#: ../../enterprise/meta/advanced/metasetup.setup.php:290 +#: ../../enterprise/meta/advanced/metasetup.setup.php:310 +#: ../../enterprise/meta/advanced/metasetup.setup.php:323 +#: ../../enterprise/meta/advanced/metasetup.setup.php:336 +#: ../../enterprise/meta/advanced/metasetup.setup.php:358 +#: ../../enterprise/meta/advanced/metasetup.performance.php:83 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:97 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:519 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:588 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:628 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:889 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:928 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:956 +#: ../../enterprise/godmode/setup/setup.php:64 +#: ../../enterprise/godmode/setup/setup_auth.php:206 +#: ../../enterprise/godmode/setup/setup_auth.php:339 +#: ../../enterprise/godmode/setup/setup_auth.php:387 +#: ../../enterprise/godmode/setup/setup_auth.php:1163 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:495 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:178 +#: ../../enterprise/godmode/reporting/visual_console_template.php:274 +#: ../../enterprise/include/functions_cron.php:735 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2272 +#: ../../godmode/update_manager/update_manager.setup.php:262 +#: ../../godmode/users/configure_user.php:1068 +#: ../../godmode/agentes/agent_conf_gis.php:126 +#: ../../godmode/massive/massive_edit_agents.php:558 +#: ../../godmode/massive/massive_edit_agents.php:725 +#: ../../godmode/massive/massive_edit_agents.php:734 +#: ../../godmode/massive/massive_edit_modules.php:605 +#: ../../godmode/massive/massive_edit_modules.php:674 +#: ../../godmode/massive/massive_edit_modules.php:714 +#: ../../godmode/massive/massive_edit_modules.php:987 +#: ../../godmode/massive/massive_edit_modules.php:1026 +#: ../../godmode/massive/massive_edit_modules.php:1054 +#: ../../godmode/alerts/alert_view.php:106 +#: ../../godmode/alerts/alert_view.php:311 +#: ../../godmode/alerts/alert_view.php:388 ../../godmode/setup/news.php:287 +#: ../../godmode/reporting/reporting_builder.main.php:204 +#: ../../godmode/reporting/reporting_builder.php:1010 +#: ../../godmode/reporting/visual_console_builder.wizard.php:410 +#: ../../godmode/reporting/visual_console_builder.wizard.php:488 +#: ../../godmode/servers/modificar_server.php:45 +#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200 +#: ../../include/functions_profile.php:276 ../../include/functions_snmp.php:382 +#: ../../include/functions_events.php:4906 +#: ../../include/functions_events.php:4911 +#: ../../operation/users/user_edit.php:322 +#: ../../operation/netflow/nf_live_view.php:462 +#: ../../operation/snmpconsole/snmp_view.php:676 +msgid "No" +msgstr "Нет" + +#: ../../enterprise/meta/advanced/metasetup.password.php:98 +#: ../../enterprise/meta/include/functions_meta.php:622 +#: ../../enterprise/godmode/setup/setup.php:488 +#: ../../include/functions_config.php:480 +msgid "Min. size password" +msgstr "Минимальный размер пароля" + +#: ../../enterprise/meta/advanced/metasetup.password.php:99 +#: ../../enterprise/godmode/setup/setup.php:496 +msgid " Caracters" +msgstr " Символы" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +#: ../../enterprise/meta/include/functions_meta.php:649 +#: ../../enterprise/godmode/setup/setup.php:517 +#: ../../include/functions_config.php:484 +msgid "Password expiration" +msgstr "Срок действия пароля" + +#: ../../enterprise/meta/advanced/metasetup.password.php:102 +msgid "Set 0 if never expire." +msgstr "Установите 0, если никогда не истекает." + +#: ../../enterprise/meta/advanced/metasetup.password.php:103 +#: ../../enterprise/godmode/setup/setup.php:525 +msgid " Days" +msgstr " Дни" + +#: ../../enterprise/meta/advanced/metasetup.password.php:106 +#: ../../enterprise/meta/include/functions_meta.php:667 +#: ../../enterprise/godmode/setup/setup.php:537 +#: ../../include/functions_config.php:492 +msgid "User blocked if login fails" +msgstr "Пользователь блокируется, если не удалось войти в систему" + +#: ../../enterprise/meta/advanced/metasetup.password.php:107 +#: ../../enterprise/godmode/setup/setup.php:545 +msgid " Minutes" +msgstr " Минуты" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +#: ../../enterprise/meta/include/functions_meta.php:676 +#: ../../enterprise/godmode/setup/setup.php:548 +#: ../../include/functions_config.php:496 +msgid "Number of failed login attempts" +msgstr "Количество неудачных попыток входа" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +msgid "Two attempts minimum" +msgstr "Две попытки минимум" + +#: ../../enterprise/meta/advanced/metasetup.password.php:111 +#: ../../enterprise/godmode/setup/setup.php:556 +msgid " Attempts" +msgstr " Попытки" + +#: ../../enterprise/meta/advanced/metasetup.password.php:114 +#: ../../enterprise/meta/include/functions_meta.php:696 +#: ../../enterprise/godmode/setup/setup.php:577 +#: ../../include/functions_config.php:516 +msgid "Compare previous password" +msgstr "Сравнить предыдущий пароль" + +#: ../../enterprise/meta/advanced/metasetup.password.php:118 +#: ../../enterprise/meta/include/functions_meta.php:685 +#: ../../enterprise/godmode/setup/setup.php:568 +#: ../../include/functions_config.php:512 +msgid "Enable password history" +msgstr "Включить историю паролей" + +#: ../../enterprise/meta/advanced/metasetup.password.php:123 +#: ../../enterprise/meta/include/functions_meta.php:706 +#: ../../enterprise/godmode/setup/setup.php:559 +#: ../../include/functions_config.php:508 +msgid "Apply password policy to admin users" +msgstr "Применить политику паролей к пользователям-администраторам" + +#: ../../enterprise/meta/advanced/metasetup.password.php:129 +#: ../../enterprise/meta/include/functions_meta.php:658 +#: ../../enterprise/godmode/setup/setup.php:528 +#: ../../include/functions_config.php:488 +msgid "Force change password on first login" +msgstr "Обязательная смена пароля при первом входе в систему" + +#: ../../enterprise/meta/advanced/metasetup.password.php:135 +#: ../../enterprise/meta/include/functions_meta.php:631 +#: ../../enterprise/godmode/setup/setup.php:499 +#: ../../include/functions_config.php:500 +msgid "Password must have numbers" +msgstr "Пароль должен содержать числа" + +#: ../../enterprise/meta/advanced/metasetup.password.php:139 +#: ../../enterprise/meta/include/functions_meta.php:640 +#: ../../enterprise/godmode/setup/setup.php:508 +#: ../../include/functions_config.php:504 +msgid "Password must have symbols" +msgstr "Пароль должен содержать символы" + +#: ../../enterprise/meta/advanced/metasetup.password.php:143 +#: ../../enterprise/meta/include/functions_meta.php:716 +#: ../../enterprise/godmode/setup/setup.php:589 +#: ../../include/functions_config.php:520 +msgid "Activate reset password" +msgstr "Активировать пароль восстановления" + +#: ../../enterprise/meta/advanced/agents_setup.php:57 +#: ../../enterprise/meta/advanced/policymanager.php:51 +#: ../../enterprise/meta/advanced/synchronizing.php:32 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:44 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:38 +#: ../../enterprise/meta/monitoring/group_view.php:51 +#: ../../enterprise/meta/monitoring/tactical.php:36 +#: ../../enterprise/meta/index.php:827 ../../enterprise/meta/agentsearch.php:29 +#: ../../enterprise/meta/general/logon_ok.php:16 +#: ../../godmode/netflow/nf_item_list.php:58 +#: ../../godmode/netflow/nf_edit.php:53 +#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../operation/agentes/ver_agente.php:1311 +#: ../../operation/netflow/nf_live_view.php:141 +msgid "Main" +msgstr "Главное" + +#: ../../enterprise/meta/advanced/agents_setup.php:61 +msgid "Propagation" +msgstr "Распространение" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 +msgid "Cannot create an unnamed rule." +msgstr "Невозможно создание правила без имени." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 +msgid "Error creating provisioning rule." +msgstr "Ошибка создания правила конфигурации." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 +msgid "Error updating provisioning rule." +msgstr "Ошибка обновления правила конфигурации." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 +msgid "Error deleting provisioning rule." +msgstr "Ошибка удаления правила конфигурации." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 +msgid "There was an error rule when moving the provisioning." +msgstr "Появилась ошибка в правиле при перемещении конфигурации." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:177 +msgid "Create rule" +msgstr "Создать правило" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 +msgid "Edit rule" +msgstr "Редактировать правило" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:79 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:88 +#: ../../godmode/update_manager/update_manager.setup.php:127 +#: ../../godmode/update_manager/update_manager.setup.php:178 +msgid "Succesful Update the url config vars." +msgstr "Успешное обновление конфигурации переменных URL." + +#: ../../enterprise/meta/advanced/metasetup.mail.php:80 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:89 +#: ../../godmode/update_manager/update_manager.setup.php:128 +#: ../../godmode/update_manager/update_manager.setup.php:179 +msgid "Unsuccesful Update the url config vars." +msgstr "Безуспешное обновление конфигурации переменных URL." + +#: ../../enterprise/meta/advanced/metasetup.mail.php:98 +msgid "" +"Please notice that some providers like Gmail or Office365 need to " +"setup/enable manually external connections using SMTP and you need to use " +"STARTTLS on port 587.\n" +"\n" +"If you have manual settings in your pandora_server.conf, please note these " +"settings will ignore this console setup." +msgstr "" +"Учитывайте, что для некоторых провайдеров, например, Gmail или Office365 " +"необходимо установить/активировать вручную внешние связи, используя SMTP, а " +"вам нужно использовать STARTTLS в порте 587.\n" +"\n" +"Если у вас есть ручные настройки pandora_server.conf, учитывайте, что они " +"будут игнорировать эту установку консоли" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:104 +#: ../../godmode/setup/setup_general.php:516 +msgid "Mail configuration" +msgstr "Настройка почты" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:109 +#: ../../include/functions_config.php:350 +msgid "From dir" +msgstr "От dir" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:112 +#: ../../godmode/setup/setup_general.php:536 +#: ../../include/functions_config.php:354 +msgid "From name" +msgstr "От имени" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:115 +#: ../../include/functions_config.php:346 +msgid "Server SMTP" +msgstr "Сервер SMTP" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:118 +#: ../../include/functions_config.php:358 +msgid "Port SMTP" +msgstr "Порт SMTP" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:121 +#: ../../godmode/setup/setup_general.php:577 +#: ../../include/functions_config.php:366 +msgid "Email user" +msgstr "Пользователь почты" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:124 +#: ../../godmode/setup/setup_general.php:587 +#: ../../include/functions_config.php:370 +msgid "Email password" +msgstr "Пароль почты" + +#: ../../enterprise/meta/advanced/metasetup.php:52 +msgid "Consoles Setup" +msgstr "Настройка Консолей" + +#: ../../enterprise/meta/advanced/metasetup.php:60 +#: ../../enterprise/meta/advanced/metasetup.php:197 +msgid "General setup" +msgstr "Общие настройки" + +#: ../../enterprise/meta/advanced/metasetup.php:68 +#: ../../enterprise/meta/advanced/metasetup.php:200 +msgid "Passwords setup" +msgstr "Настройка паролей" + +#: ../../enterprise/meta/advanced/metasetup.php:77 +#: ../../enterprise/meta/advanced/metasetup.php:204 +#: ../../enterprise/meta/include/functions_meta.php:575 +#: ../../enterprise/meta/general/main_header.php:143 +#: ../../enterprise/operation/log/elasticsearch_interface.php:30 +#: ../../enterprise/operation/log/log_viewer.php:376 +#: ../../enterprise/operation/log/log_viewer.php:408 +#: ../../enterprise/operation/menu.php:181 +msgid "Log viewer" +msgstr "Средство просмотра журнала" + +#: ../../enterprise/meta/advanced/metasetup.php:88 +#: ../../enterprise/meta/advanced/metasetup.php:208 ../../godmode/menu.php:324 +#: ../../godmode/setup/setup.php:110 ../../godmode/setup/setup.php:252 +msgid "Authentication" +msgstr "Аутентификация" + +#: ../../enterprise/meta/advanced/metasetup.php:98 +#: ../../enterprise/meta/advanced/metasetup.php:212 +msgid "Visual setup" +msgstr "Визуальная настройка" + +#: ../../enterprise/meta/advanced/metasetup.php:106 +#: ../../enterprise/meta/advanced/metasetup.php:216 +msgid "Performance setup" +msgstr "Настройка производительности" + +#: ../../enterprise/meta/advanced/metasetup.php:114 +#: ../../enterprise/meta/advanced/metasetup.php:220 ../../godmode/menu.php:392 +#: ../../godmode/setup/file_manager.php:28 +msgid "File manager" +msgstr "Менеджер файлов" + +#: ../../enterprise/meta/advanced/metasetup.php:122 +#: ../../enterprise/meta/advanced/metasetup.php:224 +msgid "Strings translation" +msgstr "Перевод строк" + +#: ../../enterprise/meta/advanced/metasetup.php:130 +#: ../../enterprise/meta/advanced/metasetup.php:228 +msgid "Mail" +msgstr "Почта" + +#: ../../enterprise/meta/advanced/metasetup.php:142 +msgid "Relations rules" +msgstr "Правила отношений" + +#: ../../enterprise/meta/advanced/metasetup.php:155 +msgid "Options Update Manager" +msgstr "Опции Менеджера обновлений" + +#: ../../enterprise/meta/advanced/metasetup.php:163 +#: ../../enterprise/meta/advanced/metasetup.php:240 +msgid "Offline Update Manager" +msgstr "Оффлайн Менеджер обновлений" + +#: ../../enterprise/meta/advanced/metasetup.php:171 +#: ../../enterprise/meta/advanced/metasetup.php:244 +msgid "Online Update Manager" +msgstr "Онлайн Менеджер обновлений" + +#: ../../enterprise/meta/advanced/metasetup.php:192 +msgid "Consoles setup" +msgstr "Настройка консолей" + +#: ../../enterprise/meta/advanced/metasetup.php:232 +msgid "Relations Rules" +msgstr "Правила Отношений" + +#: ../../enterprise/meta/advanced/metasetup.php:236 +msgid "Online Update Options" +msgstr "Опции обновления онлайн" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:41 +#: ../../enterprise/meta/advanced/metasetup.auth.php:24 +msgid "" +"Be aware that group synchronization can change the group configuration of " +"the node" +msgstr "" +"Учитывайте, что групповая синхронизация может привести к групповой " +"конфигурации узла" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:77 +#: ../../enterprise/meta/advanced/synchronizing.group.php:78 +#: ../../enterprise/meta/advanced/synchronizing.group.php:97 +#: ../../enterprise/meta/advanced/synchronizing.group.php:98 +msgid "Open for more details" +msgstr "Открыть больше деталей" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:86 +#, php-format +msgid "Error creating %s groups" +msgstr "Ошибка при создании %s групп" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:106 +#, php-format +msgid "Error updating %s groups" +msgstr "Ошибка при обновлении%s групп" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:117 +#: ../../enterprise/meta/advanced/synchronizing.group.php:118 +msgid "Open for more details in creation" +msgstr "Открыть, чтобы увидеть больше деталей о создании" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:128 +#: ../../enterprise/meta/advanced/synchronizing.group.php:129 +msgid "Open for more details in update" +msgstr "Открыть, чтобы увидеть больше деталей об обновлении" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:137 +#, php-format +msgid "Error creating/updating %s/%s groups" +msgstr "Ошибка при создании/обновлении %s/%s групп" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:149 +#, php-format +msgid "Created %s / Updated %s groups (" +msgstr "Создано %s / Обновлено %s групп (" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:158 +msgid "None update or create group" +msgstr "Нет обновления и создания групп" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:170 +msgid "Synchronizing Groups" +msgstr "Синхронизация групп" + +#: ../../enterprise/meta/advanced/synchronizing.group.php:188 +#: ../../enterprise/godmode/policies/policy_agents.php:593 +#: ../../enterprise/godmode/policies/policy_agents.php:1052 +#: ../../enterprise/godmode/setup/setup_auth.php:228 +#: ../../enterprise/godmode/setup/setup_auth.php:507 +#: ../../enterprise/godmode/setup/setup_auth.php:1285 +#: ../../extensions/files_repo/files_repo_form.php:55 +#: ../../extensions/module_groups.php:299 +#: ../../godmode/reporting/visual_console_builder.wizard.php:382 +#: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57 +#: ../../mobile/operation/groups.php:77 +#: ../../include/functions_networkmap.php:1314 +#: ../../include/functions_maps.php:46 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:216 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:295 +#: ../../include/lib/Dashboard/Widgets/events_list.php:420 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:355 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 +#: ../../operation/tree.php:72 +#: ../../operation/agentes/pandora_networkmap.php:698 +msgid "Groups" +msgstr "Группы" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:312 #, php-format msgid "Error updating user %s" msgstr "Ошибка обновления пользователя %s" -#: ../../enterprise/meta/advanced/synchronizing.user.php:268 +#: ../../enterprise/meta/advanced/synchronizing.user.php:316 #, php-format msgid "Updated user %s" msgstr "Обновленный пользователь %s" -#: ../../enterprise/meta/advanced/synchronizing.user.php:279 +#: ../../enterprise/meta/advanced/synchronizing.user.php:328 #, php-format msgid "Error creating user %s" msgstr "Ошибка создания пользователя %s" -#: ../../enterprise/meta/advanced/synchronizing.user.php:283 +#: ../../enterprise/meta/advanced/synchronizing.user.php:332 #, php-format msgid "Created user %s" msgstr "Созданный пользователь %s" -#: ../../enterprise/meta/advanced/synchronizing.user.php:478 +#: ../../enterprise/meta/advanced/synchronizing.user.php:534 +#, php-format +msgid "" +"There are groups that not exist in node. The followings elements " +"groups/profiles/user profiles were created/updated sucessfully (%d/%d/%d)" +msgstr "" +"Есть группы, которые не существуют в узле. Следующие элементы " +"группы/профили/пользователи профилей были созданы/обновлены успешно " +"(%d/%d/%d)" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:543 #, php-format msgid "" "Error creating/updating the followings elements groups/profiles/user " "profiles (%d/%d/%d)" msgstr "" -"Ошибка при создании / обновлении следующих элементов группы / профили / " -"профили пользователей (%d/%d/%d)" +"Ошибка при создании/обновлении следующих элементов группы/профили/профили " +"пользователей (%d/%d/%d)" -#: ../../enterprise/meta/advanced/synchronizing.user.php:483 +#: ../../enterprise/meta/advanced/synchronizing.user.php:555 #, php-format msgid "" "The followings elements groups/profiles/user profiles were created/updated " "sucessfully (%d/%d/%d)" msgstr "" -"Следующие элементы группы / профили / профили пользователей были созданы / " -"обновлены успешно (%d/%d/%d)" +"Следующие элементы группы/профили/профили пользователей были " +"созданы/обновлены успешно (%d/%d/%d)" -#: ../../enterprise/meta/advanced/synchronizing.user.php:501 +#: ../../enterprise/meta/advanced/synchronizing.user.php:577 msgid "Synchronizing Users" -msgstr "" +msgstr "Синхронизация Пользователей" -#: ../../enterprise/meta/advanced/synchronizing.user.php:511 -#: ../../include/functions_reporting.php:5643 -#: ../../operation/search_results.php:83 -#: ../../godmode/massive/massive_delete_profiles.php:104 -#: ../../godmode/massive/massive_add_profiles.php:90 +#: ../../enterprise/meta/advanced/synchronizing.user.php:587 +#: ../../godmode/massive/massive_delete_profiles.php:122 +#: ../../godmode/massive/massive_add_profiles.php:118 +#: ../../include/functions_reporting.php:10558 +#: ../../operation/search_results.php:92 msgid "Users" msgstr "Пользователи" -#: ../../enterprise/meta/advanced/synchronizing.user.php:523 -#: ../../enterprise/godmode/agentes/inventory_manager.php:172 -#: ../../enterprise/godmode/agentes/inventory_manager.php:235 +#: ../../enterprise/meta/advanced/synchronizing.user.php:599 +#: ../../enterprise/godmode/agentes/inventory_manager.php:219 +#: ../../enterprise/include/functions_ui.php:92 msgid "Target" msgstr "Цель" -#: ../../enterprise/meta/advanced/synchronizing.user.php:529 -#: ../../enterprise/meta/general/main_header.php:372 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:107 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:223 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:313 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:482 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:555 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:224 -#: ../../enterprise/godmode/alerts/alert_events.php:513 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:207 -#: ../../enterprise/godmode/policies/policy_alerts.php:509 -#: ../../enterprise/godmode/policies/policy_alerts.php:513 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:328 -#: ../../extensions/insert_data.php:163 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 -#: ../../godmode/gis_maps/configure_gis_map.php:578 -#: ../../godmode/alerts/configure_alert_template.php:584 -#: ../../godmode/alerts/alert_list.builder.php:77 -#: ../../godmode/alerts/alert_list.builder.php:95 -#: ../../godmode/massive/massive_delete_alerts.php:208 -#: ../../godmode/massive/massive_delete_modules.php:412 -#: ../../godmode/massive/massive_delete_modules.php:469 -#: ../../godmode/massive/massive_copy_modules.php:95 -#: ../../godmode/massive/massive_add_alerts.php:176 -#: ../../godmode/massive/massive_edit_modules.php:255 -#: ../../godmode/massive/massive_edit_modules.php:296 -#: ../../general/header.php:201 +#: ../../enterprise/meta/advanced/synchronizing.user.php:609 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:239 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:336 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:503 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:574 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:110 +#: ../../enterprise/meta/general/main_header.php:563 +#: ../../enterprise/godmode/policies/policy_alerts.php:584 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:391 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 +#: ../../enterprise/godmode/massive/massive_edit_services.php:800 +#: ../../enterprise/godmode/massive/massive_edit_services.php:812 +#: ../../enterprise/godmode/massive/massive_edit_services.php:824 +#: ../../enterprise/godmode/massive/massive_edit_services.php:836 +#: ../../enterprise/godmode/alerts/alert_events.php:636 +#: ../../enterprise/godmode/services/services.service.php:834 +#: ../../enterprise/godmode/services/services.service.php:846 +#: ../../enterprise/godmode/services/services.service.php:858 +#: ../../enterprise/godmode/services/services.service.php:870 +#: ../../extensions/insert_data.php:183 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:146 +#: ../../godmode/massive/massive_copy_modules.php:137 +#: ../../godmode/massive/massive_delete_modules.php:329 +#: ../../godmode/massive/massive_delete_modules.php:464 +#: ../../godmode/massive/massive_add_alerts.php:271 +#: ../../godmode/massive/massive_delete_alerts.php:262 +#: ../../godmode/massive/massive_edit_modules.php:306 +#: ../../godmode/massive/massive_edit_modules.php:419 +#: ../../godmode/alerts/alert_list.builder.php:81 +#: ../../godmode/alerts/alert_list.builder.php:155 +#: ../../godmode/setup/setup_integria.php:358 +#: ../../godmode/setup/setup_integria.php:376 +#: ../../godmode/setup/setup_integria.php:405 +#: ../../godmode/setup/setup_integria.php:423 +#: ../../godmode/setup/setup_integria.php:481 +#: ../../godmode/setup/setup_integria.php:499 +#: ../../godmode/setup/setup_integria.php:528 +#: ../../godmode/setup/setup_integria.php:546 +#: ../../include/class/AgentsAlerts.class.php:347 +#: ../../operation/incidents/configure_integriaims_incident.php:221 +#: ../../operation/incidents/configure_integriaims_incident.php:237 +#: ../../operation/incidents/configure_integriaims_incident.php:283 +#: ../../general/header.php:266 msgid "Select" -msgstr "Выбор" +msgstr "Выбрать" -#: ../../enterprise/meta/advanced/synchronizing.user.php:533 +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 msgid "Profile mode" msgstr "Режим профиля" -#: ../../enterprise/meta/advanced/synchronizing.user.php:533 +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 msgid "Profile synchronization mode." msgstr "Режим синхронизации профиля." -#: ../../enterprise/meta/advanced/synchronizing.user.php:534 +#: ../../enterprise/meta/advanced/synchronizing.user.php:614 msgid "New profile" msgstr "Новый профиль" -#: ../../enterprise/meta/advanced/synchronizing.user.php:536 +#: ../../enterprise/meta/advanced/synchronizing.user.php:614 msgid "" "The selected user profile will be added to the selected users into the target" msgstr "" +"Выбранный профиль пользователя будет добавлен к выбранным пользователям в " +"цель" -#: ../../enterprise/meta/advanced/synchronizing.user.php:537 +#: ../../enterprise/meta/advanced/synchronizing.user.php:614 msgid "Copy profile" msgstr "Копировать профиль" -#: ../../enterprise/meta/advanced/synchronizing.user.php:539 +#: ../../enterprise/meta/advanced/synchronizing.user.php:614 msgid "" "The target user profiles will be replaced with the source user profiles" msgstr "" +"Целевые профили пользователей будут заменены на исходные профили " +"пользователей" -#: ../../enterprise/meta/advanced/synchronizing.user.php:555 -#: ../../godmode/menu.php:67 ../../godmode/users/profile_list.php:302 +#: ../../enterprise/meta/advanced/synchronizing.user.php:616 +#: ../../enterprise/meta/advanced/synchronizing.user.php:648 +msgid "Create groups if not exist" +msgstr "Создать группы, если они не существуют" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:616 +#: ../../enterprise/meta/advanced/synchronizing.user.php:648 +msgid "Create groups assigned to user profile if not exist in node" +msgstr "" +"Создать группы, приписанные к профилю пользователя, если они не существуют в " +"узле" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:645 +#: ../../enterprise/godmode/setup/setup_auth.php:227 +#: ../../enterprise/godmode/setup/setup_auth.php:506 +#: ../../enterprise/godmode/setup/setup_auth.php:1284 +#: ../../godmode/users/profile_list.php:290 ../../godmode/menu.php:136 msgid "Profiles" msgstr "Профили" -#: ../../enterprise/meta/advanced/metasetup.php:55 -msgid "Consoles Setup" -msgstr "Настройка Консолей" +#: ../../enterprise/meta/advanced/policymanager.apply.php:129 +#: ../../enterprise/godmode/policies/policy.php:196 +#: ../../enterprise/godmode/policies/policy.php:244 +msgid "Duplicated or incompatible operation in the queue" +msgstr "Дублированные или несовместимые операции в очереди" -#: ../../enterprise/meta/advanced/metasetup.php:60 -#: ../../enterprise/meta/advanced/metasetup.php:106 -msgid "General setup" -msgstr "Общие настройки" +#: ../../enterprise/meta/advanced/policymanager.apply.php:137 +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/godmode/policies/policy.php:184 +#: ../../enterprise/godmode/policies/policy.php:239 +msgid "Operation successfully added to the queue" +msgstr "Операция успешно добавлена к очереди" -#: ../../enterprise/meta/advanced/metasetup.php:65 -#: ../../enterprise/meta/advanced/metasetup.php:109 -msgid "Passwords setup" -msgstr "Настройка паролей" +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +msgid "Only database" +msgstr "Только база данных" -#: ../../enterprise/meta/advanced/metasetup.php:70 -#: ../../enterprise/meta/advanced/metasetup.php:112 ../../godmode/menu.php:242 -#: ../../godmode/setup/setup.php:82 ../../godmode/setup/setup.php:112 -msgid "Authentication" -msgstr "Аутентификация" +#: ../../enterprise/meta/advanced/policymanager.apply.php:145 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +#: ../../enterprise/meta/advanced/policymanager.apply.php:153 +#: ../../enterprise/godmode/policies/policy.php:190 +#: ../../enterprise/godmode/policies/policy.php:240 +msgid "Operation cannot be added to the queue" +msgstr "Операция не может быть добавлена к очереди" -#: ../../enterprise/meta/advanced/metasetup.php:75 -#: ../../enterprise/meta/advanced/metasetup.php:115 -msgid "Visual setup" -msgstr "Визуальная настройка" +#: ../../enterprise/meta/advanced/policymanager.apply.php:186 +msgid "Apply Policies" +msgstr "Применить политики" -#: ../../enterprise/meta/advanced/metasetup.php:80 -#: ../../enterprise/meta/advanced/metasetup.php:118 -msgid "Performance setup" -msgstr "Настройка производительности" +#: ../../enterprise/meta/advanced/policymanager.apply.php:198 +#: ../../enterprise/include/functions_groups.php:33 +#: ../../enterprise/operation/agentes/ver_agente.php:236 +#: ../../include/functions_networkmap.php:1318 +#: ../../include/functions_maps.php:42 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:333 +#: ../../operation/tree.php:109 ../../operation/search_results.php:170 +#: ../../operation/search_main.php:73 +msgid "Policies" +msgstr "Политики" -#: ../../enterprise/meta/advanced/metasetup.php:85 -#: ../../enterprise/meta/advanced/metasetup.php:121 ../../godmode/menu.php:313 -#: ../../godmode/setup/file_manager.php:30 -msgid "File manager" -msgstr "Менеджер файлов" +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 +#: ../../godmode/menu.php:274 +#: ../../godmode/reporting/visual_console_builder.wizard.php:353 +#: ../../mobile/include/functions_web.php:28 +msgid "Servers" +msgstr "Серверы" -#: ../../enterprise/meta/advanced/metasetup.php:90 -#: ../../enterprise/meta/advanced/metasetup.php:124 -msgid "Strings translation" -msgstr "Перевод строк" +#: ../../enterprise/meta/advanced/policymanager.apply.php:213 +#: ../../enterprise/meta/advanced/policymanager.queue.php:307 +#: ../../enterprise/godmode/policies/policy_queue.php:528 +#: ../../enterprise/godmode/policies/policy_agents.php:787 +#: ../../enterprise/godmode/policies/policy_agents.php:1166 +#: ../../enterprise/include/functions_update_manager.php:247 +#: ../../godmode/update_manager/update_manager.offline.php:117 +#: ../../include/functions_visual_map_editor.php:641 +#: ../../include/functions_update_manager.php:1450 +msgid "Apply" +msgstr "Применить" -#: ../../enterprise/meta/advanced/metasetup.php:95 -#: ../../enterprise/meta/advanced/metasetup.php:127 -msgid "Offline Update Manager" -msgstr "" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:97 +#: ../../enterprise/include/class/Omnishell.class.php:1553 +#: ../../enterprise/include/lib/Metaconsole/Node.php:86 +#: ../../enterprise/include/lib/Metaconsole/Node.php:135 +#: ../../enterprise/include/lib/Metaconsole/Node.php:186 +#: ../../enterprise/include/lib/Metaconsole/Node.php:281 +#: ../../enterprise/include/lib/Metaconsole/Node.php:334 +msgid "success" +msgstr "успешно" -#: ../../enterprise/meta/advanced/metasetup.php:102 -msgid "Consoles setup" -msgstr "Настройка консолей" - -#: ../../enterprise/meta/advanced/metasetup.password.php:47 -#: ../../enterprise/meta/advanced/metasetup.visual.php:50 -#: ../../enterprise/meta/advanced/metasetup.performance.php:47 -#: ../../enterprise/meta/advanced/metasetup.auth.php:47 -#: ../../enterprise/meta/advanced/metasetup.setup.php:51 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:103 #, php-format -msgid "Could not be update: Error in %s" -msgstr "Не может быть обновлено: Ошибка в %s" +msgid "Node %s is not recognized as metaconsole node." +msgstr "Узел %s не распознается как узел, принадлежащий метаконсоли." -#: ../../enterprise/meta/advanced/metasetup.password.php:73 -msgid "Passwords" -msgstr "Пароли" - -#: ../../enterprise/meta/advanced/metasetup.password.php:85 -#: ../../enterprise/godmode/setup/setup.php:258 -msgid " Caracters" -msgstr " Символы" - -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -#: ../../enterprise/godmode/setup/setup.php:271 -msgid "Set 0 if never expire." -msgstr "Установите 0, если никогда не истекают." - -#: ../../enterprise/meta/advanced/metasetup.password.php:102 -#: ../../enterprise/godmode/setup/setup.php:272 -msgid " Days" -msgstr " Дни" - -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -#: ../../enterprise/godmode/setup/setup.php:281 -msgid " Minutes" -msgstr " Минуты" - -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -#: ../../enterprise/godmode/setup/setup.php:285 -msgid "Two attempts minimum" -msgstr "Две попытки минимум" - -#: ../../enterprise/meta/advanced/metasetup.password.php:118 -#: ../../enterprise/godmode/setup/setup.php:286 -msgid " Attempts" -msgstr " Попытки" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:248 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:110 #, php-format -msgid "Error creating %s policies" -msgstr "Ошибка создания %s правил" +msgid "Node %s license missmatch." +msgstr "Узел %s не совпадает в лицензии." -#: ../../enterprise/meta/advanced/policymanager.sync.php:251 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:117 #, php-format -msgid "Created %s policies" -msgstr "Создано %s правил" +msgid "Cannot connect to node %s" +msgstr "Невозможно подключиться к узлу %s" -#: ../../enterprise/meta/advanced/policymanager.sync.php:256 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:124 #, php-format -msgid "Error creating/updating %s/%s policy modules" -msgstr "Ошибка создания/обновление %s/ %s модулей политики" +msgid "Unknown error synchronizing %s" +msgstr "Неизвестная ошибка синхронизации %s" -#: ../../enterprise/meta/advanced/policymanager.sync.php:259 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:134 #, php-format -msgid "Created/Updated %s/%s policy modules" -msgstr "Создано/Обновлено %s/%s модулей политики" +msgid "Synchronized %d nodes, but some failed to synchronize %s" +msgstr "Синхронизированы %d узла, но несколько не синхронизировались %s" -#: ../../enterprise/meta/advanced/policymanager.sync.php:264 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:141 #, php-format -msgid "Error deleting %s policy modules" -msgstr "Ошибка удаления %s модулей политики" +msgid "Successfully synchronized all nodes (%d)" +msgstr "Успешно синхронизированы все узлы (%d)" -#: ../../enterprise/meta/advanced/policymanager.sync.php:267 -#, php-format -msgid "Deleted %s policy modules" -msgstr "Удалено %s модулей политики" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:208 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:308 +msgid "Node synchronization process failed" +msgstr "Процесс синхронизации узла не выполнен" -#: ../../enterprise/meta/advanced/policymanager.sync.php:272 -#, php-format -msgid "Error creating %s policy alerts" -msgstr "Ошибка создания %s оповещений политики" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:275 -#, php-format -msgid "Created %s policy alerts" -msgstr "Создано %s оповещений политики" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:280 -#, php-format -msgid "Error deleting %s policy alerts" -msgstr "Ощибка удаления %s оповещений политики" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:283 -#, php-format -msgid "Deleted %s policy alerts" -msgstr "Удалено %s оповещений политики" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:74 -#: ../../enterprise/meta/advanced/synchronizing.group.php:75 -#: ../../enterprise/meta/advanced/synchronizing.group.php:87 -#: ../../enterprise/meta/advanced/synchronizing.group.php:88 -msgid "Open for more details" -msgstr "" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:78 -#, php-format -msgid "Error creating %s groups" -msgstr "" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:91 -#, php-format -msgid "Error updating %s groups" -msgstr "" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:100 -#: ../../enterprise/meta/advanced/synchronizing.group.php:101 -msgid "Open for more details in creation" -msgstr "" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:106 -#: ../../enterprise/meta/advanced/synchronizing.group.php:107 -msgid "Open for more details in update" -msgstr "" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:110 -#, php-format -msgid "Error creating/updating %s/%s groups" -msgstr "Ошибка при создании/обновление %s/%s групп" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:122 -#, php-format -msgid "Created/Updated %s/%s groups" -msgstr "Создано/Обновлено %s/%s групп" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:129 -msgid "None update or create group" -msgstr "" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:140 -msgid "Synchronizing Groups" -msgstr "" - -#: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:98 -msgid "Server deleted successfully" -msgstr "Сервер уделен успешно" - -#: ../../enterprise/meta/advanced/servers.php:42 -#: ../../godmode/servers/modificar_server.php:101 -msgid "There was a problem deleting the server" -msgstr "Проблема при удалении сервера" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:294 -#, php-format -msgid "Error creating/updating %s/%s comamnds" -msgstr "Ошибка при создании/обновление %s/%s комманд" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:297 -#, php-format -msgid "Created/Updated %s/%s commands" -msgstr "Созданы/Обновлены %s/%s комманды" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:302 -#, php-format -msgid "Error creating/updating %s/%s actions" -msgstr "Ошибка при создании/обновление %s/%s действий" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:305 -#, php-format -msgid "Created/Updated %s/%s actions" -msgstr "Создано/Обновлено %s/%s действий" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:310 -#, php-format -msgid "Error creating/updating %s/%s templates" -msgstr "Ошибка создания/ обновление %s/%s шаблонов" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:313 -#, php-format -msgid "Created/Updated %s/%s templates" -msgstr "Созданы/Обновлены %s/%s шаблоны" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:325 -msgid "Synchronizing Alerts" -msgstr "" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:76 -msgid "Visual" -msgstr "Визуальный" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:82 -#: ../../godmode/setup/setup_visuals.php:540 -msgid "Example" -msgstr "Пример" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:96 -#: ../../godmode/setup/setup_visuals.php:553 -msgid "Comparation in rollover" -msgstr "Сравнение в переключении" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:98 -#: ../../godmode/setup/setup_visuals.php:555 -msgid "Timestamp in rollover" -msgstr "Отметка времени в переключении" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:137 -#: ../../operation/users/user_edit.php:263 -#: ../../godmode/users/configure_user.php:512 -#: ../../godmode/setup/setup_visuals.php:355 -msgid "Whether to use Javascript or static PNG graphs" -msgstr "Следует ли использовать Javascript или статические графики PNG" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:141 -msgid "The number of elements retrieved for each instance in some views." -msgstr "" -"Число элементов полученных для каждого экземпляра в некоторых просмотрах." - -#: ../../enterprise/meta/advanced/metasetup.visual.php:145 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:275 -#: ../../extensions/agents_modules.php:88 -#: ../../extensions/agents_alerts.php:80 ../../include/functions_html.php:711 -#: ../../include/functions.php:404 ../../include/functions.php:538 -#: ../../include/functions_netflow.php:1131 -#: ../../include/functions_netflow.php:1141 -#: ../../include/functions_netflow.php:1158 -#: ../../include/functions_netflow.php:1166 -#: ../../include/functions_netflow.php:1190 -#: ../../godmode/snmpconsole/snmp_alert.php:832 -#: ../../godmode/alerts/configure_alert_action.php:144 -#: ../../godmode/setup/setup_visuals.php:599 -msgid "seconds" -msgstr "секунд" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:146 -#: ../../enterprise/extensions/vmware/functions.php:21 -#: ../../enterprise/extensions/vmware/functions.php:22 -#: ../../enterprise/extensions/vmware/functions.php:23 -#: ../../include/functions_html.php:712 ../../include/functions.php:408 -#: ../../include/functions.php:542 ../../godmode/setup/setup_visuals.php:600 -msgid "minutes" -msgstr "минут(ы)" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:147 -#: ../../include/functions_html.php:713 ../../include/functions.php:409 -#: ../../include/functions.php:543 ../../godmode/setup/setup_visuals.php:601 -msgid "hours" -msgstr "часов" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:148 -#: ../../include/functions_html.php:714 ../../include/functions.php:405 -#: ../../include/functions.php:539 ../../godmode/db/db_main.php:82 -#: ../../godmode/db/db_main.php:88 ../../godmode/setup/setup_visuals.php:602 -msgid "days" -msgstr "дней" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:149 -#: ../../include/functions_html.php:716 ../../include/functions.php:406 -#: ../../include/functions.php:540 ../../godmode/setup/setup_visuals.php:603 -msgid "months" -msgstr "месяцы" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:150 -#: ../../include/functions_html.php:717 ../../include/functions.php:407 -#: ../../include/functions.php:541 ../../godmode/setup/setup_visuals.php:604 -msgid "years" -msgstr "годы" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:151 -#: ../../godmode/setup/setup_visuals.php:605 -msgid "Add new custom value to intervals" -msgstr "Добавить новые пользовательские значения к интервалам" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:169 -#: ../../godmode/setup/setup_visuals.php:405 -msgid "Custom report front page" -msgstr "" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:169 -#: ../../godmode/setup/setup_visuals.php:407 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:208 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:308 msgid "" -"Custom report front page. It will be applied to all reports and templates by " -"default." +"If you are trying to migrate this node to a new metaconsole, please use the " +"form available at Settings > Enterprise at node console." msgstr "" -#: ../../enterprise/meta/advanced/metasetup.visual.php:175 -#: ../../include/functions_config.php:484 -#: ../../godmode/setup/setup_visuals.php:525 -msgid "Show the group name instead the group icon." -msgstr "" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:218 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:83 +msgid "Could not be update" +msgstr "Не может быть обновлено" -#: ../../enterprise/meta/advanced/metasetup.visual.php:219 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:121 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:87 -#: ../../godmode/setup/setup_visuals.php:460 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:258 +msgid "Could not be create, duplicated register found." +msgstr "Не удалось создать, найден дублирующий регистр." + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:318 +#: ../../enterprise/meta/advanced/links.php:46 +#: ../../enterprise/meta/advanced/cron_main.php:154 +#: ../../enterprise/meta/advanced/cron_main.php:198 +#: ../../enterprise/meta/advanced/cron_main.php:286 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76 +#: ../../enterprise/godmode/alerts/alert_events.php:400 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:220 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:233 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:282 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:301 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:381 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:398 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111 +#: ../../enterprise/include/ajax/servers.ajax.php:197 +#: ../../enterprise/include/ajax/servers.ajax.php:330 +#: ../../enterprise/operation/agentes/transactional_map.php:108 +#: ../../enterprise/tools/ipam/ipam_action.php:126 +#: ../../godmode/modules/manage_nc_groups.php:83 +#: ../../godmode/users/profile_list.php:236 +#: ../../godmode/users/configure_user.php:454 +#: ../../godmode/agentes/configurar_agente.php:872 +#: ../../godmode/agentes/planned_downtime.editor.php:414 +#: ../../godmode/snmpconsole/snmp_alert.php:277 +#: ../../godmode/snmpconsole/snmp_filters.php:143 +#: ../../godmode/alerts/alert_commands.php:557 +#: ../../godmode/alerts/configure_alert_template.php:509 +#: ../../godmode/alerts/alert_special_days.php:172 +#: ../../godmode/alerts/alert_list.php:178 ../../godmode/setup/news.php:66 +#: ../../godmode/setup/gis.php:44 ../../godmode/setup/links.php:41 +#: ../../include/functions_alerts.php:2876 +#: ../../include/functions_planned_downtimes.php:114 +#: ../../include/functions_planned_downtimes.php:832 +msgid "Successfully created" +msgstr "Успешно создано" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:319 +#: ../../enterprise/godmode/modules/local_components.php:108 +#: ../../enterprise/godmode/modules/local_components.php:273 +#: ../../enterprise/godmode/policies/policies.php:223 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:95 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 +#: ../../enterprise/godmode/alerts/alert_events.php:400 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:123 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81 +#: ../../enterprise/include/ajax/servers.ajax.php:198 +#: ../../enterprise/operation/agentes/transactional_map.php:109 +#: ../../enterprise/tools/ipam/ipam_action.php:120 +#: ../../godmode/modules/manage_nc_groups.php:84 +#: ../../godmode/modules/manage_network_components.php:192 +#: ../../godmode/modules/manage_network_components.php:401 +#: ../../godmode/users/configure_user.php:455 +#: ../../godmode/agentes/configurar_agente.php:356 +#: ../../godmode/agentes/configurar_agente.php:867 +#: ../../godmode/agentes/planned_downtime.editor.php:404 +#: ../../godmode/alerts/alert_commands.php:544 +#: ../../godmode/alerts/configure_alert_template.php:159 +#: ../../godmode/alerts/configure_alert_template.php:500 +#: ../../godmode/alerts/alert_special_days.php:167 +#: ../../godmode/alerts/alert_list.php:165 ../../godmode/setup/news.php:67 +#: ../../godmode/setup/gis.php:46 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4915 +#: ../../include/functions_alerts.php:2877 +#: ../../include/functions_planned_downtimes.php:112 +#: ../../include/functions_planned_downtimes.php:827 +#: ../../operation/agentes/pandora_networkmap.php:126 +#: ../../operation/agentes/pandora_networkmap.php:367 +msgid "Could not be created" +msgstr "Не может быть создано" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:335 +msgid "Successfully delete" +msgstr "Успешно удалено" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:336 +msgid "Could not be delete" +msgstr "Не может быть удалено" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:352 +#: ../../enterprise/godmode/policies/policy_alerts.php:97 +#: ../../enterprise/godmode/policies/policy_modules.php:499 +#: ../../enterprise/godmode/alerts/alert_events_list.php:254 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:144 +#: ../../godmode/users/user_list.php:324 +#: ../../godmode/agentes/configurar_agente.php:2294 +#: ../../godmode/agentes/modificar_agente.php:198 +#: ../../godmode/massive/massive_enable_disable_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:341 +#: ../../include/ajax/alert_list.ajax.php:344 +msgid "Successfully enabled" +msgstr "Успешно включено" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:353 +#: ../../enterprise/godmode/policies/policy_alerts.php:98 +#: ../../enterprise/godmode/policies/policy_modules.php:500 +#: ../../enterprise/godmode/alerts/alert_events_list.php:255 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:145 +#: ../../godmode/agentes/configurar_agente.php:2295 +#: ../../godmode/agentes/modificar_agente.php:199 +#: ../../godmode/massive/massive_enable_disable_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:342 +#: ../../include/ajax/alert_list.ajax.php:346 +msgid "Could not be enabled" +msgstr "Не удается включить" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:369 +#: ../../enterprise/godmode/policies/policy_alerts.php:118 +#: ../../enterprise/godmode/policies/policy_modules.php:515 +#: ../../enterprise/godmode/alerts/alert_events_list.php:274 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:153 +#: ../../godmode/users/user_list.php:318 +#: ../../godmode/agentes/configurar_agente.php:2313 +#: ../../godmode/agentes/modificar_agente.php:241 +#: ../../godmode/massive/massive_enable_disable_alerts.php:120 +#: ../../godmode/alerts/alert_list.php:362 +#: ../../include/ajax/alert_list.ajax.php:365 +msgid "Successfully disabled" +msgstr "Успешно отключено" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:370 +#: ../../enterprise/godmode/policies/policy_alerts.php:119 +#: ../../enterprise/godmode/policies/policy_modules.php:516 +#: ../../enterprise/godmode/alerts/alert_events_list.php:275 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:154 +#: ../../godmode/agentes/configurar_agente.php:2314 +#: ../../godmode/agentes/modificar_agente.php:242 +#: ../../godmode/massive/massive_enable_disable_alerts.php:120 +#: ../../godmode/alerts/alert_list.php:363 +#: ../../include/ajax/alert_list.ajax.php:367 +msgid "Could not be disabled" +msgstr "Не удается отключить" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:437 +#, php-format +msgid "%s Metaconsole item edition" +msgstr "%s Редактирование элементов метаконсоли" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:443 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:698 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:499 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1604 +#: ../../enterprise/include/functions_reporting_csv.php:1056 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/reporting_builder.item_editor.php:989 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:274 +#: ../../godmode/reporting/visual_console_builder.wizard.php:466 +#: ../../include/functions_visual_map_editor.php:67 +#: ../../include/functions_visual_map_editor.php:193 +#: ../../include/functions_visual_map_editor.php:779 +#: ../../include/functions_visual_map_editor.php:1394 +#: ../../include/functions_visual_map.php:4230 +#: ../../include/rest-api/models/VisualConsole/Item.php:1889 +#: ../../include/rest-api/models/VisualConsole/Item.php:2083 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:285 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:304 +#: ../../include/lib/Dashboard/Widgets/module_value.php:278 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:274 +#: ../../include/lib/Dashboard/Widgets/module_status.php:294 +#: ../../operation/visual_console/view.php:312 +msgid "Label" +msgstr "Этикетка" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:443 +msgid "Custom label to identify this setup." +msgstr "Этикетка пользователя для идентификации установки" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:446 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:700 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:203 +msgid "Console URL" +msgstr "URL Консоли" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:446 +#, php-format +msgid "Full path to %s console (without index.php). Example %s" +msgstr "Полный маршрут к %s консоли (без index.php). Пример %s" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:449 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 +msgid "Auth token" +msgstr "Токен Аутентифакации" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:450 +#, php-format msgid "" -"The dir of custom logos is in your www Pandora Console in " -"\"images/custom_logo\". You can upload more files (ONLY JPEG) in upload tool " -"in console." +"Token previously configured on the destination %s console in order to use " +"delegated authentification." msgstr "" -"Каталог пользовательских логотипы в вашей www Pandora Console in " -"\"images/custom_logo\". Вы можете загружать больше файлов (только JPEG) в " -"инструменте загрузок в консоли." +"Предварительно настроенный токен на направлении %s консоли для использования " +"делегированной аутентификации." -#: ../../enterprise/meta/advanced/metasetup.performance.php:73 -#: ../../godmode/menu.php:245 ../../godmode/setup/setup.php:86 -#: ../../godmode/setup/setup.php:116 -msgid "Performance" -msgstr "Производительность" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:463 +#: ../../enterprise/meta/advanced/metasetup.setup.php:271 +#: ../../enterprise/meta/include/functions_meta.php:506 +#: ../../enterprise/meta/include/functions_meta.php:515 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:207 +#: ../../godmode/setup/setup_general.php:210 +#: ../../include/functions_config.php:212 +msgid "API password" +msgstr "API пароль" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:83 -msgid "redirected ip server in conf into source DB" -msgstr "перенаправленный IP сервер в конф исходной БД" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:474 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:230 +msgid "Console User" +msgstr "Пользователь Консоли" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:85 -msgid "created agent in destination DB" -msgstr "созданный агент в назначенной БД" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:483 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:234 +msgid "Console Password" +msgstr "Пароль Консоли" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:86 -msgid "created agent modules in destination DB" -msgstr "созданные агенты модулей в назначенной БД" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:494 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:701 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:212 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 +msgid "DB Host" +msgstr "Хост БД" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:87 -msgid "created agent alerts in destination DB" -msgstr "созданный агент оповещений в назначенной БД" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:503 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:216 +msgid "DB Name" +msgstr "Имя БД" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:88 -msgid "created alerts actions in destination DB" -msgstr "созданные агенты действий в назначенной БД" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:512 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:221 +msgid "DB User" +msgstr "Пользователь БД" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:89 -msgid "disabled agent in source DB" -msgstr "отключенный агент в исходной БД" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:521 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:225 +msgid "DB Password" +msgstr "Пароль БД" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:90 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:532 +#: ../../enterprise/include/class/DatabaseHA.class.php:952 +msgid "DB port" +msgstr "DB порт" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:543 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:630 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:635 +#: ../../enterprise/godmode/policies/policy_modules.php:408 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:324 +#: ../../enterprise/godmode/alerts/alert_events_list.php:690 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:132 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:221 +#: ../../extensions/quick_shell.php:496 +#: ../../godmode/agentes/module_manager_editor.php:719 +#: ../../godmode/agentes/agent_manager.php:843 +#: ../../godmode/agentes/agent_manager.php:977 +#: ../../godmode/massive/massive_edit_agents.php:765 +#: ../../godmode/massive/massive_add_action_alerts.php:244 +#: ../../include/functions_visual_map_editor.php:895 +#: ../../operation/events/events_list.php:1018 +#: ../../operation/events/events.php:1350 +msgid "Advanced options" +msgstr "Дополнительные опции" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:543 +msgid "Define database connection from Pandora FMS node to this Metaconsole" +msgstr "Определить связь базы данных из узла Pandora FMS к этой Метаконсоли" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:565 +msgid "Metaconsole DB Host" +msgstr "Хост БД Метаконсоли" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:574 +msgid "Metaconsole DB Name" +msgstr "Имя БД Метаконсоли" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:583 +msgid "Metaconsole DB User" +msgstr "Пользователь БД Метаконсоли" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:592 +msgid "Metaconsole DB Password" +msgstr "Пароль БД Метаконсоли" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:603 +#: ../../enterprise/godmode/setup/setup.php:250 +msgid "Metaconsole DB port" +msgstr "Порт БД Метаконсоли" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:692 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:267 +msgid "DB" +msgstr "БД" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:693 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:268 +msgid "API" +msgstr "API" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:694 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:269 +msgid "Compatibility" +msgstr "Совместимость" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:695 +msgid "Event replication" +msgstr "Репликация события" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:696 +#: ../../enterprise/include/functions_setup.php:192 +msgid "Agent cache" +msgstr "Кэш Агента" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:702 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:76 +#: ../../operation/search_agents.php:119 ../../operation/search_agents.php:120 +#: ../../operation/agentes/ver_agente.php:1291 +#: ../../operation/servers/recon_view.php:47 +msgid "Manage" +msgstr "Управлять" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:765 +msgid "New node" +msgstr "Новый узел" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:797 +msgid "Synchronize all" +msgstr "Синхронизировать все" + +#: ../../enterprise/meta/advanced/links.php:44 ../../godmode/setup/links.php:39 +msgid "There was a problem creating link" +msgstr "Ошибка при создании ссылки" + +#: ../../enterprise/meta/advanced/links.php:57 +msgid "The link was not updated, the data is identical" +msgstr "Ссылка не была обновлена, данные не изменены" + +#: ../../enterprise/meta/advanced/links.php:65 ../../godmode/setup/links.php:58 +msgid "There was a problem modifying link" +msgstr "Ошибка при изменении ссылки" + +#: ../../enterprise/meta/advanced/links.php:67 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:107 +#: ../../enterprise/godmode/policies/policy_modules.php:1243 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:367 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132 +#: ../../enterprise/godmode/alerts/alert_events.php:428 +#: ../../enterprise/godmode/alerts/alert_events_list.php:101 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:317 +#: ../../enterprise/operation/agentes/transactional_map.php:140 +#: ../../enterprise/tools/ipam/ipam_action.php:182 +#: ../../enterprise/tools/ipam/ipam_massive.php:47 +#: ../../godmode/modules/manage_nc_groups.php:112 +#: ../../godmode/users/profile_list.php:219 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/agentes/configurar_agente.php:1209 +#: ../../godmode/agentes/planned_downtime.editor.php:416 +#: ../../godmode/netflow/nf_edit_form.php:139 +#: ../../godmode/snmpconsole/snmp_alert.php:407 +#: ../../godmode/snmpconsole/snmp_filters.php:89 +#: ../../godmode/massive/massive_edit_modules.php:184 +#: ../../godmode/alerts/configure_alert_command.php:119 +#: ../../godmode/alerts/alert_templates.php:161 +#: ../../godmode/alerts/configure_alert_template.php:527 +#: ../../godmode/alerts/alert_special_days.php:249 +#: ../../godmode/alerts/alert_list.php:94 +#: ../../godmode/alerts/alert_list.php:299 ../../godmode/setup/news.php:107 +#: ../../godmode/setup/gis.php:36 ../../godmode/setup/links.php:60 +#: ../../godmode/events/event_edit_filter.php:209 +#: ../../include/functions_alerts.php:2876 +#: ../../include/functions_planned_downtimes.php:124 +#: ../../operation/snmpconsole/snmp_view.php:180 +msgid "Successfully updated" +msgstr "Успешно обновлено" + +#: ../../enterprise/meta/advanced/links.php:79 ../../godmode/setup/links.php:71 +msgid "There was a problem deleting link" +msgstr "Ошибка при удалении ссылки" + +#: ../../enterprise/meta/advanced/links.php:97 +msgid "Link Name error" +msgstr "Ошибка Имени Ссылки" + +#: ../../enterprise/meta/advanced/links.php:124 +#: ../../enterprise/meta/advanced/links.php:151 +#: ../../godmode/setup/links.php:113 ../../godmode/setup/links.php:142 +msgid "Link name" +msgstr "Имя Ссылки" + +#: ../../enterprise/meta/advanced/links.php:127 +#: ../../enterprise/godmode/policies/policy_linking.php:179 +#: ../../godmode/setup/links.php:116 +msgid "Link" +msgstr "Ссылка" + +#: ../../enterprise/meta/advanced/links.php:133 +#: ../../enterprise/meta/advanced/collections.data.php:44 +#: ../../enterprise/meta/advanced/collections.data.php:73 +#: ../../enterprise/meta/advanced/collections.data.php:95 +#: ../../enterprise/meta/advanced/collections.data.php:112 +#: ../../enterprise/meta/advanced/collections.data.php:134 +#: ../../enterprise/meta/advanced/collections.data.php:174 +#: ../../enterprise/meta/advanced/collections.editor.php:112 +#: ../../enterprise/meta/advanced/cron_main.php:458 +#: ../../enterprise/meta/advanced/collections.php:492 +#: ../../enterprise/meta/advanced/collections.php:503 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300 +#: ../../enterprise/meta/include/functions_autoprovision.php:562 +#: ../../enterprise/meta/include/functions_autoprovision.php:763 +#: ../../enterprise/extensions/backup/main.php:290 +#: ../../enterprise/godmode/modules/configure_local_component.php:661 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:459 +#: ../../enterprise/godmode/modules/local_components.php:647 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:658 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:707 +#: ../../enterprise/godmode/agentes/collections.agents.php:40 +#: ../../enterprise/godmode/agentes/collections.data.php:70 +#: ../../enterprise/godmode/agentes/collections.data.php:171 +#: ../../enterprise/godmode/agentes/collections.data.php:195 +#: ../../enterprise/godmode/agentes/collections.data.php:212 +#: ../../enterprise/godmode/agentes/collections.data.php:236 +#: ../../enterprise/godmode/agentes/collections.data.php:286 +#: ../../enterprise/godmode/agentes/collections.editor.php:158 +#: ../../enterprise/godmode/agentes/collections.php:398 +#: ../../enterprise/godmode/policies/configure_policy.php:125 +#: ../../enterprise/godmode/policies/policy_modules.php:428 +#: ../../enterprise/godmode/policies/policies.php:684 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:269 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 +#: ../../enterprise/godmode/alerts/alert_events_list.php:755 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:517 +#: ../../enterprise/godmode/services/services.service.php:901 +#: ../../enterprise/godmode/setup/edit_skin.php:296 +#: ../../enterprise/godmode/reporting/aws_view.php:167 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:237 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:595 +#: ../../enterprise/godmode/servers/manage_export.php:130 +#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3167 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366 +#: ../../enterprise/tools/ipam/ipam_list.php:257 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454 +#: ../../enterprise/tools/ipam/ipam_editor.php:276 +#: ../../godmode/modules/manage_nc_groups_form.php:93 +#: ../../godmode/modules/manage_network_templates_form.php:168 +#: ../../godmode/modules/manage_nc_groups.php:296 +#: ../../godmode/modules/manage_network_components_form.php:369 +#: ../../godmode/modules/manage_network_components.php:887 +#: ../../godmode/modules/manage_network_templates.php:297 +#: ../../godmode/groups/configure_group.php:273 +#: ../../godmode/groups/configure_modu_group.php:83 +#: ../../godmode/users/profile_list.php:413 +#: ../../godmode/users/configure_user.php:1435 +#: ../../godmode/agentes/module_manager_editor.php:761 +#: ../../godmode/agentes/planned_downtime.list.php:373 +#: ../../godmode/agentes/planned_downtime.list.php:556 +#: ../../godmode/agentes/agent_manager.php:1028 +#: ../../godmode/agentes/configure_field.php:138 +#: ../../godmode/agentes/module_manager.php:203 +#: ../../godmode/netflow/nf_edit_form.php:271 +#: ../../godmode/snmpconsole/snmp_alert.php:1155 +#: ../../godmode/snmpconsole/snmp_alert.php:1532 +#: ../../godmode/snmpconsole/snmp_filters.php:242 +#: ../../godmode/snmpconsole/snmp_filters.php:315 +#: ../../godmode/alerts/configure_alert_command.php:351 +#: ../../godmode/alerts/alert_actions.php:465 +#: ../../godmode/alerts/alert_list.list.php:942 +#: ../../godmode/alerts/alert_commands.php:720 +#: ../../godmode/alerts/configure_alert_special_days.php:155 +#: ../../godmode/alerts/alert_templates.php:475 +#: ../../godmode/alerts/configure_alert_action.php:373 +#: ../../godmode/alerts/alert_special_days.php:552 +#: ../../godmode/alerts/alert_special_days.php:574 +#: ../../godmode/alerts/alert_list.php:453 ../../godmode/setup/news.php:231 +#: ../../godmode/setup/gis.php:94 ../../godmode/setup/os.php:51 +#: ../../godmode/setup/os.php:79 ../../godmode/setup/links.php:124 +#: ../../godmode/reporting/create_container.php:333 +#: ../../godmode/reporting/map_builder.php:534 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1868 +#: ../../godmode/reporting/graph_builder.main.php:300 +#: ../../godmode/events/event_responses.editor.php:209 +#: ../../godmode/events/event_edit_filter.php:653 +#: ../../godmode/servers/plugin.php:598 ../../godmode/tag/edit_tag.php:262 +#: ../../godmode/category/edit_category.php:190 +#: ../../include/functions_visual_map_editor.php:884 +#: ../../include/class/ManageNetScanScripts.class.php:762 +#: ../../include/class/ModuleTemplates.class.php:957 +#: ../../include/class/ModuleTemplates.class.php:1004 +#: ../../include/functions_filemanager.php:820 +#: ../../include/functions_filemanager.php:826 +#: ../../operation/gis_maps/gis_map.php:207 +#: ../../operation/incidents/configure_integriaims_incident.php:327 +#: ../../operation/incidents/list_integriaims_incidents.php:326 +msgid "Create" +msgstr "Создать" + +#: ../../enterprise/meta/advanced/links.php:147 +#: ../../godmode/setup/links.php:138 +msgid "There isn't links" +msgstr "Нет ссылок" + +#: ../../enterprise/meta/advanced/policymanager.php:55 +msgid "Policy Manager" +msgstr "Манеджер политики" + +#: ../../enterprise/meta/advanced/policymanager.php:72 +msgid "Apply policies" +msgstr "Применить Политику" + +#: ../../enterprise/meta/advanced/policymanager.php:76 +#: ../../enterprise/meta/advanced/policymanager.php:94 +msgid "Policies queue" +msgstr "Очередь Политик" + +#: ../../enterprise/meta/advanced/policymanager.php:90 +msgid "Policies apply" +msgstr "Применить политики" + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:49 +#, php-format +msgid "Error connecting to %s." +msgstr "Ошибка подключения к %s." + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:53 +#, php-format +msgid "Error creating/updating %s/%s module groups." +msgstr "Ошибка создания/обновления %s/%s модульных групп." + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:57 +#, php-format +msgid "Created/Updated %s/%s module groups." +msgstr "Созданные/обновленные %s/%s группы модулей." + +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:68 +msgid "Synchronizing Module Groups" +msgstr "Синхронизация Групп Модулей" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:254 +#, php-format +msgid "Error creating %s components groups " +msgstr "Ошибка создания %s компонентов группы " + +#: ../../enterprise/meta/advanced/synchronizing.component.php:258 +#, php-format +msgid "Created %s component groups" +msgstr "Созданные %s компоненты группы" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:263 +#, php-format +msgid "Error creating/updating %s/%s local components " +msgstr "Ошибка при создании/обновлении %s/%s локальных компонентов " + +#: ../../enterprise/meta/advanced/synchronizing.component.php:267 +#, php-format +msgid "Created/Updated %s/%s local components" +msgstr "Создано/Обновлено %s/%s локальные компоненты" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:272 +#, php-format +msgid "Error creating/updating %s/%s network components " +msgstr "Ошибка при создании/обновлении %s/%s сетевых компонентов " + +#: ../../enterprise/meta/advanced/synchronizing.component.php:276 +#, php-format +msgid "Created/Updated %s/%s network components" +msgstr "Созданы/Обновлены %s/%s сетевые компоненты" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:293 +msgid "Synchronizing Components" +msgstr "Синхронизация Компонентов" + +#: ../../enterprise/meta/advanced/collections.data.php:35 +#: ../../enterprise/meta/advanced/collections.editor.php:40 +#: ../../enterprise/meta/include/functions_agents_meta.php:530 +#: ../../enterprise/godmode/agentes/collections.agents.php:46 +#: ../../enterprise/godmode/agentes/collections.data.php:56 +#: ../../enterprise/godmode/agentes/collections.editor.php:68 +#: ../../enterprise/godmode/policies/policies.php:544 +#: ../../enterprise/godmode/policies/policy_collections.php:31 +#: ../../enterprise/godmode/menu.php:70 +#: ../../enterprise/include/functions_policies.php:3825 +#: ../../general/first_task/collections.php:22 +msgid "Collections" +msgstr "Коллекции" + +#: ../../enterprise/meta/advanced/collections.data.php:48 +#: ../../enterprise/meta/advanced/collections.data.php:88 +#: ../../enterprise/meta/advanced/collections.data.php:103 +#: ../../enterprise/meta/advanced/collections.data.php:120 +#: ../../enterprise/meta/advanced/collections.data.php:142 +#: ../../enterprise/meta/advanced/collections.data.php:162 +#: ../../enterprise/meta/advanced/collections.data.php:184 +#: ../../enterprise/meta/advanced/collections.data.php:225 +#: ../../enterprise/meta/advanced/collections.data.php:250 +#: ../../enterprise/meta/advanced/collections.editor.php:34 +#: ../../enterprise/meta/include/functions_events_meta.php:134 +#: ../../enterprise/godmode/agentes/collections.agents.php:49 +#: ../../enterprise/godmode/agentes/collections.agents.php:58 +#: ../../enterprise/godmode/agentes/collections.data.php:76 +#: ../../enterprise/godmode/agentes/collections.data.php:119 +#: ../../enterprise/godmode/agentes/collections.data.php:186 +#: ../../enterprise/godmode/agentes/collections.data.php:203 +#: ../../enterprise/godmode/agentes/collections.data.php:220 +#: ../../enterprise/godmode/agentes/collections.data.php:244 +#: ../../enterprise/godmode/agentes/collections.data.php:269 +#: ../../enterprise/godmode/agentes/collections.data.php:296 +#: ../../enterprise/godmode/agentes/collections.data.php:319 +#: ../../enterprise/godmode/agentes/collections.editor.php:53 +#: ../../enterprise/include/functions_reporting_pdf.php:664 +#: ../../enterprise/include/functions_reporting_csv.php:714 +#: ../../enterprise/include/functions_reporting_csv.php:744 +#: ../../enterprise/include/functions_reporting_csv.php:791 +#: ../../enterprise/include/functions_reporting_csv.php:827 +#: ../../enterprise/include/functions_reporting_csv.php:866 +#: ../../enterprise/include/functions_reporting_csv.php:926 +#: ../../enterprise/include/functions_reporting_csv.php:1356 +#: ../../enterprise/include/functions_reporting_csv.php:2139 +#: ../../enterprise/include/functions_reporting_csv.php:2175 +#: ../../enterprise/include/functions_reporting_csv.php:2281 +#: ../../enterprise/include/functions_reporting_csv.php:2376 +#: ../../enterprise/include/functions_reporting_csv.php:2473 +#: ../../enterprise/include/functions_reporting.php:2143 +#: ../../enterprise/include/functions_reporting.php:2176 +#: ../../enterprise/include/functions_reporting.php:2180 +#: ../../enterprise/include/functions_services.php:1509 +#: ../../enterprise/operation/agentes/policy_view.php:385 +#: ../../enterprise/operation/agentes/tag_view.php:668 +#: ../../extensions/insert_data.php:191 ../../extensions/insert_data.php:192 +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:152 +#: ../../godmode/events/custom_events.php:114 +#: ../../mobile/operation/modules.php:702 +#: ../../mobile/operation/modules.php:705 +#: ../../mobile/operation/modules.php:706 +#: ../../mobile/operation/modules.php:707 +#: ../../mobile/operation/modules.php:708 +#: ../../mobile/operation/modules.php:709 +#: ../../mobile/operation/modules.php:710 +#: ../../mobile/operation/modules.php:711 +#: ../../mobile/operation/modules.php:712 +#: ../../mobile/operation/modules.php:714 +#: ../../mobile/operation/modules.php:717 +#: ../../mobile/operation/modules.php:718 +#: ../../mobile/operation/modules.php:719 +#: ../../mobile/operation/modules.php:720 +#: ../../mobile/operation/modules.php:721 +#: ../../mobile/operation/modules.php:722 +#: ../../mobile/operation/modules.php:723 +#: ../../mobile/operation/modules.php:724 +#: ../../mobile/operation/modules.php:840 +#: ../../include/functions_reporting_html.php:2221 +#: ../../include/functions_reporting_html.php:2225 +#: ../../include/functions_reporting_html.php:2226 +#: ../../include/functions_reporting_html.php:2230 +#: ../../include/functions_reporting_html.php:2235 +#: ../../include/functions_reporting_html.php:2240 +#: ../../include/functions_reporting_html.php:2244 +#: ../../include/functions_reporting_html.php:2249 +#: ../../include/functions_reporting_html.php:2256 +#: ../../include/functions_reporting_html.php:2305 +#: ../../include/functions_reporting_html.php:2379 +#: ../../include/ajax/module.php:982 ../../include/ajax/custom_fields.php:412 +#: ../../include/functions_graph.php:3726 +#: ../../include/functions_netflow.php:297 +#: ../../include/functions_reporting.php:3499 +#: ../../include/functions_reporting.php:3540 +#: ../../include/functions_events.php:208 +#: ../../include/functions_events.php:290 +#: ../../include/functions_events.php:6590 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1268 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_modules.php:37 +#: ../../operation/events/events.build_table.php:330 +msgid "Data" +msgstr "Данные" + +#: ../../enterprise/meta/advanced/collections.data.php:78 +#: ../../enterprise/godmode/agentes/collections.data.php:176 msgid "" -"Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -"Console." +"Unable to create the collection. Another collection with the same short name." msgstr "" -"Не установленный IP мета консоли в \"черном списоке IP с доступом API\" " -"предполагаемой консоли Pandora." +"Невозможно создать коллекцию. Другая коллекция обладает тем же коротким " +"именем." -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:98 -msgid "Successfully moved" -msgstr "Успешно перемещено" +#: ../../enterprise/meta/advanced/collections.data.php:99 +#: ../../enterprise/meta/advanced/collections.data.php:116 +#: ../../enterprise/godmode/agentes/collections.data.php:199 +#: ../../enterprise/godmode/agentes/collections.data.php:216 +msgid "Unable to create the collection" +msgstr "Не удается создать коллекцию" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:98 -msgid "Could not be moved" -msgstr "Не может быть перемещено" +#: ../../enterprise/meta/advanced/collections.data.php:99 +#: ../../enterprise/godmode/agentes/collections.data.php:199 +msgid "Invalid characters in short name" +msgstr "Недопустимые символы в кратком имени" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 -msgid "Move Agents" -msgstr "" +#: ../../enterprise/meta/advanced/collections.data.php:110 +#: ../../enterprise/godmode/agentes/collections.data.php:61 +#: ../../enterprise/godmode/agentes/collections.data.php:169 +#: ../../enterprise/godmode/agentes/collections.data.php:193 +#: ../../enterprise/godmode/agentes/collections.data.php:210 +#: ../../enterprise/godmode/agentes/collections.data.php:234 +#: ../../enterprise/godmode/agentes/collections.data.php:284 +msgid "Manager configuration > New" +msgstr "Конфигурация менеджера > Новая" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:140 -msgid "Source Server" -msgstr "Сервер Источника" +#: ../../enterprise/meta/advanced/collections.data.php:116 +#: ../../enterprise/godmode/agentes/collections.data.php:216 +#: ../../enterprise/include/functions_local_components.php:170 +msgid "Empty name" +msgstr "Пустое имя" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:142 -msgid "Destination Server" -msgstr "Назначенный Сервер" +#: ../../enterprise/meta/advanced/collections.data.php:138 +#: ../../enterprise/meta/advanced/collections.data.php:180 +#: ../../enterprise/godmode/agentes/collections.data.php:240 +#: ../../enterprise/godmode/agentes/collections.data.php:292 +msgid "Unable to create the collection." +msgstr "Не удается создать коллекцию." -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:150 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:152 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:79 -msgid "Group filter" -msgstr "Фильтр группы" +#: ../../enterprise/meta/advanced/collections.data.php:156 +#: ../../enterprise/meta/advanced/collections.data.php:287 +#: ../../enterprise/godmode/agentes/collections.data.php:263 +msgid "Correct create collection" +msgstr "Успешно создана коллекция файлов" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:152 +#: ../../enterprise/meta/advanced/collections.data.php:164 +#: ../../enterprise/meta/advanced/collections.data.php:228 +#: ../../enterprise/meta/advanced/collections.data.php:252 +#: ../../enterprise/meta/advanced/collections.editor.php:37 +#: ../../enterprise/meta/advanced/collections.editor.php:337 +#: ../../enterprise/meta/advanced/collections.editor.php:353 +#: ../../enterprise/godmode/agentes/collections.agents.php:52 +#: ../../enterprise/godmode/agentes/collections.data.php:129 +#: ../../enterprise/godmode/agentes/collections.data.php:271 +#: ../../enterprise/godmode/agentes/collections.data.php:321 +#: ../../enterprise/godmode/agentes/collections.editor.php:62 +#: ../../enterprise/godmode/agentes/collections.editor.php:388 +#: ../../enterprise/godmode/agentes/collections.editor.php:409 +#: ../../enterprise/include/functions_collection.php:136 +#: ../../operation/agentes/ver_agente.php:1562 +msgid "Files" +msgstr "Файлы" + +#: ../../enterprise/meta/advanced/collections.data.php:218 +#: ../../enterprise/godmode/agentes/collections.data.php:108 +#: ../../enterprise/godmode/agentes/collections.data.php:255 +#: ../../enterprise/godmode/agentes/collections.data.php:338 +#: ../../enterprise/godmode/agentes/collections.data.php:351 +#: ../../enterprise/godmode/agentes/collections.data.php:356 +#: ../../enterprise/godmode/agentes/collections.editor.php:81 +msgid "Manager configuration > Edit " +msgstr "Конфигурация менеджера > Редактировать " + +#: ../../enterprise/meta/advanced/collections.data.php:271 +#: ../../enterprise/godmode/agentes/collections.data.php:342 +msgid "Unable to edit the collection, empty name." +msgstr "Не удается редактировать коллекцию, пустое имя." + +#: ../../enterprise/meta/advanced/collections.data.php:281 +#: ../../enterprise/godmode/agentes/collections.data.php:354 +msgid "Unable to edit the collection." +msgstr "Не удается редактировать коллекцию." + +#: ../../enterprise/meta/advanced/collections.data.php:303 +#: ../../enterprise/meta/include/functions_autoprovision.php:540 +#: ../../enterprise/godmode/agentes/collections.data.php:387 +#: ../../godmode/setup/os.builder.php:32 +#: ../../godmode/reporting/visual_console_builder.data.php:106 +msgid "Name:" +msgstr "Имя:" + +#: ../../enterprise/meta/advanced/collections.data.php:316 +#: ../../enterprise/godmode/agentes/collections.data.php:400 +msgid "Recreate file" +msgstr "Воссоздать файл" + +#: ../../enterprise/meta/advanced/collections.data.php:344 +#: ../../enterprise/meta/advanced/collections.data.php:345 +#: ../../enterprise/godmode/agentes/collection_manager.php:172 +#: ../../enterprise/godmode/agentes/collection_manager.php:173 +#: ../../enterprise/godmode/agentes/collection_manager.php:284 +#: ../../enterprise/godmode/agentes/collection_manager.php:285 +#: ../../enterprise/godmode/agentes/collections.data.php:428 +#: ../../enterprise/godmode/agentes/collections.data.php:429 +msgid "Need to regenerate" +msgstr "Необходимо восстановление" + +#: ../../enterprise/meta/advanced/collections.data.php:354 +#: ../../enterprise/meta/advanced/collections.data.php:355 +#: ../../enterprise/meta/advanced/collections.php:469 +#: ../../enterprise/meta/advanced/collections.php:470 +#: ../../enterprise/godmode/agentes/collection_manager.php:181 +#: ../../enterprise/godmode/agentes/collection_manager.php:182 +#: ../../enterprise/godmode/agentes/collection_manager.php:293 +#: ../../enterprise/godmode/agentes/collection_manager.php:294 +#: ../../enterprise/godmode/agentes/collections.data.php:438 +#: ../../enterprise/godmode/agentes/collections.data.php:439 +#: ../../enterprise/godmode/agentes/collections.php:379 +#: ../../enterprise/godmode/agentes/collections.php:380 +#: ../../enterprise/operation/agentes/collection_view.php:122 +#: ../../enterprise/operation/agentes/collection_view.php:123 +msgid "The collection directory does not exist." +msgstr "Каталог коллекций не найден" + +#: ../../enterprise/meta/advanced/collections.data.php:368 +#: ../../enterprise/godmode/agentes/collections.data.php:453 +msgid "Group:" +msgstr "Группа:" + +#: ../../enterprise/meta/advanced/collections.data.php:391 +#: ../../enterprise/godmode/agentes/collections.data.php:475 +msgid "Short name:" +msgstr "Краткое имя:" + +#: ../../enterprise/meta/advanced/collections.data.php:397 +#: ../../enterprise/godmode/agentes/collections.data.php:480 msgid "" -"Destination group is the same than in the original server, if there is not " -"any group with that name, will be created if check box is selected. " -"Destination group filter is just used to check agents in that group" +"The collection's short name is the name of dir in attachment dir and the " +"package collection." msgstr "" +"Краткое имя коллекции - это имя каталога в приложении каталога и пакете " +"коллекции." -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:158 -msgid "Create group if doesnât exist in destination" +#: ../../enterprise/meta/advanced/collections.data.php:397 +#: ../../enterprise/godmode/agentes/collections.data.php:480 +msgid "Short name must contain only alphanumeric characters, - or _ ." msgstr "" +"Краткое имя должно содержать только буквенно-цифровые символы, - или _." -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:158 -msgid "Based on name" +#: ../../enterprise/meta/advanced/collections.data.php:397 +#: ../../enterprise/godmode/agentes/collections.data.php:480 +msgid "Empty for default short name fc_X where X is the collection id." msgstr "" +"Оставьте его пустым для краткого имени по умолчанию (fc_X), где X - " +"идентификатор коллекции." -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:167 -msgid "Add agents to destination server" -msgstr "Добавить агенты к назначенному серверыу" +#: ../../enterprise/meta/advanced/collections.data.php:403 +#: ../../enterprise/meta/include/functions_autoprovision.php:543 +#: ../../enterprise/godmode/agentes/collections.data.php:484 +#: ../../operation/snmpconsole/snmp_view.php:1111 +msgid "Description:" +msgstr "Описание:" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:169 -msgid "Remove agents to doesn't move to destination server" +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72 +#, php-format +msgid "Provisioning custom data <b>%s</b> successfully deleted." +msgstr "Предоставление данных пользователя <b>%s</b> успешно удалено." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:79 +#, php-format +msgid "Cannot delete custom data <b>%s</b>." +msgstr "Невозможно удалить пользовательские данные <b>%s</b>." + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:92 +msgid "There was an error when moving the custom provisioning data." +msgstr "Возникла ошибка при перемещении передачи пользовательских данных." + +#: ../../enterprise/meta/advanced/collections.editor.php:101 +#: ../../enterprise/meta/advanced/collections.editor.php:169 +#: ../../enterprise/godmode/agentes/collections.editor.php:147 +#: ../../enterprise/godmode/agentes/collections.editor.php:212 +#: ../../godmode/servers/plugin.php:157 +#: ../../include/functions_filemanager.php:755 +msgid "Edit file" +msgstr "Редактировать файл" + +#: ../../enterprise/meta/advanced/collections.editor.php:104 +#: ../../enterprise/meta/advanced/collections.editor.php:171 +#: ../../enterprise/godmode/agentes/collections.editor.php:150 +#: ../../enterprise/godmode/agentes/collections.editor.php:214 +msgid "Back to file explorer" +msgstr "Вернуться к проводнику файлов" + +#: ../../enterprise/meta/advanced/collections.editor.php:143 +#: ../../enterprise/godmode/agentes/collections.editor.php:186 +#: ../../include/functions_filemanager.php:329 +msgid "Security error." +msgstr "Ошибка безопасности." + +#: ../../enterprise/meta/advanced/collections.editor.php:194 +#: ../../enterprise/godmode/agentes/collections.editor.php:236 +#: ../../godmode/servers/plugin.php:176 +msgid "Compatibility mode" +msgstr "Режим совместимости" + +#: ../../enterprise/meta/advanced/collections.editor.php:239 +#: ../../enterprise/godmode/agentes/collections.editor.php:281 +msgid "Correct update file." +msgstr "Правильное обновление файла." + +#: ../../enterprise/meta/advanced/collections.editor.php:240 +#: ../../enterprise/godmode/agentes/collections.editor.php:282 +msgid "Incorrect update file." +msgstr "Неправильное обновление файла." + +#: ../../enterprise/meta/advanced/collections.editor.php:354 +#: ../../enterprise/godmode/agentes/collections.editor.php:410 +msgid "Please, first save a new collection before to upload files." +msgstr "Пожалуйста, прежде чем загружать файлы, сохраните новую коллекцию." + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:101 +#: ../../godmode/update_manager/update_manager.setup.php:193 +msgid "URL update manager:" +msgstr "URL Менеджера обновлений:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:105 +#: ../../godmode/update_manager/update_manager.setup.php:197 +msgid "URL update manager" +msgstr "URL Менеджера обновлений" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:111 +#: ../../godmode/update_manager/update_manager.setup.php:203 +msgid "Proxy server:" +msgstr "Прокси-сервер:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:115 +#: ../../godmode/update_manager/update_manager.setup.php:207 +msgid "Proxy server" +msgstr "Прокси-сервер" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:121 +#: ../../godmode/update_manager/update_manager.setup.php:213 +msgid "Proxy port:" +msgstr "Прокси-порт:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:125 +#: ../../godmode/update_manager/update_manager.setup.php:217 +msgid "Proxy port" +msgstr "Прокси-порт" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:131 +#: ../../godmode/update_manager/update_manager.setup.php:223 +msgid "Proxy user:" +msgstr "Пользователь прокси:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:135 +#: ../../godmode/update_manager/update_manager.setup.php:227 +msgid "Proxy user" +msgstr "Пользователь прокси" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:141 +#: ../../godmode/update_manager/update_manager.setup.php:233 +msgid "Proxy password:" +msgstr "Пароль прокси:" + +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:145 +#: ../../godmode/update_manager/update_manager.setup.php:237 +msgid "Proxy password" +msgstr "Пароль прокси" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:66 +#, php-format +msgid "Error creating/updating %s/%s tags" +msgstr "Ошибка при создании/обновлении %s/%s тегов" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:70 +#, php-format +msgid "Created/Updated %s/%s tags" +msgstr "Создано/Обновлено %s/%s тегов" + +#: ../../enterprise/meta/advanced/synchronizing.tag.php:81 +msgid "Synchronizing Tags" +msgstr "Синхронизация тегов" + +#: ../../enterprise/meta/advanced/cron_main.php:72 +#: ../../enterprise/extensions/cron.php:156 +msgid "Cron jobs" +msgstr "Задачи Cron" + +#: ../../enterprise/meta/advanced/cron_main.php:84 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:547 +msgid "Add new job" +msgstr "Добавить новое задание" + +#: ../../enterprise/meta/advanced/cron_main.php:155 +#: ../../enterprise/meta/advanced/cron_main.php:199 +#: ../../enterprise/meta/advanced/cron_main.php:287 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:212 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:275 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:370 +msgid "Path doesn't exists or is not writable" +msgstr "Путь не существует или недоступен для записи" + +#: ../../enterprise/meta/advanced/cron_main.php:169 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:243 +msgid "Only administrator users can create this type of functions" msgstr "" +"Только пользователи с доступом администратора могут создавать этот тип " +"функций" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:179 -msgid "Move" -msgstr "Перемещение" +#: ../../enterprise/meta/advanced/cron_main.php:235 +#: ../../enterprise/meta/advanced/cron_main.php:269 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:355 +msgid "Edit job" +msgstr "Редактировать задание" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:282 -msgid "Please choose other server." +#: ../../enterprise/meta/advanced/cron_main.php:320 +msgid "" +"In order to make backups it is necessary to have mysqldump on your console." msgstr "" +"Для того чтобы сделать резервную копию, необходимо наличие mysqldump на " +"вашей консоли." -#: ../../enterprise/meta/advanced/metasetup.setup.php:79 -#: ../../enterprise/godmode/modules/configure_local_component.php:149 -#: ../../godmode/users/configure_user.php:529 -#: ../../godmode/alerts/alert_commands.php:142 -#: ../../godmode/alerts/alert_commands.php:152 -#: ../../godmode/alerts/configure_alert_template.php:735 -#: ../../godmode/modules/manage_network_components_form_common.php:57 +#: ../../enterprise/meta/advanced/cron_main.php:341 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:623 +#: ../../enterprise/include/functions_tasklist.php:168 +#: ../../include/functions_cron.php:455 +msgid "Task" +msgstr "Задача" + +#: ../../enterprise/meta/advanced/cron_main.php:372 +#: ../../enterprise/godmode/setup/setup_history.php:675 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:633 +#: ../../enterprise/include/functions_tasklist.php:169 +#: ../../include/functions_cron.php:456 +msgid "Scheduled" +msgstr "Запланировано" + +#: ../../enterprise/meta/advanced/cron_main.php:385 +#: ../../enterprise/include/functions_tasklist.php:170 +#: ../../include/functions_cron.php:457 +msgid "Next execution" +msgstr "Следующее действие" + +#: ../../enterprise/meta/advanced/cron_main.php:394 +msgid "Date format in Pandora is year/month/day" +msgstr "Формат даты в Pandora FMS - год/месяц/день" + +#: ../../enterprise/meta/advanced/cron_main.php:405 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "Формат времени в Pandora FMS - часы(24 часа):минуты:секунды" + +#: ../../enterprise/meta/advanced/cron_main.php:431 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:562 +#: ../../godmode/events/event_responses.editor.php:144 +#: ../../include/ajax/events.php:1844 +#: ../../include/class/ExternalTools.class.php:336 +#: ../../include/lib/Dashboard/Widgets/events_list.php:754 +#: ../../include/functions_events.php:3799 +#: ../../operation/events/events.php:1709 +msgid "Parameters" +msgstr "Параметры" + +#: ../../enterprise/meta/advanced/cron_main.php:517 +#: ../../enterprise/godmode/alerts/alert_events.php:700 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1107 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3696 +#: ../../enterprise/godmode/wizards/consoletask_js.php:41 +#: ../../enterprise/operation/log/log_viewer.php:947 +#: ../../enterprise/operation/log/log_viewer.php:959 +#: ../../enterprise/operation/services/services.treeview_services.php:398 +#: ../../extensions/insert_data.php:221 +#: ../../godmode/agentes/planned_downtime.editor.php:1464 +#: ../../godmode/alerts/configure_alert_template.php:1488 +#: ../../godmode/setup/news.php:322 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4057 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:677 +#: ../../operation/tree.php:513 ../../operation/agentes/stat_win.php:534 +#: ../../operation/agentes/interface_traffic_graph_win.php:436 +#: ../../operation/agentes/datos_agente.php:313 +#: ../../operation/agentes/estado_monitores.php:455 +#: ../../operation/network/network_report.php:336 +#: ../../operation/network/network_usage_map.php:184 +#: ../../operation/netflow/nf_live_view.php:739 +#: ../../operation/reporting/reporting_viewer.php:315 +#: ../../operation/reporting/reporting_viewer.php:335 +#: ../../operation/reporting/graph_viewer.php:365 +#: ../../operation/events/events_list.php:2010 +#: ../../operation/events/events.php:2606 +msgid "Choose time" +msgstr "Выберите время" + +#: ../../enterprise/meta/advanced/cron_main.php:518 +#: ../../enterprise/godmode/alerts/alert_events.php:701 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1108 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3697 +#: ../../enterprise/godmode/wizards/consoletask_js.php:42 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:990 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4031 +#: ../../enterprise/operation/log/log_viewer.php:948 +#: ../../enterprise/operation/log/log_viewer.php:960 +#: ../../enterprise/operation/services/services.treeview_services.php:399 +#: ../../extensions/insert_data.php:222 +#: ../../godmode/agentes/planned_downtime.editor.php:1465 +#: ../../godmode/alerts/configure_alert_template.php:1489 +#: ../../godmode/setup/news.php:323 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4058 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:678 +#: ../../operation/tree.php:514 ../../operation/agentes/stat_win.php:535 +#: ../../operation/agentes/interface_traffic_graph_win.php:437 +#: ../../operation/agentes/datos_agente.php:314 +#: ../../operation/agentes/estado_monitores.php:456 +#: ../../operation/network/network_report.php:337 +#: ../../operation/network/network_usage_map.php:185 +#: ../../operation/netflow/nf_live_view.php:740 +#: ../../operation/reporting/reporting_viewer.php:316 +#: ../../operation/reporting/reporting_viewer.php:336 +#: ../../operation/reporting/graph_viewer.php:366 +#: ../../operation/events/events_list.php:2011 +#: ../../operation/events/events.php:2607 +msgid "Time" +msgstr "Время" + +#: ../../enterprise/meta/advanced/cron_main.php:519 +#: ../../enterprise/godmode/alerts/alert_events.php:702 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1109 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3698 +#: ../../enterprise/godmode/wizards/consoletask_js.php:43 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4032 +#: ../../enterprise/operation/log/log_viewer.php:949 +#: ../../enterprise/operation/log/log_viewer.php:961 +#: ../../enterprise/operation/services/services.treeview_services.php:400 +#: ../../extensions/insert_data.php:223 +#: ../../godmode/agentes/planned_downtime.editor.php:1466 +#: ../../godmode/alerts/configure_alert_template.php:1490 +#: ../../godmode/setup/news.php:324 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4059 +#: ../../include/functions_html.php:2043 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:679 +#: ../../operation/tree.php:515 ../../operation/agentes/stat_win.php:536 +#: ../../operation/agentes/interface_traffic_graph_win.php:438 +#: ../../operation/agentes/datos_agente.php:315 +#: ../../operation/agentes/estado_monitores.php:457 +#: ../../operation/network/network_report.php:338 +#: ../../operation/network/network_usage_map.php:186 +#: ../../operation/netflow/nf_live_view.php:741 +#: ../../operation/reporting/reporting_viewer.php:317 +#: ../../operation/reporting/reporting_viewer.php:337 +#: ../../operation/reporting/graph_viewer.php:367 +#: ../../operation/events/events_list.php:2012 +#: ../../operation/events/events.php:2608 +msgid "Hour" +msgstr "Час" + +#: ../../enterprise/meta/advanced/cron_main.php:520 +#: ../../enterprise/godmode/alerts/alert_events.php:703 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1110 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3699 +#: ../../enterprise/godmode/wizards/consoletask_js.php:44 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4033 +#: ../../enterprise/operation/log/log_viewer.php:950 +#: ../../enterprise/operation/log/log_viewer.php:962 +#: ../../enterprise/operation/services/services.treeview_services.php:401 +#: ../../extensions/insert_data.php:224 +#: ../../godmode/agentes/planned_downtime.editor.php:1467 +#: ../../godmode/alerts/configure_alert_template.php:1491 +#: ../../godmode/setup/news.php:325 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4060 +#: ../../include/functions_html.php:2044 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:680 +#: ../../operation/tree.php:516 ../../operation/agentes/stat_win.php:537 +#: ../../operation/agentes/interface_traffic_graph_win.php:439 +#: ../../operation/agentes/datos_agente.php:316 +#: ../../operation/agentes/estado_monitores.php:458 +#: ../../operation/network/network_report.php:339 +#: ../../operation/network/network_usage_map.php:187 +#: ../../operation/netflow/nf_live_view.php:742 +#: ../../operation/reporting/reporting_viewer.php:318 +#: ../../operation/reporting/reporting_viewer.php:338 +#: ../../operation/reporting/graph_viewer.php:368 +#: ../../operation/events/events_list.php:2013 +#: ../../operation/events/events.php:2609 +msgid "Minute" +msgstr "Минута" + +#: ../../enterprise/meta/advanced/cron_main.php:521 +#: ../../enterprise/godmode/alerts/alert_events.php:704 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1111 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3700 +#: ../../enterprise/godmode/wizards/consoletask_js.php:45 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4034 +#: ../../enterprise/operation/log/log_viewer.php:951 +#: ../../enterprise/operation/log/log_viewer.php:963 +#: ../../enterprise/operation/services/services.treeview_services.php:402 +#: ../../extensions/insert_data.php:225 +#: ../../godmode/agentes/planned_downtime.editor.php:1468 +#: ../../godmode/alerts/configure_alert_template.php:1492 +#: ../../godmode/setup/news.php:326 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4061 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:681 +#: ../../operation/tree.php:517 ../../operation/agentes/stat_win.php:538 +#: ../../operation/agentes/interface_traffic_graph_win.php:440 +#: ../../operation/agentes/datos_agente.php:317 +#: ../../operation/agentes/estado_monitores.php:459 +#: ../../operation/network/network_report.php:340 +#: ../../operation/network/network_usage_map.php:188 +#: ../../operation/netflow/nf_live_view.php:743 +#: ../../operation/reporting/reporting_viewer.php:319 +#: ../../operation/reporting/reporting_viewer.php:339 +#: ../../operation/reporting/graph_viewer.php:369 +#: ../../operation/events/events_list.php:2014 +#: ../../operation/events/events.php:2610 +msgid "Second" +msgstr "Секунда" + +#: ../../enterprise/meta/advanced/cron_main.php:522 +#: ../../enterprise/godmode/alerts/alert_events.php:705 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1112 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3701 +#: ../../enterprise/godmode/wizards/consoletask_js.php:46 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4035 +#: ../../enterprise/operation/agentes/agent_inventory.php:108 +#: ../../enterprise/operation/log/log_viewer.php:952 +#: ../../enterprise/operation/log/log_viewer.php:964 +#: ../../enterprise/operation/services/services.treeview_services.php:403 +#: ../../extensions/insert_data.php:226 +#: ../../godmode/agentes/planned_downtime.editor.php:1469 +#: ../../godmode/alerts/configure_alert_template.php:1493 +#: ../../godmode/setup/news.php:327 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4062 +#: ../../include/functions.php:505 ../../include/functions.php:635 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:682 +#: ../../operation/tree.php:518 ../../operation/agentes/stat_win.php:539 +#: ../../operation/agentes/interface_traffic_graph_win.php:441 +#: ../../operation/agentes/datos_agente.php:318 +#: ../../operation/agentes/estado_monitores.php:460 +#: ../../operation/network/network_report.php:341 +#: ../../operation/network/network_usage_map.php:189 +#: ../../operation/netflow/nf_live_view.php:744 +#: ../../operation/reporting/reporting_viewer.php:320 +#: ../../operation/reporting/reporting_viewer.php:340 +#: ../../operation/reporting/graph_viewer.php:370 +#: ../../operation/events/events_list.php:2015 +#: ../../operation/events/events.php:2611 +msgid "Now" +msgstr "Сейчас" + +#: ../../enterprise/meta/advanced/cron_main.php:523 +#: ../../enterprise/godmode/alerts/alert_events.php:706 +#: ../../enterprise/godmode/setup/setup.php:748 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1113 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3702 +#: ../../enterprise/godmode/wizards/consoletask_js.php:47 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4036 +#: ../../enterprise/operation/log/log_viewer.php:953 +#: ../../enterprise/operation/log/log_viewer.php:965 +#: ../../enterprise/operation/services/services.treeview_services.php:404 +#: ../../extensions/insert_data.php:227 +#: ../../godmode/agentes/planned_downtime.editor.php:1470 +#: ../../godmode/alerts/configure_alert_template.php:1494 +#: ../../godmode/setup/news.php:328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4063 +#: ../../godmode/wizards/HostDevices.class.php:796 +#: ../../mobile/include/ui.class.php:685 ../../mobile/include/ui.class.php:743 +#: ../../include/class/WelcomeWindow.class.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:683 +#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:519 +#: ../../operation/agentes/stat_win.php:540 +#: ../../operation/agentes/interface_traffic_graph_win.php:442 +#: ../../operation/agentes/datos_agente.php:319 +#: ../../operation/agentes/estado_monitores.php:461 +#: ../../operation/network/network_report.php:342 +#: ../../operation/network/network_usage_map.php:190 +#: ../../operation/netflow/nf_live_view.php:745 +#: ../../operation/reporting/reporting_viewer.php:321 +#: ../../operation/reporting/reporting_viewer.php:341 +#: ../../operation/reporting/graph_viewer.php:371 +#: ../../operation/events/events_list.php:2016 +#: ../../operation/events/events.php:2612 +msgid "Close" +msgstr "Закрыть" + +#: ../../enterprise/meta/advanced/synchronizing.php:36 +#: ../../enterprise/meta/general/main_header.php:315 +msgid "Synchronizing" +msgstr "Синхронизация" + +#: ../../enterprise/meta/advanced/synchronizing.php:60 +#: ../../enterprise/meta/advanced/synchronizing.php:92 +msgid "Users synchronization" +msgstr "Синхронизация пользователей" + +#: ../../enterprise/meta/advanced/synchronizing.php:64 +#: ../../enterprise/meta/advanced/synchronizing.php:96 +msgid "Groups synchronization" +msgstr "Синхронизация групп" + +#: ../../enterprise/meta/advanced/synchronizing.php:68 +#: ../../enterprise/meta/advanced/synchronizing.php:100 +msgid "Alerts synchronization" +msgstr "Синхронизация предупреждений" + +#: ../../enterprise/meta/advanced/synchronizing.php:72 +#: ../../enterprise/meta/advanced/synchronizing.php:104 +msgid "Components synchronization" +msgstr "Синхронизация компонентов" + +#: ../../enterprise/meta/advanced/synchronizing.php:76 +#: ../../enterprise/meta/advanced/synchronizing.php:108 +msgid "Tags synchronization" +msgstr "Синхронизация тегов" + +#: ../../enterprise/meta/advanced/synchronizing.php:80 +#: ../../enterprise/meta/advanced/synchronizing.php:112 +msgid "OS synchronization" +msgstr "Синхронизация ОС" + +#: ../../enterprise/meta/advanced/synchronizing.php:84 +#: ../../enterprise/meta/advanced/synchronizing.php:116 +msgid "Module Groups synchronization" +msgstr "Синхронизация Групп Модулей" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:108 +#: ../../enterprise/godmode/modules/configure_local_component.php:160 +#: ../../godmode/modules/manage_network_components_form_common.php:48 +#: ../../godmode/users/configure_user.php:1178 +#: ../../godmode/alerts/alert_commands.php:137 +#: ../../godmode/alerts/alert_commands.php:178 +#: ../../godmode/alerts/configure_alert_template.php:972 +#: ../../godmode/alerts/configure_alert_template.php:1013 +#: ../../godmode/alerts/configure_alert_template.php:1172 msgid "Basic" msgstr "Базовый" -#: ../../enterprise/meta/advanced/metasetup.setup.php:103 -#: ../../godmode/setup/setup_general.php:66 +#: ../../enterprise/meta/advanced/metasetup.setup.php:113 +#: ../../enterprise/meta/include/functions_meta.php:380 +#: ../../include/functions_config.php:168 +msgid "Language settings" +msgstr "Языковые настройки" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:126 +#: ../../enterprise/meta/include/functions_meta.php:389 +#: ../../godmode/setup/setup_general.php:108 +#: ../../include/functions_config.php:180 +msgid "Auto login (hash) password" +msgstr "Пароль (hash) для автовхода в систему" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#: ../../enterprise/meta/include/functions_meta.php:398 +#: ../../godmode/setup/setup_general.php:122 +#: ../../include/functions_config.php:184 +msgid "Time source" +msgstr "Источник времени" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:144 +#: ../../godmode/setup/setup_general.php:123 +#: ../../mobile/operation/events.php:127 +#: ../../include/functions_reporting_html.php:1103 +#: ../../include/functions_reporting_html.php:2097 +#: ../../include/functions.php:1234 ../../include/functions_graph.php:2814 +#: ../../include/functions_graph.php:3580 +#: ../../include/functions_graph.php:3582 +#: ../../include/functions_reporting.php:9735 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:433 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:429 +#: ../../include/functions_events.php:2631 +#: ../../include/functions_events.php:3226 +#: ../../operation/events/events.php:2123 +msgid "System" +msgstr "Система" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:145 +#: ../../godmode/setup/setup_general.php:124 msgid "Database" msgstr "База данных" -#: ../../enterprise/meta/advanced/metasetup.setup.php:109 -#: ../../godmode/setup/setup_general.php:74 -msgid "" -"If SSL is not properly configured you will lose access to Pandora FMS " -"Console. Do you want to continue?" -msgstr "" -"Если SSL не настроено должным образом, вы потеряете доступ к консоли Pandora " -"FMS. Вы хотите продолжить?" +#: ../../enterprise/meta/advanced/metasetup.setup.php:148 +#: ../../enterprise/meta/include/functions_meta.php:407 +#: ../../godmode/setup/setup_general.php:147 +#: ../../include/functions_config.php:196 +msgid "Enforce https" +msgstr "Использовать HTTPS" -#: ../../enterprise/meta/advanced/metasetup.setup.php:114 -#: ../../godmode/setup/setup_general.php:77 +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#, php-format +msgid "" +"If SSL is not properly configured, you will lose access to the %s Console. " +"Do you want to continue?" +msgstr "" +"Если конфигурация SSL не произведена должным образом, вы потеряете доступ к " +"%s Консоли. Хотите продолжить?" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +#: ../../enterprise/meta/include/functions_meta.php:416 +msgid "Centralized management" +msgstr "Централизованное управление" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:156 +#: ../../enterprise/meta/include/functions_meta.php:425 +#: ../../godmode/setup/setup_general.php:181 +#: ../../include/functions_config.php:204 +msgid "Attachment store" +msgstr "Папка для вложений" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:156 msgid "Directory where temporary data is stored." msgstr "Каталог, в котором хранятся временные данные." -#: ../../enterprise/meta/advanced/metasetup.setup.php:120 -#: ../../godmode/setup/setup_general.php:182 +#: ../../enterprise/meta/advanced/metasetup.setup.php:159 +#: ../../enterprise/meta/include/functions_meta.php:434 +#: ../../godmode/setup/setup_general.php:86 +#: ../../include/functions_config.php:172 +msgid "Remote config directory" +msgstr "Каталог дистанционных настроек" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:162 +#: ../../enterprise/meta/include/functions_meta.php:443 +#: ../../godmode/setup/setup_general.php:96 +msgid "Phantomjs bin directory" +msgstr "Каталог Phantomjs bin" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:162 +msgid "" +"Directory where phantomjs binary file exists and has execution grants." +msgstr "" +"Каталог, в котором существует файл Phantomjs bin, и где у него есть право на " +"осуществление действий." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:166 +#: ../../godmode/setup/setup_general.php:247 +#: ../../include/functions_visual_map_editor.php:290 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271 +#: ../../include/functions_update_manager.php:196 msgid "Africa" msgstr "Африка" -#: ../../enterprise/meta/advanced/metasetup.setup.php:121 -#: ../../godmode/setup/setup_general.php:182 +#: ../../enterprise/meta/advanced/metasetup.setup.php:167 +#: ../../godmode/setup/setup_general.php:248 +#: ../../include/functions_visual_map_editor.php:291 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272 +#: ../../include/functions_update_manager.php:197 msgid "America" msgstr "Америка" -#: ../../enterprise/meta/advanced/metasetup.setup.php:122 -#: ../../godmode/setup/setup_general.php:182 +#: ../../enterprise/meta/advanced/metasetup.setup.php:168 +#: ../../godmode/setup/setup_general.php:249 +#: ../../include/functions_visual_map_editor.php:292 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273 +#: ../../include/functions_update_manager.php:198 msgid "Antarctica" msgstr "Антарктида" -#: ../../enterprise/meta/advanced/metasetup.setup.php:123 -#: ../../godmode/setup/setup_general.php:182 +#: ../../enterprise/meta/advanced/metasetup.setup.php:169 +#: ../../godmode/setup/setup_general.php:250 +#: ../../include/functions_visual_map_editor.php:293 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274 +#: ../../include/functions_update_manager.php:199 msgid "Arctic" msgstr "Арктика" -#: ../../enterprise/meta/advanced/metasetup.setup.php:124 -#: ../../godmode/setup/setup_general.php:182 +#: ../../enterprise/meta/advanced/metasetup.setup.php:170 +#: ../../godmode/setup/setup_general.php:251 +#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275 +#: ../../include/functions_update_manager.php:200 msgid "Asia" msgstr "Азия" -#: ../../enterprise/meta/advanced/metasetup.setup.php:125 -#: ../../godmode/setup/setup_general.php:182 +#: ../../enterprise/meta/advanced/metasetup.setup.php:171 +#: ../../godmode/setup/setup_general.php:252 +#: ../../include/functions_visual_map_editor.php:295 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276 +#: ../../include/functions_update_manager.php:201 msgid "Atlantic" msgstr "Атлантика" -#: ../../enterprise/meta/advanced/metasetup.setup.php:126 -#: ../../godmode/setup/setup_general.php:182 +#: ../../enterprise/meta/advanced/metasetup.setup.php:172 +#: ../../godmode/setup/setup_general.php:253 +#: ../../include/functions_visual_map_editor.php:296 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277 +#: ../../include/functions_update_manager.php:202 msgid "Australia" msgstr "Австралия" -#: ../../enterprise/meta/advanced/metasetup.setup.php:127 -#: ../../godmode/setup/setup_general.php:182 +#: ../../enterprise/meta/advanced/metasetup.setup.php:173 +#: ../../godmode/setup/setup_general.php:254 +#: ../../include/functions_visual_map_editor.php:297 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278 +#: ../../include/functions_update_manager.php:203 msgid "Europe" msgstr "Европа" -#: ../../enterprise/meta/advanced/metasetup.setup.php:128 -#: ../../godmode/setup/setup_general.php:182 +#: ../../enterprise/meta/advanced/metasetup.setup.php:174 +#: ../../godmode/setup/setup_general.php:255 +#: ../../include/functions_visual_map_editor.php:298 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279 +#: ../../include/functions_update_manager.php:204 msgid "Indian" -msgstr "Индийский" +msgstr "Индийский регион" -#: ../../enterprise/meta/advanced/metasetup.setup.php:129 -#: ../../godmode/setup/setup_general.php:182 +#: ../../enterprise/meta/advanced/metasetup.setup.php:175 +#: ../../godmode/setup/setup_general.php:256 +#: ../../include/functions_visual_map_editor.php:299 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280 +#: ../../include/functions_update_manager.php:205 msgid "Pacific" -msgstr "Тихоокеанское" +msgstr "Океания" -#: ../../enterprise/meta/advanced/metasetup.setup.php:130 -#: ../../godmode/setup/setup_general.php:182 +#: ../../enterprise/meta/advanced/metasetup.setup.php:176 +#: ../../godmode/setup/setup_general.php:257 +#: ../../include/functions_visual_map_editor.php:300 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281 +#: ../../include/functions_update_manager.php:206 msgid "UTC" -msgstr "UTC" +msgstr "UTC (время по Гринвичу)" -#: ../../enterprise/meta/advanced/metasetup.setup.php:151 -#: ../../godmode/setup/setup_general.php:207 +#: ../../enterprise/meta/advanced/metasetup.setup.php:195 +#: ../../enterprise/meta/include/functions_meta.php:452 +#: ../../godmode/setup/setup_general.php:277 +#: ../../include/functions_config.php:238 +#: ../../include/functions_update_manager.php:226 +msgid "Timezone setup" +msgstr "Настройка часового пояса" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:197 +#: ../../godmode/setup/setup_general.php:294 msgid "Change timezone" msgstr "Изменить часовой пояс" -#: ../../enterprise/meta/advanced/metasetup.setup.php:156 -#: ../../godmode/setup/setup_general.php:229 -msgid "" -"Set this value when your PandoraFMS across inverse proxy or for example with " -"mod_proxy of Apache." -msgstr "" -"Установите это значение, когда ваши PandoraFMS через обратный прокси-сервер " -"или, например, с mod_proxy из Apache." +#: ../../enterprise/meta/advanced/metasetup.setup.php:201 +#: ../../enterprise/meta/include/functions_meta.php:461 +#: ../../godmode/setup/setup_general.php:317 +#: ../../include/functions_config.php:270 +msgid "Public URL" +msgstr "Общедоступный URL" -#: ../../enterprise/meta/advanced/metasetup.setup.php:159 -#: ../../include/functions_config.php:605 -#: ../../godmode/setup/setup_netflow.php:61 +#: ../../enterprise/meta/advanced/metasetup.setup.php:202 +#, php-format +msgid "" +"Set this value when you need your %s to be accessible via a public URL (for " +"example using Apache mod_proxy settings)." +msgstr "" +"Установите это значение, когда вы хотите, чтобы ваш %s был доступен через " +"общий URL (например, при использовании Apache mod_proxy settings)." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:205 +#: ../../enterprise/meta/include/functions_meta.php:470 +#: ../../godmode/setup/setup_general.php:327 +#: ../../include/functions_config.php:274 +msgid "Force use Public URL" +msgstr "Принудить к использованию общего URL" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:206 +msgid "Force using defined public URL)." +msgstr "Принудить к использованию определенного общего URL)." + +#: ../../enterprise/meta/advanced/metasetup.setup.php:213 +#, php-format +msgid "" +"If public URL is not properly configured, you will lose access to the %s " +"Console. Do you want to continue?" +msgstr "" +"Если общий URL неправильно настроен, вы потеряете доступ к %s Консоли. Вы " +"хотите продолжить?" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:219 +#: ../../enterprise/meta/include/functions_meta.php:479 +#: ../../godmode/setup/setup_general.php:341 +#: ../../include/functions_config.php:278 +msgid "Public URL host exclusions" +msgstr "Исключения для хоста в общем URL" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:222 +#: ../../godmode/setup/setup_netflow.php:64 +#: ../../include/functions_config.php:1431 msgid "Disable custom live view filters" msgstr "Отключить пользовательские фильтры живого просмотра" -#: ../../enterprise/meta/advanced/metasetup.setup.php:159 -#: ../../godmode/setup/setup_netflow.php:62 +#: ../../enterprise/meta/advanced/metasetup.setup.php:222 msgid "" "Disable the definition of custom filters in the live view. Only existing " "filters can be used." @@ -7831,315 +7092,4439 @@ msgstr "" "Отключить определение пользовательских фильтров в живом просмотре. Только " "существующие фильтры могут быть использованы." -#: ../../enterprise/meta/advanced/metasetup.setup.php:164 +#: ../../enterprise/meta/advanced/metasetup.setup.php:226 +#: ../../enterprise/meta/include/functions_meta.php:497 +#: ../../godmode/setup/setup_general.php:368 +#: ../../include/functions_config.php:290 +msgid "Command Snapshot" +msgstr "Команда Snapshot" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:226 +msgid "The string modules with several lines show as command output" +msgstr "Строка модуля с несколькими линиями показана как вывод команды" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:231 msgid "Customize sections" msgstr "Настройка разделов" -#: ../../enterprise/meta/advanced/metasetup.setup.php:186 +#: ../../enterprise/meta/advanced/metasetup.setup.php:252 msgid "Disabled sections" msgstr "Отключенные разделы" -#: ../../enterprise/meta/advanced/metasetup.setup.php:188 +#: ../../enterprise/meta/advanced/metasetup.setup.php:254 msgid "Enabled sections" msgstr "Включенные разделы" -#: ../../enterprise/meta/advanced/metasetup.setup.php:194 +#: ../../enterprise/meta/advanced/metasetup.setup.php:259 msgid "Push selected sections to enable it" -msgstr "Вставьте выбранные разделы чтобы подключить их" +msgstr "Нажмите на выбранные разделы чтобы подключить их" -#: ../../enterprise/meta/advanced/metasetup.setup.php:198 +#: ../../enterprise/meta/advanced/metasetup.setup.php:261 msgid "Pop selected sections to disable it" -msgstr "Вставьте выбранные разделы чтобы отключить их" +msgstr "Нажмите на выбранные разделы чтобы отключить их" -#: ../../enterprise/meta/advanced/metasetup.setup.php:210 -#: ../../godmode/setup/setup_general.php:90 +#: ../../enterprise/meta/advanced/metasetup.setup.php:271 msgid "Please be careful if you put a password put https access." msgstr "" -"Пожалуйста, будьте осторожны, если вы поставите пароль - поставьте https " -"доступ." +"Пожалуйста, будьте осторожны, если вы устанавливаете пароль - поставьте " +"https доступ." -#: ../../enterprise/meta/general/logon_ok.php:32 -msgid "Network traffic" -msgstr "Сетевой трафик" +#: ../../enterprise/meta/advanced/metasetup.setup.php:276 +#: ../../enterprise/meta/include/functions_meta.php:524 +#: ../../godmode/setup/setup_general.php:191 +#: ../../include/functions_config.php:208 +msgid "IP list with API access" +msgstr "Список IP адресов с доступом к API" -#: ../../enterprise/meta/general/logon_ok.php:48 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:180 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:183 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:195 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:210 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:213 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:226 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:229 -#: ../../operation/menu.php:229 ../../operation/reporting/graph_viewer.php:160 -#: ../../operation/reporting/graph_viewer.php:277 -#: ../../operation/reporting/reporting_viewer.php:119 -#: ../../operation/reporting/reporting_viewer.php:124 -#: ../../operation/reporting/reporting_viewer.php:128 -#: ../../operation/reporting/custom_reporting.php:27 -#: ../../godmode/reporting/map_builder.php:39 -#: ../../godmode/reporting/graphs.php:71 -#: ../../godmode/reporting/reporting_builder.php:356 -#: ../../godmode/reporting/reporting_builder.php:361 -#: ../../godmode/reporting/reporting_builder.php:365 -#: ../../godmode/reporting/reporting_builder.php:1793 -#: ../../godmode/reporting/reporting_builder.php:1798 -#: ../../godmode/reporting/reporting_builder.php:1802 -#: ../../godmode/reporting/reporting_builder.php:1862 -#: ../../godmode/reporting/reporting_builder.php:1867 -#: ../../godmode/reporting/reporting_builder.php:1870 -msgid "Reporting" -msgstr "Отчётность" +#: ../../enterprise/meta/advanced/metasetup.setup.php:287 +#: ../../enterprise/meta/include/functions_meta.php:533 +#: ../../enterprise/godmode/setup/setup.php:378 +msgid "Enable update manager" +msgstr "Активировать менеджера обновления" -#: ../../enterprise/meta/general/logon_ok.php:56 -#: ../../enterprise/meta/general/main_header.php:78 -#: ../../enterprise/operation/services/services.service.php:84 -#: ../../enterprise/operation/services/services.list.php:38 -#: ../../enterprise/operation/services/services.service_map.php:94 -#: ../../enterprise/godmode/services/services.elements.php:127 -#: ../../enterprise/godmode/services/services.service.php:202 -#: ../../operation/menu.php:31 -msgid "Monitoring" -msgstr "Мониторинг" +#: ../../enterprise/meta/advanced/metasetup.setup.php:292 +#: ../../enterprise/meta/include/functions_meta.php:557 +#: ../../enterprise/godmode/setup/setup.php:90 +#: ../../include/functions_config.php:389 +msgid "Size of collection" +msgstr "Размер коллекции" -#: ../../enterprise/meta/general/logon_ok.php:62 -#: ../../include/functions_networkmap.php:1745 -msgid "Topology" -msgstr "Топология" +#: ../../enterprise/meta/advanced/metasetup.setup.php:293 +#: ../../enterprise/godmode/setup/setup.php:98 +msgid " Bytes" +msgstr " Байты" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:295 +msgid "Max. agents to add in policy concurrently" +msgstr "" +"Макс. возможное количество Агентов для одновременного добавления в политику" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:295 +msgid "" +"Maximum allowed number of agents to be added in policy concurrently (adding " +"a high number of agents at a time can lead to performance issues)" +msgstr "" +"Максимально разрешенное число одновременного добавления агентов (добавление " +"высокого количества агентов за раз может привести к проблемам в работе)" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:299 +msgid "Enable Agent API" +msgstr "Активировать API Агента" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:321 +msgid "Enable log viewer" +msgstr "Активировать просмотр журнала" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:325 +#: ../../enterprise/meta/include/functions_meta.php:584 +#: ../../godmode/setup/setup_general.php:465 +msgid "Enable console log" +msgstr "Активировать журнал консоли" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:325 +msgid "Log location: pandora_console/log/console.log" +msgstr "Расположение журнала: pandora_console/log/console.log" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:346 +#: ../../enterprise/meta/include/functions_meta.php:593 +#: ../../godmode/setup/setup_general.php:476 +msgid "Enable audit log" +msgstr "Активировать проверку журнала" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:346 +msgid "Log location: pandora_console/log/audit.log" +msgstr "Расположение журнала: pandora_console/log/audit.log" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:49 +#, php-format +msgid "Error creating/updating %s/%s OS" +msgstr "Ошибка при создании/обновлении %s/%s ОС" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:53 +#, php-format +msgid "Created/Updated %s/%s OS" +msgstr "Создано/Обновлено %s/%s ОС" + +#: ../../enterprise/meta/advanced/synchronizing.os.php:64 +msgid "Synchronizing OS" +msgstr "Синхронизация ОС" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:255 +#, php-format +msgid "Error creating %s policies" +msgstr "Ошибка создания %s политик" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:259 +#, php-format +msgid "Created %s policies" +msgstr "Создано %s политик" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:264 +#, php-format +msgid "Error creating/updating %s/%s policy modules" +msgstr "Ошибка создания/обновления %s/ %s модулей политики" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:268 +#, php-format +msgid "Created/Updated %s/%s policy modules" +msgstr "Создано/Обновлено %s/%s модулей политики" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:273 +#, php-format +msgid "Error deleting %s policy modules" +msgstr "Ошибка удаления %s модулей политики" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:277 +#, php-format +msgid "Deleted %s policy modules" +msgstr "Удалено %s модулей политики" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:282 +#, php-format +msgid "Error creating %s policy alerts" +msgstr "Ошибка создания %s предупреждений политики" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:286 +#, php-format +msgid "Created %s policy alerts" +msgstr "Создано %s предупреждений политики" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:291 +#, php-format +msgid "Error deleting %s policy alerts" +msgstr "Ошибка удаления %s предупреждений политики" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:295 +#, php-format +msgid "Deleted %s policy alerts" +msgstr "Удалено %s предупреждений политики" + +#: ../../enterprise/meta/advanced/policymanager.sync.php:319 +#: ../../enterprise/meta/advanced/policymanager.queue.php:210 +#: ../../enterprise/meta/advanced/policymanager.queue.php:257 +#: ../../enterprise/extensions/resource_exportation/functions.php:18 +#: ../../enterprise/godmode/agentes/collection_manager.php:211 +#: ../../enterprise/godmode/agentes/inventory_manager.php:216 +#: ../../enterprise/godmode/agentes/plugins_manager.php:187 +#: ../../enterprise/godmode/policies/policy_queue.php:425 +#: ../../enterprise/godmode/policies/policy_queue.php:479 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:98 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:84 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:191 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:94 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:97 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:427 +#: ../../enterprise/include/functions_policies.php:4097 +#: ../../enterprise/operation/agentes/policy_view.php:50 +#: ../../enterprise/operation/agentes/collection_view.php:61 +#: ../../godmode/agentes/status_monitor_custom_fields.php:73 +#: ../../godmode/agentes/status_monitor_custom_fields.php:142 +#: ../../godmode/agentes/module_manager.php:771 +#: ../../godmode/alerts/alert_view.php:119 +#: ../../include/ajax/alert_list.ajax.php:271 ../../include/ajax/module.php:974 +#: ../../operation/agentes/alerts_status.php:526 +#: ../../operation/agentes/alerts_status.php:562 +#: ../../operation/agentes/status_monitor.php:1214 +msgid "Policy" +msgstr "Политика" + +#: ../../enterprise/meta/advanced/license_meta.php:50 +msgid "Metaconsole and all nodes license updated" +msgstr "Лицензия метаконсоли и всех узлов обновлена" + +#: ../../enterprise/meta/advanced/license_meta.php:52 +#, php-format +msgid "Metaconsole license updated but %d of %d node synchronization failed" +msgstr "" +"Лицензия метаконсоли обновлена, но %d из %d синхронизации всех узлов не " +"выполнено" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:71 +#: ../../godmode/menu.php:327 ../../godmode/setup/setup.php:122 +#: ../../godmode/setup/setup.php:257 +msgid "Performance" +msgstr "Производительность" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:76 +#: ../../enterprise/meta/include/functions_meta.php:1862 +#: ../../godmode/setup/performance.php:257 +#: ../../godmode/setup/performance.php:444 +#: ../../include/functions_config.php:761 +msgid "Max. days before delete events" +msgstr "Макс. количество дней до удаления событий" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:80 +#: ../../enterprise/meta/include/functions_meta.php:1871 +msgid "Active events history" +msgstr "История активных событий" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:85 +#: ../../enterprise/meta/include/functions_meta.php:1880 +#: ../../godmode/setup/performance.php:278 +#: ../../include/functions_config.php:774 +msgid "Max. days before delete audit events" +msgstr "Количество дней до удаления задач аудита" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:88 +#: ../../enterprise/meta/include/functions_meta.php:1889 +#: ../../godmode/setup/performance.php:535 +#: ../../include/functions_config.php:806 +msgid "Default hours for event view" +msgstr "Часы по умолчанию для просмотра событий" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:91 +msgid "Migration block size" +msgstr "Размер блока миграции" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:101 +#: ../../godmode/setup/performance.php:609 +msgid "Events response max. execution" +msgstr "Максимальное время активации ответа событий" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:103 +msgid "" +"Number of events that will perform the desired action at the same time" +msgstr "" +"Количество событий, которые будут производить желаемое действие одновременно" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:115 +#: ../../godmode/setup/performance.php:619 +#: ../../include/functions_config.php:868 +msgid "Row limit in csv log" +msgstr "Лимит строк в журнале csv" + +#: ../../enterprise/meta/advanced/collections.php:39 +msgid "" +"The previous configuration of collections has been imported from the nodes. " +"Please check that the definitions are correct." +msgstr "" +"Предыдущая конфигурация коллекций была импортирована из узлов. Проверьте " +"правильность определений." + +#: ../../enterprise/meta/advanced/collections.php:39 +#: ../../godmode/servers/plugin.php:627 +msgid "Note:" +msgstr "Примечание:" + +#: ../../enterprise/meta/advanced/collections.php:40 +msgid "" +"These definitions will not be operational until you manually \n" +" copy the files from the nodes to the atachment/collection/ directory of " +"the meta console." +msgstr "" +"Эти определения не будут работать, пока вы не скопируете \n" +" вручную файлы из узлов в прикрепленные файлы/ файлы коллекции/ каталог " +"Метаконсоли." + +#: ../../enterprise/meta/advanced/collections.php:42 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:471 +#: ../../godmode/servers/plugin.php:630 +msgid "You can find more information at:" +msgstr "Вы можете найти больше информации здесь:" + +#: ../../enterprise/meta/advanced/collections.php:64 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:124 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:220 +#: ../../enterprise/meta/monitoring/group_view.php:239 +#: ../../enterprise/meta/monitoring/group_view.php:245 +#: ../../enterprise/meta/monitoring/tactical.php:240 +#: ../../enterprise/meta/include/functions_wizard_meta.php:975 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1059 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1260 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1280 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1495 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1698 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1718 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:53 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:103 +#: ../../enterprise/godmode/massive/massive_edit_services.php:645 +#: ../../enterprise/godmode/services/services.service.php:688 +#: ../../enterprise/godmode/services/services.service.php:919 +#: ../../enterprise/godmode/services/services.elements.php:372 +#: ../../enterprise/godmode/setup/setup_history.php:580 +#: ../../enterprise/include/functions_reporting.php:4700 +#: ../../enterprise/include/functions_services.php:1345 +#: ../../enterprise/include/functions_login.php:23 +#: ../../enterprise/operation/agentes/transactional_map.php:324 +#: ../../enterprise/operation/agentes/tag_view.php:111 +#: ../../enterprise/operation/services/services.service.php:194 +#: ../../enterprise/operation/services/services.service.php:245 +#: ../../enterprise/operation/services/services.service_map.php:169 +#: ../../enterprise/operation/services/services.treeview_services.php:294 +#: ../../enterprise/operation/services/services.list.php:248 +#: ../../enterprise/operation/services/services.list.php:512 +#: ../../enterprise/operation/services/services.list.php:562 +#: ../../enterprise/operation/services/services.table_services.php:200 +#: ../../godmode/modules/manage_network_components_form_wizard.php:380 +#: ../../godmode/groups/group_list.php:992 +#: ../../godmode/users/configure_user.php:1630 +#: ../../godmode/massive/massive_copy_modules.php:115 +#: ../../godmode/massive/massive_copy_modules.php:275 +#: ../../godmode/massive/massive_delete_modules.php:414 +#: ../../godmode/massive/massive_delete_modules.php:435 +#: ../../godmode/massive/massive_delete_agents.php:152 +#: ../../godmode/massive/massive_edit_agents.php:444 +#: ../../godmode/massive/massive_edit_agents.php:719 +#: ../../godmode/massive/massive_edit_modules.php:374 +#: ../../godmode/massive/massive_edit_modules.php:460 +#: ../../godmode/setup/setup_netflow.php:70 +#: ../../godmode/servers/plugin.php:640 ../../mobile/operation/agents.php:41 +#: ../../mobile/operation/modules.php:52 +#: ../../include/functions_reporting_html.php:1980 +#: ../../include/functions.php:1034 ../../include/functions.php:1271 +#: ../../include/functions.php:1274 ../../include/functions.php:1313 +#: ../../include/functions_graph.php:3503 +#: ../../include/functions_graph.php:3504 +#: ../../include/functions_graph.php:5070 ../../include/functions_ui.php:291 +#: ../../include/functions_ui.php:2580 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 +#: ../../include/class/Diagnostics.class.php:1803 +#: ../../include/class/AgentWizard.class.php:1339 +#: ../../include/class/AgentWizard.class.php:3883 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:312 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:382 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:415 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:659 +#: ../../include/functions_events.php:3282 ../../operation/tree.php:178 +#: ../../operation/tree.php:222 ../../operation/tree.php:410 +#: ../../operation/agentes/estado_agente.php:245 +#: ../../operation/agentes/status_monitor.php:435 +#: ../../operation/agentes/group_view.php:198 +#: ../../operation/agentes/group_view.php:203 +#: ../../operation/agentes/estado_monitores.php:525 +#: ../../operation/agentes/tactical.php:153 +#: ../../operation/netflow/nf_live_view.php:451 +#: ../../operation/gis_maps/render_view.php:152 +msgid "Warning" +msgstr "Предостережение" + +#: ../../enterprise/meta/advanced/collections.php:139 +msgid "Deleted collection to the nodes" +msgstr "Коллекция удалена из узлов" + +#: ../../enterprise/meta/advanced/collections.php:140 +msgid "The collection could not be deleted to the nodes" +msgstr "Коллекция не может быть удалена из узлов" + +#: ../../enterprise/meta/advanced/collections.php:151 +#: ../../enterprise/meta/advanced/collections.php:173 +#: ../../enterprise/godmode/agentes/collection_manager.php:100 +#: ../../enterprise/godmode/agentes/collections.php:182 +#: ../../enterprise/godmode/agentes/collections.php:204 +msgid "Successful create collection package." +msgstr "Успешное создание пакета коллекции." + +#: ../../enterprise/meta/advanced/collections.php:174 +#: ../../enterprise/godmode/agentes/collection_manager.php:101 +#: ../../enterprise/godmode/agentes/collections.php:205 +msgid "Can not create collection package." +msgstr "Пакет коллекции не может быть создан." + +#: ../../enterprise/meta/advanced/collections.php:188 +msgid "Added collection to the nodes" +msgstr "Коллекция добавлена в узлы" + +#: ../../enterprise/meta/advanced/collections.php:189 +msgid "The collection could not be added to the nodes" +msgstr "Коллекцию нельзя добавить в узлы" + +#: ../../enterprise/meta/advanced/collections.php:289 +msgid "To manage collections you must activate centralized management" +msgstr "" +"Чтобы управлять коллекциями вы должны активировать централизованное " +"управление" + +#: ../../enterprise/meta/advanced/collections.php:302 +#: ../../enterprise/meta/advanced/collections.php:308 +#: ../../godmode/users/user_list.php:354 ../../godmode/users/user_list.php:358 +msgid "Search by username, fullname or email" +msgstr "Поиск по имени пользователя, полному имени или по email" + +#: ../../enterprise/meta/advanced/collections.php:327 +#: ../../enterprise/meta/advanced/policymanager.queue.php:246 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:326 +#: ../../enterprise/meta/agentsearch.php:94 +#: ../../enterprise/godmode/modules/local_components.php:529 +#: ../../enterprise/godmode/alerts/alert_events_list.php:453 +#: ../../godmode/modules/manage_network_components.php:667 +#: ../../godmode/users/user_list.php:377 +#: ../../godmode/alerts/alert_actions.php:309 +#: ../../godmode/alerts/alert_templates.php:331 +#: ../../godmode/reporting/reporting_builder.list_items.php:273 +#: ../../godmode/tag/tag.php:206 ../../godmode/tag/tag.php:342 +#: ../../operation/tree.php:256 ../../operation/agentes/alerts_status.php:473 +#: ../../operation/events/events_list.php:1090 +msgid "Show Options" +msgstr "Показать Опции" + +#: ../../enterprise/meta/advanced/collections.php:334 +#: ../../godmode/users/user_list.php:384 +msgid "Users control filter" +msgstr "Фильтр контроля пользователей" + +#: ../../enterprise/meta/advanced/collections.php:335 +#: ../../enterprise/godmode/policies/policy_queue.php:363 +#: ../../enterprise/godmode/policies/policy_queue.php:468 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 +#: ../../godmode/users/user_list.php:385 +#: ../../godmode/snmpconsole/snmp_alert.php:1194 +#: ../../godmode/alerts/alert_list.list.php:172 +#: ../../operation/agentes/alerts_status.php:490 +#: ../../operation/agentes/graphs.php:269 +#: ../../operation/snmpconsole/snmp_view.php:726 +#: ../../operation/snmpconsole/snmp_view.php:815 +msgid "Toggle filter(s)" +msgstr "Переключить фильтр(ы)" + +#: ../../enterprise/meta/advanced/collections.php:343 +#: ../../enterprise/godmode/agentes/collections.php:239 +msgid "Error: The main directory of collections does not exist." +msgstr "Ошибка: Главный каталог коллекций не существует." + +#: ../../enterprise/meta/advanced/collections.php:408 +#: ../../enterprise/godmode/agentes/collections.php:321 +#: ../../enterprise/include/functions_groups.php:81 +#: ../../enterprise/operation/agentes/ver_agente.php:212 +#: ../../godmode/agentes/configurar_agente.php:698 +msgid "Collection" +msgstr "Коллекция" + +#: ../../enterprise/meta/advanced/collections.php:409 +#: ../../enterprise/godmode/agentes/collection_manager.php:116 +#: ../../enterprise/godmode/agentes/collections.php:322 +#: ../../enterprise/godmode/policies/policy_collections.php:154 +#: ../../enterprise/godmode/policies/policy_collections.php:249 +msgid "Short Name" +msgstr "Краткое имя" + +#: ../../enterprise/meta/advanced/collections.php:445 +#: ../../enterprise/godmode/agentes/collections.php:354 +msgid "Are you sure to delete?" +msgstr "Вы действительно хотите удалить?" + +#: ../../enterprise/meta/advanced/collections.php:446 +#: ../../enterprise/godmode/agentes/collections.php:355 +msgid "Delete collection" +msgstr "Удалить коллекцию" + +#: ../../enterprise/meta/advanced/collections.php:452 +#: ../../enterprise/godmode/agentes/collections.php:362 +msgid "Are you sure to re-apply?" +msgstr "Вы хотите повторить применение?" + +#: ../../enterprise/meta/advanced/collections.php:453 +#: ../../enterprise/godmode/agentes/collections.php:363 +msgid "Re-Apply changes" +msgstr "Повторно применить изменения" + +#: ../../enterprise/meta/advanced/collections.php:460 +#: ../../enterprise/godmode/agentes/collections.php:370 +msgid "Are you sure to apply?" +msgstr "Вы хотите осуществить применение?" + +#: ../../enterprise/meta/advanced/collections.php:461 +#: ../../enterprise/godmode/agentes/collections.php:371 +msgid "Apply changes" +msgstr "Применить изменения" + +#: ../../enterprise/meta/advanced/collections.php:499 +#: ../../general/first_task/collections.php:18 +msgid "There are no collections defined yet." +msgstr "Вы еще не выбрали коллекцию." + +#: ../../enterprise/meta/advanced/policymanager.queue.php:58 +#: ../../enterprise/godmode/policies/policy_queue.php:62 +msgid "Operation successfully deleted from the queue" +msgstr "Операция успешно удалена из очереди" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:59 +#: ../../enterprise/godmode/policies/policy_queue.php:63 +msgid "Operation cannot be deleted from the queue" +msgstr "Операция не может быть удалена из очереди" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:214 +#: ../../enterprise/meta/advanced/policymanager.queue.php:259 +#: ../../enterprise/meta/include/functions_autoprovision.php:615 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:361 +#: ../../enterprise/godmode/policies/policy_queue.php:437 +#: ../../enterprise/godmode/policies/policy_queue.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:223 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3474 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143 +#: ../../enterprise/include/functions_reporting_csv.php:926 +#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3558 +#: ../../include/functions_reporting_html.php:1865 +#: ../../include/functions_reporting_html.php:4151 +#: ../../include/functions_menu.php:604 +#: ../../include/class/ExternalTools.class.php:517 +msgid "Operation" +msgstr "Операция" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:218 +#: ../../enterprise/godmode/policies/policy_queue.php:441 +msgid "Apply (database and files)" +msgstr "Применить (базу данных и файлы)" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:219 +#: ../../enterprise/meta/advanced/policymanager.queue.php:311 +#: ../../enterprise/godmode/policies/policy_queue.php:442 +#: ../../enterprise/godmode/policies/policy_queue.php:532 +msgid "Apply (only database)" +msgstr "Применить (только базу данных)" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:229 +#: ../../enterprise/godmode/policies/policy_queue.php:452 +msgid "Complete" +msgstr "Завершить" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:230 +#: ../../enterprise/godmode/policies/policy_queue.php:453 +msgid "Incomplete" +msgstr "Не завершено" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:235 +#: ../../enterprise/extensions/backup/main.php:120 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:142 +#: ../../enterprise/godmode/policies/policy_queue.php:458 +#: ../../enterprise/godmode/policies/policies.php:374 +#: ../../enterprise/godmode/policies/policy_linking.php:104 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 +#: ../../enterprise/godmode/setup/setup_skins.php:93 +#: ../../enterprise/godmode/setup/setup_acl.php:442 +#: ../../enterprise/include/class/SAPView.class.php:393 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2896 +#: ../../enterprise/include/functions_ipam.php:1616 +#: ../../enterprise/operation/services/services.treeview_services.php:178 +#: ../../enterprise/operation/services/services.treeview_services.php:183 +#: ../../enterprise/operation/services/services.list.php:461 +#: ../../enterprise/operation/services/services.list.php:466 +#: ../../enterprise/operation/services/services.table_services.php:403 +#: ../../enterprise/operation/services/services.table_services.php:408 +#: ../../godmode/modules/manage_network_templates_form.php:265 +#: ../../godmode/modules/manage_network_templates_form.php:325 +#: ../../godmode/agentes/module_manager.php:67 +#: ../../godmode/netflow/nf_item_list.php:183 +#: ../../godmode/snmpconsole/snmp_alert.php:1189 +#: ../../godmode/snmpconsole/snmp_filters.php:182 +#: ../../godmode/snmpconsole/snmp_filters.php:269 +#: ../../godmode/admin_access_logs.php:103 +#: ../../godmode/admin_access_logs.php:110 +#: ../../godmode/reporting/reporting_builder.list_items.php:217 +#: ../../godmode/reporting/reporting_builder.list_items.php:261 +#: ../../godmode/reporting/reporting_builder.item_editor.php:919 +#: ../../godmode/tag/tag.php:193 ../../include/functions_ui.php:3339 +#: ../../include/functions_ui.php:3358 ../../include/functions_ui.php:3369 +#: ../../include/class/ModuleTemplates.class.php:765 +#: ../../operation/tree.php:211 ../../operation/agentes/graphs.php:265 +#: ../../operation/agentes/estado_monitores.php:594 +#: ../../operation/agentes/alerts_status.functions.php:137 +#: ../../operation/agentes/alerts_status.functions.php:146 +#: ../../operation/netflow/nf_live_view.php:383 +#: ../../operation/incidents/list_integriaims_incidents.php:227 +#: ../../operation/incidents/list_integriaims_incidents.php:231 +msgid "Filter" +msgstr "Фильтр" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:256 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:98 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:693 +#: ../../enterprise/meta/include/functions_wizard_meta.php:173 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1786 +#: ../../enterprise/meta/agentsearch.php:114 +#: ../../enterprise/meta/agentsearch.php:307 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1857 +#: ../../enterprise/include/class/CSVImportAgents.class.php:152 +#: ../../enterprise/include/class/SAPView.class.php:210 +#: ../../enterprise/include/functions_events.php:283 +#: ../../enterprise/operation/log/log_viewer.php:593 +#: ../../godmode/modules/manage_network_components.php:724 +#: ../../godmode/agentes/agent_manager.php:400 +#: ../../godmode/agentes/module_manager.php:774 +#: ../../godmode/massive/massive_edit_agents.php:618 +#: ../../godmode/reporting/reporting_builder.item_editor.php:968 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:991 +#: ../../include/class/AgentWizard.class.php:1220 +#: ../../include/functions_events.php:6473 +#: ../../operation/events/events_list.php:809 +#: ../../operation/events/events.php:1148 +#: ../../operation/events/events.build_table.php:156 +#: ../../operation/servers/recon_view.php:174 +msgid "Server" +msgstr "Сервер" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:260 +#: ../../enterprise/godmode/policies/policy_queue.php:482 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:697 +#: ../../enterprise/include/class/Omnishell.class.php:401 +#: ../../enterprise/include/functions_ipam.php:1274 +#: ../../enterprise/include/functions_ipam.php:1281 +#: ../../enterprise/include/functions_ipam.php:1286 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:557 +#: ../../operation/servers/recon_view.php:109 +#: ../../operation/servers/recon_view.php:158 +msgid "Progress" +msgstr "Прогресс" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:337 +#: ../../enterprise/godmode/policies/policy_queue.php:562 +msgid "Delete from queue" +msgstr "Удалить из очереди" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:353 +msgid "Empty queue." +msgstr "Пустая очередь." + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:96 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:691 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:261 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:356 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:423 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:533 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:612 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3463 +#: ../../enterprise/meta/agentsearch.php:115 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:401 +#: ../../enterprise/godmode/agentes/collections.agents.php:96 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:82 +#: ../../enterprise/godmode/policies/policy_linking.php:125 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 +#: ../../enterprise/godmode/services/services.elements.php:94 +#: ../../enterprise/godmode/services/services.elements.php:133 +#: ../../enterprise/godmode/services/services.elements.php:274 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1926 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3235 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3446 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3464 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +#: ../../enterprise/include/functions_inventory.php:330 +#: ../../enterprise/include/functions_inventory.php:786 +#: ../../enterprise/include/functions_inventory.php:842 +#: ../../enterprise/include/functions_reporting_pdf.php:487 +#: ../../enterprise/include/functions_reporting_pdf.php:495 +#: ../../enterprise/include/functions_reporting_pdf.php:503 +#: ../../enterprise/include/functions_reporting_pdf.php:519 +#: ../../enterprise/include/functions_reporting_pdf.php:676 +#: ../../enterprise/include/functions_alert_event.php:1131 +#: ../../enterprise/include/functions_reporting_csv.php:467 +#: ../../enterprise/include/functions_reporting_csv.php:688 +#: ../../enterprise/include/functions_reporting_csv.php:714 +#: ../../enterprise/include/functions_reporting_csv.php:827 +#: ../../enterprise/include/functions_reporting_csv.php:866 +#: ../../enterprise/include/functions_reporting_csv.php:926 +#: ../../enterprise/include/functions_reporting_csv.php:942 +#: ../../enterprise/include/functions_reporting_csv.php:966 +#: ../../enterprise/include/functions_reporting_csv.php:1082 +#: ../../enterprise/include/functions_reporting_csv.php:1113 +#: ../../enterprise/include/functions_reporting_csv.php:1168 +#: ../../enterprise/include/functions_reporting_csv.php:1223 +#: ../../enterprise/include/functions_reporting_csv.php:1272 +#: ../../enterprise/include/functions_reporting_csv.php:1327 +#: ../../enterprise/include/functions_reporting_csv.php:1356 +#: ../../enterprise/include/functions_reporting_csv.php:1400 +#: ../../enterprise/include/functions_reporting_csv.php:1446 +#: ../../enterprise/include/functions_reporting_csv.php:1519 +#: ../../enterprise/include/functions_reporting_csv.php:1638 +#: ../../enterprise/include/functions_reporting_csv.php:1833 +#: ../../enterprise/include/functions_reporting_csv.php:1906 +#: ../../enterprise/include/functions_reporting_csv.php:2139 +#: ../../enterprise/include/functions_reporting_csv.php:2175 +#: ../../enterprise/include/functions_reporting_csv.php:2206 +#: ../../enterprise/include/functions_reporting_csv.php:2323 +#: ../../enterprise/include/functions_reporting_csv.php:2376 +#: ../../enterprise/include/class/LogSource.class.php:599 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:901 +#: ../../enterprise/include/functions_reporting.php:1810 +#: ../../enterprise/include/functions_reporting.php:2144 +#: ../../enterprise/include/functions_reporting.php:2175 +#: ../../enterprise/include/functions_reporting.php:2193 +#: ../../enterprise/include/functions_reporting.php:2744 +#: ../../enterprise/include/functions_reporting.php:3741 +#: ../../enterprise/include/functions_reporting.php:4765 +#: ../../enterprise/include/functions_services.php:1524 +#: ../../enterprise/include/functions_events.php:147 +#: ../../enterprise/operation/agentes/tag_view.php:584 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:159 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:326 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:442 +#: ../../enterprise/operation/log/log_viewer.php:612 +#: ../../enterprise/operation/inventory/inventory.php:237 +#: ../../enterprise/tools/ipam/ipam_network.php:357 +#: ../../enterprise/tools/ipam/ipam_ajax.php:234 +#: ../../extensions/insert_data.php:155 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/agentes/module_manager_editor_prediction.php:112 +#: ../../godmode/agentes/planned_downtime.list.php:177 +#: ../../godmode/agentes/module_manager_editor_common.php:1204 +#: ../../godmode/agentes/module_manager_editor_common.php:1257 +#: ../../godmode/gis_maps/configure_gis_map.php:558 +#: ../../godmode/massive/massive_copy_modules.php:130 +#: ../../godmode/massive/massive_copy_modules.php:294 +#: ../../godmode/massive/massive_standby_alerts.php:199 +#: ../../godmode/massive/massive_standby_alerts.php:234 +#: ../../godmode/massive/massive_enable_disable_alerts.php:187 +#: ../../godmode/massive/massive_enable_disable_alerts.php:222 +#: ../../godmode/alerts/alert_list.list.php:468 +#: ../../godmode/alerts/alert_list.list.php:718 +#: ../../godmode/alerts/alert_view.php:64 +#: ../../godmode/alerts/alert_list.builder.php:55 +#: ../../godmode/reporting/reporting_builder.list_items.php:391 +#: ../../godmode/reporting/create_container.php:387 +#: ../../godmode/reporting/create_container.php:554 +#: ../../godmode/reporting/create_container.php:627 +#: ../../godmode/reporting/graph_builder.graph_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1381 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3096 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3527 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3551 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.wizard.php:470 +#: ../../godmode/reporting/visual_console_builder.wizard.php:758 +#: ../../godmode/reporting/visual_console_builder.wizard.php:781 +#: ../../godmode/servers/plugin.php:70 ../../mobile/operation/agents.php:75 +#: ../../mobile/operation/agents.php:384 ../../mobile/operation/modules.php:584 +#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:316 +#: ../../mobile/operation/events.php:553 +#: ../../include/functions_visual_map_editor.php:422 +#: ../../include/functions_visual_map_editor.php:455 +#: ../../include/functions_reporting_html.php:522 +#: ../../include/functions_reporting_html.php:918 +#: ../../include/functions_reporting_html.php:1029 +#: ../../include/functions_reporting_html.php:1037 +#: ../../include/functions_reporting_html.php:1560 +#: ../../include/functions_reporting_html.php:1863 +#: ../../include/functions_reporting_html.php:2582 +#: ../../include/functions_reporting_html.php:2674 +#: ../../include/functions_reporting_html.php:2977 +#: ../../include/functions_reporting_html.php:3057 +#: ../../include/functions_reporting_html.php:3065 +#: ../../include/functions_reporting_html.php:3074 +#: ../../include/functions_reporting_html.php:3086 +#: ../../include/functions_reporting_html.php:3242 +#: ../../include/functions_reporting_html.php:3365 +#: ../../include/functions_reporting_html.php:3451 +#: ../../include/functions_reporting_html.php:4148 +#: ../../include/functions_reporting_html.php:4204 +#: ../../include/functions_reporting_html.php:4242 +#: ../../include/functions_reporting_html.php:4551 +#: ../../include/functions_reporting_html.php:4591 +#: ../../include/functions_reporting_html.php:4841 +#: ../../include/ajax/alert_list.ajax.php:440 +#: ../../include/functions_graph.php:5286 ../../include/functions_gis.php:229 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:540 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:393 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:356 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:331 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:492 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:217 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:580 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:215 +#: ../../include/class/NetworkMap.class.php:2859 +#: ../../include/class/NetworkMap.class.php:2910 +#: ../../include/class/NetworkMap.class.php:3163 +#: ../../include/class/AgentsAlerts.class.php:403 +#: ../../include/class/AgentsAlerts.class.php:979 +#: ../../include/functions_reporting.php:5795 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:297 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:316 +#: ../../include/lib/Dashboard/Widgets/module_value.php:290 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:265 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:286 +#: ../../include/lib/Dashboard/Widgets/module_status.php:306 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:261 +#: ../../include/lib/Dashboard/Widgets/top_n.php:206 +#: ../../include/functions_snmp_browser.php:1619 +#: ../../operation/search_agents.php:41 ../../operation/search_agents.php:47 +#: ../../operation/agentes/alerts_status.php:536 +#: ../../operation/agentes/alerts_status.php:606 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/estado_agente.php:711 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1219 +#: ../../operation/agentes/estado_monitores.php:123 +#: ../../operation/agentes/ver_agente.php:1097 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 +#: ../../operation/search_alerts.php:33 ../../operation/search_modules.php:32 +#: ../../operation/events/sound_events.php:162 +#: ../../operation/events/events.php:1769 +#: ../../operation/events/events.build_table.php:80 +msgid "Agent" +msgstr "Агент" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:97 +#: ../../enterprise/godmode/servers/HA_cluster.php:136 +#: ../../enterprise/include/functions_reporting_csv.php:1009 +#: ../../enterprise/include/class/Azure.cloud.php:803 +#: ../../enterprise/include/class/VMware.app.php:607 +#: ../../enterprise/include/class/DeploymentCenter.class.php:755 +#: ../../enterprise/include/class/DeploymentCenter.class.php:805 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1280 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/Aws.S3.php:564 +#: ../../enterprise/include/class/Aws.cloud.php:539 +#: ../../enterprise/include/functions_ipam.php:1483 +#: ../../enterprise/include/functions_ipam.php:1484 +#: ../../extensions/api_checker.php:123 +#: ../../extensions/users_connected.php:101 +#: ../../godmode/admin_access_logs.php:88 +#: ../../godmode/admin_access_logs.php:89 +#: ../../godmode/reporting/visual_console_builder.elements.php:738 +#: ../../include/functions_visual_map_editor.php:1460 +#: ../../include/functions_reporting_html.php:2599 +#: ../../include/functions_reporting_html.php:2883 +#: ../../operation/network/network_report.php:184 +msgid "IP" +msgstr "IP" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99 +#: ../../godmode/massive/massive_edit_modules.php:456 +msgid "Agent Status" +msgstr "Статус Агента" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:114 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:137 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:219 +#: ../../enterprise/meta/monitoring/group_view.php:238 +#: ../../enterprise/meta/monitoring/group_view.php:244 +#: ../../enterprise/meta/monitoring/tactical.php:241 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 +#: ../../enterprise/godmode/services/services.elements.php:390 +#: ../../enterprise/include/functions_services.php:1325 +#: ../../enterprise/operation/agentes/tag_view.php:110 +#: ../../enterprise/operation/services/services.treeview_services.php:309 +#: ../../godmode/groups/group_list.php:1007 +#: ../../godmode/netflow/nf_edit_form.php:235 +#: ../../godmode/massive/massive_copy_modules.php:114 +#: ../../godmode/massive/massive_copy_modules.php:274 +#: ../../godmode/massive/massive_delete_modules.php:413 +#: ../../godmode/massive/massive_delete_modules.php:434 +#: ../../godmode/massive/massive_delete_agents.php:151 +#: ../../godmode/massive/massive_edit_agents.php:443 +#: ../../godmode/massive/massive_edit_modules.php:373 +#: ../../godmode/massive/massive_edit_modules.php:459 +#: ../../mobile/operation/agents.php:40 ../../mobile/operation/modules.php:51 +#: ../../include/functions_reporting_html.php:1978 +#: ../../include/functions.php:1030 ../../include/functions.php:1269 +#: ../../include/functions.php:1276 ../../include/functions.php:1309 +#: ../../include/functions_graph.php:3493 +#: ../../include/functions_graph.php:3494 +#: ../../include/functions_graph.php:5066 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:311 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:381 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:414 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:674 +#: ../../include/functions_events.php:3278 ../../operation/tree.php:177 +#: ../../operation/tree.php:221 ../../operation/tree.php:425 +#: ../../operation/agentes/estado_agente.php:244 +#: ../../operation/agentes/status_monitor.php:434 +#: ../../operation/agentes/group_view.php:197 +#: ../../operation/agentes/group_view.php:202 +#: ../../operation/agentes/estado_monitores.php:523 +#: ../../operation/agentes/tactical.php:154 +#: ../../operation/netflow/nf_live_view.php:384 +msgid "Normal" +msgstr "Нормальное" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:119 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:221 +#: ../../enterprise/meta/monitoring/group_view.php:240 +#: ../../enterprise/meta/monitoring/group_view.php:246 +#: ../../enterprise/meta/monitoring/tactical.php:239 +#: ../../enterprise/meta/include/functions_wizard_meta.php:984 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1068 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1269 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1293 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1504 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1588 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1707 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1725 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:104 +#: ../../enterprise/godmode/massive/massive_edit_services.php:631 +#: ../../enterprise/godmode/services/services.service.php:674 +#: ../../enterprise/godmode/services/services.elements.php:363 +#: ../../enterprise/include/functions_reporting.php:3051 +#: ../../enterprise/include/functions_reporting.php:4054 +#: ../../enterprise/include/functions_reporting.php:4705 +#: ../../enterprise/include/functions_reporting.php:5921 +#: ../../enterprise/include/functions_services.php:1337 +#: ../../enterprise/operation/agentes/tag_view.php:112 +#: ../../enterprise/operation/services/services.service.php:193 +#: ../../enterprise/operation/services/services.service.php:239 +#: ../../enterprise/operation/services/services.service_map.php:168 +#: ../../enterprise/operation/services/services.treeview_services.php:289 +#: ../../enterprise/operation/services/services.list.php:249 +#: ../../enterprise/operation/services/services.list.php:511 +#: ../../enterprise/operation/services/services.list.php:556 +#: ../../enterprise/operation/services/services.table_services.php:201 +#: ../../extensions/module_groups.php:50 +#: ../../godmode/modules/manage_network_components_form_wizard.php:402 +#: ../../godmode/groups/group_list.php:987 +#: ../../godmode/massive/massive_copy_modules.php:116 +#: ../../godmode/massive/massive_copy_modules.php:276 +#: ../../godmode/massive/massive_delete_modules.php:415 +#: ../../godmode/massive/massive_delete_modules.php:436 +#: ../../godmode/massive/massive_delete_agents.php:153 +#: ../../godmode/massive/massive_edit_agents.php:445 +#: ../../godmode/massive/massive_edit_modules.php:375 +#: ../../godmode/massive/massive_edit_modules.php:461 +#: ../../mobile/operation/agents.php:39 ../../mobile/operation/modules.php:53 +#: ../../include/functions_reporting_html.php:839 +#: ../../include/functions_reporting_html.php:1979 +#: ../../include/functions_reporting_html.php:4064 +#: ../../include/functions.php:1038 ../../include/functions.php:1273 +#: ../../include/functions.php:1274 ../../include/functions.php:1276 +#: ../../include/functions.php:1317 ../../include/functions_graph.php:3513 +#: ../../include/functions_graph.php:3514 +#: ../../include/functions_graph.php:5074 ../../include/functions_ui.php:2580 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 +#: ../../include/class/AgentWizard.class.php:1342 +#: ../../include/class/AgentWizard.class.php:3897 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:313 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:383 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:416 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 +#: ../../include/functions_events.php:3286 ../../operation/tree.php:179 +#: ../../operation/tree.php:223 ../../operation/tree.php:405 +#: ../../operation/agentes/estado_agente.php:246 +#: ../../operation/agentes/status_monitor.php:436 +#: ../../operation/agentes/group_view.php:199 +#: ../../operation/agentes/group_view.php:204 +#: ../../operation/agentes/estado_monitores.php:521 +#: ../../operation/agentes/tactical.php:152 +#: ../../operation/gis_maps/render_view.php:151 +msgid "Critical" +msgstr "Критический" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:128 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:222 +#: ../../enterprise/meta/monitoring/group_view.php:236 +#: ../../enterprise/meta/monitoring/group_view.php:242 +#: ../../enterprise/meta/monitoring/tactical.php:242 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:105 +#: ../../enterprise/godmode/services/services.elements.php:381 +#: ../../enterprise/include/functions_cron.php:567 +#: ../../enterprise/include/functions_reporting_pdf.php:600 +#: ../../enterprise/include/functions_HA_cluster.php:70 +#: ../../enterprise/include/class/DatabaseHA.class.php:222 +#: ../../enterprise/include/functions_reporting.php:1847 +#: ../../enterprise/include/functions_reporting.php:2792 +#: ../../enterprise/include/functions_reporting.php:3790 +#: ../../enterprise/include/functions_reporting.php:4710 +#: ../../enterprise/include/functions_reporting.php:5881 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:579 +#: ../../enterprise/operation/agentes/transactional_map.php:330 +#: ../../enterprise/operation/agentes/transactional_map.php:348 +#: ../../enterprise/operation/agentes/tag_view.php:113 +#: ../../enterprise/operation/services/services.service.php:251 +#: ../../enterprise/operation/services/services.service_map.php:171 +#: ../../enterprise/operation/services/services.treeview_services.php:299 +#: ../../enterprise/operation/services/services.list.php:250 +#: ../../enterprise/operation/services/services.list.php:569 +#: ../../enterprise/operation/services/services.table_services.php:202 +#: ../../extensions/module_groups.php:52 +#: ../../godmode/groups/group_list.php:997 +#: ../../godmode/massive/massive_copy_modules.php:117 +#: ../../godmode/massive/massive_copy_modules.php:277 +#: ../../godmode/massive/massive_delete_modules.php:416 +#: ../../godmode/massive/massive_delete_modules.php:437 +#: ../../godmode/massive/massive_delete_agents.php:154 +#: ../../godmode/massive/massive_edit_agents.php:446 +#: ../../godmode/massive/massive_edit_modules.php:376 +#: ../../godmode/massive/massive_edit_modules.php:462 +#: ../../godmode/alerts/alert_list.builder.php:289 +#: ../../mobile/operation/agents.php:42 ../../mobile/operation/modules.php:54 +#: ../../include/graphs/functions_flot.php:301 +#: ../../include/functions_reporting_html.php:1968 +#: ../../include/functions_reporting_html.php:1981 +#: ../../include/functions_reporting_html.php:2789 +#: ../../include/functions_reporting_html.php:3197 +#: ../../include/functions.php:1224 ../../include/functions.php:4106 +#: ../../include/ajax/module.php:1071 ../../include/functions_ui.php:538 +#: ../../include/functions_ui.php:539 +#: ../../include/functions_visual_map.php:2455 +#: ../../include/functions_visual_map.php:2483 +#: ../../include/functions_visual_map.php:2501 +#: ../../include/functions_visual_map.php:2519 +#: ../../include/functions_alerts.php:699 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 +#: ../../include/functions_reports.php:554 ../../include/functions_maps.php:54 +#: ../../include/functions_netflow.php:1608 +#: ../../include/functions_reporting.php:5242 +#: ../../include/functions_filemanager.php:687 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:384 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:417 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:664 +#: ../../include/functions_events.php:3190 ../../operation/tree.php:180 +#: ../../operation/tree.php:224 ../../operation/tree.php:415 +#: ../../operation/agentes/estado_agente.php:247 +#: ../../operation/agentes/status_monitor.php:437 +#: ../../operation/agentes/group_view.php:195 +#: ../../operation/agentes/group_view.php:200 +#: ../../operation/agentes/estado_monitores.php:526 +#: ../../operation/agentes/pandora_networkmap.view.php:292 +#: ../../operation/agentes/tactical.php:155 +#: ../../operation/events/events.php:2061 +msgid "Unknown" +msgstr "Неизвестно" + +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:133 +msgid "No init" +msgstr "Не инициализировано" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:48 +msgid "Custom fields View" +msgstr "Вид персонализированных полей" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:60 +msgid "Custom Fields View" +msgstr "Вид персонализированных полей" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:160 +#: ../../enterprise/godmode/policies/policies.php:361 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:689 +#: ../../extensions/agents_modules.php:381 +#: ../../godmode/agentes/modificar_agente.php:316 +#: ../../godmode/agentes/planned_downtime.editor.php:785 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1313 +#: ../../include/functions_html.php:1360 +#: ../../operation/agentes/estado_agente.php:233 +#: ../../operation/agentes/status_monitor.php:430 +msgid "Recursion" +msgstr "Рекурсия" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:170 +#: ../../general/first_task/custom_fields.php:24 +msgid "Custom Fields" +msgstr "персонализированные поля" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 +#: ../../godmode/events/event_edit_filter.php:608 +#: ../../operation/events/events_list.php:797 +#: ../../operation/events/events.php:1159 +msgid "Module search" +msgstr "Поиск Модуля" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:197 +msgid "Custom Fields Data" +msgstr "Данные персональных полей" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:223 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:106 +#: ../../enterprise/operation/agentes/tag_view.php:114 +#: ../../godmode/massive/massive_copy_modules.php:118 +#: ../../godmode/massive/massive_copy_modules.php:278 +#: ../../godmode/massive/massive_delete_modules.php:417 +#: ../../godmode/massive/massive_delete_modules.php:438 +#: ../../godmode/massive/massive_delete_agents.php:155 +#: ../../godmode/massive/massive_edit_agents.php:447 +#: ../../godmode/massive/massive_edit_modules.php:377 +#: ../../godmode/massive/massive_edit_modules.php:463 +#: ../../godmode/events/event_edit_filter.php:309 +#: ../../mobile/operation/modules.php:55 ../../include/functions.php:1275 +#: ../../include/lib/Dashboard/Widgets/events_list.php:308 +#: ../../include/functions_events.php:3238 +#: ../../operation/agentes/estado_agente.php:248 +#: ../../operation/agentes/status_monitor.php:438 +#: ../../operation/events/events_list.php:930 +#: ../../operation/events/events.php:987 +msgid "Not normal" +msgstr "Не нормальный" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:225 +#: ../../enterprise/meta/monitoring/group_view.php:237 +#: ../../enterprise/meta/monitoring/group_view.php:243 +#: ../../enterprise/meta/monitoring/tactical.php:243 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:107 +#: ../../enterprise/operation/agentes/transactional_map.php:336 +#: ../../enterprise/operation/agentes/tag_view.php:116 +#: ../../enterprise/operation/services/services.treeview_services.php:304 +#: ../../godmode/groups/group_list.php:1002 +#: ../../godmode/massive/massive_copy_modules.php:119 +#: ../../godmode/massive/massive_copy_modules.php:279 +#: ../../godmode/massive/massive_delete_modules.php:418 +#: ../../godmode/massive/massive_delete_modules.php:439 +#: ../../godmode/massive/massive_delete_agents.php:156 +#: ../../godmode/massive/massive_edit_agents.php:448 +#: ../../godmode/massive/massive_edit_modules.php:378 +#: ../../godmode/massive/massive_edit_modules.php:464 +#: ../../mobile/operation/modules.php:57 +#: ../../include/functions_reporting_html.php:632 +#: ../../include/functions_reporting_html.php:1982 +#: ../../include/functions_reporting_html.php:3872 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:385 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:418 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:669 +#: ../../operation/tree.php:181 ../../operation/tree.php:225 +#: ../../operation/tree.php:420 ../../operation/agentes/estado_agente.php:249 +#: ../../operation/agentes/status_monitor.php:440 +#: ../../operation/agentes/group_view.php:196 +#: ../../operation/agentes/group_view.php:201 +#: ../../operation/agentes/tactical.php:156 +msgid "Not init" +msgstr "Не инициализировано" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:229 +msgid "Status agents" +msgstr "Агенты Статуса" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:247 +msgid "Status module" +msgstr "Модули Статуса" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:267 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:273 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:274 +#: ../../include/ajax/events.php:671 ../../operation/events/events_list.php:364 +#: ../../operation/events/events_list.php:481 +#: ../../operation/events/events_list.php:1038 +#: ../../operation/events/events.php:1087 +msgid "Save filter" +msgstr "Сохранить фильтр" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:281 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:287 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:288 +#: ../../include/ajax/custom_fields.php:587 ../../include/ajax/events.php:425 +#: ../../include/ajax/events.php:441 +#: ../../operation/netflow/nf_live_view.php:389 +#: ../../operation/events/events_list.php:372 +#: ../../operation/events/events_list.php:512 +#: ../../operation/events/events_list.php:523 +#: ../../operation/events/events_list.php:1041 +#: ../../operation/events/events.php:1079 +msgid "Load filter" +msgstr "Загрузить фильтр" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:296 +#: ../../enterprise/extensions/vmware/vmware_view.php:1496 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1533 +#: ../../enterprise/include/class/AgentRepository.class.php:754 +#: ../../enterprise/include/class/Omnishell.class.php:1124 +#: ../../enterprise/include/class/LogSource.class.php:738 +#: ../../enterprise/operation/agentes/tag_view.php:154 +#: ../../godmode/users/user_list.php:611 +#: ../../include/class/ConfigPEN.class.php:252 +#: ../../include/class/CredentialStore.class.php:1078 +#: ../../operation/agentes/status_monitor.php:480 +msgid "Show" +msgstr "Показать" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:311 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:537 +#: ../../enterprise/operation/log/log_viewer.php:778 +#: ../../enterprise/operation/reporting/custom_reporting.php:80 +#: ../../godmode/modules/manage_network_templates.php:276 +#: ../../godmode/agentes/planned_downtime.list.php:544 +#: ../../godmode/admin_access_logs.php:49 +#: ../../include/graphs/functions_flot.php:373 +#: ../../include/class/ModuleTemplates.class.php:931 +#: ../../operation/network/network_report.php:140 +#: ../../operation/incidents/list_integriaims_incidents.php:220 +msgid "Export to CSV" +msgstr "Экспорт в CSV" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:339 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:341 +#: ../../enterprise/include/class/DatabaseHA.class.php:216 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802 +#: ../../include/functions_ui.php:3380 +msgid "Processing" +msgstr "Выполняется" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:366 +#: ../../mobile/operation/groups.php:143 +#: ../../include/functions_reporting_html.php:5023 +#: ../../include/functions_agents.php:3649 +msgid "Agents critical" +msgstr "Критическое состояние Агенты" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:379 +#: ../../include/functions_reporting_html.php:5026 +#: ../../include/functions_agents.php:3659 +msgid "Agents warning" +msgstr "Агент предостережения об опасности" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:392 +#: ../../include/functions_reporting_html.php:5032 +#: ../../include/functions_agents.php:3639 +#: ../../include/functions_agents.php:3693 +msgid "Agents ok" +msgstr "Агенты ОК" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:405 +#: ../../mobile/operation/groups.php:146 +#: ../../include/functions_reporting_html.php:5035 +#: ../../include/functions_agents.php:3669 +msgid "Agents unknown" +msgstr "Агенты неизвестны" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:418 +#: ../../mobile/operation/groups.php:140 +#: ../../include/functions_reporting_html.php:5041 +#: ../../include/functions_agents.php:3683 +msgid "Agents not init" +msgstr "Не инициализированные Агенты" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:444 +#: ../../include/functions_reporting.php:10413 +#: ../../operation/events/sound_events.php:142 +msgid "Monitor critical" +msgstr "Критический монитор" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:455 +#: ../../include/functions_reporting.php:10417 +#: ../../operation/events/sound_events.php:160 +msgid "Monitor warning" +msgstr "Приборы контроля для предостережения об опасности" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:466 +#: ../../include/functions_reporting.php:10424 +msgid "Monitor normal" +msgstr "Монитор нормальный" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:477 +#: ../../include/functions_reporting.php:10428 +#: ../../operation/events/sound_events.php:151 +msgid "Monitor unknown" +msgstr "Монитор неизвестный" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:488 +#: ../../include/functions_reporting.php:10435 +msgid "Monitor not init" +msgstr "Не инициализированный прибор контроля" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:503 +#: ../../include/functions_reporting_html.php:5050 +#: ../../include/functions_reporting_html.php:5055 +msgid "Agents by status" +msgstr "Агенты по статусу" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:511 +#: ../../include/functions_reporting.php:10455 +#: ../../include/functions_reporting.php:10461 +msgid "Monitors by status" +msgstr "Приборы контроля по статусу" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:525 +#: ../../enterprise/operation/services/services.treeview_services.php:287 +#: ../../godmode/groups/group_list.php:985 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:652 +#: ../../operation/tree.php:403 +msgid "Critical agents" +msgstr "Критические Агенты" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:535 +#: ../../enterprise/operation/services/services.treeview_services.php:292 +#: ../../godmode/groups/group_list.php:990 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:657 +#: ../../operation/tree.php:408 +msgid "Warning agents" +msgstr "Агент предостережения" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:545 +#: ../../enterprise/operation/services/services.treeview_services.php:307 +#: ../../godmode/groups/group_list.php:1005 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:672 +#: ../../operation/tree.php:423 +msgid "Normal agents" +msgstr "Нормальные Агенты" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:555 +#: ../../enterprise/operation/services/services.treeview_services.php:297 +#: ../../godmode/groups/group_list.php:995 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 +#: ../../operation/tree.php:413 +msgid "Unknown agents" +msgstr "Неизвестные Агенты" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:565 +#: ../../enterprise/operation/services/services.treeview_services.php:302 +#: ../../godmode/groups/group_list.php:1000 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:667 +#: ../../operation/tree.php:418 +msgid "Not init agents" +msgstr "Не инициализированные Агенты" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:594 +#: ../../enterprise/include/functions_reporting_csv.php:895 +#: ../../enterprise/operation/services/services.treeview_services.php:288 +#: ../../godmode/groups/group_list.php:986 +#: ../../mobile/operation/groups.php:161 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:653 +#: ../../operation/tree.php:404 +msgid "Critical modules" +msgstr "Критические модули" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:604 +#: ../../enterprise/include/functions_reporting_csv.php:895 +#: ../../enterprise/operation/services/services.treeview_services.php:293 +#: ../../godmode/groups/group_list.php:991 +#: ../../mobile/operation/groups.php:158 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 +#: ../../operation/tree.php:409 +msgid "Warning modules" +msgstr "Модули предостережения об опасности" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:614 +#: ../../enterprise/include/functions_reporting_csv.php:895 +#: ../../enterprise/operation/services/services.treeview_services.php:308 +#: ../../godmode/groups/group_list.php:1006 +#: ../../mobile/operation/groups.php:155 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:673 +#: ../../operation/tree.php:424 +msgid "Normal modules" +msgstr "Обычные модули" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:624 +#: ../../enterprise/include/functions_reporting_csv.php:895 +#: ../../enterprise/operation/services/services.treeview_services.php:298 +#: ../../godmode/groups/group_list.php:996 +#: ../../mobile/operation/groups.php:149 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:663 +#: ../../operation/tree.php:414 +msgid "Unknown modules" +msgstr "Неизвестные модули" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:634 +#: ../../enterprise/include/functions_reporting_csv.php:895 +#: ../../enterprise/operation/services/services.treeview_services.php:303 +#: ../../godmode/groups/group_list.php:1001 +#: ../../mobile/operation/groups.php:152 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:668 +#: ../../operation/tree.php:419 +msgid "Not init modules" +msgstr "Нет инициализированных модулей" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:659 +msgid "Total counters" +msgstr "Итоговый счетчик" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:662 +msgid "Total Agents" +msgstr "Итоговые Агенты" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:671 +msgid "Total Modules" +msgstr "Итоговые Модули" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:692 +msgid "I.P" +msgstr "I.P" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:706 +#: ../../include/functions_api.php:148 +msgid "No data to show." +msgstr "Нет данных" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:714 +msgid "There are no custom search defined." +msgstr "Персонализированный поиск не определен" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1138 +#: ../../enterprise/meta/event/custom_events.php:249 +#: ../../godmode/agentes/status_monitor_custom_fields.php:241 +#: ../../godmode/events/custom_events.php:202 +#: ../../include/class/TreeGroupEdition.class.php:164 +msgid "Confirm" +msgstr "Подтвердить" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 +#: ../../enterprise/godmode/modules/configure_local_component.php:464 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:674 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:247 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:338 +#: ../../godmode/agentes/planned_downtime.list.php:403 +#: ../../godmode/menu.php:206 ../../godmode/setup/setup.php:325 +#: ../../include/functions_reports.php:866 +#: ../../include/functions_reports.php:870 +#: ../../include/class/ConfigPEN.class.php:327 +#: ../../include/class/ModuleTemplates.class.php:195 +#: ../../include/class/ModuleTemplates.class.php:213 +msgid "Configuration" +msgstr "Настройки" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1532 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1624 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1748 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1822 +msgid "Preview" +msgstr "Предварительный просмотр" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:211 +#: ../../godmode/agentes/configurar_agente.php:833 +#: ../../godmode/agentes/modificar_agente.php:918 +#: ../../operation/agentes/estado_agente.php:940 +#: ../../operation/agentes/estado_agente.php:950 +#: ../../operation/snmpconsole/snmp_statistics.php:183 +#: ../../operation/snmpconsole/snmp_view.php:958 +msgid "Create agent" +msgstr "Создать агента" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 +msgid "Edit agent" +msgstr "Редакторивать агента" + +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 +msgid "Please, set a valid IP/Name address" +msgstr "Установите действительный адрес IP/имени" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 +msgid "Advanced configuration" +msgstr "Дополнительные настройки" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:618 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:260 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1527 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1619 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1743 +#: ../../enterprise/meta/agentsearch.php:122 +#: ../../enterprise/godmode/policies/policy_alerts.php:35 +#: ../../enterprise/godmode/policies/policies.php:558 +#: ../../enterprise/godmode/massive/massive_edit_services.php:775 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 +#: ../../enterprise/godmode/alerts/alert_events.php:84 +#: ../../enterprise/godmode/alerts/alert_events_list.php:73 +#: ../../enterprise/godmode/alerts/alert_events_list.php:123 +#: ../../enterprise/godmode/alerts/alert_events_list.php:139 +#: ../../enterprise/godmode/alerts/alert_events_list.php:158 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +#: ../../enterprise/godmode/services/services.service.php:892 +#: ../../enterprise/include/functions_policies.php:3790 +#: ../../enterprise/operation/agentes/tag_view.php:593 +#: ../../godmode/groups/configure_group.php:216 +#: ../../godmode/groups/group_list.php:798 +#: ../../godmode/agentes/configurar_agente.php:427 +#: ../../godmode/agentes/modificar_agente.php:789 ../../godmode/menu.php:216 +#: ../../godmode/massive/massive_copy_modules.php:215 +#: ../../godmode/alerts/configure_alert_command.php:43 +#: ../../godmode/alerts/alert_actions.php:74 +#: ../../godmode/alerts/alert_commands.php:490 +#: ../../godmode/alerts/configure_alert_special_days.php:56 +#: ../../godmode/alerts/alert_templates.php:136 +#: ../../godmode/alerts/alert_templates.php:188 +#: ../../godmode/alerts/alert_templates.php:211 +#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/configure_alert_action.php:74 +#: ../../godmode/alerts/configure_alert_action.php:87 +#: ../../godmode/alerts/configure_alert_template.php:74 +#: ../../godmode/alerts/configure_alert_template.php:98 +#: ../../godmode/alerts/configure_alert_template.php:130 +#: ../../godmode/alerts/alert_special_days.php:45 +#: ../../godmode/alerts/alert_list.php:451 +#: ../../godmode/alerts/alert_list.php:453 +#: ../../mobile/include/functions_web.php:26 +#: ../../mobile/operation/agents.php:80 ../../mobile/operation/agents.php:388 +#: ../../mobile/operation/home.php:74 ../../mobile/operation/agent.php:337 +#: ../../mobile/operation/alerts.php:176 +#: ../../include/functions_reporting_html.php:1999 +#: ../../include/functions_reporting_html.php:4851 +#: ../../include/functions_treeview.php:405 +#: ../../include/functions_reports.php:824 +#: ../../include/functions_reports.php:828 +#: ../../include/functions_reports.php:833 +#: ../../include/class/AgentsAlerts.class.php:535 +#: ../../operation/search_agents.php:56 ../../operation/search_results.php:105 +#: ../../operation/agentes/estado_agente.php:738 +#: ../../operation/agentes/ver_agente.php:1329 +msgid "Alerts" +msgstr "Предупреждения" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:309 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 +#: ../../operation/snmpconsole/snmp_browser.php:625 +msgid "Create module" +msgstr "Создать модуль" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 +#: ../../enterprise/godmode/policies/policy_modules.php:376 +msgid "Edit module" +msgstr "Редактировать модуль" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:115 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:175 +#, php-format +msgid "Cannot connect to %s instance." +msgstr "Не удается подключиться к экземпляру %s." + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 +msgid "Invalid characters founded in module name" +msgstr "Недопустимые символы найдены в имени модуля" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:216 +#: ../../godmode/agentes/configurar_agente.php:810 +#: ../../godmode/agentes/configurar_agente.php:832 ../../godmode/menu.php:71 +msgid "Manage agents" +msgstr "Агенты управления" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:354 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:420 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:609 +#: ../../enterprise/meta/agentsearch.php:33 +#: ../../enterprise/meta/agentsearch.php:39 +#: ../../godmode/events/event_edit_filter.php:365 +#: ../../mobile/operation/home.php:166 +#: ../../operation/events/events_list.php:757 +#: ../../operation/events/events.php:1142 +msgid "Agent search" +msgstr "Поиск агента" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:265 +msgid "Select the agent to be edited or deleted" +msgstr "Выберите агенту для изменения или удаления" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:274 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:440 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:550 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:632 +#: ../../godmode/groups/configure_group.php:266 +#: ../../godmode/alerts/configure_alert_action.php:366 +#: ../../mobile/operation/agents.php:191 ../../mobile/operation/modules.php:223 +#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:130 +#: ../../mobile/operation/alerts.php:181 +#: ../../mobile/operation/visualmap.php:283 +#: ../../mobile/operation/visualmaps.php:182 +#: ../../mobile/operation/module_graph.php:364 +#: ../../mobile/operation/module_graph.php:376 +#: ../../mobile/operation/events.php:614 +#: ../../mobile/operation/tactical.php:102 +msgid "Back" +msgstr "Назад" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:314 +msgid "Manage modules" +msgstr "Управление модулями" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:360 +msgid "Select the agent where the module will be created" +msgstr "Выберитв агента, в котором модуль будет создан" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:373 +msgid "Create Module" +msgstr "Создать Модуль" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:430 +msgid "Select the module to be edited or deleted" +msgstr "Выберите модуль для редактирования или удаления" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:473 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:553 +#: ../../godmode/snmpconsole/snmp_alert.php:91 +msgid "Create alert" +msgstr "Создать оповещение" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:478 +#: ../../godmode/users/configure_profile.php:257 +#: ../../godmode/alerts/alert_list.php:451 +#: ../../godmode/alerts/alert_list.php:453 +msgid "Manage alerts" +msgstr "Управление оповещениями" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:540 +msgid "Select the module where the alert will be created" +msgstr "Выберите модуль, в котором оповещение будет создано" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:622 +msgid "Select the alert to be edited or deleted" +msgstr "Выберите оповещение для редактирования или удаления" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 +msgid "Please, set a name" +msgstr "Пожалуйста, выберите имя" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 +msgid "Please, set an interval" +msgstr "Пожалуйста, установите интервал" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../godmode/modules/manage_network_components_form_wizard.php:332 +#: ../../godmode/massive/massive_delete_modules.php:318 +#: ../../godmode/massive/massive_edit_modules.php:297 +msgid "Module type" +msgstr "Тип модуля" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../mobile/include/functions_web.php:24 +#: ../../include/functions_reporting_html.php:4592 +#: ../../include/functions_reporting_html.php:4746 +msgid "Monitor" +msgstr "Монитор" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +msgid "Web check" +msgstr "Веб проверка" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 +#: ../../enterprise/godmode/modules/configure_local_component.php:255 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1909 +#: ../../enterprise/operation/agentes/tag_view.php:135 +#: ../../enterprise/operation/agentes/ver_agente.php:32 +#: ../../extensions/agents_modules.php:384 +#: ../../godmode/modules/manage_network_components_form_common.php:107 +#: ../../godmode/agentes/module_manager_editor_common.php:241 +#: ../../godmode/massive/massive_edit_modules.php:833 +#: ../../godmode/reporting/create_container.php:540 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1366 +#: ../../mobile/operation/modules.php:165 +#: ../../mobile/operation/modules.php:166 +#: ../../mobile/operation/modules.php:274 +#: ../../mobile/operation/modules.php:275 +#: ../../include/functions_graph.php:5309 +#: ../../include/functions_treeview.php:122 +#: ../../include/functions_html.php:1385 +#: ../../include/functions_events.php:4447 +#: ../../operation/agentes/status_monitor.php:459 +#: ../../operation/agentes/estado_monitores.php:552 +#: ../../operation/agentes/ver_agente.php:1085 +msgid "Module group" +msgstr "Группа модулей" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3470 +#: ../../enterprise/extensions/disabled/check_acls.php:139 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:21 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:207 +#: ../../enterprise/godmode/policies/policy_alerts.php:289 +#: ../../enterprise/godmode/policies/policy_alerts.php:504 +#: ../../enterprise/godmode/policies/policy_linking.php:126 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 +#: ../../enterprise/godmode/services/services.elements.php:93 +#: ../../enterprise/godmode/services/services.elements.php:157 +#: ../../enterprise/godmode/services/services.elements.php:275 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:152 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1950 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3238 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3451 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3469 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 +#: ../../enterprise/include/functions_inventory.php:787 +#: ../../enterprise/include/functions_inventory.php:843 +#: ../../enterprise/include/functions_ui.php:47 +#: ../../enterprise/include/functions_reporting_pdf.php:488 +#: ../../enterprise/include/functions_reporting_pdf.php:496 +#: ../../enterprise/include/functions_reporting_pdf.php:504 +#: ../../enterprise/include/functions_reporting_pdf.php:520 +#: ../../enterprise/include/functions_alert_event.php:1132 +#: ../../enterprise/include/functions_reporting_csv.php:468 +#: ../../enterprise/include/functions_reporting_csv.php:688 +#: ../../enterprise/include/functions_reporting_csv.php:714 +#: ../../enterprise/include/functions_reporting_csv.php:827 +#: ../../enterprise/include/functions_reporting_csv.php:866 +#: ../../enterprise/include/functions_reporting_csv.php:926 +#: ../../enterprise/include/functions_reporting_csv.php:942 +#: ../../enterprise/include/functions_reporting_csv.php:1082 +#: ../../enterprise/include/functions_reporting_csv.php:1113 +#: ../../enterprise/include/functions_reporting_csv.php:1168 +#: ../../enterprise/include/functions_reporting_csv.php:1223 +#: ../../enterprise/include/functions_reporting_csv.php:1272 +#: ../../enterprise/include/functions_reporting_csv.php:1327 +#: ../../enterprise/include/functions_reporting_csv.php:1356 +#: ../../enterprise/include/functions_reporting_csv.php:1401 +#: ../../enterprise/include/functions_reporting_csv.php:1447 +#: ../../enterprise/include/functions_reporting_csv.php:1520 +#: ../../enterprise/include/functions_reporting_csv.php:1639 +#: ../../enterprise/include/functions_reporting_csv.php:1834 +#: ../../enterprise/include/functions_reporting_csv.php:1907 +#: ../../enterprise/include/functions_reporting_csv.php:2139 +#: ../../enterprise/include/functions_reporting_csv.php:2175 +#: ../../enterprise/include/functions_reporting_csv.php:2323 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:902 +#: ../../enterprise/include/functions_reporting.php:1811 +#: ../../enterprise/include/functions_reporting.php:2745 +#: ../../enterprise/include/functions_reporting.php:3742 +#: ../../enterprise/include/functions_reporting.php:4766 +#: ../../enterprise/include/functions_services.php:1605 +#: ../../enterprise/include/functions_events.php:157 +#: ../../enterprise/operation/agentes/policy_view.php:245 +#: ../../enterprise/operation/agentes/agent_inventory.php:69 +#: ../../enterprise/operation/inventory/inventory.php:198 +#: ../../extensions/agents_modules.php:418 ../../extensions/insert_data.php:172 +#: ../../godmode/agentes/module_manager_editor_prediction.php:138 +#: ../../godmode/agentes/planned_downtime.list.php:181 +#: ../../godmode/agentes/planned_downtime.editor.php:991 +#: ../../godmode/agentes/agent_manager.php:576 +#: ../../godmode/agentes/agent_manager.php:644 +#: ../../godmode/agentes/module_manager_editor_common.php:1214 +#: ../../godmode/agentes/module_manager_editor_common.php:1258 +#: ../../godmode/massive/massive_standby_alerts.php:199 +#: ../../godmode/massive/massive_standby_alerts.php:234 +#: ../../godmode/massive/massive_enable_disable_alerts.php:187 +#: ../../godmode/massive/massive_enable_disable_alerts.php:222 +#: ../../godmode/massive/massive_edit_agents.php:568 +#: ../../godmode/massive/massive_edit_agents.php:764 +#: ../../godmode/alerts/alert_list.list.php:470 +#: ../../godmode/alerts/alert_list.list.php:728 +#: ../../godmode/alerts/alert_view.php:68 +#: ../../godmode/alerts/alert_list.builder.php:69 +#: ../../godmode/reporting/reporting_builder.list_items.php:410 +#: ../../godmode/reporting/create_container.php:410 +#: ../../godmode/reporting/create_container.php:560 +#: ../../godmode/reporting/create_container.php:628 +#: ../../godmode/reporting/graph_builder.graph_editor.php:213 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1438 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3101 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3530 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3554 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:469 +#: ../../godmode/reporting/visual_console_builder.wizard.php:790 +#: ../../godmode/servers/plugin.php:71 ../../mobile/operation/alerts.php:319 +#: ../../include/functions_visual_map_editor.php:497 +#: ../../include/functions_reporting_html.php:523 +#: ../../include/functions_reporting_html.php:919 +#: ../../include/functions_reporting_html.php:1561 +#: ../../include/functions_reporting_html.php:1864 +#: ../../include/functions_reporting_html.php:2675 +#: ../../include/functions_reporting_html.php:3058 +#: ../../include/functions_reporting_html.php:3066 +#: ../../include/functions_reporting_html.php:3075 +#: ../../include/functions_reporting_html.php:3087 +#: ../../include/functions_reporting_html.php:3243 +#: ../../include/functions_reporting_html.php:3371 +#: ../../include/functions_reporting_html.php:3457 +#: ../../include/functions_reporting_html.php:4149 +#: ../../include/functions_reporting_html.php:4205 +#: ../../include/ajax/alert_list.ajax.php:278 +#: ../../include/ajax/alert_list.ajax.php:303 +#: ../../include/ajax/alert_list.ajax.php:461 +#: ../../include/functions_graph.php:5393 +#: ../../include/functions_treeview.php:64 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:557 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:410 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:373 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:348 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:510 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:234 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:599 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:233 +#: ../../include/class/AgentsAlerts.class.php:405 +#: ../../include/class/AgentsAlerts.class.php:908 +#: ../../include/functions_reporting.php:5796 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:315 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:334 +#: ../../include/lib/Dashboard/Widgets/module_value.php:308 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:283 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:304 +#: ../../include/lib/Dashboard/Widgets/module_status.php:324 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:279 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:676 +#: ../../include/lib/Dashboard/Widgets/top_n.php:221 +#: ../../operation/agentes/alerts_status.php:537 +#: ../../operation/agentes/alerts_status.php:572 +#: ../../operation/agentes/alerts_status.php:607 +#: ../../operation/agentes/alerts_status.php:639 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/estado_monitores.php:125 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_alerts.php:34 ../../operation/search_modules.php:31 +msgid "Module" +msgstr "Модули" -#: ../../enterprise/meta/general/logon_ok.php:64 -#: ../../enterprise/meta/general/main_header.php:231 -#: ../../enterprise/meta/general/main_header.php:302 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245 -#: ../../enterprise/godmode/modules/configure_local_component.php:150 -#: ../../operation/netflow/nf_live_view.php:305 -#: ../../godmode/users/configure_user.php:530 -#: ../../godmode/alerts/alert_commands.php:145 -#: ../../godmode/alerts/alert_commands.php:155 -#: ../../godmode/alerts/configure_alert_template.php:736 -#: ../../godmode/netflow/nf_edit_form.php:208 -#: ../../godmode/modules/manage_network_components_form_common.php:58 +msgid "Module description" +msgstr "Описание модуля" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267 +msgid "Step by step wizard" +msgstr "Пошаговый мастер" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268 +#: ../../enterprise/meta/general/main_header.php:309 +#: ../../enterprise/meta/general/main_header.php:397 +#: ../../enterprise/meta/general/logon_ok.php:99 +#: ../../enterprise/godmode/modules/configure_local_component.php:161 +#: ../../enterprise/godmode/agentes/plugins_manager.php:120 +#: ../../enterprise/godmode/policies/policy_plugins.php:93 +#: ../../godmode/modules/manage_network_components_form_common.php:49 +#: ../../godmode/users/configure_user.php:1179 +#: ../../godmode/netflow/nf_edit_form.php:236 +#: ../../godmode/alerts/alert_commands.php:153 +#: ../../godmode/alerts/alert_commands.php:190 +#: ../../godmode/alerts/configure_alert_template.php:985 +#: ../../godmode/alerts/configure_alert_template.php:1026 +#: ../../godmode/alerts/configure_alert_template.php:1173 +#: ../../operation/netflow/nf_live_view.php:482 msgid "Advanced" msgstr "Расширенный" -#: ../../enterprise/meta/general/noaccess.php:17 -msgid "Back to login" -msgstr "Вернуться на страницу входа" +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280 +msgid "Click Create to continue" +msgstr "Нажмите здесь чтобы продолжить" -#: ../../enterprise/meta/general/noaccess.php:24 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:13 -#: ../../mobile/index.php:205 ../../mobile/operation/groups.php:51 -#: ../../mobile/operation/agent.php:58 -#: ../../mobile/operation/networkmaps.php:99 -#: ../../mobile/operation/module_graph.php:269 -#: ../../mobile/operation/modules.php:173 -#: ../../mobile/operation/tactical.php:68 -#: ../../mobile/operation/networkmap.php:78 -#: ../../mobile/operation/alerts.php:141 -#: ../../mobile/operation/visualmap.php:65 -#: ../../mobile/operation/events.php:425 -#: ../../mobile/operation/visualmaps.php:83 -#: ../../mobile/operation/agents.php:145 ../../general/noaccess.php:18 -#: ../../general/noaccess.php:21 -msgid "You don't have access to this page" -msgstr "У вас нет доступа на эту страницу" +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:382 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:105 +#: ../../godmode/reporting/graph_builder.graph_editor.php:416 +msgid "Please, select a module" +msgstr "Пожалуйста, выберите модуль" -#: ../../enterprise/meta/general/noaccess.php:28 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:21 -#: ../../general/noaccess.php:31 -msgid "No access" -msgstr "Нет доступа" +#: ../../enterprise/meta/monitoring/wizard/wizard.php:93 +#: ../../enterprise/godmode/alerts/alert_events.php:672 +#: ../../enterprise/godmode/wizards/Cloud.class.php:571 +#: ../../enterprise/include/class/VMware.app.php:849 +#: ../../enterprise/include/class/Omnishell.class.php:852 +#: ../../enterprise/include/class/DB2.app.php:840 +#: ../../enterprise/include/class/SAP.app.php:799 +#: ../../enterprise/include/class/Aws.cloud.php:1416 +#: ../../enterprise/include/class/MySQL.app.php:908 +#: ../../enterprise/include/class/Oracle.app.php:943 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:787 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2039 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1199 +#: ../../godmode/alerts/configure_alert_template.php:1206 +#: ../../godmode/wizards/HostDevices.class.php:1569 +#: ../../include/class/CustomNetScan.class.php:725 +msgid "Finish" +msgstr "Завершено" -#: ../../enterprise/meta/general/noaccess.php:33 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:94 +msgid "The alert you are trying to add is already in the list of alerts" +msgstr "То оповещение, которое вы пытаетесь добавить уже в списке оповещений" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:95 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:614 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:136 +msgid "No description available" +msgstr "Описание недоступно" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:98 +#: ../../enterprise/operation/agentes/policy_view.php:171 +#: ../../enterprise/operation/agentes/policy_view.php:264 +#: ../../enterprise/operation/agentes/policy_view.php:557 +#: ../../godmode/modules/manage_network_components_form_plugin.php:54 +#: ../../godmode/modules/manage_network_components_form_wmi.php:60 +#: ../../godmode/alerts/configure_alert_template.php:1318 +#: ../../godmode/alerts/alert_list.builder.php:292 +#: ../../include/functions.php:2713 +#: ../../include/class/AgentWizard.class.php:2403 +msgid "Empty" +msgstr "Очистить" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:99 +#: ../../include/functions_events.php:3328 +#: ../../include/functions_events.php:3611 +msgid "New" +msgstr "Новый" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:104 msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance. \n" -"\t\t\t\t\t<br>Please know that all attempts to access this page are recorded " -"in security logs of Pandora System Database" +"Are you sure? If the agent is on a policy, it will be removed from the " +"policy." +msgstr "Вы уверены? Если агент входит в политику, он будет удален из нее." + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:106 +msgid "Please, select an alert" +msgstr "Пожалуйста, выберите оповещение" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:107 +msgid "Please, select an agent" +msgstr "Пожалуйста, выберите агента" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:109 +#: ../../enterprise/godmode/policies/policy_modules.php:1639 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:178 +#: ../../enterprise/operation/log/log_viewer.php:816 +#: ../../enterprise/operation/log/log_viewer.php:835 +#: ../../godmode/massive/massive_copy_modules.php:234 +#: ../../godmode/massive/massive_operations.php:351 +#: ../../godmode/massive/massive_add_profiles.php:237 +#: ../../include/functions_events.php:4282 +#: ../../operation/reporting/reporting_viewer.php:295 +#: ../../general/ui/agents_list.php:146 +msgid "Loading" +msgstr "Загрузка" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:111 +#: ../../enterprise/meta/include/functions_wizard_meta.php:641 +#: ../../godmode/tag/edit_tag.php:208 +#: ../../include/functions_reporting.php:5926 +#: ../../include/lib/Dashboard/Widgets/url.php:216 +msgid "Url" +msgstr "Адрес URL" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:112 +#: ../../godmode/modules/manage_network_components_form_wizard.php:389 +#: ../../godmode/modules/manage_network_components_form_wizard.php:425 +msgid "String" +msgstr "Строка" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:113 +msgid "No agent name specified" +msgstr "Не указано имя агента" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:114 +msgid "Another agent already exists with the same name" +msgstr "Другой агент уже существует с таким именем" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:116 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:433 +#: ../../godmode/agentes/module_manager_editor_common.php:581 +#: ../../godmode/agentes/module_manager_editor_common.php:583 +#, php-format +msgid "Agent interval x %s" +msgstr "Агент интервал x %s" + +#: ../../enterprise/meta/monitoring/group_view.php:55 +msgid "Group View" +msgstr "Просмотр группы" + +#: ../../enterprise/meta/monitoring/group_view.php:72 +#: ../../godmode/groups/group_list.php:313 +#: ../../godmode/users/configure_user.php:1080 +#: ../../operation/users/user_edit.php:359 +#: ../../operation/agentes/group_view.php:70 ../../operation/menu.php:48 +msgid "Group view" +msgstr "Просмотр группы" + +#: ../../enterprise/meta/monitoring/group_view.php:151 +msgid "Summary by status" +msgstr "Итог по статусу" + +#: ../../enterprise/meta/monitoring/group_view.php:160 +#: ../../enterprise/meta/monitoring/group_view.php:172 +msgid "% Agents not init" +msgstr "% Агенты не инициализированы" + +#: ../../enterprise/meta/monitoring/group_view.php:163 +msgid "% Agents Warning" +msgstr "% Агенты предостережения" + +#: ../../enterprise/meta/monitoring/group_view.php:166 +msgid "% Agents OK" +msgstr "% Агенты ОК" + +#: ../../enterprise/meta/monitoring/group_view.php:169 +msgid "% Agents Unknown" +msgstr "% Агенты Неизвестны" + +#: ../../enterprise/meta/monitoring/group_view.php:177 +msgid "% Monitors Critical" +msgstr "% Критические Приборы контроля" + +#: ../../enterprise/meta/monitoring/group_view.php:180 +msgid "% Monitors Warning" +msgstr "% Приборы контроля предостережений" + +#: ../../enterprise/meta/monitoring/group_view.php:183 +msgid "% Monitors OK" +msgstr "% Приборы контроля ОК" + +#: ../../enterprise/meta/monitoring/group_view.php:186 +msgid "% Monitors Unknown" +msgstr "% Неизвестные Приборы контроля" + +#: ../../enterprise/meta/monitoring/group_view.php:189 +msgid "% Monitors Not init" +msgstr "% Приборы контроля не инициализированы" + +#: ../../enterprise/meta/monitoring/group_view.php:205 +#: ../../godmode/agentes/modificar_agente.php:910 +#: ../../operation/agentes/estado_agente.php:947 +#: ../../operation/agentes/group_view.php:541 +msgid "There are no defined agents" +msgstr "Здесь нет заданных агентов" + +#: ../../enterprise/meta/monitoring/group_view.php:217 +#: ../../enterprise/meta/monitoring/group_view.php:223 +msgid "This data doesn't show in realtime" +msgstr "Эти данные не показываются в реальном времени" + +#: ../../enterprise/meta/monitoring/group_view.php:234 +msgid "Group or Tag" +msgstr "Группа или Тег" + +#: ../../enterprise/meta/monitoring/group_view.php:235 +#: ../../enterprise/include/functions_inventory.php:425 +#: ../../enterprise/include/functions_inventory.php:564 +#: ../../enterprise/operation/agentes/agent_inventory.php:240 +#: ../../enterprise/operation/services/services.treeview_services.php:279 +#: ../../godmode/groups/group_list.php:977 +#: ../../include/functions_reporting_html.php:1967 +#: ../../include/functions_reporting_html.php:1977 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:644 +#: ../../operation/tree.php:395 ../../operation/agentes/group_view.php:194 +msgid "Total" +msgstr "Всего" + +#: ../../enterprise/meta/monitoring/group_view.php:247 +#: ../../enterprise/godmode/alerts/alert_events_list.php:710 +#: ../../enterprise/operation/agentes/policy_view.php:332 +#: ../../godmode/alerts/alert_list.list.php:550 +#: ../../godmode/alerts/alert_view.php:82 ../../mobile/operation/alerts.php:305 +#: ../../include/functions.php:1227 ../../include/functions_agents.php:2733 +#: ../../include/functions_agents.php:2744 ../../include/functions_ui.php:1229 +#: ../../include/class/AgentsAlerts.class.php:954 +#: ../../include/functions_reporting.php:11304 +#: ../../include/functions_events.php:2844 +#: ../../include/functions_events.php:3206 +#: ../../operation/agentes/group_view.php:205 +#: ../../operation/snmpconsole/snmp_view.php:1020 +#: ../../operation/events/sound_events.php:133 +msgid "Alert fired" +msgstr "Запуск оповещений" + +#: ../../enterprise/meta/monitoring/group_view.php:359 +#: ../../operation/agentes/group_view.php:284 +#, php-format +msgid "" +"This %s installation are using the secondary groups feature. For this " +"reason, an agent can be counted several times." msgstr "" +"Эта %s установка использует функции второстепенных групп. Поэтому агент " +"может быть посчитан несколько раз." -#: ../../enterprise/meta/general/main_header.php:84 -#: ../../operation/menu.php:51 ../../operation/tree.php:87 -msgid "Tree view" -msgstr "Просмотр в виде дерева" +#: ../../enterprise/meta/monitoring/tactical.php:40 +#: ../../include/class/OrderInterpreter.class.php:105 +msgid "Tactical View" +msgstr "Тактический просмотр" -#: ../../enterprise/meta/general/main_header.php:94 -#: ../../operation/agentes/networkmap.php:389 -msgid "Groups view" -msgstr "Просмотр групп" +#: ../../enterprise/meta/monitoring/tactical.php:63 +#: ../../enterprise/meta/general/main_header.php:103 +#: ../../godmode/users/configure_user.php:1081 +#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 +#: ../../include/lib/Dashboard/Widgets/tactical.php:176 +#: ../../include/lib/Dashboard/Widgets/tactical.php:481 +#: ../../operation/users/user_edit.php:360 +#: ../../operation/agentes/tactical.php:54 ../../operation/menu.php:45 +msgid "Tactical view" +msgstr "Тактический просмотр" -#: ../../enterprise/meta/general/main_header.php:99 -#: ../../operation/agentes/alerts_status.php:129 -msgid "Alerts view" -msgstr "Просмотр оповещений" +#: ../../enterprise/meta/monitoring/tactical.php:251 +msgid "Report of state" +msgstr "Отчет о состоянии" -#: ../../enterprise/meta/general/main_header.php:104 -msgid "Monitors view" -msgstr "Просмотр мониторов" +#: ../../enterprise/meta/monitoring/tactical.php:272 +#: ../../enterprise/meta/general/main_header.php:154 +#: ../../enterprise/meta/general/logon_ok.php:57 +#: ../../enterprise/tools/ipam/ipam_network.php:359 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:265 +#: ../../mobile/include/functions_web.php:25 ../../mobile/operation/home.php:51 +#: ../../mobile/operation/events.php:609 ../../include/functions.php:4092 +#: ../../include/functions_reports.php:839 +#: ../../include/functions_reports.php:843 +#: ../../include/functions_reports.php:847 ../../operation/menu.php:371 +#: ../../operation/events/events.php:899 ../../operation/events/events.php:913 +msgid "Events" +msgstr "События" -#: ../../enterprise/meta/general/main_header.php:140 -msgid "Create new report" -msgstr "Создать новый отчет" +#: ../../enterprise/meta/monitoring/tactical.php:279 +msgid "Report of events" +msgstr "Отчет о событиях" -#: ../../enterprise/meta/general/main_header.php:153 -msgid "Report templates" -msgstr "Шаблоны отчета" +#: ../../enterprise/meta/monitoring/tactical.php:284 +msgid "Info of state in events" +msgstr "Информация о состоянии в событии" -#: ../../enterprise/meta/general/main_header.php:160 -#: ../../enterprise/include/functions_reporting.php:64 -msgid "Templates wizard" -msgstr "Шаблоны мастера" +#: ../../enterprise/meta/monitoring/tactical.php:302 +msgid "More events" +msgstr "Еще события" -#: ../../enterprise/meta/general/main_header.php:166 -#: ../../enterprise/include/functions_groups.php:61 -#: ../../enterprise/operation/menu.php:31 -#: ../../enterprise/operation/services/services.service.php:84 -#: ../../enterprise/operation/services/services.list.php:38 -#: ../../enterprise/operation/services/services.service_map.php:94 -#: ../../enterprise/operation/services/services.service_map.php:110 -#: ../../enterprise/godmode/menu.php:79 -#: ../../enterprise/godmode/services/services.elements.php:122 -#: ../../enterprise/godmode/services/services.elements.php:127 -#: ../../enterprise/godmode/services/services.service.php:198 -#: ../../enterprise/godmode/services/services.service.php:202 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:159 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:301 -#: ../../general/firts_task/service_list.php:25 -msgid "Services" -msgstr "Службы" +#: ../../enterprise/meta/event/custom_events.php:38 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 +#: ../../godmode/users/configure_profile.php:264 ../../operation/menu.php:377 +msgid "View events" +msgstr "Просмотр событий" -#: ../../enterprise/meta/general/main_header.php:181 -#: ../../mobile/operation/home.php:98 -msgid "Networkmap" -msgstr "Карта сети" +#: ../../enterprise/meta/event/custom_events.php:44 +#: ../../godmode/netflow/nf_edit.php:217 +#: ../../godmode/netflow/nf_edit_form.php:189 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/events/event_filter.php:225 +#: ../../include/ajax/custom_fields.php:652 +msgid "Create filter" +msgstr "Создать фильтр" -#: ../../enterprise/meta/general/main_header.php:188 -#: ../../enterprise/include/functions_enterprise.php:270 -#: ../../godmode/reporting/map_builder.php:39 -#: ../../general/firts_task/map_builder.php:29 -msgid "Visual Console" -msgstr "Визуальный консоли" +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:260 +#: ../../godmode/events/events.php:68 +msgid "Event responses" +msgstr "Событие ответы" -#: ../../enterprise/meta/general/main_header.php:198 -#: ../../enterprise/include/functions_enterprise.php:267 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:32 -#: ../../include/functions_reports.php:635 -#: ../../include/functions_reports.php:637 -#: ../../include/functions_reports.php:639 -#: ../../include/functions_reports.php:641 -#: ../../include/functions_reports.php:643 ../../godmode/menu.php:253 -#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:125 -msgid "Netflow" -msgstr "Сетевой поток" +#: ../../enterprise/meta/event/custom_events.php:56 +#: ../../enterprise/meta/event/custom_events.php:61 +#: ../../enterprise/meta/event/custom_events.php:74 +#: ../../enterprise/meta/event/custom_events.php:92 +#: ../../godmode/agentes/agent_manager.php:963 +#: ../../godmode/agentes/agent_manager.php:988 ../../godmode/menu.php:77 +#: ../../godmode/massive/massive_edit_agents.php:840 +#: ../../godmode/events/events.php:80 ../../godmode/events/events.php:95 +#: ../../include/functions_events.php:4409 +#: ../../operation/agentes/status_monitor.php:47 +#: ../../operation/agentes/status_monitor.php:70 +#: ../../operation/agentes/ver_agente.php:1441 +msgid "Custom fields" +msgstr "Пользовательские поля" -#: ../../enterprise/meta/general/main_header.php:204 -msgid "Live view" -msgstr "Живой просмотр" - -#: ../../enterprise/meta/general/main_header.php:213 -#: ../../enterprise/meta/event/custom_events.php:65 -#: ../../enterprise/meta/event/custom_events.php:80 -#: ../../godmode/events/events.php:63 ../../godmode/events/events.php:78 -#: ../../godmode/reporting/reporting_builder.list_items.php:178 +#: ../../enterprise/meta/event/custom_events.php:69 +#: ../../enterprise/meta/event/custom_events.php:88 +#: ../../enterprise/meta/general/main_header.php:291 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2915 +#: ../../godmode/reporting/reporting_builder.list_items.php:222 +#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:110 msgid "Filters" msgstr "Фильтры" -#: ../../enterprise/meta/general/main_header.php:247 -msgid "Agent management" -msgstr "Управление агентом" +#: ../../enterprise/meta/event/custom_events.php:79 +#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1396 +msgid "Responses" +msgstr "Ответы" -#: ../../enterprise/meta/general/main_header.php:252 -#: ../../enterprise/godmode/modules/local_components.php:89 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:28 -#: ../../godmode/modules/manage_nc_groups.php:40 -#: ../../godmode/modules/manage_network_components.php:41 -#: ../../godmode/modules/manage_network_templates.php:30 -#: ../../godmode/modules/module_list.php:28 -#: ../../godmode/modules/manage_network_templates_form.php:32 -msgid "Module management" -msgstr "Управление модулем" +#: ../../enterprise/meta/event/custom_events.php:98 +msgid "The user is not in neither group with EW profile" +msgstr "Пользователь не в одной группе с НОВЫМ профилем" -#: ../../enterprise/meta/general/main_header.php:257 -msgid "Alert management" -msgstr "Управление оповещением" +#: ../../enterprise/meta/event/custom_events.php:160 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:71 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1237 +msgid "Fields" +msgstr "Поля" -#: ../../enterprise/meta/general/main_header.php:262 -#: ../../enterprise/godmode/menu.php:121 -#: ../../enterprise/godmode/alerts/alert_events_list.php:67 -#: ../../enterprise/godmode/alerts/alert_events_list.php:114 -#: ../../enterprise/godmode/alerts/alert_events_list.php:129 -#: ../../enterprise/godmode/alerts/alert_events_list.php:144 -msgid "Event alerts" -msgstr "События оповещений" +#: ../../enterprise/meta/event/custom_events.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../godmode/events/custom_events.php:127 +msgid "Fields available" +msgstr "Поля свободны" -#: ../../enterprise/meta/general/main_header.php:267 -msgid "Tag management" -msgstr "Управление тегом" +#: ../../enterprise/meta/event/custom_events.php:177 +#: ../../godmode/agentes/status_monitor_custom_fields.php:186 +#: ../../godmode/events/custom_events.php:147 +msgid "Fields selected" +msgstr "Выбранные поля" -#: ../../enterprise/meta/general/main_header.php:272 -msgid "Policy management" -msgstr "Управление политикой" +#: ../../enterprise/meta/event/custom_events.php:187 +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/events/custom_events.php:134 +msgid "Add fields to select" +msgstr "Добавить поля для выбора" -#: ../../enterprise/meta/general/main_header.php:277 -msgid "Category management" -msgstr "Управление категорией" +#: ../../enterprise/meta/event/custom_events.php:197 +#: ../../godmode/agentes/status_monitor_custom_fields.php:180 +#: ../../godmode/events/custom_events.php:142 +msgid "Delete fields to select" +msgstr "Удалить поля для выбора" -#: ../../enterprise/meta/general/main_header.php:282 -msgid "Server management" +#: ../../enterprise/meta/event/custom_events.php:207 +#: ../../godmode/events/custom_events.php:74 +msgid "Show event fields" +msgstr "Показать поля событий" + +#: ../../enterprise/meta/event/custom_events.php:248 +#: ../../godmode/agentes/status_monitor_custom_fields.php:240 +#: ../../godmode/events/custom_events.php:201 +msgid "" +"There must be at least one custom field. Timestamp will be set by default" msgstr "" +"Здесь должно быть хотя бы одно персонализированное поле. Временная мерка " +"будет установлена по умолчанию" -#: ../../enterprise/meta/general/main_header.php:287 -#: ../../godmode/menu.php:267 -msgid "License" +#: ../../enterprise/meta/include/functions_autoprovision.php:378 +msgid "Round Robin" +msgstr "Round Robin" + +#: ../../enterprise/meta/include/functions_autoprovision.php:383 +msgid "Less loaded" +msgstr "Менее загружен" + +#: ../../enterprise/meta/include/functions_autoprovision.php:447 +#: ../../enterprise/meta/include/functions_autoprovision.php:614 +#: ../../enterprise/godmode/alerts/alert_events_list.php:501 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:400 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2972 +#: ../../enterprise/include/functions_ipam.php:1480 +#: ../../godmode/reporting/reporting_builder.list_items.php:440 +#: ../../godmode/reporting/reporting_builder.list_items.php:740 +#: ../../godmode/reporting/graph_builder.graph_editor.php:217 +#: ../../godmode/reporting/graph_builder.graph_editor.php:318 +msgid "Sort" +msgstr "Сортировка" + +#: ../../enterprise/meta/include/functions_autoprovision.php:503 +msgid "" +"There is no custom entries defined. Click on \"Create custom entry\" to add " +"the first." msgstr "" +"Нет выбранных персонализированных входов. Нажмите на \"Создать " +"персонализированный вход\" для его добавления." -#: ../../enterprise/meta/general/main_header.php:292 -msgid "Metasetup" -msgstr "Мета настройки" +#: ../../enterprise/meta/include/functions_autoprovision.php:508 +msgid "Create custom entry" +msgstr "Создать персонализированный вход" -#: ../../enterprise/meta/general/main_header.php:335 -#: ../../enterprise/meta/general/main_header.php:343 -#: ../../general/header.php:113 ../../general/header.php:121 -msgid "All systems" -msgstr "Все системы" +#: ../../enterprise/meta/include/functions_autoprovision.php:535 +msgid "Provisioning configuration" +msgstr "Конфигурация подготовки" -#: ../../enterprise/meta/general/main_header.php:335 -#: ../../general/header.php:113 -msgid "Down" -msgstr "Вниз" +#: ../../enterprise/meta/include/functions_autoprovision.php:546 +msgid "Configuration:" +msgstr "Конфигурация:" -#: ../../enterprise/meta/general/main_header.php:339 -#: ../../general/header.php:117 -msgid "servers down" -msgstr "сервера выключены" +#: ../../enterprise/meta/include/functions_autoprovision.php:584 +msgid "" +"There is no rules configured for this custom entry. Click on Add button to " +"create the first." +msgstr "" +"Нет правил, установленных для этого персонализированного входа. Нажмите на " +"\"Добавить кнопку\", чтобы его создать." -#: ../../enterprise/meta/general/main_header.php:343 -#: ../../general/header.php:121 -msgid "Ready" -msgstr "Готово" +#: ../../enterprise/meta/include/functions_autoprovision.php:616 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:234 +#: ../../extensions/quick_shell.php:165 +msgid "Method" +msgstr "Метод" -#: ../../enterprise/meta/general/main_header.php:353 -#: ../../mobile/include/user.class.php:280 -#: ../../mobile/include/functions_web.php:33 -#: ../../mobile/include/ui.class.php:175 ../../mobile/operation/home.php:144 -#: ../../general/header.php:267 -msgid "Logout" -msgstr "Выход" +#: ../../enterprise/meta/include/functions_autoprovision.php:697 +msgid "There was an error when editing the rule." +msgstr "Появилась ошибка при редактировании правила." -#: ../../enterprise/meta/general/main_header.php:368 -#: ../../general/header.php:192 -msgid "Configure autorefresh" -msgstr "Настройка автоматического обновления" +#: ../../enterprise/meta/include/functions_autoprovision.php:711 +msgid "Operation:" +msgstr "Операция:" -#: ../../enterprise/meta/general/main_header.php:385 -#: ../../enterprise/meta/general/main_header.php:395 -#: ../../general/header.php:219 -msgid "Disabled autorefresh" -msgstr "Отключено автообновление" +#: ../../enterprise/meta/include/functions_autoprovision.php:725 +msgid "Method:" +msgstr "Метод:" -#: ../../enterprise/meta/general/metaconsole_no_activated.php:25 +#: ../../enterprise/meta/include/functions_autoprovision.php:739 +#: ../../enterprise/include/functions_visual_map.php:215 +#: ../../enterprise/include/functions_visual_map.php:280 +msgid "Value:" +msgstr "Значение:" + +#: ../../enterprise/meta/include/functions_autoprovision.php:790 +#: ../../enterprise/godmode/alerts/alert_events_list.php:570 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:434 +msgid "Move up" +msgstr "Переместить вверх" + +#: ../../enterprise/meta/include/functions_autoprovision.php:798 +#: ../../enterprise/godmode/alerts/alert_events_list.php:582 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:440 +msgid "Move down" +msgstr "Переместить вниз" + +#: ../../enterprise/meta/include/functions_groups_meta.php:114 +#, php-format +msgid "Error Duplicate name (%s) " +msgstr "Ошибка при дублировании имени (%s) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:132 +#, php-format +msgid "(Error Duplicate ID (%d) ) " +msgstr "(Ошибка при дублировании ID (%d) ) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:153 +msgid "Error Duplicate name" +msgstr "Ошибка при дублировании имени" + +#: ../../enterprise/meta/include/functions_users_meta.php:182 +#: ../../enterprise/meta/include/functions_users_meta.php:204 +#: ../../enterprise/meta/general/main_header.php:321 +#: ../../enterprise/meta/general/main_header.php:407 +#: ../../enterprise/meta/general/main_header.php:414 +#: ../../godmode/users/profile_list.php:48 +#: ../../godmode/users/profile_list.php:69 +#: ../../godmode/users/configure_profile.php:44 +#: ../../godmode/users/configure_profile.php:65 +#: ../../godmode/users/user_list.php:187 ../../godmode/users/user_list.php:212 +#: ../../godmode/users/user_list.php:223 +#: ../../godmode/users/configure_user.php:221 +#: ../../operation/users/user_edit_header.php:91 +msgid "User management" +msgstr "Управление пользователями" + +#: ../../enterprise/meta/include/functions_users_meta.php:186 +#: ../../enterprise/meta/include/functions_users_meta.php:212 +#: ../../godmode/users/profile_list.php:59 +#: ../../godmode/users/configure_profile.php:55 +#: ../../godmode/users/user_list.php:198 +#: ../../godmode/users/configure_user.php:232 ../../godmode/menu.php:130 +msgid "Profile management" +msgstr "управление профилем" + +#: ../../enterprise/meta/include/functions_users_meta.php:193 +#: ../../enterprise/meta/include/functions_users_meta.php:208 +#: ../../enterprise/meta/general/main_header.php:629 +#: ../../enterprise/meta/general/main_header.php:635 +#: ../../operation/menu.php:451 ../../general/header.php:408 +#: ../../general/header.php:418 +msgid "Edit my user" +msgstr "Редактировать моего пользователя" + +#: ../../enterprise/meta/include/functions_users_meta.php:200 +msgid "User synchronization" +msgstr "Синхронизация пользователей" + +#: ../../enterprise/meta/include/functions_users_meta.php:216 +msgid "Group synchronization" +msgstr "Синхронизация групп" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:188 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1791 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:217 +#: ../../enterprise/include/functions_reporting_csv.php:1009 +#: ../../godmode/agentes/agent_manager.php:286 +msgid "Alias" +msgstr "Алиас" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:209 +#: ../../enterprise/meta/include/functions_wizard_meta.php:213 +#: ../../enterprise/meta/include/functions_wizard_meta.php:479 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1458 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1803 +#: ../../godmode/agentes/agent_manager.php:295 +#: ../../godmode/servers/modificar_server.php:60 +#: ../../include/functions_reporting_html.php:3369 +#: ../../include/functions_reporting_html.php:3455 +#: ../../include/functions_treeview.php:647 +#: ../../include/functions_events.php:4385 +#: ../../operation/gis_maps/ajax.php:290 +msgid "IP Address" +msgstr "IP адрес" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:238 +#: ../../enterprise/meta/include/functions_wizard_meta.php:681 +#: ../../enterprise/godmode/modules/configure_local_component.php:484 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:134 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 +#: ../../enterprise/godmode/setup/setup_log_collector.php:46 +#: ../../enterprise/include/functions_metaconsole.php:1298 +#: ../../enterprise/include/functions_metaconsole.php:1331 +#: ../../enterprise/include/functions_metaconsole.php:1364 +#: ../../enterprise/include/functions_metaconsole.php:1397 +#: ../../enterprise/include/functions_metaconsole.php:1430 +#: ../../enterprise/include/functions_metaconsole.php:1463 +#: ../../enterprise/include/functions_metaconsole.php:1496 +msgid "Check" +msgstr "Проверка" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:247 +#: ../../enterprise/meta/include/functions_wizard_meta.php:530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1146 +#: ../../enterprise/godmode/alerts/alert_events.php:121 +#: ../../enterprise/godmode/alerts/alert_events.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:904 +#: ../../enterprise/include/class/Aws.cloud.php:338 +#: ../../godmode/alerts/configure_alert_template.php:188 +#: ../../godmode/alerts/configure_alert_template.php:192 +#: ../../godmode/setup/setup.php:93 ../../godmode/setup/setup.php:246 +#: ../../godmode/servers/plugin.php:369 ../../godmode/servers/plugin.php:374 +#: ../../include/ajax/events.php:1346 ../../include/functions_reports.php:764 +#: ../../include/functions_reporting.php:8420 +msgid "General" +msgstr "Общие" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:307 +#: ../../godmode/modules/manage_network_templates_form.php:329 +#: ../../include/class/ModuleTemplates.class.php:804 +msgid "Components" +msgstr "Компоненты" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:309 +#: ../../enterprise/include/functions_reporting_csv.php:2192 +msgid "Agent modules" +msgstr "Модули агента" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:362 +msgid "Add selected modules to agent" +msgstr "Добавить выбранные модули к агенту" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:400 +msgid "Undo changes" +msgstr "Отменить изменения" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:492 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:675 +#: ../../godmode/agentes/module_manager_editor_wmi.php:59 +#: ../../godmode/agentes/module_manager_editor_network.php:94 +#: ../../godmode/massive/massive_edit_modules.php:761 +#: ../../include/ajax/events.php:1674 +msgid "Auto" +msgstr "Автоматически" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:493 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:676 +#: ../../godmode/agentes/module_manager_editor_wmi.php:60 +#: ../../godmode/agentes/module_manager_editor_network.php:95 +#: ../../godmode/massive/massive_edit_modules.php:762 +msgid "Force primary key" +msgstr "Принудить к работе главный ключ" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1463 +#: ../../enterprise/meta/include/functions_events_meta.php:70 +#: ../../enterprise/meta/include/functions_meta.php:1270 +#: ../../enterprise/meta/include/functions_meta.php:1319 +#: ../../enterprise/meta/include/functions_meta.php:1368 +#: ../../enterprise/meta/general/login_page.php:125 +#: ../../enterprise/meta/general/login_page.php:167 +#: ../../enterprise/extensions/disabled/check_acls.php:47 +#: ../../enterprise/extensions/disabled/check_acls.php:138 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:191 +#: ../../enterprise/godmode/setup/setup_auth.php:1018 +#: ../../enterprise/godmode/setup/setup_auth.php:1050 +#: ../../enterprise/godmode/servers/manage_export_form.php:113 +#: ../../enterprise/include/functions_tasklist.php:167 +#: ../../enterprise/include/class/DB2.app.php:501 +#: ../../enterprise/include/class/MySQL.app.php:523 +#: ../../enterprise/include/class/Oracle.app.php:502 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:496 +#: ../../extensions/api_checker.php:138 +#: ../../extensions/users_connected.php:100 +#: ../../godmode/admin_access_logs.php:99 +#: ../../godmode/admin_access_logs.php:209 +#: ../../godmode/setup/setup_ehorus.php:77 +#: ../../godmode/setup/setup_integria.php:272 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2944 +#: ../../godmode/events/custom_events.php:98 +#: ../../mobile/include/user.class.php:335 +#: ../../mobile/operation/tactical.php:347 +#: ../../include/functions_reporting_html.php:5190 +#: ../../include/functions.php:3053 ../../include/functions_cron.php:454 +#: ../../include/functions_config.php:656 +#: ../../include/functions_config.php:676 +#: ../../include/functions_config.php:1731 +#: ../../include/class/CredentialStore.class.php:785 +#: ../../include/class/CredentialStore.class.php:1114 +#: ../../include/functions_events.php:192 +#: ../../include/functions_events.php:242 +#: ../../include/functions_events.php:6511 +#: ../../include/functions_events.php:6938 ../../operation/search_users.php:60 +#: ../../operation/users/user_edit.php:709 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:125 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:299 +#: ../../operation/events/events.build_table.php:202 +#: ../../operation/events/events.build_table.php:700 +#: ../../general/logon_ok.php:245 ../../general/login_page.php:228 +#: ../../general/login_page.php:270 +msgid "User" +msgstr "Пользователь" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1467 +#: ../../enterprise/meta/include/functions_meta.php:1281 +#: ../../enterprise/meta/include/functions_meta.php:1330 +#: ../../enterprise/meta/include/functions_meta.php:1379 +#: ../../enterprise/meta/general/login_page.php:139 +#: ../../enterprise/meta/general/login_page.php:181 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:773 +#: ../../enterprise/godmode/setup/setup_module_library.php:49 +#: ../../enterprise/godmode/setup/setup_auth.php:1024 +#: ../../enterprise/godmode/setup/setup_auth.php:1056 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 +#: ../../enterprise/godmode/servers/manage_export_form.php:117 +#: ../../enterprise/include/ajax/servers.ajax.php:101 +#: ../../enterprise/include/ajax/servers.ajax.php:159 +#: ../../enterprise/include/ajax/servers.ajax.php:285 +#: ../../enterprise/include/functions_ui.php:104 +#: ../../enterprise/include/functions_setup.php:55 +#: ../../enterprise/include/functions_setup.php:113 +#: ../../enterprise/include/class/VMware.app.php:718 +#: ../../enterprise/include/class/DB2.app.php:513 +#: ../../enterprise/include/class/MySQL.app.php:535 +#: ../../enterprise/include/class/Oracle.app.php:514 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:508 +#: ../../extensions/api_checker.php:143 +#: ../../godmode/modules/manage_network_components_form_wmi.php:49 +#: ../../godmode/users/configure_user.php:902 +#: ../../godmode/agentes/module_manager_editor_wmi.php:116 +#: ../../godmode/massive/massive_edit_modules.php:852 +#: ../../godmode/setup/setup_ehorus.php:83 +#: ../../godmode/setup/setup_integria.php:278 +#: ../../mobile/include/user.class.php:342 +#: ../../include/functions_config.php:660 +#: ../../include/functions_config.php:680 +#: ../../include/functions_config.php:1736 +#: ../../include/class/CredentialStore.class.php:938 +#: ../../include/class/CredentialStore.class.php:975 +#: ../../include/class/CredentialStore.class.php:1115 +#: ../../include/class/CredentialStore.class.php:1138 +#: ../../include/class/AgentWizard.class.php:691 +#: ../../operation/users/user_edit.php:715 ../../general/login_page.php:242 +#: ../../general/login_page.php:283 +msgid "Password" +msgstr "Пароль" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:589 +msgid "Latency" +msgstr "Латентность" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:590 +msgid "Response" +msgstr "Ответ" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:592 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:161 +msgid "Check type" +msgstr "Проверить тип" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:609 +#: ../../enterprise/meta/include/functions_wizard_meta.php:666 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:72 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:988 +#: ../../enterprise/include/functions_enterprise.php:320 +#: ../../godmode/massive/massive_edit_modules.php:1085 +msgid "Web checks" +msgstr "Веб Проверки" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:645 +msgid "String to check" +msgstr "Строка для проверки" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:651 +msgid "Add check" +msgstr "Добавить проверку" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:660 +msgid "Delete check" +msgstr "Удалить проверку" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:673 +#: ../../enterprise/godmode/modules/configure_local_component.php:475 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:126 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 +msgid "Load basic" +msgstr "Загрузить основное" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:679 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:132 +msgid "Load a basic structure on Web Checks" +msgstr "Загрузите базовую структуру на Веб Проверки" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:687 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:140 +msgid "Check the correct structure of the WebCheck" +msgstr "Проверьте правильную структуру Веб Проверки" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:694 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:215 +msgid "First line must be \"task_begin\"" +msgstr "Первая строка должна быть \"task_begin\"" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:695 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:216 +msgid "Webchecks configuration is empty" +msgstr "Конфигурации веб проверок пусты" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:696 +#: ../../enterprise/meta/include/functions_wizard_meta.php:697 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:217 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:218 +msgid "Last line must be \"task_end\"" +msgstr "Первая строка должна быть \"task_end\"" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:698 +#: ../../enterprise/godmode/modules/configure_local_component.php:494 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:219 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 +msgid "There is a line with a unknown token 'token_fail'." +msgstr "Есть строка с неизвестным признаком 'token_fail'." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:699 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:221 +msgid "Web checks are built correctly" +msgstr "Веб проверки разработаны верно" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:916 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1032 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1197 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1513 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1733 +#: ../../enterprise/meta/agentsearch.php:118 +#: ../../enterprise/godmode/modules/configure_local_component.php:285 +#: ../../enterprise/godmode/agentes/inventory_manager.php:220 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:421 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:463 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:262 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:612 +#: ../../enterprise/godmode/servers/manage_export.php:139 +#: ../../enterprise/godmode/servers/manage_export_form.php:95 +#: ../../enterprise/include/functions_ui.php:84 +#: ../../enterprise/include/class/Azure.cloud.php:847 +#: ../../enterprise/include/class/VMware.app.php:653 +#: ../../enterprise/include/class/DB2.app.php:536 +#: ../../enterprise/include/class/Aws.S3.php:506 +#: ../../enterprise/include/class/SAP.app.php:513 +#: ../../enterprise/include/class/Aws.cloud.php:584 +#: ../../enterprise/include/class/Aws.cloud.php:1311 +#: ../../enterprise/include/class/MySQL.app.php:558 +#: ../../enterprise/include/class/Google.cloud.php:797 +#: ../../enterprise/include/class/Oracle.app.php:537 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:531 +#: ../../enterprise/include/functions_ipam.php:1219 +#: ../../enterprise/operation/agentes/tag_view.php:588 +#: ../../enterprise/operation/agentes/tag_view.php:665 +#: ../../enterprise/tools/ipam/ipam_list.php:147 +#: ../../godmode/modules/manage_network_components_form_common.php:139 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:147 +#: ../../godmode/agentes/agent_manager.php:355 +#: ../../godmode/agentes/module_manager_editor_common.php:575 +#: ../../godmode/agentes/module_manager_editor_common.php:596 +#: ../../godmode/agentes/module_manager.php:786 +#: ../../godmode/massive/massive_edit_agents.php:590 +#: ../../godmode/massive/massive_edit_modules.php:698 +#: ../../godmode/wizards/HostDevices.class.php:798 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:545 +#: ../../mobile/operation/modules.php:644 +#: ../../mobile/operation/modules.php:646 +#: ../../mobile/operation/modules.php:838 +#: ../../include/functions_reporting_html.php:2936 +#: ../../include/functions_treeview.php:84 +#: ../../include/functions_treeview.php:653 +#: ../../include/class/CustomNetScan.class.php:520 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:331 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:321 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:350 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:306 +#: ../../include/lib/Dashboard/Widgets/top_n.php:236 +#: ../../operation/search_agents.php:44 ../../operation/search_agents.php:50 +#: ../../operation/agentes/estado_agente.php:723 +#: ../../operation/agentes/status_monitor.php:1240 +#: ../../operation/agentes/estado_generalagente.php:345 +#: ../../operation/netflow/nf_live_view.php:262 +#: ../../operation/search_modules.php:34 +#: ../../operation/servers/recon_view.php:97 +msgid "Interval" +msgstr "Периодичность" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:922 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1038 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1217 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1518 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1602 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1738 +#: ../../enterprise/godmode/modules/configure_local_component.php:449 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:790 +#: ../../godmode/modules/manage_network_components_form_common.php:295 +#: ../../godmode/agentes/module_manager_editor_common.php:540 +#: ../../godmode/massive/massive_edit_modules.php:869 +#: ../../include/functions_reporting_html.php:2937 +msgid "Unit" +msgstr "Единица" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:954 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1044 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1254 +msgid "Various" +msgstr "Разное" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:962 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1474 +#: ../../include/class/ExternalTools.class.php:557 +msgid "SNMP Community" +msgstr "SNMP сообщество" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:969 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1052 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1189 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1316 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1326 +#: ../../extensions/api_checker.php:195 +#: ../../godmode/wizards/HostDevices.class.php:1470 +msgid "Credentials" +msgstr "Учётные данные" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:976 +#: ../../enterprise/meta/include/functions_wizard_meta.php:985 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1060 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1069 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1261 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1270 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1496 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1505 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1580 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1589 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1699 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1708 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:273 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:738 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1705 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2264 +#: ../../enterprise/include/functions_reporting_csv.php:942 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2280 +#: ../../godmode/alerts/alert_view.php:318 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1129 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2112 +#: ../../include/functions_reporting_html.php:4208 +#: ../../include/functions_ui.php:2580 +#: ../../include/functions_reporting.php:1471 +msgid "Min" +msgstr "Мин." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:978 +#: ../../enterprise/meta/include/functions_wizard_meta.php:987 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1062 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1071 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1263 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1272 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1498 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1507 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1582 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1591 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1701 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1710 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:285 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:378 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:746 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1703 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2257 +#: ../../enterprise/include/functions_reporting_csv.php:942 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2280 +#: ../../godmode/alerts/alert_view.php:318 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1131 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2105 +#: ../../include/functions_reporting_html.php:4207 +#: ../../include/functions_ui.php:2580 +#: ../../include/functions_reporting.php:1467 +msgid "Max" +msgstr "Макс." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:980 +#: ../../enterprise/meta/include/functions_wizard_meta.php:989 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1064 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1073 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1265 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1274 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1500 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1509 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1584 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1593 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1703 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1712 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1728 +#: ../../enterprise/godmode/modules/configure_local_component.php:334 +#: ../../enterprise/godmode/modules/configure_local_component.php:369 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:512 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:581 +#: ../../godmode/modules/manage_network_components_form_common.php:188 +#: ../../godmode/modules/manage_network_components_form_common.php:223 +#: ../../godmode/modules/manage_network_components_form_wizard.php:392 +#: ../../godmode/modules/manage_network_components_form_wizard.php:428 +#: ../../godmode/agentes/module_manager_editor_common.php:434 +#: ../../godmode/agentes/module_manager_editor_common.php:487 +#: ../../godmode/massive/massive_edit_modules.php:598 +#: ../../godmode/massive/massive_edit_modules.php:667 +msgid "Inverse interval" +msgstr "Обратный интервал" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:994 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1078 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1309 +#: ../../include/ajax/module.php:981 +msgid "Thresholds" +msgstr "Пороговые значения" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1084 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1611 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:186 +msgid "Proxy URL" +msgstr "URL прокси" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1089 +msgid "Web configuration" +msgstr "Веб конфигурация" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1281 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1294 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1719 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1726 +msgid "Str: " +msgstr "Цепь: " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1290 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1303 +msgid " Inverse interval " +msgstr " Интервал инверсии " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1362 +msgid "Alerts in module" +msgstr "Оповещения в модуле" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1370 +#: ../../include/functions_reporting_html.php:4552 +msgid "Alert description" +msgstr "Описание оповещения" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1607 +msgid "Checks" +msgstr "Проверки" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1816 +msgid "Deleted modules" +msgstr "Удаленные модули" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2004 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2104 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2632 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2751 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2842 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3037 +msgid "Another module already exists with the same name" +msgstr "Другой модуль уже существует с таким именем" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2016 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2111 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2644 +#, php-format +msgid "Error adding module %s" +msgstr "Ошибка при добавлении модуля %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2025 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2120 +msgid "" +"There was an error creating the alerts, the operation has been cancelled" +msgstr "Ошибка при создании оповещений, операция была отменена" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2054 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2149 +#: ../../enterprise/godmode/policies/policy_modules.php:883 +msgid "Successfully added module." +msgstr "Успешно добавлен модуль." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2211 +#, php-format +msgid "Could not create agent %s" +msgstr "Агент не может быть создан %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2215 +msgid "Agent successfully added" +msgstr "Агент успешно добавлен" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2231 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2334 +#, php-format +msgid "%s Modules created" +msgstr "%s Модули созданы" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2297 +#, php-format +msgid "Could not update agent %s" +msgstr "Агент не может быть обновлен %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2301 +#: ../../enterprise/include/class/AgentRepository.class.php:495 +msgid "Agent successfully updated" +msgstr "Агент успешно обновлен" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2340 +#, php-format +msgid "%s Modules deleted" +msgstr "%s Модули удалены" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2656 +msgid "" +"There was an error creating the alerts, the operation has been cancelled ." +msgstr "Возникла ошибка при создании предупреждений, операция была отменена." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2686 +msgid "Module successfully added." +msgstr "Модуль успешно добавлен." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2758 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2849 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3044 +#, php-format +msgid "Error updating module %s" +msgstr "Ошибка при обновлении модуля %s" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2780 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2871 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3066 +msgid "" +"There was an error updating the alerts, the operation has been cancelled" +msgstr "Произошла ошибка при обновлении оповещений, операция была отменена" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2801 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2892 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3087 +msgid "Successfully updated module." +msgstr "Модуль успешно обновлен." + +#: ../../enterprise/meta/include/functions_wizard_meta.php:3465 +msgid "Manage agent modules" +msgstr "Управление агентом модулей" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 +#: ../../godmode/alerts/alert_templates.php:61 +msgid "Everyday" +msgstr "Каждый день" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1743 +#: ../../enterprise/include/functions_reporting.php:1689 +#: ../../enterprise/include/functions_reporting.php:2313 +#: ../../enterprise/include/functions_reporting.php:2631 +#: ../../enterprise/include/functions_reporting.php:3266 +#: ../../enterprise/include/functions_reporting.php:4244 +#: ../../godmode/alerts/configure_alert_special_days.php:114 +#: ../../godmode/alerts/alert_templates.php:64 +#: ../../godmode/alerts/alert_special_days.php:282 +#: ../../godmode/alerts/alert_special_days.php:492 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1176 +#: ../../include/functions_html.php:2030 +msgid "Monday" +msgstr "Понедельник" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1751 +#: ../../enterprise/include/functions_reporting.php:1690 +#: ../../enterprise/include/functions_reporting.php:2314 +#: ../../enterprise/include/functions_reporting.php:2632 +#: ../../enterprise/include/functions_reporting.php:3267 +#: ../../enterprise/include/functions_reporting.php:4245 +#: ../../godmode/alerts/configure_alert_special_days.php:115 +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/alerts/alert_special_days.php:283 +#: ../../godmode/alerts/alert_special_days.php:496 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1184 +#: ../../include/functions_html.php:2031 +msgid "Tuesday" +msgstr "Вторник" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1759 +#: ../../enterprise/include/functions_reporting.php:1691 +#: ../../enterprise/include/functions_reporting.php:2315 +#: ../../enterprise/include/functions_reporting.php:2633 +#: ../../enterprise/include/functions_reporting.php:3268 +#: ../../enterprise/include/functions_reporting.php:4246 +#: ../../godmode/alerts/configure_alert_special_days.php:116 +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/alerts/alert_special_days.php:284 +#: ../../godmode/alerts/alert_special_days.php:500 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1192 +#: ../../include/functions_html.php:2032 +msgid "Wednesday" +msgstr "Среда" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1767 +#: ../../enterprise/include/functions_reporting.php:1692 +#: ../../enterprise/include/functions_reporting.php:2316 +#: ../../enterprise/include/functions_reporting.php:2634 +#: ../../enterprise/include/functions_reporting.php:3269 +#: ../../enterprise/include/functions_reporting.php:4247 +#: ../../godmode/alerts/configure_alert_special_days.php:117 +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/alerts/alert_special_days.php:285 +#: ../../godmode/alerts/alert_special_days.php:504 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1200 +#: ../../include/functions_html.php:2033 +msgid "Thursday" +msgstr "Четверг" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1775 +#: ../../enterprise/include/functions_reporting.php:1693 +#: ../../enterprise/include/functions_reporting.php:2317 +#: ../../enterprise/include/functions_reporting.php:2635 +#: ../../enterprise/include/functions_reporting.php:3270 +#: ../../enterprise/include/functions_reporting.php:4248 +#: ../../godmode/alerts/configure_alert_special_days.php:118 +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/alerts/alert_special_days.php:286 +#: ../../godmode/alerts/alert_special_days.php:508 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1208 +#: ../../include/functions_html.php:2034 +msgid "Friday" +msgstr "Пятница" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1783 +#: ../../enterprise/include/functions_reporting.php:1694 +#: ../../enterprise/include/functions_reporting.php:2318 +#: ../../enterprise/include/functions_reporting.php:2636 +#: ../../enterprise/include/functions_reporting.php:3271 +#: ../../enterprise/include/functions_reporting.php:4249 +#: ../../godmode/alerts/configure_alert_special_days.php:119 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/alerts/alert_special_days.php:287 +#: ../../godmode/alerts/alert_special_days.php:512 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1216 +#: ../../include/functions_html.php:2035 +msgid "Saturday" +msgstr "Суббота" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1791 +#: ../../enterprise/include/functions_reporting.php:1695 +#: ../../enterprise/include/functions_reporting.php:2319 +#: ../../enterprise/include/functions_reporting.php:2637 +#: ../../enterprise/include/functions_reporting.php:3272 +#: ../../enterprise/include/functions_reporting.php:4250 +#: ../../godmode/alerts/configure_alert_special_days.php:120 +#: ../../godmode/alerts/alert_templates.php:70 +#: ../../godmode/alerts/alert_special_days.php:288 +#: ../../godmode/alerts/alert_special_days.php:516 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1224 +#: ../../include/functions_html.php:2029 +msgid "Sunday" +msgstr "Воскресенье" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../enterprise/tools/ipam/ipam_editor.php:242 +#: ../../godmode/alerts/alert_templates.php:73 +#: ../../include/functions_config.php:1508 +msgid "Days" +msgstr "Дней" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Every" +msgstr "Каждый(ое)" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 +#: ../../godmode/alerts/alert_templates.php:84 +msgid "and" +msgstr "и" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:306 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:229 +#: ../../enterprise/godmode/alerts/alert_events.php:522 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2275 +#: ../../godmode/snmpconsole/snmp_alert.php:1075 +#: ../../godmode/alerts/alert_templates.php:91 +#: ../../godmode/alerts/configure_alert_template.php:714 +#: ../../godmode/alerts/alert_view.php:314 +msgid "Time threshold" +msgstr "Временной порог" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 +#: ../../enterprise/godmode/policies/policy_alerts.php:373 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:254 +#: ../../enterprise/godmode/alerts/alert_events_list.php:647 +#: ../../enterprise/include/functions_reporting_pdf.php:1589 +#: ../../enterprise/include/functions_reporting_pdf.php:1662 +#: ../../enterprise/include/functions_reporting_pdf.php:1777 +#: ../../enterprise/include/functions_reporting_csv.php:863 +#: ../../enterprise/include/functions_reporting_csv.php:1223 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2406 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2410 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3402 +#: ../../godmode/agentes/planned_downtime.list.php:146 +#: ../../godmode/alerts/alert_list.list.php:635 +#: ../../godmode/alerts/alert_list.list.php:638 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../include/functions_reporting_html.php:147 +#: ../../include/functions_reporting_html.php:3244 +#: ../../include/rest-api/index.php:324 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:448 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:509 +#: ../../operation/agentes/gis_view.php:217 +#: ../../operation/reporting/reporting_viewer.php:252 +msgid "From" +msgstr "От" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 +#: ../../enterprise/godmode/policies/policy_alerts.php:373 +#: ../../enterprise/godmode/policies/policy_alerts.php:537 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:254 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:328 +#: ../../enterprise/godmode/alerts/alert_events_list.php:647 +#: ../../enterprise/godmode/alerts/alert_events_list.php:694 +#: ../../enterprise/include/functions_reporting_pdf.php:1595 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1003 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1033 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2406 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2410 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2565 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3404 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3530 +#: ../../godmode/massive/massive_add_action_alerts.php:248 +#: ../../godmode/alerts/alert_list.list.php:635 +#: ../../godmode/alerts/alert_list.list.php:755 +#: ../../godmode/alerts/alert_templates.php:98 +#: ../../godmode/alerts/alert_list.builder.php:128 +#: ../../include/functions_reporting_html.php:148 +#: ../../include/ajax/alert_list.ajax.php:508 +#: ../../include/class/AgentsAlerts.class.php:309 +#: ../../include/functions_reporting.php:13027 +#: ../../operation/reporting/reporting_viewer.php:256 +msgid "to" +msgstr "до" + +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:55 +msgid "Agent succesfully deleted" +msgstr "Агент успешно удален" + +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:57 +msgid "Could not delete agent" +msgstr "Не удалось удалить агента" + +#: ../../enterprise/meta/include/functions_events_meta.php:58 +#: ../../include/functions_events.php:189 +msgid "Event id" +msgstr "Событие ID" + +#: ../../enterprise/meta/include/functions_events_meta.php:62 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:401 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:457 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:509 +#: ../../include/functions_reporting_html.php:1247 +#: ../../include/functions_reporting_html.php:1255 +#: ../../include/functions_reporting_html.php:4484 +#: ../../include/functions_events.php:190 +#: ../../include/functions_events.php:2550 +#: ../../include/functions_events.php:4859 +msgid "Event name" +msgstr "Название события" + +#: ../../enterprise/meta/include/functions_events_meta.php:66 +#: ../../enterprise/include/functions_reporting_csv.php:783 +#: ../../enterprise/include/functions_ipam.php:1875 +#: ../../godmode/agentes/modificar_agente.php:613 +#: ../../godmode/agentes/agent_manager.php:210 +#: ../../mobile/operation/modules.php:584 +#: ../../mobile/operation/modules.php:836 +#: ../../include/functions_reporting_html.php:2880 +#: ../../include/functions_treeview.php:624 +#: ../../include/functions_events.php:191 +#: ../../include/functions_events.php:236 +#: ../../include/functions_events.php:2555 +#: ../../include/functions_events.php:6498 +#: ../../operation/events/events.php:1750 +#: ../../operation/events/events.build_table.php:182 +msgid "Agent name" +msgstr "Название агента" + +#: ../../enterprise/meta/include/functions_events_meta.php:82 +#: ../../enterprise/include/functions_inventory.php:94 +#: ../../enterprise/include/functions_inventory.php:128 +#: ../../enterprise/include/functions_inventory.php:316 +#: ../../enterprise/include/functions_inventory.php:336 +#: ../../enterprise/include/functions_inventory.php:497 +#: ../../enterprise/include/functions_reporting_csv.php:714 +#: ../../enterprise/include/functions_reporting_csv.php:787 +#: ../../enterprise/include/functions_reporting_csv.php:1356 +#: ../../enterprise/include/functions_reporting_csv.php:2139 +#: ../../enterprise/include/functions_reporting_csv.php:2175 +#: ../../enterprise/include/class/Omnishell.class.php:400 +#: ../../enterprise/include/class/LogSource.class.php:600 +#: ../../enterprise/operation/agentes/tag_view.php:670 +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:153 +#: ../../godmode/setup/news.php:249 ../../godmode/events/custom_events.php:101 +#: ../../mobile/operation/modules.php:648 +#: ../../mobile/operation/modules.php:839 ../../mobile/operation/events.php:516 +#: ../../include/functions_reporting_html.php:1032 +#: ../../include/functions_reporting_html.php:1040 +#: ../../include/functions_reporting_html.php:1251 +#: ../../include/functions_reporting_html.php:1258 +#: ../../include/functions_reporting_html.php:2043 +#: ../../include/functions_reporting_html.php:4486 +#: ../../include/ajax/events_extended.php:90 +#: ../../include/ajax/custom_fields.php:415 ../../include/ajax/events.php:1659 +#: ../../include/functions_netflow.php:274 +#: ../../include/functions_events.php:195 +#: ../../include/functions_events.php:251 +#: ../../include/functions_events.php:2560 +#: ../../include/functions_events.php:4864 +#: ../../include/functions_events.php:6505 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1276 +#: ../../operation/agentes/estado_generalagente.php:631 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/messages/message_list.php:185 +#: ../../operation/snmpconsole/snmp_view.php:883 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:123 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:297 +#: ../../operation/search_modules.php:38 +#: ../../operation/events/events.build_table.php:192 +msgid "Timestamp" +msgstr "Метка времени" + +#: ../../enterprise/meta/include/functions_events_meta.php:86 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:250 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:630 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2633 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1369 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1017 +#: ../../enterprise/include/functions_events.php:127 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2476 +#: ../../godmode/events/event_filter.php:138 +#: ../../godmode/events/event_edit_filter.php:311 +#: ../../include/lib/Dashboard/Widgets/events_list.php:321 +#: ../../include/functions_events.php:196 +#: ../../include/functions_events.php:6529 +#: ../../operation/events/events_list.php:925 +#: ../../operation/events/events.php:997 +msgid "Event type" +msgstr "Тип события" + +#: ../../enterprise/meta/include/functions_events_meta.php:90 +#: ../../enterprise/include/functions_reporting_csv.php:785 +#: ../../enterprise/operation/agentes/tag_view.php:184 +#: ../../godmode/modules/manage_network_templates_form.php:219 +#: ../../godmode/modules/manage_network_components.php:723 +#: ../../godmode/modules/manage_network_components_form_wizard.php:268 +#: ../../godmode/agentes/agent_template.php:233 +#: ../../godmode/agentes/status_monitor_custom_fields.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/alerts/alert_list.list.php:83 +#: ../../mobile/operation/modules.php:581 +#: ../../mobile/operation/modules.php:835 ../../include/ajax/module.php:978 +#: ../../include/ajax/custom_fields.php:411 +#: ../../operation/agentes/status_monitor.php:487 +#: ../../operation/agentes/status_monitor.php:1230 +msgid "Module name" +msgstr "Имя модуля" + +#: ../../enterprise/meta/include/functions_events_meta.php:94 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:204 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 +#: ../../godmode/agentes/configurar_agente.php:725 +#: ../../godmode/events/custom_events.php:104 ../../include/functions.php:4099 +#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:198 +#: ../../include/functions_events.php:260 +#: ../../include/functions_events.php:2633 +#: ../../include/functions_events.php:6542 +#: ../../operation/agentes/estado_monitores.php:522 +#: ../../operation/snmpconsole/snmp_view.php:565 +#: ../../operation/snmpconsole/snmp_view.php:888 +#: ../../operation/snmpconsole/snmp_view.php:1253 +#: ../../operation/events/events.build_table.php:253 +msgid "Alert" +msgstr "Предупреждение" + +#: ../../enterprise/meta/include/functions_events_meta.php:98 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:340 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:174 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:604 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2606 +#: ../../enterprise/include/functions_reporting.php:1984 +#: ../../enterprise/include/functions_events.php:137 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2449 +#: ../../godmode/events/event_filter.php:140 +#: ../../godmode/events/event_edit_filter.php:326 +#: ../../godmode/events/custom_events.php:105 +#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398 +#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:690 +#: ../../mobile/operation/events.php:691 +#: ../../include/functions_reporting_html.php:1030 +#: ../../include/functions_reporting_html.php:1038 +#: ../../include/functions_reporting_html.php:1249 +#: ../../include/functions_reporting_html.php:1257 +#: ../../include/functions_reporting_html.php:2041 +#: ../../include/functions_snmp.php:335 +#: ../../include/lib/Dashboard/Widgets/events_list.php:393 +#: ../../include/functions_events.php:199 +#: ../../include/functions_events.php:263 +#: ../../include/functions_events.php:2542 +#: ../../include/functions_events.php:4917 +#: ../../include/functions_events.php:6548 +#: ../../operation/snmpconsole/snmp_view.php:594 +#: ../../operation/events/events_list.php:941 +#: ../../operation/events/events.php:1070 +#: ../../operation/events/events.build_table.php:263 +msgid "Severity" +msgstr "Важность" + +#: ../../enterprise/meta/include/functions_events_meta.php:102 +#: ../../godmode/events/event_edit_filter.php:627 +#: ../../godmode/events/custom_events.php:106 +#: ../../godmode/wizards/HostDevices.class.php:958 +#: ../../include/class/CustomNetScan.class.php:468 +#: ../../include/functions_events.php:200 +#: ../../include/functions_events.php:266 +#: ../../include/functions_events.php:3690 +#: ../../include/functions_events.php:6554 +#: ../../include/functions_events.php:6940 +#: ../../operation/events/events_list.php:991 +#: ../../operation/events/events.php:1121 +#: ../../operation/events/events.build_table.php:273 +#: ../../operation/events/events.build_table.php:702 +msgid "Comment" +msgstr "Комментарий" + +#: ../../enterprise/meta/include/functions_events_meta.php:106 +#: ../../enterprise/godmode/modules/configure_local_component.php:531 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:146 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:106 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:893 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:105 +#: ../../enterprise/godmode/setup/setup_auth.php:229 +#: ../../enterprise/godmode/setup/setup_auth.php:508 +#: ../../enterprise/godmode/setup/setup_auth.php:1286 +#: ../../enterprise/operation/agentes/tag_view.php:204 +#: ../../enterprise/operation/agentes/tag_view.php:206 +#: ../../enterprise/operation/agentes/tag_view.php:662 +#: ../../godmode/modules/manage_network_components_form_common.php:334 +#: ../../godmode/massive/massive_copy_modules.php:171 +#: ../../godmode/massive/massive_delete_modules.php:396 +#: ../../godmode/massive/massive_delete_modules.php:510 +#: ../../godmode/massive/massive_edit_modules.php:393 +#: ../../godmode/massive/massive_edit_modules.php:479 +#: ../../godmode/massive/massive_edit_modules.php:991 +#: ../../godmode/events/custom_events.php:107 ../../godmode/tag/edit_tag.php:63 +#: ../../mobile/operation/events.php:557 +#: ../../include/functions_reporting_html.php:2939 +#: ../../include/functions_treeview.php:168 +#: ../../include/functions_profile.php:215 +#: ../../include/lib/Dashboard/Widgets/events_list.php:450 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:329 +#: ../../include/functions_events.php:201 +#: ../../include/functions_events.php:269 +#: ../../include/functions_events.php:5002 +#: ../../include/functions_events.php:6560 ../../operation/tree.php:48 +#: ../../operation/users/user_edit.php:780 +#: ../../operation/agentes/status_monitor.php:501 +#: ../../operation/agentes/group_view.php:193 +#: ../../operation/agentes/alerts_status.functions.php:107 +#: ../../operation/events/events.build_table.php:283 +#: ../../general/first_task/tags.php:22 +msgid "Tags" +msgstr "Метки" + +#: ../../enterprise/meta/include/functions_events_meta.php:114 +#: ../../include/functions_events.php:203 +#: ../../include/functions_events.php:4598 +msgid "Extra id" +msgstr "Дополнительный id" + +#: ../../enterprise/meta/include/functions_events_meta.php:118 +#: ../../godmode/setup/setup_integria.php:388 +#: ../../godmode/setup/setup_integria.php:511 +#: ../../godmode/events/custom_events.php:110 +#: ../../mobile/operation/events.php:520 ../../include/functions_events.php:204 +#: ../../include/functions_events.php:278 +#: ../../include/functions_events.php:4876 +#: ../../include/functions_events.php:6517 +#: ../../operation/incidents/integriaims_export_csv.php:97 +#: ../../operation/incidents/configure_integriaims_incident.php:293 +#: ../../operation/incidents/list_integriaims_incidents.php:138 +#: ../../operation/incidents/list_integriaims_incidents.php:268 +#: ../../operation/events/events.build_table.php:212 +msgid "Owner" +msgstr "Владелец" + +#: ../../enterprise/meta/include/functions_events_meta.php:122 +#: ../../godmode/events/custom_events.php:111 +#: ../../include/functions_events.php:205 +#: ../../include/functions_events.php:281 +#: ../../include/functions_events.php:6578 +#: ../../operation/events/events.build_table.php:313 +msgid "ACK Timestamp" +msgstr "ACK Отметка времени" + +#: ../../enterprise/meta/include/functions_events_meta.php:126 +#: ../../godmode/events/custom_events.php:112 +#: ../../include/functions_events.php:206 +#: ../../include/functions_events.php:284 +#: ../../include/functions_events.php:4586 +#: ../../include/functions_events.php:6584 +#: ../../operation/events/events.php:2622 +#: ../../operation/events/events.build_table.php:323 +msgid "Instructions" +msgstr "Инструкции" + +#: ../../enterprise/meta/include/functions_events_meta.php:130 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:50 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:214 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:542 +#: ../../include/functions_events.php:207 +msgid "Server name" +msgstr "Имя сервера" + +#: ../../enterprise/meta/include/functions_events_meta.php:138 +#: ../../include/functions_reporting_html.php:4415 +#: ../../include/lib/Dashboard/Widgets/module_status.php:173 +#: ../../include/lib/Dashboard/Widgets/module_status.php:535 +#: ../../include/functions_events.php:209 +#: ../../include/functions_events.php:6596 ../../operation/tree.php:237 +msgid "Module status" +msgstr "Модуль статуса" + +#: ../../enterprise/meta/include/process_reset_pass.php:28 +#: ../../enterprise/meta/include/reset_pass.php:28 +#: ../../enterprise/meta/general/login_page.php:45 +#: ../../general/login_page.php:78 +msgid "Splash login" +msgstr "Страница приветствия логин" + +#: ../../enterprise/meta/include/process_reset_pass.php:41 +#: ../../enterprise/meta/include/reset_pass.php:41 +#: ../../enterprise/meta/general/login_page.php:58 +msgid "Go to Pandora FMS Support" +msgstr "Перейти на страницу поддержки Pandora FMS" + +#: ../../enterprise/meta/include/process_reset_pass.php:43 +#: ../../enterprise/meta/include/process_reset_pass.php:54 +#: ../../enterprise/meta/include/reset_pass.php:43 +#: ../../enterprise/meta/include/reset_pass.php:54 +#: ../../enterprise/meta/general/login_page.php:60 +#: ../../enterprise/meta/general/login_page.php:71 +msgid "Go to " +msgstr "Перейти " + +#: ../../enterprise/meta/include/process_reset_pass.php:47 +#: ../../enterprise/meta/include/reset_pass.php:47 +#: ../../enterprise/meta/general/login_page.php:64 +#: ../../enterprise/include/process_reset_pass.php:52 +#: ../../enterprise/include/reset_pass.php:53 +#: ../../general/login_help_dialog.php:83 +#: ../../general/login_help_dialog.php:88 ../../general/login_page.php:147 +#: ../../general/login_page.php:150 +msgid "Support" +msgstr "Поддержка" + +#: ../../enterprise/meta/include/process_reset_pass.php:52 +#: ../../enterprise/meta/include/reset_pass.php:52 +#: ../../enterprise/meta/general/login_page.php:69 +msgid "Go to Pandora FMS Wiki" +msgstr "Перейти на страницу Pandora FMS Wiki" + +#: ../../enterprise/meta/include/process_reset_pass.php:58 +#: ../../enterprise/meta/include/reset_pass.php:58 +#: ../../enterprise/meta/general/login_page.php:75 +#: ../../enterprise/godmode/modules/configure_local_component.php:626 +#: ../../godmode/servers/plugin.php:528 ../../include/functions_ui.php:1428 +#: ../../include/class/ManageNetScanScripts.class.php:690 +msgid "Help" +msgstr "Помощь" + +#: ../../enterprise/meta/include/process_reset_pass.php:96 +#: ../../enterprise/include/process_reset_pass.php:97 +#: ../../operation/users/user_edit.php:298 +msgid "New Password" +msgstr "Новый Пароль" + +#: ../../enterprise/meta/include/process_reset_pass.php:114 +#: ../../enterprise/include/process_reset_pass.php:112 +msgid "Repeat password" +msgstr "Повторить пароль" + +#: ../../enterprise/meta/include/process_reset_pass.php:120 +#: ../../enterprise/include/process_reset_pass.php:118 +msgid "Change password" +msgstr "Изменить пароль" + +#: ../../enterprise/meta/include/process_reset_pass.php:123 +#: ../../enterprise/meta/index.php:624 +#: ../../enterprise/include/process_reset_pass.php:121 ../../index.php:799 +msgid "Passwords must be the same" +msgstr "Пароль должен повторяться" + +#: ../../enterprise/meta/include/process_reset_pass.php:131 +#: ../../enterprise/meta/include/reset_pass.php:102 +#: ../../enterprise/include/process_reset_pass.php:129 +#: ../../enterprise/include/reset_pass.php:107 +msgid "Back to login" +msgstr "Вернуться на страницу входа" + +#: ../../enterprise/meta/include/process_reset_pass.php:141 +#: ../../enterprise/meta/include/reset_pass.php:112 +#, php-format +msgid "%s NEXT GENERATION" +msgstr "%s СЛЕДУЮЩЕЕ ПОКОЛЕНИЕ" + +#: ../../enterprise/meta/include/process_reset_pass.php:149 +#: ../../enterprise/meta/include/reset_pass.php:120 +#: ../../enterprise/meta/general/login_page.php:217 +#: ../../include/functions_config.php:2367 +msgid "METACONSOLE" +msgstr "МЕТАКОНСОЛЬ" + +#: ../../enterprise/meta/include/process_reset_pass.php:163 +#: ../../enterprise/meta/include/reset_pass.php:134 +#: ../../enterprise/meta/general/login_page.php:232 +#: ../../enterprise/include/process_reset_pass.php:176 +#: ../../enterprise/include/reset_pass.php:154 ../../general/login_page.php:397 +msgid "Build" +msgstr "Сборка" + +#: ../../enterprise/meta/include/functions_agents_meta.php:475 +#: ../../enterprise/meta/include/functions_agents_meta.php:539 +#: ../../enterprise/meta/include/functions_agents_meta.php:574 +msgid "Agents movement" +msgstr "Агенты движения" + +#: ../../enterprise/meta/include/functions_agents_meta.php:486 +#: ../../enterprise/meta/include/functions_agents_meta.php:554 +msgid "Provisioning management" +msgstr "Управление подготовкой" + +#: ../../enterprise/meta/include/functions_agents_meta.php:497 +#: ../../enterprise/meta/include/functions_agents_meta.php:564 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:301 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:409 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:667 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:76 +msgid "Agent autoconfiguration" +msgstr "Авто-конфигурация Агента" + +#: ../../enterprise/meta/include/functions_agents_meta.php:508 +#: ../../enterprise/meta/include/functions_agents_meta.php:544 +#: ../../enterprise/meta/include/functions_agents_meta.php:549 +msgid "Group management" +msgstr "управление группами" + +#: ../../enterprise/meta/include/functions_agents_meta.php:519 +msgid "Tree group" +msgstr "Группа дерева" + +#: ../../enterprise/meta/include/functions_agents_meta.php:559 +msgid "Provisioning rules management" +msgstr "Управление правилами подготовки" + +#: ../../enterprise/meta/include/functions_agents_meta.php:569 +msgid "Colecctions" +msgstr "Коллекции" + +#: ../../enterprise/meta/include/functions_meta.php:352 +msgid "No admin user" +msgstr "Нет пользователя с правами администратора" + +#: ../../enterprise/meta/include/functions_meta.php:371 +#: ../../include/functions_config.php:385 +msgid "Activate Metaconsole" +msgstr "Активировать Мета Консоль" + +#: ../../enterprise/meta/include/functions_meta.php:488 +msgid "Netflow disable custom live view filters" +msgstr "Сетевой поток отключил пользовательские фильтры живого просмотра" + +#: ../../enterprise/meta/include/functions_meta.php:547 +msgid "Customizable section" +msgstr "Настраиваемые разделы" + +#: ../../enterprise/meta/include/functions_meta.php:566 +msgid "Agent API" +msgstr "Агент API" + +#: ../../enterprise/meta/include/functions_meta.php:602 +msgid "Policy add max. agents" +msgstr "Макс. возможное количество Агентов для добавления в политику" + +#: ../../enterprise/meta/include/functions_meta.php:727 +msgid "IP ElasticSearch" +msgstr "IP ElasticSearch" + +#: ../../enterprise/meta/include/functions_meta.php:736 +msgid "Port ElasticSearch" +msgstr "ElasticSearch порт" + +#: ../../enterprise/meta/include/functions_meta.php:745 +#: ../../enterprise/godmode/setup/setup_log_collector.php:38 +#: ../../include/functions_config.php:1453 +msgid "Number of logs viewed" +msgstr "Число просмотренных журналов" + +#: ../../enterprise/meta/include/functions_meta.php:756 +#: ../../godmode/setup/setup_auth.php:306 +#: ../../include/functions_config.php:528 +#: ../../include/class/AgentWizard.class.php:850 +msgid "Authentication method" +msgstr "способ проверки подлинности" + +#: ../../enterprise/meta/include/functions_meta.php:765 +#: ../../godmode/setup/setup_auth.php:53 ../../include/functions_config.php:620 +msgid "Fallback to local authentication" +msgstr "Перейти к локальной аутентификации" + +#: ../../enterprise/meta/include/functions_meta.php:774 +#: ../../enterprise/meta/include/functions_meta.php:969 +#: ../../godmode/setup/setup_auth.php:65 ../../include/functions_config.php:532 +msgid "Autocreate remote users" +msgstr "Автосоздание удаленных пользователей" + +#: ../../enterprise/meta/include/functions_meta.php:783 +#: ../../enterprise/godmode/setup/setup_auth.php:52 +#: ../../enterprise/godmode/setup/setup_auth.php:301 +#: ../../enterprise/godmode/setup/setup_auth.php:362 +#: ../../enterprise/godmode/setup/setup_auth.php:1138 +#: ../../include/functions_config.php:536 +msgid "Autocreate profile" +msgstr "Автосоздание профиля" + +#: ../../enterprise/meta/include/functions_meta.php:792 +#: ../../enterprise/godmode/setup/setup_auth.php:58 +#: ../../enterprise/godmode/setup/setup_auth.php:307 +#: ../../enterprise/godmode/setup/setup_auth.php:368 +#: ../../enterprise/godmode/setup/setup_auth.php:1144 +#: ../../include/functions_config.php:540 +msgid "Autocreate profile group" +msgstr "Автосоздание профиля группы" + +#: ../../enterprise/meta/include/functions_meta.php:801 +#: ../../enterprise/godmode/setup/setup_auth.php:65 +#: ../../enterprise/godmode/setup/setup_auth.php:316 +#: ../../enterprise/godmode/setup/setup_auth.php:377 +#: ../../enterprise/godmode/setup/setup_auth.php:1153 +#: ../../include/functions_config.php:544 +msgid "Autocreate profile tags" +msgstr "Авто-создание тегов профиля" + +#: ../../enterprise/meta/include/functions_meta.php:810 +#: ../../enterprise/godmode/setup/setup_auth.php:322 +#: ../../include/functions_config.php:548 +msgid "Automatically assigned no hierarchy" +msgstr "Иерархия не установлена автоматически" + +#: ../../enterprise/meta/include/functions_meta.php:819 +#: ../../enterprise/godmode/setup/setup_auth.php:567 +#: ../../enterprise/godmode/setup/setup_auth.php:1350 +#: ../../include/functions_config.php:552 +msgid "Autocreate blacklist" +msgstr "Автосоздание черного списка" + +#: ../../enterprise/meta/include/functions_meta.php:828 +#: ../../enterprise/meta/include/functions_meta.php:1101 +#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/setup/setup_auth.php:219 +#: ../../include/functions_config.php:724 +#: ../../operation/users/user_edit.php:420 +msgid "Double authentication" +msgstr "Двойная аутентификация" + +#: ../../enterprise/meta/include/functions_meta.php:837 +msgid "2FA_all_users" +msgstr "2FA_all_users" + +#: ../../enterprise/meta/include/functions_meta.php:848 +#: ../../enterprise/meta/include/functions_meta.php:1113 +#: ../../include/functions_config.php:732 +#: ../../include/functions_config.php:738 +msgid "Session timeout" +msgstr "Длительность сеанса" + +#: ../../enterprise/meta/include/functions_meta.php:861 +#: ../../enterprise/meta/include/functions_meta.php:1199 +#: ../../enterprise/godmode/setup/setup_auth.php:79 +#: ../../enterprise/godmode/setup/setup_auth.php:346 +#: ../../include/functions_config.php:633 +#: ../../include/functions_config.php:745 +msgid "Save Password" +msgstr "Сохранить пароль" + +#: ../../enterprise/meta/include/functions_meta.php:873 +#: ../../enterprise/godmode/setup/setup_auth.php:575 +#: ../../enterprise/godmode/setup/setup_auth.php:1358 +#: ../../include/functions_config.php:556 +msgid "Active directory server" +msgstr "Активный каталог сервера" + +#: ../../enterprise/meta/include/functions_meta.php:882 +#: ../../enterprise/godmode/setup/setup_auth.php:581 +#: ../../enterprise/godmode/setup/setup_auth.php:1364 +#: ../../include/functions_config.php:560 +msgid "Active directory port" +msgstr "Активный каталог с портом" + +#: ../../enterprise/meta/include/functions_meta.php:891 +#: ../../enterprise/meta/include/functions_meta.php:1151 +#: ../../enterprise/godmode/setup/setup_auth.php:587 +#: ../../enterprise/godmode/setup/setup_auth.php:1370 +#: ../../godmode/setup/setup_auth.php:133 +#: ../../include/functions_config.php:564 +#: ../../include/functions_config.php:600 +msgid "Start TLS" +msgstr "Начать TLS" + +#: ../../enterprise/meta/include/functions_meta.php:900 +#: ../../enterprise/godmode/setup/setup_auth.php:351 +#: ../../enterprise/godmode/setup/setup_auth.php:1127 +#: ../../include/functions_config.php:568 +msgid "Advanced Config AD" +msgstr "Специализированная конфигурация AD" + +#: ../../enterprise/meta/include/functions_meta.php:909 +#: ../../enterprise/godmode/setup/setup_auth.php:593 +#: ../../enterprise/godmode/setup/setup_auth.php:1376 +#: ../../include/functions_config.php:576 +msgid "Domain" +msgstr "Домен" + +#: ../../enterprise/meta/include/functions_meta.php:918 +#: ../../enterprise/godmode/setup/setup_auth.php:411 +#: ../../enterprise/godmode/setup/setup_auth.php:1187 +#: ../../include/functions_config.php:580 +msgid "Advanced Permisions AD" +msgstr "Специализированные разрешения AD" + +#: ../../enterprise/meta/include/functions_meta.php:927 +#: ../../enterprise/godmode/setup/setup_auth.php:126 +#: ../../include/functions_config.php:584 +msgid "Advanced Permissions LDAP" +msgstr "Специализированные разрешения LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:936 +#: ../../enterprise/godmode/setup/setup_auth.php:103 +#: ../../include/functions_config.php:572 +msgid "Advanced Config LDAP" +msgstr "Специализированная конфигурация LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:945 +#: ../../enterprise/meta/include/functions_meta.php:956 +#: ../../enterprise/godmode/setup/setup_auth.php:335 +#: ../../enterprise/godmode/setup/setup_auth.php:383 +#: ../../enterprise/godmode/setup/setup_auth.php:1159 +msgid "Auto enable node access" +msgstr "Авто-актиавция доступа к узлу" + +#: ../../enterprise/meta/include/functions_meta.php:981 +#: ../../include/functions_config.php:684 +msgid "Saml path" +msgstr "Путь Saml" + +#: ../../enterprise/meta/include/functions_meta.php:993 +#: ../../include/functions_config.php:688 +msgid "Saml source" +msgstr "Ресурс Saml" + +#: ../../enterprise/meta/include/functions_meta.php:1005 +#: ../../include/functions_config.php:692 +msgid "Saml user id parameter" +msgstr "Параметр id пользователя Saml" + +#: ../../enterprise/meta/include/functions_meta.php:1017 +#: ../../include/functions_config.php:696 +msgid "Saml mail parameter" +msgstr "Параметр email Saml" + +#: ../../enterprise/meta/include/functions_meta.php:1029 +#: ../../include/functions_config.php:700 +msgid "Saml group name parameter" +msgstr "Параметр имя группы Saml" + +#: ../../enterprise/meta/include/functions_meta.php:1041 +#: ../../include/functions_config.php:704 +msgid "Saml attr type parameter" +msgstr "Параметр типа attr для Saml" + +#: ../../enterprise/meta/include/functions_meta.php:1053 +#: ../../include/functions_config.php:708 +msgid "Saml profiles and tags parameter" +msgstr "Профили Saml и Параметр тегов" + +#: ../../enterprise/meta/include/functions_meta.php:1065 +#: ../../include/functions_config.php:720 +msgid "Saml profile and tag separator" +msgstr "Профиль Saml и сепаратор тегов" + +#: ../../enterprise/meta/include/functions_meta.php:1077 +msgid "SAML profile parameters" +msgstr "Параметры профиля SAML" + +#: ../../enterprise/meta/include/functions_meta.php:1089 +#: ../../include/functions_config.php:716 +msgid "Saml tag parameter" +msgstr "Параметр тегов SAML" + +#: ../../enterprise/meta/include/functions_meta.php:1124 +#: ../../godmode/setup/setup_auth.php:88 ../../include/functions_config.php:588 +msgid "LDAP server" +msgstr "Сервер LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1133 +#: ../../godmode/setup/setup_auth.php:101 +#: ../../include/functions_config.php:592 +msgid "LDAP port" +msgstr "Порт LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1142 +#: ../../godmode/setup/setup_auth.php:119 +#: ../../include/functions_config.php:596 +msgid "LDAP version" +msgstr "Версия LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1160 +#: ../../godmode/setup/setup_auth.php:144 +#: ../../include/functions_config.php:604 +msgid "Base DN" +msgstr "База DN" + +#: ../../enterprise/meta/include/functions_meta.php:1169 +#: ../../godmode/setup/setup_auth.php:157 +#: ../../include/functions_config.php:608 +msgid "Login attribute" +msgstr "атрибут ввода" + +#: ../../enterprise/meta/include/functions_meta.php:1178 +#: ../../godmode/setup/setup_auth.php:170 +#: ../../include/functions_config.php:612 +msgid "Admin LDAP login" +msgstr "Логин Администратора LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1187 +#: ../../godmode/setup/setup_auth.php:183 +#: ../../include/functions_config.php:616 +msgid "Admin LDAP password" +msgstr "Пароль Администратора LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1212 +#: ../../enterprise/godmode/setup/setup_auth.php:98 +#: ../../include/functions_config.php:624 +msgid "Login user attribute" +msgstr "Присвоение логина пользователю" + +#: ../../enterprise/meta/include/functions_meta.php:1221 +#: ../../include/functions_config.php:640 +msgid "Save profile" +msgstr "Сохранить профиль" + +#: ../../enterprise/meta/include/functions_meta.php:1232 +#: ../../enterprise/godmode/setup/setup_auth.php:91 +#: ../../include/functions_config.php:628 +msgid "LDAP function" +msgstr "Функция LDAP" + +#: ../../enterprise/meta/include/functions_meta.php:1243 +#, php-format +msgid "%s host" +msgstr "%s host" + +#: ../../enterprise/meta/include/functions_meta.php:1252 +#: ../../enterprise/meta/include/functions_meta.php:1301 +#: ../../enterprise/meta/include/functions_meta.php:1350 +#: ../../enterprise/godmode/setup/setup_auth.php:1006 +#: ../../enterprise/godmode/setup/setup_auth.php:1038 +#: ../../include/functions_config.php:648 +#: ../../include/functions_config.php:668 +msgid "MySQL port" +msgstr "MySQL порт" + +#: ../../enterprise/meta/include/functions_meta.php:1261 +#: ../../enterprise/meta/include/functions_meta.php:1310 +#: ../../enterprise/meta/include/functions_meta.php:1359 +#: ../../enterprise/godmode/setup/setup_history.php:186 +#: ../../enterprise/godmode/setup/setup_auth.php:1012 +#: ../../enterprise/godmode/setup/setup_auth.php:1044 +#: ../../include/functions_config.php:652 +#: ../../include/functions_config.php:672 +#: ../../include/functions_config.php:1483 +msgid "Database name" +msgstr "Имя базы данных" + +#: ../../enterprise/meta/include/functions_meta.php:1292 +msgid "Babel Enterprise host" +msgstr "Хост Babel предприятия" + +#: ../../enterprise/meta/include/functions_meta.php:1341 +#: ../../enterprise/godmode/setup/setup_auth.php:1032 +#: ../../include/functions_config.php:664 +msgid "Integria host" +msgstr "хост Integria" + +#: ../../enterprise/meta/include/functions_meta.php:1400 +#: ../../include/functions_config.php:887 +msgid "Timestamp or time comparation" +msgstr "Время печати или времени сравнения" + +#: ../../enterprise/meta/include/functions_meta.php:1409 +msgid "Graph color (min)" +msgstr "Цвет графика минимальный" + +#: ../../enterprise/meta/include/functions_meta.php:1418 +msgid "Graph color (avg)" +msgstr "Цвет графика средний" + +#: ../../enterprise/meta/include/functions_meta.php:1427 +msgid "Graph color (max)" +msgstr "Цвет графика макимальный" + +#: ../../enterprise/meta/include/functions_meta.php:1459 +#: ../../include/functions_config.php:935 +msgid "Data precision for reports" +msgstr "Точность данных для отчетов" + +#: ../../enterprise/meta/include/functions_meta.php:1563 +msgid "full scale charts" +msgstr "Полномасштабные таблицы" + +#: ../../enterprise/meta/include/functions_meta.php:1572 +msgid "type mode type charts" +msgstr "режим тип таблиц" + +#: ../../enterprise/meta/include/functions_meta.php:1590 +msgid "type mode zoom charts" +msgstr "режим увеличение таблиц" + +#: ../../enterprise/meta/include/functions_meta.php:1608 +msgid "Type of charts" +msgstr "Тип таблиц" + +#: ../../enterprise/meta/include/functions_meta.php:1644 +msgid "Custom logo (white background)" +msgstr "Персонализированный значок (белый фон)" + +#: ../../enterprise/meta/include/functions_meta.php:1662 +#: ../../include/functions_config.php:992 +msgid "Custom logo login" +msgstr "Персонализированный значок логин" + +#: ../../enterprise/meta/include/functions_meta.php:1671 +#: ../../include/functions_config.php:996 +msgid "Custom splash login" +msgstr "Персонализированная страница приветствия логин" + +#: ../../enterprise/meta/include/functions_meta.php:1698 +#: ../../include/functions_config.php:1024 +msgid "Custom title1 login" +msgstr "Персонализированное Заглавие1 логин" + +#: ../../enterprise/meta/include/functions_meta.php:1707 +#: ../../include/functions_config.php:1028 +msgid "Custom title2 login" +msgstr "Персонализированное Заглавие2 логин" + +#: ../../enterprise/meta/include/functions_meta.php:1734 +msgid "Custom background login" +msgstr "Персонализированный фон логин" + +#: ../../enterprise/meta/include/functions_meta.php:1778 +#: ../../include/functions_config.php:968 +msgid "Font path" +msgstr "Путь для Шрифтов" + +#: ../../enterprise/meta/include/functions_meta.php:1783 +#: ../../include/functions_config.php:1401 +msgid "Use data multiplier" +msgstr "Использовать мультипликатор данных" + +#: ../../enterprise/meta/include/functions_meta.php:1795 +#: ../../include/functions_config.php:1356 +msgid "Custom report info" +msgstr "Персонализированная информация отчета" + +#: ../../enterprise/meta/include/functions_meta.php:1800 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 +#: ../../include/functions_config.php:1373 +msgid "Font family" +msgstr "Семейство шрифтов" + +#: ../../enterprise/meta/include/functions_meta.php:1820 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:182 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 +#: ../../godmode/setup/setup_visuals.php:1249 +#: ../../include/functions_config.php:1389 +msgid "Footer" +msgstr "Нижний колонтитул" + +#: ../../enterprise/meta/include/functions_meta.php:1840 +#: ../../include/functions_config.php:1088 +msgid "Use the legacy Visual Console" +msgstr "Использовать наследственную визуальную консоль" + +#: ../../enterprise/meta/include/functions_meta.php:1845 +#: ../../include/functions_config.php:1092 +msgid "Default expiration of the Visual Console item's cache" +msgstr "Истечение срока действия элементов визуальной консоли по умолчанию" + +#: ../../enterprise/meta/include/functions_meta.php:1898 +#: ../../godmode/setup/performance.php:563 +#: ../../include/functions_config.php:818 +msgid "Use agent access graph" +msgstr "Использовать график агентского доступа" + +#: ../../enterprise/meta/include/functions_meta.php:1907 +msgid "Default block size migration agents" +msgstr "Размер блока миграции агентов по умолчанию" + +#: ../../enterprise/meta/include/functions_meta.php:1918 +msgid "Default block size execution event" +msgstr "Событие запуска размера блока по умолчанию" + +#: ../../enterprise/meta/include/functions_meta.php:1928 +msgid "Default row limit in csv log" +msgstr "Лимит строк по умолчанию в журнале CSV" + +#: ../../enterprise/meta/include/functions_meta.php:1945 +msgid "Node address default" +msgstr "Адрес узла по умолчанию" + +#: ../../enterprise/meta/include/functions_components_meta.php:56 +#: ../../enterprise/meta/include/functions_components_meta.php:80 +#: ../../godmode/menu.php:80 +msgid "Component groups" +msgstr "Группы компонентов" + +#: ../../enterprise/meta/include/functions_components_meta.php:60 +#: ../../enterprise/meta/include/functions_components_meta.php:84 +#: ../../enterprise/godmode/menu.php:90 ../../godmode/menu.php:153 +msgid "Local components" +msgstr "Местные компоненты" + +#: ../../enterprise/meta/include/functions_components_meta.php:64 +#: ../../enterprise/meta/include/functions_components_meta.php:88 +msgid "Network components" +msgstr "Сетевые компоненты" + +#: ../../enterprise/meta/include/functions_components_meta.php:68 +#: ../../enterprise/meta/include/functions_components_meta.php:92 +msgid "Plugin management" +msgstr "Управление плагином" + +#: ../../enterprise/meta/include/functions_components_meta.php:72 +#: ../../enterprise/meta/include/functions_components_meta.php:105 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:68 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:70 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:240 +#: ../../enterprise/godmode/menu.php:81 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:197 +#: ../../enterprise/include/functions_policies.php:3782 +msgid "Inventory modules" +msgstr "Модули инвентаризации" + +#: ../../enterprise/meta/include/functions_components_meta.php:98 +msgid "Create plugin" +msgstr "Создать плагин" + +#: ../../enterprise/meta/include/functions_components_meta.php:100 +msgid "Edit plugin" +msgstr "Редактировать плагин" + +#: ../../enterprise/meta/include/functions_ui_meta.php:53 +#, php-format +msgid "%s - the Flexible Monitoring System" +msgstr "%s - Гибкая Система Мониторинга" + +#: ../../enterprise/meta/include/functions_ui_meta.php:877 +#: ../../enterprise/godmode/services/services.elements.php:819 +#: ../../enterprise/godmode/services/services.elements.php:830 +#: ../../enterprise/include/functions_login.php:104 +#: ../../enterprise/include/functions_login.php:484 +#: ../../godmode/users/configure_user.php:1782 +#: ../../godmode/users/configure_user.php:1852 +#: ../../godmode/massive/massive_edit_plugins.php:851 +#: ../../godmode/massive/massive_edit_plugins.php:852 +#: ../../mobile/operation/visualmap.php:188 ../../include/functions.php:1235 +#: ../../include/ajax/double_auth.ajax.php:255 +#: ../../include/ajax/double_auth.ajax.php:353 +#: ../../include/ajax/double_auth.ajax.php:399 +#: ../../include/ajax/double_auth.ajax.php:516 +#: ../../include/functions_ui.php:283 +#: ../../include/class/Diagnostics.class.php:1821 +#: ../../include/functions_events.php:2868 +#: ../../include/functions_events.php:3230 +#: ../../operation/users/user_edit.php:1029 +#: ../../operation/users/user_edit.php:1095 ../../general/register.php:234 +msgid "Error" +msgstr "Ошибка" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:121 +#: ../../enterprise/meta/include/functions_alerts_meta.php:140 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:256 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:181 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:158 +#: ../../enterprise/include/functions_reporting.php:142 +#: ../../enterprise/include/functions_reporting.php:7550 +#: ../../enterprise/include/functions_reporting.php:7578 +#: ../../enterprise/include/functions_reporting.php:7649 +#: ../../godmode/agentes/configurar_agente.php:731 ../../godmode/menu.php:144 +#: ../../godmode/menu.php:226 ../../include/class/ConfigPEN.class.php:332 +#: ../../include/class/ModuleTemplates.class.php:196 +#: ../../include/class/ModuleTemplates.class.php:214 +msgid "Templates" +msgstr "Шаблоны" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:129 +#: ../../enterprise/meta/include/functions_alerts_meta.php:148 +#: ../../godmode/menu.php:233 +msgid "Commands" +msgstr "Команды" + +#: ../../enterprise/meta/include/reset_pass.php:91 +#: ../../enterprise/include/reset_pass.php:96 +msgid "User to reset password" +msgstr "Пользователь для обновления пароля" + +#: ../../enterprise/meta/include/reset_pass.php:95 +#: ../../enterprise/meta/index.php:690 +#: ../../enterprise/include/reset_pass.php:100 ../../index.php:858 +msgid "Reset password" +msgstr "Обновить пароль" + +#: ../../enterprise/meta/include/reset_pass.php:138 +#: ../../enterprise/meta/include/reset_pass.php:141 +#: ../../enterprise/include/reset_pass.php:158 +#: ../../enterprise/include/reset_pass.php:161 +msgid "Reset password failed" +msgstr "Не удалось обновить пароль" + +#: ../../enterprise/meta/include/reset_pass.php:145 +#: ../../enterprise/meta/general/login_page.php:259 +#: ../../enterprise/meta/general/login_page.php:301 +#: ../../enterprise/include/reset_pass.php:165 ../../general/login_page.php:425 +#: ../../general/login_page.php:467 +msgid "ERROR" +msgstr "ОШИБКА" + +#: ../../enterprise/meta/include/functions_relations.php:49 +msgid "Invalid file content" +msgstr "Недействительное содержимое файла" + +#: ../../enterprise/meta/include/functions_relations.php:54 +msgid "No relations found" +msgstr "Не найдено никаких связей" + +#: ../../enterprise/meta/include/functions_relations.php:80 +#: ../../enterprise/meta/include/functions_relations.php:91 +#: ../../enterprise/meta/include/functions_relations.php:102 +#, php-format +msgid "The relation type: %s to %s -> %s was not saved" +msgstr "Тип связи: %s с %s -> %s не был сохранен" + +#: ../../enterprise/meta/include/functions_relations.php:123 +#, php-format +msgid "The relation %s -> %s was not saved" +msgstr "Связь: %s -> %s не была сохранена" + +#: ../../enterprise/meta/include/functions_relations.php:133 +msgid "File imported successfully" +msgstr "Файл импортирован успешно" + +#: ../../enterprise/meta/include/functions_relations.php:136 +msgid "Error inserting relations" +msgstr "Ошибка при введении связей" + +#: ../../enterprise/meta/include/functions_relations.php:165 +msgid "Empty string" +msgstr "Пустая цепь" + +#: ../../enterprise/meta/include/functions_relations.php:170 +msgid "Empty custom node address" +msgstr "Пустой персонализированный адрес узла" + +#: ../../enterprise/meta/include/functions_relations.php:208 +#, php-format +msgid "" +"The relation type: %s to %s -> %s was not saved. This relationship already " +"exists in the database" +msgstr "" +"Тип связи: %s с %s -> %s не был сохранен. Эта зависимость уже существует в " +"базе данных" + +#: ../../enterprise/meta/include/functions_relations.php:230 +#, php-format +msgid "Error inserting the relation %s -> %s" +msgstr "Ошибка введения связи %s -> %s" + +#: ../../enterprise/meta/include/functions_relations.php:238 +msgid "Relation created successfully" +msgstr "Связь создана успешно" + +#: ../../enterprise/meta/include/functions_relations.php:263 +msgid "Error deleting the relation" +msgstr "Ошибка при удалении связи" + +#: ../../enterprise/meta/include/functions_relations.php:269 +msgid "Relation deleted successfully" +msgstr "Связь удалена успешно" + +#: ../../enterprise/meta/index.php:204 ../../index.php:1270 +#: ../../operation/visual_console/legacy_public_view.php:53 +#: ../../operation/visual_console/public_view.php:36 +#: ../../operation/agentes/stat_win.php:86 +#: ../../operation/gis_maps/public_console.php:277 +#: ../../operation/events/sound_events.php:87 +msgid "Connection with server has been lost" +msgstr "Связь с сервером была потерена" + +#: ../../enterprise/meta/index.php:205 ../../index.php:1271 +#: ../../operation/visual_console/legacy_public_view.php:54 +#: ../../operation/visual_console/public_view.php:37 +#: ../../operation/agentes/stat_win.php:87 +#: ../../operation/gis_maps/public_console.php:278 +#: ../../operation/events/sound_events.php:88 +msgid "" +"Connection to the server has been lost. Please check your internet " +"connection or contact with administrator." +msgstr "" +"Соединение с сервером было потеряно. Проверьте ваше интернет соединение или " +"свяжитесь с администратором." + +#: ../../enterprise/meta/index.php:289 ../../mobile/include/user.class.php:242 +#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:331 +msgid "Invalid code" +msgstr "Недействительный код" + +#: ../../enterprise/meta/index.php:301 ../../index.php:343 +msgid "The code shouldn't be empty" +msgstr "Код не должен быть пустым" + +#: ../../enterprise/meta/index.php:314 ../../index.php:356 +msgid "Expired login" +msgstr "Время действия логина истекло" + +#: ../../enterprise/meta/index.php:321 ../../enterprise/meta/index.php:327 +#: ../../index.php:363 ../../index.php:369 +msgid "Login error" +msgstr "Ошибка логина" + +#: ../../enterprise/meta/index.php:615 ../../index.php:788 +msgid "Password changed successfully" +msgstr "Пароль изменён успешно" + +#: ../../enterprise/meta/index.php:621 ../../index.php:794 +msgid "Failed to change password" +msgstr "Не удалось изменить пароль" + +#: ../../enterprise/meta/index.php:635 ../../index.php:810 +msgid "Too much time since password change request" +msgstr "Слишком много времени прошло с момента запроса на изменение пароля" + +#: ../../enterprise/meta/index.php:642 ../../index.php:817 +msgid "This user has not requested a password change" +msgstr "Этот пользователь не запрашивал изменение пароля" + +#: ../../enterprise/meta/index.php:658 ../../index.php:832 +msgid "Id user cannot be empty" +msgstr "Id пользователя не может быть пустым" + +#: ../../enterprise/meta/index.php:666 ../../index.php:840 +msgid "Error in reset password request" +msgstr "Ошибка при запросе на сброс пароля" + +#: ../../enterprise/meta/index.php:674 ../../index.php:848 +msgid "This user doesn't have a valid email address" +msgstr "У этого пользователя нет действующего адреса электронной почты" + +#: ../../enterprise/meta/index.php:691 ../../index.php:859 +msgid "This is an automatically sent message for user " +msgstr "Это автоматически отправленное сообщение для пользователя " + +#: ../../enterprise/meta/index.php:694 ../../index.php:862 +msgid "Please click the link below to reset your password" +msgstr "Нажмите на ссылку ниже, чтобы обновить свой пароль" + +#: ../../enterprise/meta/index.php:696 ../../index.php:864 +msgid "Reset your password" +msgstr "Обновить свой пароль" + +#: ../../enterprise/meta/index.php:700 ../../index.php:868 +msgid "Please do not reply to this email." +msgstr "Пожалуйста, не отвечайте на это письмо." + +#: ../../enterprise/meta/index.php:706 ../../index.php:873 +msgid "Error at sending the email" +msgstr "Ошибка при отправке электронного письма" + +#: ../../enterprise/meta/index.php:854 ../../enterprise/meta/index.php:933 +#: ../../index.php:1137 +msgid "Sorry! I can't find the page!" +msgstr "Приношу свои извинения! Не могу найти запрошенную страницу!" + +#: ../../enterprise/meta/agentsearch.php:102 +msgid "Search results for" +msgstr "Результаты поиска для" + +#: ../../enterprise/meta/agentsearch.php:103 ../../operation/search_main.php:54 +msgid "Agents found" +msgstr "Агенты найдены" + +#: ../../enterprise/meta/agentsearch.php:116 +msgid "Descrtiption" +msgstr "Описание" + +#: ../../enterprise/meta/agentsearch.php:123 +#: ../../enterprise/godmode/reporting/aws_view.php:61 +#: ../../enterprise/operation/agentes/policy_view.php:386 +#: ../../enterprise/operation/agentes/tag_view.php:594 +#: ../../enterprise/operation/agentes/ver_agente.php:74 +#: ../../extensions/users_connected.php:103 +#: ../../godmode/users/user_list.php:414 +#: ../../godmode/agentes/planned_downtime.editor.php:905 +#: ../../mobile/operation/agents.php:81 ../../mobile/operation/agents.php:398 +#: ../../mobile/operation/agents.php:400 ../../mobile/operation/agents.php:403 +#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:984 +#: ../../include/functions_treeview.php:675 +#: ../../include/functions_events.php:4399 ../../operation/search_users.php:37 +#: ../../operation/search_agents.php:57 +#: ../../operation/agentes/log_sources_status.php:31 +#: ../../operation/agentes/estado_agente.php:741 +#: ../../operation/agentes/ver_agente.php:956 +#: ../../operation/agentes/estado_generalagente.php:350 +#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 +#: ../../operation/gis_maps/ajax.php:466 +msgid "Last contact" +msgstr "Последний контакт" + +#: ../../enterprise/meta/agentsearch.php:282 +msgid "There are no agents included in this group" +msgstr "Нет агентов включенных в эту группу." + +#: ../../enterprise/meta/agentsearch.php:296 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:595 +#: ../../operation/tree.php:361 +msgid "Policies found" +msgstr "Политики найдены" + +#: ../../enterprise/meta/agentsearch.php:390 +#: ../../enterprise/godmode/policies/policies.php:510 +#: ../../operation/search_policies.php:49 +msgid "Policy updated" +msgstr "Политика обновлена" + +#: ../../enterprise/meta/agentsearch.php:398 +#: ../../enterprise/godmode/policies/policies.php:518 +#: ../../operation/search_policies.php:57 +msgid "Pending update policy only database" +msgstr "Режим ожидания принципов обновления только в базе данных" + +#: ../../enterprise/meta/agentsearch.php:406 +#: ../../enterprise/godmode/policies/policies.php:526 +#: ../../operation/search_policies.php:65 +msgid "Pending update policy" +msgstr "Режим ожидания принципов обновления" + +#: ../../enterprise/meta/agentsearch.php:427 +msgid "There are no policies included in this group" +msgstr "В эту группу не включены никакие политики" + +#: ../../enterprise/meta/general/footer.php:28 ../../general/footer.php:47 +#, php-format +msgid "%s %s - Build %s - MR %s" +msgstr "%s %s - Разработка %s - MR %s" + +#: ../../enterprise/meta/general/footer.php:28 +msgid "Page generated at" +msgstr "Страница сгенерирована за" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:12 +#: ../../enterprise/meta/general/noaccesssaml.php:133 +#: ../../enterprise/meta/general/noaccess.php:133 ../../mobile/index.php:256 +#: ../../mobile/operation/agents.php:168 ../../mobile/operation/modules.php:200 +#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:99 +#: ../../mobile/operation/alerts.php:158 +#: ../../mobile/operation/visualmap.php:191 +#: ../../mobile/operation/visualmaps.php:152 +#: ../../mobile/operation/module_graph.php:255 +#: ../../mobile/operation/events.php:468 ../../mobile/operation/tactical.php:79 +#: ../../general/noaccesssaml.php:133 ../../general/noaccess.php:133 +#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18 +msgid "You don't have access to this page" +msgstr "У вас нет доступа на эту страницу" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 +#: ../../general/noaccess2.php:28 +msgid "No access" +msgstr "Нет доступа" + +#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 msgid "" "Metaconsole needs previous activation from regular console, please contact " "system administrator if you need assistance. <br>" @@ -8148,6172 +11533,1742 @@ msgstr "" "пожалуйста, свяжитесь с системным администратором, если вы нуждаетесь в " "помощи. <br>" -#: ../../enterprise/meta/general/footer.php:26 +#: ../../enterprise/meta/general/main_header.php:97 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:708 +#: ../../operation/tree.php:120 ../../operation/menu.php:51 +msgid "Tree view" +msgstr "Просмотр в виде дерева" + +#: ../../enterprise/meta/general/main_header.php:109 +msgid "Groups view" +msgstr "Просмотр групп" + +#: ../../enterprise/meta/general/main_header.php:115 +#: ../../operation/agentes/alerts_status.php:199 +msgid "Alerts view" +msgstr "Просмотр оповещений" + +#: ../../enterprise/meta/general/main_header.php:121 +msgid "Monitors view" +msgstr "Просмотр Приборы контроля" + +#: ../../enterprise/meta/general/main_header.php:127 +msgid "Custom fields view" +msgstr "вид пользовательских полей" + +#: ../../enterprise/meta/general/main_header.php:167 +#: ../../enterprise/meta/general/main_header.php:183 +#: ../../enterprise/mobile/include/functions_web.php:15 +#: ../../enterprise/include/functions_cron.php:1392 +#: ../../include/functions_groups.php:139 +#: ../../operation/search_results.php:131 +msgid "Reports" +msgstr "Отчёты" + +#: ../../enterprise/meta/general/main_header.php:174 +msgid "Create new report" +msgstr "Создать новый отчет" + +#: ../../enterprise/meta/general/main_header.php:190 +msgid "Report templates" +msgstr "Шаблоны отчета" + +#: ../../enterprise/meta/general/main_header.php:200 +#: ../../enterprise/include/functions_reporting.php:120 +msgid "Templates wizard" +msgstr "Шаблоны мастера" + +#: ../../enterprise/meta/general/main_header.php:210 +#: ../../enterprise/godmode/menu.php:128 +#: ../../enterprise/godmode/massive/massive_edit_services.php:864 +#: ../../enterprise/godmode/services/services.service.php:483 +#: ../../enterprise/godmode/services/services.elements.php:767 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:200 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:120 +#: ../../enterprise/include/functions_groups.php:65 +#: ../../enterprise/operation/menu.php:77 +#: ../../enterprise/operation/services/services.service_map.php:163 +#: ../../enterprise/operation/services/services.treeview_services.php:100 +#: ../../enterprise/operation/services/services.treeview_services.php:106 +#: ../../enterprise/operation/services/services.list.php:99 +#: ../../enterprise/operation/services/services.list.php:102 +#: ../../enterprise/operation/services/services.table_services.php:77 +#: ../../enterprise/operation/services/services.table_services.php:83 +#: ../../operation/agentes/ver_agente.php:1551 +#: ../../general/first_task/service_list.php:25 +msgid "Services" +msgstr "Службы" + +#: ../../enterprise/meta/general/main_header.php:240 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108 +#: ../../enterprise/godmode/reporting/visual_console_template.php:109 +#: ../../enterprise/include/functions_enterprise.php:316 +#: ../../godmode/reporting/map_builder.php:107 +#: ../../include/class/OrderInterpreter.class.php:233 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:174 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:521 +#: ../../general/first_task/map_builder.php:31 +msgid "Visual Console" +msgstr "Визуальный консоли" + +#: ../../enterprise/meta/general/main_header.php:247 +msgid "Favourite Visual Console" +msgstr "Избранная визуальная консоль" + +#: ../../enterprise/meta/general/main_header.php:255 +msgid "Template Visual Console" +msgstr "Шаблон Визуальной консоли" + +#: ../../enterprise/meta/general/main_header.php:262 +msgid "Wizard Visual Console" +msgstr "Помощник Визуальной консоли" + +#: ../../enterprise/meta/general/main_header.php:275 +#: ../../enterprise/include/functions_enterprise.php:312 +#: ../../godmode/menu.php:335 ../../godmode/setup/setup.php:148 +#: ../../godmode/setup/setup.php:268 ../../include/functions_reports.php:874 +#: ../../include/functions_reports.php:878 +#: ../../include/functions_reports.php:882 +msgid "Netflow" +msgstr "Сетевой поток" + +#: ../../enterprise/meta/general/main_header.php:281 +msgid "Live view" +msgstr "Живой просмотр" + +#: ../../enterprise/meta/general/main_header.php:327 +#: ../../enterprise/meta/general/main_header.php:423 +msgid "Agent management" +msgstr "Управление агентом" + +#: ../../enterprise/meta/general/main_header.php:333 +#: ../../enterprise/meta/general/main_header.php:429 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:68 +#: ../../enterprise/godmode/modules/local_components.php:123 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_nc_groups.php:40 +#: ../../godmode/modules/manage_network_components.php:283 +#: ../../godmode/modules/module_list.php:26 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module management" +msgstr "Управление модулем" + +#: ../../enterprise/meta/general/main_header.php:339 +#: ../../enterprise/meta/general/main_header.php:445 +msgid "Alert management" +msgstr "Управление оповещением" + +#: ../../enterprise/meta/general/main_header.php:345 +#: ../../enterprise/meta/general/main_header.php:454 +#: ../../enterprise/godmode/menu.php:252 +#: ../../enterprise/godmode/alerts/alert_events_list.php:73 +#: ../../enterprise/godmode/alerts/alert_events_list.php:123 +#: ../../enterprise/godmode/alerts/alert_events_list.php:139 +#: ../../enterprise/godmode/alerts/alert_events_list.php:158 +msgid "Event alerts" +msgstr "События оповещений" + +#: ../../enterprise/meta/general/main_header.php:351 +msgid "Component management" +msgstr "Управление компонентами" + +#: ../../enterprise/meta/general/main_header.php:357 +msgid "Policy management" +msgstr "Управление политикой" + +#: ../../enterprise/meta/general/main_header.php:363 +msgid "Category management" +msgstr "Управление категорией" + +#: ../../enterprise/meta/general/main_header.php:369 +#: ../../enterprise/meta/general/main_header.php:436 +msgid "Server management" +msgstr "Управление сервером" + +#: ../../enterprise/meta/general/main_header.php:375 ../../godmode/menu.php:364 +msgid "License" +msgstr "Лицензионное соглашение" + +#: ../../enterprise/meta/general/main_header.php:381 +msgid "Metasetup" +msgstr "Мета настройки" + +#: ../../enterprise/meta/general/main_header.php:387 +#: ../../enterprise/meta/general/main_header.php:462 ../../godmode/menu.php:383 +#: ../../godmode/menu.php:502 ../../general/links_menu.php:17 +msgid "Links" +msgstr "Ссылки" + +#: ../../enterprise/meta/general/main_header.php:472 +#: ../../godmode/extensions.php:28 +msgid "Extensions" +msgstr "Расширения" + +#: ../../enterprise/meta/general/main_header.php:523 +#: ../../enterprise/meta/general/main_header.php:529 +#: ../../general/header.php:52 ../../general/header.php:58 +msgid "All systems" +msgstr "Все системы" + +#: ../../enterprise/meta/general/main_header.php:523 +#: ../../general/header.php:52 +msgid "Down" +msgstr "Вниз" + +#: ../../enterprise/meta/general/main_header.php:526 +#: ../../general/header.php:55 +msgid "servers down" +msgstr "сервера выключены" + +#: ../../enterprise/meta/general/main_header.php:529 +#: ../../general/header.php:58 +msgid "Ready" +msgstr "Готово" + +#: ../../enterprise/meta/general/main_header.php:540 +#: ../../mobile/include/functions_web.php:34 +#: ../../mobile/include/ui.class.php:225 +#: ../../mobile/include/user.class.php:402 ../../mobile/operation/home.php:147 +#: ../../general/header.php:433 ../../general/header.php:435 +msgid "Logout" +msgstr "Выход" + +#: ../../enterprise/meta/general/main_header.php:557 +#: ../../general/header.php:236 +msgid "Configure autorefresh" +msgstr "Настройка автоматического обновления" + +#: ../../enterprise/meta/general/main_header.php:574 +#: ../../enterprise/meta/general/main_header.php:586 +#: ../../general/header.php:302 ../../general/header.php:321 +msgid "Disabled autorefresh" +msgstr "Отключено автообновление" + +#: ../../enterprise/meta/general/logon_ok.php:37 +msgid "Network traffic" +msgstr "Сетевой трафик" + +#: ../../enterprise/meta/general/logon_ok.php:66 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:262 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:265 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:284 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:287 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:309 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:328 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:331 +#: ../../godmode/reporting/map_builder.php:107 +#: ../../godmode/reporting/graphs.php:103 +#: ../../godmode/reporting/visual_console_favorite.php:99 +#: ../../godmode/reporting/reporting_builder.php:561 +#: ../../godmode/reporting/reporting_builder.php:568 +#: ../../godmode/reporting/reporting_builder.php:3139 +#: ../../godmode/reporting/reporting_builder.php:3146 +#: ../../godmode/reporting/reporting_builder.php:3243 +#: ../../godmode/reporting/reporting_builder.php:3250 +#: ../../operation/menu.php:309 +#: ../../operation/reporting/reporting_viewer.php:169 +#: ../../operation/reporting/reporting_viewer.php:174 +#: ../../operation/reporting/custom_reporting.php:23 +#: ../../operation/reporting/graph_viewer.php:415 +msgid "Reporting" +msgstr "Отчётность" + +#: ../../enterprise/meta/general/noaccesssaml.php:138 +#: ../../general/noaccesssaml.php:138 +msgid "" +"Access to this page is restricted to authorized users SAML only, please " +"contact system administrator if you need assistance." +msgstr "" +"Доступ к этой странице ограничен только для авторизованных пользователей " +"SAML, обратитесь к системному администратору, если вам нужна помощь." + +#: ../../enterprise/meta/general/noaccesssaml.php:140 +#: ../../general/noaccesssaml.php:140 #, php-format -msgid "® Ãrtica soluciones Pandora FMS %s - Build %s" +msgid "" +"Please make sure you have SAML authentication properly configured. For more " +"information the error to access this page are recorded in security logs of " +"%s System Database" msgstr "" +"Убедитесь, что у вас правильно настроена аутентификация SAML. Для получения " +"дополнительной информации ошибка доступа к этой странице записана в журналах " +"безопасности %s System Database" -#: ../../enterprise/meta/general/footer.php:27 ../../general/footer.php:32 -msgid "Page generated at" -msgstr "Страница сгенерирована за" - -#: ../../enterprise/meta/general/login_page.php:27 -msgid "Go to pandorafms.com" +#: ../../enterprise/meta/general/noaccess.php:138 +#: ../../general/noaccess.php:138 +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance." msgstr "" +"Доступ к этой странице ограничен только для авторизованных пользователей, " +"если вам нужна помощь, обратитесь к системному администратору." -#: ../../enterprise/meta/general/login_page.php:29 -msgid "Pandora Help" +#: ../../enterprise/meta/general/noaccess.php:140 +#: ../../general/noaccess.php:140 +#, php-format +msgid "" +"Please know that all attempts to access this page are recorded in security " +"logs of %s System Database" msgstr "" +"Имейте в виду, что все попытки получить доступ к этой странице " +"регистрируются в журналах безопасности %s System Database" -#: ../../enterprise/meta/general/login_page.php:30 -#: ../../general/login_page.php:84 ../../general/login_help_dialog.php:67 -#: ../../general/login_help_dialog.php:69 -msgid "Support" -msgstr "Поддержка" +#: ../../enterprise/meta/general/login_page.php:109 +#: ../../general/login_page.php:305 +msgid "Authentication code" +msgstr "Код Аутентификации" -#: ../../enterprise/meta/general/login_page.php:33 -msgid "Go to Pandora FMS Wiki" -msgstr "" +#: ../../enterprise/meta/general/login_page.php:112 +#: ../../mobile/include/user.class.php:434 ../../general/login_page.php:308 +msgid "Check code" +msgstr "Проверочный код" -#: ../../enterprise/meta/general/login_page.php:35 -msgid "Pandora Support" -msgstr "" - -#: ../../enterprise/meta/general/login_page.php:36 -#: ../../enterprise/godmode/modules/configure_local_component.php:431 -#: ../../include/functions_ui.php:1068 ../../godmode/servers/plugin.php:423 -#: ../../godmode/servers/recon_script.php:183 ../../general/login_page.php:82 -msgid "Help" -msgstr "Помощь" - -#: ../../enterprise/meta/general/login_page.php:76 -#: ../../mobile/include/user.class.php:250 ../../general/login_page.php:127 +#: ../../enterprise/meta/general/login_page.php:146 +#: ../../enterprise/meta/general/login_page.php:187 +#: ../../mobile/include/user.class.php:346 ../../general/login_page.php:289 msgid "Login" msgstr "Имя пользователя" -#: ../../enterprise/meta/general/login_page.php:82 -msgid "Monitor all your systems with a single tool" -msgstr "" +#: ../../enterprise/meta/general/login_page.php:154 +#: ../../mobile/include/user.class.php:366 ../../general/login_page.php:257 +msgid "Login with SAML" +msgstr "Вход в систему с помощью SAML" -#: ../../enterprise/meta/general/login_page.php:90 -#: ../../general/login_page.php:181 -msgid "Build" -msgstr "Сборка" +#: ../../enterprise/meta/general/login_page.php:195 +#: ../../general/login_page.php:331 +msgid "Forgot your password?" +msgstr "Забыли пароль?" -#: ../../enterprise/meta/general/login_page.php:94 -#: ../../enterprise/meta/general/login_page.php:103 -#: ../../general/login_page.php:194 +#: ../../enterprise/meta/general/login_page.php:209 +#: ../../include/functions_config.php:2363 +msgid "PANDORA FMS NEXT GENERATION" +msgstr "PANDORA FMS СЛЕДУЮЩЕЕ ПОКОЛЕНИЕ" + +#: ../../enterprise/meta/general/login_page.php:235 +#: ../../enterprise/meta/general/login_page.php:238 +#: ../../enterprise/meta/general/login_page.php:252 +#: ../../enterprise/meta/general/login_page.php:255 +#: ../../enterprise/meta/general/login_page.php:272 +#: ../../enterprise/meta/general/login_page.php:275 +#: ../../general/login_page.php:401 ../../general/login_page.php:404 +#: ../../general/login_page.php:418 ../../general/login_page.php:421 +#: ../../general/login_page.php:438 ../../general/login_page.php:441 +msgid "Password reset" +msgstr "Восстановление пароля" + +#: ../../enterprise/meta/general/login_page.php:242 +#: ../../general/login_page.php:408 +msgid "INFO" +msgstr "ИНФОРМАЦИЯ" + +#: ../../enterprise/meta/general/login_page.php:243 +#: ../../general/login_page.php:409 +msgid "An email has been sent to your email address" +msgstr "На ваш электронный адрес было отправлено письмо" + +#: ../../enterprise/meta/general/login_page.php:279 +#: ../../general/login_page.php:445 +msgid "SUCCESS" +msgstr "УСПЕШНО" + +#: ../../enterprise/meta/general/login_page.php:294 +#: ../../enterprise/meta/general/login_page.php:297 +#: ../../enterprise/include/functions_login.php:141 +#: ../../general/login_page.php:460 ../../general/login_page.php:463 +#: ../../general/login_page.php:597 ../../general/login_page.php:600 msgid "Login failed" msgstr "Не удалось выполнить вход" -#: ../../enterprise/meta/general/login_page.php:116 -msgid "Login off" -msgstr "" +#: ../../enterprise/meta/general/login_page.php:319 +#: ../../enterprise/meta/general/login_page.php:322 +#: ../../enterprise/meta/general/login_page.php:326 +#: ../../general/login_page.php:485 ../../general/login_page.php:488 +#: ../../general/login_page.php:492 +msgid "Logged out" +msgstr "Завершил работу" -#: ../../enterprise/meta/general/login_page.php:121 -#: ../../mobile/include/user.class.php:221 ../../general/login_page.php:133 +#: ../../enterprise/meta/general/login_page.php:327 +#: ../../mobile/include/user.class.php:304 ../../general/login_page.php:494 +#, php-format msgid "" -"Your session is over. Please close your browser window to close this Pandora " +"Your session has ended. Please close your browser window to close this %s " "session." msgstr "" -"Ваш сеанс работы завершён. Пожалуйста, закройте окно браузера для завершения " -"сеанса Pandora." +"Ваша сессия завершилась. Пожалуйста, закройте окно браузера, чтобы завершить " +"эту сессию %s." -#: ../../enterprise/meta/general/login_page.php:147 -msgid "" -"In order to have the best user experience with Pandora FMS, we <b>strongly " -"recommend</b> to use" -msgstr "" -"Для того чтобы улучшить пользовательский опыт работы с Pandora FMS, мы <b> " -"настоятельно рекомендуем <b> использовать" +#: ../../enterprise/load_enterprise.php:560 +#: ../../enterprise/load_enterprise.php:625 +msgid "Invalid licence." +msgstr "Недействительная лицензия." -#: ../../enterprise/meta/general/login_page.php:148 -msgid "" -"<a href='http://www.mozilla.org/en-US/firefox/fx/'>Mozilla Firefox</a> or <a " -"href='https://www.google.com/chrome'>Google Chrome</a> browsers." -msgstr "" -"<a href='http://www.mozilla.org/en-US/firefox/fx/'>Mozilla Firefox</a> or <a " -"href='https://www.google.com/chrome'>Google Chrome</a> браузеры." +#: ../../enterprise/load_enterprise.php:560 +msgid "Please contact your system administrator." +msgstr "Свяжитесь с вашим системным администратором." -#: ../../enterprise/meta/event/custom_events.php:38 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 -#: ../../operation/menu.php:267 ../../godmode/users/configure_profile.php:298 -msgid "View events" -msgstr "Просмотр событий" - -#: ../../enterprise/meta/event/custom_events.php:43 -#: ../../godmode/events/event_filter.php:173 -#: ../../godmode/snmpconsole/snmp_filters.php:38 -#: ../../godmode/netflow/nf_edit_form.php:182 -#: ../../godmode/netflow/nf_edit.php:167 -msgid "Create filter" -msgstr "Создать фильтр" - -#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:185 -#: ../../godmode/events/events.php:46 -msgid "Event responses" -msgstr "Событие ответы" - -#: ../../enterprise/meta/event/custom_events.php:53 -#: ../../enterprise/meta/event/custom_events.php:58 -#: ../../enterprise/meta/event/custom_events.php:69 -#: ../../enterprise/meta/event/custom_events.php:83 -#: ../../include/functions_events.php:2043 -#: ../../operation/agentes/ver_agente.php:891 -#: ../../operation/agentes/ver_agente.php:1028 ../../godmode/menu.php:40 -#: ../../godmode/events/events.php:51 ../../godmode/events/events.php:56 -#: ../../godmode/events/events.php:67 -#: ../../godmode/agentes/agent_manager.php:433 -#: ../../godmode/massive/massive_edit_agents.php:439 -msgid "Custom fields" -msgstr "Пользовательские поля" - -#: ../../enterprise/meta/event/custom_events.php:73 -#: ../../include/ajax/events.php:305 ../../godmode/events/events.php:71 -msgid "Responses" -msgstr "Ответы" - -#: ../../enterprise/meta/event/custom_events.php:89 -msgid "The user is not in neither group with EW profile" -msgstr "Пользователь не в одной группе с НОВЫМ профилем" - -#: ../../enterprise/meta/event/custom_events.php:129 -msgid "Succesful updated" -msgstr "Успешно обновлено" - -#: ../../enterprise/meta/event/custom_events.php:130 -msgid "Unsucessful updated" -msgstr "Неудачно обновлено" - -#: ../../enterprise/meta/event/custom_events.php:149 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:313 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:341 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:93 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:114 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:152 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:101 -#: ../../enterprise/godmode/policies/policy_agents.php:226 -#: ../../enterprise/godmode/policies/policy_agents.php:234 -#: ../../operation/events/events_list.php:218 -#: ../../godmode/reporting/graph_builder.graph_editor.php:138 -msgid "Filter group" -msgstr "Фильтр группы" - -#: ../../enterprise/meta/event/custom_events.php:154 -msgid "Fields" -msgstr "Поля" - -#: ../../enterprise/meta/event/custom_events.php:169 -#: ../../godmode/events/custom_events.php:181 -msgid "Fields available" -msgstr "Поля свободны" - -#: ../../enterprise/meta/event/custom_events.php:171 -#: ../../godmode/events/custom_events.php:193 -msgid "Fields selected" -msgstr "Выбранные поля" - -#: ../../enterprise/meta/event/custom_events.php:178 -#: ../../godmode/events/custom_events.php:185 -msgid "Add fields to select" -msgstr "Добавить поля для выбора" - -#: ../../enterprise/meta/event/custom_events.php:183 -#: ../../godmode/events/custom_events.php:189 -msgid "Delete fields to select" -msgstr "Удалить поля для выбора" - -#: ../../enterprise/meta/event/custom_events.php:191 -#: ../../godmode/events/custom_events.php:131 -msgid "Show event fields" -msgstr "Показать поля событий" - -#: ../../enterprise/meta/monitoring/group_view.php:33 -msgid "Group View" -msgstr "Просмотр группы" - -#: ../../enterprise/meta/monitoring/group_view.php:46 -#: ../../operation/menu.php:48 ../../operation/users/user_edit.php:294 -#: ../../operation/agentes/group_view.php:66 -msgid "Group view" -msgstr "Просмотр группы" - -#: ../../enterprise/meta/monitoring/group_view.php:92 -msgid "Summary by status" -msgstr "" - -#: ../../enterprise/meta/monitoring/group_view.php:100 -msgid "% Agents Unknown" -msgstr "" - -#: ../../enterprise/meta/monitoring/group_view.php:101 -msgid "% Agents not init" -msgstr "" - -#: ../../enterprise/meta/monitoring/group_view.php:104 -msgid "% Monitors Critical" -msgstr "" - -#: ../../enterprise/meta/monitoring/group_view.php:105 -msgid "% Monitors Warning" -msgstr "" - -#: ../../enterprise/meta/monitoring/group_view.php:106 -msgid "% Monitors OK" -msgstr "" - -#: ../../enterprise/meta/monitoring/group_view.php:107 -msgid "% Monitors Unknown" -msgstr "" - -#: ../../enterprise/meta/monitoring/group_view.php:108 -msgid "% Monitors Not init" -msgstr "" - -#: ../../enterprise/meta/monitoring/group_view.php:140 -msgid "Group or Tag" -msgstr "" - -#: ../../enterprise/meta/monitoring/group_view.php:141 -#: ../../enterprise/include/functions_inventory.php:322 -#: ../../enterprise/include/functions_reporting_pdf.php:660 -#: ../../enterprise/include/functions_reporting_pdf.php:675 -#: ../../enterprise/operation/agentes/agent_inventory.php:230 -#: ../../include/functions_reporting_html.php:1007 -#: ../../include/functions_reporting_html.php:1022 -#: ../../operation/agentes/gis_view.php:194 -#: ../../operation/agentes/group_view.php:147 ../../operation/tree.php:273 -#: ../../godmode/db/db_event.php:61 ../../godmode/db/db_audit.php:80 -msgid "Total" -msgstr "Всего" - -#: ../../enterprise/meta/monitoring/group_view.php:143 -#: ../../enterprise/meta/monitoring/group_view.php:146 -#: ../../enterprise/meta/monitoring/tactical.php:263 -#: ../../enterprise/include/functions_reporting_pdf.php:680 -#: ../../mobile/operation/groups.php:110 ../../mobile/operation/groups.php:112 -#: ../../mobile/operation/modules.php:44 -#: ../../include/functions_graph.php:1820 -#: ../../include/functions_groups.php:782 -#: ../../include/functions_groups.php:784 -#: ../../include/functions_groups.php:786 -#: ../../include/functions_groups.php:787 -#: ../../include/functions_groups.php:788 -#: ../../include/functions_reporting_html.php:1032 -#: ../../operation/agentes/group_view.php:149 -#: ../../operation/agentes/estado_agente.php:187 -#: ../../operation/agentes/tactical.php:153 -#: ../../operation/agentes/status_monitor.php:423 ../../operation/tree.php:135 -#: ../../operation/tree.php:160 ../../operation/tree.php:298 -#: ../../godmode/massive/massive_delete_agents.php:118 -#: ../../godmode/massive/massive_delete_modules.php:458 -#: ../../godmode/massive/massive_copy_modules.php:82 -#: ../../godmode/massive/massive_copy_modules.php:195 -#: ../../godmode/massive/massive_edit_agents.php:219 -#: ../../godmode/massive/massive_edit_modules.php:318 -msgid "Not init" -msgstr "Не инициализировано" - -#: ../../enterprise/meta/monitoring/group_view.php:147 -#: ../../enterprise/meta/monitoring/tactical.php:261 -#: ../../enterprise/include/functions_services.php:1258 -#: ../../enterprise/include/functions_reporting_pdf.php:676 -#: ../../mobile/operation/groups.php:114 ../../mobile/operation/groups.php:116 -#: ../../mobile/operation/modules.php:39 ../../mobile/operation/agents.php:34 -#: ../../include/functions_graph.php:1816 -#: ../../include/functions_graph.php:2870 -#: ../../include/functions_graph.php:2871 -#: ../../include/functions_graph.php:4760 -#: ../../include/functions_groups.php:791 -#: ../../include/functions_groups.php:793 -#: ../../include/functions_groups.php:795 -#: ../../include/functions_groups.php:796 -#: ../../include/functions_groups.php:797 -#: ../../include/functions_groups.php:805 ../../include/functions.php:845 -#: ../../include/functions.php:1049 ../../include/functions.php:1056 -#: ../../include/functions.php:1086 -#: ../../include/functions_reporting_html.php:1024 -#: ../../include/functions_events.php:1471 -#: ../../operation/agentes/estado_monitores.php:425 -#: ../../operation/agentes/group_view.php:152 -#: ../../operation/agentes/estado_agente.php:182 -#: ../../operation/agentes/tactical.php:151 -#: ../../operation/agentes/status_monitor.php:418 -#: ../../operation/netflow/nf_live_view.php:304 ../../operation/tree.php:131 -#: ../../operation/tree.php:156 ../../operation/tree.php:303 -#: ../../godmode/netflow/nf_edit_form.php:207 -#: ../../godmode/massive/massive_delete_agents.php:113 -#: ../../godmode/massive/massive_delete_modules.php:453 -#: ../../godmode/massive/massive_copy_modules.php:77 -#: ../../godmode/massive/massive_copy_modules.php:190 -#: ../../godmode/massive/massive_edit_agents.php:214 -#: ../../godmode/massive/massive_edit_modules.php:313 -msgid "Normal" -msgstr "Нормальное" - -#: ../../enterprise/meta/monitoring/tactical.php:37 -msgid "Tactical View" -msgstr "Тактический просмотр" - -#: ../../enterprise/meta/monitoring/tactical.php:272 -msgid "Report of state" -msgstr "" - -#: ../../enterprise/meta/monitoring/tactical.php:301 -msgid "Report of events" -msgstr "" - -#: ../../enterprise/meta/monitoring/tactical.php:306 -msgid "Info of state in events" -msgstr "" - -#: ../../enterprise/meta/monitoring/tactical.php:322 -msgid "More events" -msgstr "Еще события" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:90 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:183 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:173 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:163 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:212 -#: ../../enterprise/godmode/alerts/alert_events.php:552 -#: ../../godmode/alerts/configure_alert_template.php:781 -#: ../../godmode/alerts/configure_alert_template.php:785 -msgid "Next" -msgstr "Следующий" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:91 -#: ../../enterprise/godmode/alerts/alert_events.php:548 -#: ../../godmode/alerts/configure_alert_template.php:774 -msgid "Finish" -msgstr "Завершено" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:92 -msgid "The alert you are trying to add is already in the list of alerts" -msgstr "То оповещение, которое вы пытаетесь добавить уже в списке оповещений" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:97 -#: ../../include/functions_events.php:1716 -msgid "New" -msgstr "Новый" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:102 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:357 -msgid "Please, select a module" -msgstr "Пожалуйста, выберите модуль" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:103 -msgid "Please, select an alert" -msgstr "Пожалуйста, выберите оповещение" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:104 -msgid "Please, select an agent" -msgstr "Пожалуйста, выберите агента" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:106 -#: ../../enterprise/operation/log/log_viewer.php:238 -#: ../../enterprise/operation/log/log_viewer.php:244 -#: ../../enterprise/godmode/policies/policy_modules.php:1125 -#: ../../extensions/system_info.php:495 -#: ../../operation/reporting/reporting_viewer.php:237 -#: ../../godmode/massive/massive_copy_modules.php:164 -#: ../../general/ui/agents_list.php:121 -msgid "Loading" -msgstr "Загрузка" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:109 -msgid "String" -msgstr "Строка" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:110 -#: ../../godmode/agentes/configurar_agente.php:181 -#: ../../godmode/agentes/configurar_agente.php:704 -msgid "No agent name specified" -msgstr "Не указано имя агента" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:111 -msgid "Another agent already exists with the same name" -msgstr "Другой агент уже существует с таким именем" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:112 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:178 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:127 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:124 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:49 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:154 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 -msgid "Can't connect to Pandora FMS instance" -msgstr "Не удается подключиться к экземпляру Pandora FMS" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:113 -#: ../../godmode/agentes/module_manager_editor_common.php:338 -#: ../../godmode/agentes/module_manager_editor_common.php:341 +#: ../../enterprise/load_enterprise.php:625 #, php-format -msgid "Agent interval x %s" -msgstr "Агент интервал x %s" +msgid "Please contact %s for a valid licence." +msgstr "Пожалуйста, свяжитесь с %s для получения действующей лицензии." -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:199 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:75 -#: ../../operation/snmpconsole/snmp_view.php:572 -#: ../../operation/snmpconsole/snmp_statistics.php:151 -#: ../../operation/agentes/estado_agente.php:573 -#: ../../godmode/agentes/modificar_agente.php:580 -msgid "Create agent" -msgstr "Создать агента" +#: ../../enterprise/load_enterprise.php:626 +#, php-format +msgid "Or disable %s enterprise" +msgstr "Или отключите %s enterprise" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:200 -#: ../../godmode/menu.php:33 -msgid "Manage agents" -msgstr "Агенты управления" +#: ../../enterprise/load_enterprise.php:724 +#: ../../enterprise/godmode/alerts/alert_events_list.php:760 +#: ../../enterprise/godmode/reporting/aws_view.php:154 +#: ../../enterprise/godmode/wizards/Cloud.class.php:317 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3202 +#: ../../godmode/setup/license.php:143 ../../mobile/operation/events.php:570 +#: ../../include/ajax/alert_list.ajax.php:266 +#: ../../include/ajax/alert_list.ajax.php:292 +#: ../../operation/agentes/alerts_status.php:556 +#: ../../operation/agentes/alerts_status.php:593 +#: ../../operation/agentes/alerts_status.php:626 +#: ../../operation/agentes/alerts_status.php:712 +#: ../../operation/snmpconsole/snmp_view.php:1029 +#: ../../operation/snmpconsole/snmp_view.php:1221 +#: ../../operation/snmpconsole/snmp_view.php:1274 +msgid "Validate" +msgstr "Подтверждать" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:249 -msgid "Select the agent to be edited or deleted" -msgstr "Выберите агенту для изменения или удаления" +#: ../../enterprise/load_enterprise.php:728 +#: ../../enterprise/load_enterprise.php:1023 +msgid "Request new licence" +msgstr "Запросить новую лицензию" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:261 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:350 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:422 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:614 -#: ../../mobile/operation/groups.php:67 ../../mobile/operation/agent.php:100 -#: ../../mobile/operation/networkmaps.php:116 -#: ../../mobile/operation/module_graph.php:370 -#: ../../mobile/operation/module_graph.php:379 -#: ../../mobile/operation/modules.php:190 -#: ../../mobile/operation/tactical.php:85 -#: ../../mobile/operation/networkmap.php:98 -#: ../../mobile/operation/alerts.php:158 -#: ../../mobile/operation/visualmap.php:103 -#: ../../mobile/operation/events.php:563 -#: ../../mobile/operation/visualmaps.php:100 -#: ../../mobile/operation/agents.php:162 -msgid "Back" -msgstr "Назад" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:290 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:98 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:116 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:84 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:116 -msgid "Create module" -msgstr "Создать модуль" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:291 -msgid "Manage modules" -msgstr "Управление модулями" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:339 -msgid "Select the agent where the module will be created" -msgstr "Выберитв агента, в котором модуль будет создан" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:353 -msgid "Create Module" -msgstr "Создать Модуль" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 -msgid "Select the module to be edited or deleted" -msgstr "Выберите модуль для редактирования или удаления" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:455 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:533 -#: ../../godmode/snmpconsole/snmp_alert.php:76 -msgid "Create alert" -msgstr "Создать оповещение" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:456 -#: ../../godmode/users/configure_profile.php:280 -#: ../../godmode/alerts/alert_list.php:297 -#: ../../godmode/alerts/alert_list.php:300 -msgid "Manage alerts" -msgstr "Управление оповещениями" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:519 -msgid "Select the module where the alert will be created" -msgstr "Выберите модуль, в котором оповещение будет создано" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:603 -msgid "Select the alert to be edited or deleted" -msgstr "Выберите оповещение для редактирования или удаления" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:83 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:71 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:101 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:209 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:165 -#: ../../enterprise/godmode/modules/configure_local_component.php:290 -#: ../../include/functions_reports.php:631 -#: ../../include/functions_reports.php:633 ../../godmode/menu.php:92 -#: ../../godmode/agentes/planned_downtime.list.php:394 -#: ../../godmode/setup/setup.php:130 -msgid "Configuration" -msgstr "Настройки" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:84 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:72 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:102 -msgid "Advanced configuration" -msgstr "Дополнительные настройки" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:180 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:170 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:160 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:208 -#: ../../include/functions_graph.php:791 -#: ../../include/functions_graph.php:3606 -msgid "Previous" -msgstr "Предыдущий" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:198 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:196 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:240 -msgid "Invalid characters founded in module name" -msgstr "Недопустимые символы найдены в имени модуля" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 -#: ../../mobile/include/functions_web.php:23 -#: ../../include/functions_reporting_html.php:2195 -#: ../../include/functions_reporting_html.php:2335 -msgid "Monitor" -msgstr "Монитор" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -msgid "Web check" -msgstr "Веб проверка" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:228 -msgid "Module description" -msgstr "Описание модуля" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:244 -msgid "Step by step wizard" -msgstr "Пошаговый мастер" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:251 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:255 -msgid "Click Create to continue" -msgstr "Нажмите здесь чтобы продолжить" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:189 -msgid "Please, set a name" -msgstr "Пожалуйста, выберите имя" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:210 -msgid "Please, set an interval" -msgstr "Пожалуйста, установите интервал" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:78 -msgid "Edit agent" -msgstr "Редакторивать агента" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:212 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:227 -msgid "Please, set a valid IP address" -msgstr "Пожалуйста, выберите действительный IP адрес" - -#: ../../enterprise/extensions/translate_string.php:165 -#: ../../enterprise/extensions/translate_string.php:326 -msgid "Translate string" -msgstr "Перевести строку" - -#: ../../enterprise/extensions/csv_import.php:27 -msgid "CSV import" -msgstr "Импорт CSV" - -#: ../../enterprise/extensions/ipam.php:159 -#: ../../enterprise/extensions/ipam.php:298 -#: ../../extensions/files_repo.php:110 ../../extensions/files_repo.php:192 -msgid "Operation view" +#: ../../enterprise/load_enterprise.php:807 +msgid "" +"<strong style=\"font-size: 11pt\">Metaconsole unreached</strong> <br><br> " +"This node has a metaconsole license and cannot contact with the metaconsole." msgstr "" +"<strong style=\"font-size: 11pt\">Не удалось связаться с " +"метаконсолью</strong> <br><br> Этот узел имеет лицензию метаконсоли и не " +"может связаться с метаконсолью." -#: ../../enterprise/extensions/ipam.php:168 -#: ../../enterprise/extensions/ipam.php:282 -msgid "Subnetworks calculator" +#: ../../enterprise/load_enterprise.php:824 +#: ../../enterprise/load_enterprise.php:830 +#: ../../enterprise/load_enterprise.php:846 +#, php-format +msgid "" +"<strong style=\"font-size: 11pt\">License exceeded</strong> <br><br> This " +"license allows %d agents and you have %d agents configured." msgstr "" +"<strong style=\"font-size: 11pt\">Лицензия превышена</strong> <br><br> Эта " +"лицензия позволяет использовать %d агентов, и у вас настроено %d агентов." -#: ../../enterprise/extensions/ipam.php:189 -#: ../../enterprise/extensions/ipam/ipam_list.php:98 -msgid "Manage addresses" -msgstr "Управлять адресами" +#: ../../enterprise/load_enterprise.php:825 +#: ../../enterprise/load_enterprise.php:832 +#: ../../enterprise/load_enterprise.php:841 +#: ../../enterprise/load_enterprise.php:848 +#: ../../enterprise/load_enterprise.php:860 +#, php-format +msgid "Please contact %s to extend the license." +msgstr "Пожалуйста, свяжитесь с %s для продления лицензии." -#: ../../enterprise/extensions/ipam.php:197 -#: ../../godmode/massive/massive_operations.php:207 -msgid "Massive operations" -msgstr "Массовые операции" - -#: ../../enterprise/extensions/ipam.php:205 -#: ../../enterprise/extensions/ipam/ipam_list.php:101 -msgid "Addresses view" +#: ../../enterprise/load_enterprise.php:831 +#: ../../enterprise/load_enterprise.php:833 +#: ../../enterprise/load_enterprise.php:847 +#: ../../enterprise/load_enterprise.php:849 +#: ../../enterprise/load_enterprise.php:876 +#: ../../enterprise/load_enterprise.php:882 +msgid "" +"This console will work in limited mode. Enterprise features will not " +"function." msgstr "" +"Эта консоль будет работать в ограниченном режиме. Функции Enterprise не " +"будут работать." -#: ../../enterprise/extensions/ipam.php:213 -#: ../../enterprise/extensions/ipam.php:225 -#: ../../enterprise/extensions/ipam.php:290 -#: ../../extensions/files_repo.php:104 ../../extensions/files_repo.php:187 -msgid "Administration view" +#: ../../enterprise/load_enterprise.php:840 +#, php-format +msgid "" +"<strong cstyle=\"font-size: 11pt\">License exceeded</strong> <br><br> This " +"license allows %d agents and you have %d agents configured." msgstr "" +"<strong cstyle=\"font-size: 11pt\">Лицензия превышена</strong> <br><br> Эта " +"лицензия позволяет использовать %d агентов, и у вас настроено %d агентов." -#: ../../enterprise/extensions/ipam.php:238 -#: ../../enterprise/extensions/ipam.php:306 -#: ../../enterprise/extensions/ipam.php:328 -#: ../../enterprise/extensions/ipam.php:329 -msgid "IPAM" +#: ../../enterprise/load_enterprise.php:859 +#, php-format +msgid "" +"<strong style=\"font-size: 11pt\">License exceeded</strong> <br><br> This " +"license allows %d modules and you have %d modules configured." msgstr "" +"<strong style=\"font-size: 11pt\">Лицензия превышена</strong> <br><br>Эта " +"лицензия позволяет использовать %d модулей, и у вас настроено %d модулей." -#: ../../enterprise/extensions/check_acls.php:16 +#: ../../enterprise/load_enterprise.php:869 +#: ../../enterprise/load_enterprise.php:875 +msgid "" +"<strong style=\"font-size: 11pt\">This license has expired.</strong> " +"<br><br>You can not get updates until you renew the license." +msgstr "" +"<strong style=\"font-size: 11pt\"> срок действия лицензии истек. </strong> " +"<br><br> Вы не можете получать обновления, до тех пор вы не продлили " +"лицензию." + +#: ../../enterprise/load_enterprise.php:870 +#: ../../enterprise/load_enterprise.php:877 +#, php-format +msgid "Please contact %s to renew the license." +msgstr "Пожалуйста, свяжитесь с %s для продления лицензии." + +#: ../../enterprise/load_enterprise.php:880 +#: ../../enterprise/load_enterprise.php:1019 +msgid "Renew" +msgstr "продлить срок действия" + +#: ../../enterprise/load_enterprise.php:889 +#, php-format +msgid "" +"<strong style=\"font-size: 11pt\">This license is outside of " +"support.</strong> <br><br>This %s installation will continue working " +"normally and without limitations, but without support or updates." +msgstr "" +"<strong style=\"font-size: 11pt\">Эта лицензия находится вне зоны " +"поддержки.</strong> <br><br>Установка %s будет продолжать работать нормально " +"и без ограничений, но без поддержки или обновлений." + +#: ../../enterprise/extensions/disabled/check_acls.php:16 msgid "ACL users for this agent" -msgstr "" +msgstr "ACL пользователей для этого агента" -#: ../../enterprise/extensions/check_acls.php:44 -#: ../../enterprise/extensions/check_acls.php:124 -#: ../../godmode/users/profile_list.php:304 +#: ../../enterprise/extensions/disabled/check_acls.php:49 +#: ../../enterprise/extensions/disabled/check_acls.php:142 msgid "System incidents reading" msgstr "Чтение инцидентов системы" -#: ../../enterprise/extensions/check_acls.php:45 -#: ../../enterprise/extensions/check_acls.php:125 -#: ../../godmode/users/profile_list.php:305 +#: ../../enterprise/extensions/disabled/check_acls.php:50 +#: ../../enterprise/extensions/disabled/check_acls.php:143 msgid "System incidents writing" msgstr "Запись инцидентов системы" -#: ../../enterprise/extensions/check_acls.php:46 -#: ../../enterprise/extensions/check_acls.php:126 -#: ../../godmode/users/profile_list.php:306 +#: ../../enterprise/extensions/disabled/check_acls.php:51 +#: ../../enterprise/extensions/disabled/check_acls.php:144 msgid "System incidents management" msgstr "Управление инцидентами системы" -#: ../../enterprise/extensions/check_acls.php:47 -#: ../../enterprise/extensions/check_acls.php:127 -#: ../../godmode/users/profile_list.php:307 +#: ../../enterprise/extensions/disabled/check_acls.php:52 +#: ../../enterprise/extensions/disabled/check_acls.php:145 msgid "Agents reading" msgstr "Агенты чтения" -#: ../../enterprise/extensions/check_acls.php:48 -#: ../../enterprise/extensions/check_acls.php:128 -#: ../../include/functions_menu.php:474 -#: ../../godmode/users/profile_list.php:308 +#: ../../enterprise/extensions/disabled/check_acls.php:53 +#: ../../enterprise/extensions/disabled/check_acls.php:146 +#: ../../include/functions_menu.php:502 msgid "Agents management" msgstr "Агенты управления" -#: ../../enterprise/extensions/check_acls.php:49 -#: ../../enterprise/extensions/check_acls.php:129 -#: ../../godmode/users/profile_list.php:309 +#: ../../enterprise/extensions/disabled/check_acls.php:54 +#: ../../enterprise/extensions/disabled/check_acls.php:147 msgid "Agents disable" msgstr "Агенты отключения" -#: ../../enterprise/extensions/check_acls.php:50 -#: ../../enterprise/extensions/check_acls.php:130 -#: ../../godmode/users/profile_list.php:310 +#: ../../enterprise/extensions/disabled/check_acls.php:55 +#: ../../enterprise/extensions/disabled/check_acls.php:148 msgid "Alerts editing" msgstr "Агенты редактирования" -#: ../../enterprise/extensions/check_acls.php:51 -#: ../../enterprise/extensions/check_acls.php:131 ../../godmode/menu.php:72 -#: ../../godmode/users/profile_list.php:312 +#: ../../enterprise/extensions/disabled/check_acls.php:56 +#: ../../enterprise/extensions/disabled/check_acls.php:149 +#: ../../godmode/menu.php:125 msgid "Users management" msgstr "Управление пользователями" -#: ../../enterprise/extensions/check_acls.php:52 -#: ../../enterprise/extensions/check_acls.php:132 -#: ../../godmode/users/profile_list.php:313 +#: ../../enterprise/extensions/disabled/check_acls.php:57 +#: ../../enterprise/extensions/disabled/check_acls.php:150 msgid "Database management" msgstr "Управление базой данных" -#: ../../enterprise/extensions/check_acls.php:53 -#: ../../enterprise/extensions/check_acls.php:133 -#: ../../godmode/users/profile_list.php:311 +#: ../../enterprise/extensions/disabled/check_acls.php:58 +#: ../../enterprise/extensions/disabled/check_acls.php:151 msgid "Alerts management" msgstr "Управление предупреждениями" -#: ../../enterprise/extensions/check_acls.php:54 -#: ../../enterprise/extensions/check_acls.php:134 -#: ../../godmode/users/profile_list.php:317 +#: ../../enterprise/extensions/disabled/check_acls.php:59 +#: ../../enterprise/extensions/disabled/check_acls.php:152 msgid "Reports reading" msgstr "Отчеты чтения" -#: ../../enterprise/extensions/check_acls.php:55 -#: ../../enterprise/extensions/check_acls.php:135 -#: ../../godmode/users/profile_list.php:318 +#: ../../enterprise/extensions/disabled/check_acls.php:60 +#: ../../enterprise/extensions/disabled/check_acls.php:153 msgid "Reports writing" msgstr "Отчеты записи" -#: ../../enterprise/extensions/check_acls.php:56 -#: ../../enterprise/extensions/check_acls.php:136 -#: ../../godmode/users/profile_list.php:319 +#: ../../enterprise/extensions/disabled/check_acls.php:61 +#: ../../enterprise/extensions/disabled/check_acls.php:154 msgid "Reports management" msgstr "Отчеты управления" -#: ../../enterprise/extensions/check_acls.php:57 -#: ../../enterprise/extensions/check_acls.php:137 -#: ../../godmode/users/profile_list.php:314 +#: ../../enterprise/extensions/disabled/check_acls.php:62 +#: ../../enterprise/extensions/disabled/check_acls.php:155 msgid "Events reading" msgstr "События чтения" -#: ../../enterprise/extensions/check_acls.php:58 -#: ../../enterprise/extensions/check_acls.php:138 -#: ../../godmode/users/profile_list.php:315 +#: ../../enterprise/extensions/disabled/check_acls.php:63 +#: ../../enterprise/extensions/disabled/check_acls.php:156 msgid "Events writing" msgstr "События записи" -#: ../../enterprise/extensions/check_acls.php:59 -#: ../../enterprise/extensions/check_acls.php:139 -#: ../../godmode/users/profile_list.php:316 +#: ../../enterprise/extensions/disabled/check_acls.php:64 +#: ../../enterprise/extensions/disabled/check_acls.php:157 msgid "Events management" msgstr "События управления" -#: ../../enterprise/extensions/check_acls.php:60 -#: ../../enterprise/extensions/check_acls.php:140 -#: ../../godmode/users/profile_list.php:326 +#: ../../enterprise/extensions/disabled/check_acls.php:65 +#: ../../enterprise/extensions/disabled/check_acls.php:158 msgid "Systems management" msgstr "Управление системой" -#: ../../enterprise/extensions/check_acls.php:100 +#: ../../enterprise/extensions/disabled/check_acls.php:66 +#: ../../enterprise/extensions/disabled/check_acls.php:159 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:273 +#: ../../enterprise/godmode/servers/HA_cluster.php:152 +#: ../../godmode/users/user_list.php:416 ../../godmode/users/user_list.php:582 +#: ../../operation/search_users.php:51 +msgid "Admin" +msgstr "Администратор" + +#: ../../enterprise/extensions/disabled/check_acls.php:118 msgid "There are no defined users" -msgstr "" +msgstr "Нет определенных пользователей" -#: ../../enterprise/extensions/check_acls.php:122 ../../godmode/menu.php:81 +#: ../../enterprise/extensions/disabled/check_acls.php:140 +#: ../../godmode/menu.php:117 msgid "Module tags" -msgstr "" +msgstr "Теги модуля" -#: ../../enterprise/extensions/check_acls.php:188 +#: ../../enterprise/extensions/disabled/check_acls.php:206 msgid "ACL module tags for the modules in this agent" -msgstr "" +msgstr "Теги модулей ACL для модулей в этом агенте" -#: ../../enterprise/extensions/check_acls.php:198 +#: ../../enterprise/extensions/disabled/check_acls.php:217 msgid "Only admin users can see this section." -msgstr "" +msgstr "Этот раздел могут видеть только пользователи-администраторы." -#: ../../enterprise/extensions/check_acls.php:202 +#: ../../enterprise/extensions/disabled/check_acls.php:224 msgid "Check ACL" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:37 -#: ../../enterprise/extensions/cron.php:114 -msgid "Cron jobs" -msgstr "Задание Cron" - -#: ../../enterprise/extensions/cron/main.php:43 -msgid "Add new job" -msgstr "Добавить новое задание" - -#: ../../enterprise/extensions/cron/main.php:77 -#: ../../enterprise/extensions/cron/main.php:131 -msgid "Path doesn't exist or is not writable" -msgstr "Путь не существует или не доступен для записи" - -#: ../../enterprise/extensions/cron/main.php:109 -#: ../../enterprise/extensions/cron/main.php:124 -msgid "Edit job" -msgstr "Редактировать задание" - -#: ../../enterprise/extensions/cron/main.php:150 -msgid "Cron extension is not running" -msgstr "Cron расширение не работает" - -#: ../../enterprise/extensions/cron/main.php:151 -msgid "Cron extension has never run or it's not configured well" -msgstr "" -"Расширение Cron никогда не выполнялось или не было хорошо сконфигурировано" - -#: ../../enterprise/extensions/cron/main.php:153 -msgid "" -"This extension relies on a proper setup of cron, the time-based scheduling " -"service" -msgstr "" -"Это расширение зависит от правильной настройки Cron, основанной на времени " -"службы планирования" - -#: ../../enterprise/extensions/cron/main.php:155 -msgid "Please, add the following line to your crontab file" -msgstr "Пожалуйста, добавьте следующую строку в вашу вкладку cron файла" - -#: ../../enterprise/extensions/cron/main.php:161 -msgid "Last execution" -msgstr "Последнее выполнение" - -#: ../../enterprise/extensions/cron/main.php:168 -msgid "Cron extension is running" -msgstr "Расширение Cron работает" - -#: ../../enterprise/extensions/cron/main.php:177 -msgid "Scheduled jobs" -msgstr "Назначенные задания" - -#: ../../enterprise/extensions/cron/main.php:186 -#: ../../enterprise/extensions/cron/main.php:284 -msgid "Task" -msgstr "Задача" - -#: ../../enterprise/extensions/cron/main.php:187 -#: ../../enterprise/extensions/cron/main.php:292 -#: ../../enterprise/extensions/vmware/main.php:252 -msgid "Scheduled" -msgstr "Запланировано" - -#: ../../enterprise/extensions/cron/main.php:188 -msgid "First_execution" -msgstr "Первое_выполнение" - -#: ../../enterprise/extensions/cron/main.php:189 -msgid "" -"Maybe the first run is not exactly equal to this value because the cron " -"configuration is diferent." -msgstr "" -"Может быть, первый прогон не совсем равнен этому значению, потому что cron " -"конфигурации другой." - -#: ../../enterprise/extensions/cron/main.php:190 -msgid "Last run" -msgstr "Последний прогон" - -#: ../../enterprise/extensions/cron/main.php:201 -msgid "Force run" -msgstr "Принудительное выполнение" - -#: ../../enterprise/extensions/cron/main.php:218 -#: ../../enterprise/operation/reporting/custom_reporting.php:24 -#: ../../enterprise/operation/reporting/custom_reporting.php:71 -#: ../../operation/search_users.php:44 ../../godmode/tag/edit_tag.php:190 -#: ../../godmode/tag/tag.php:203 -msgid "Email" -msgstr "Электронная почта" - -#: ../../enterprise/extensions/cron/main.php:222 -#: ../../enterprise/extensions/cron/functions.php:44 -#: ../../godmode/servers/manage_recontask_form.php:233 -msgid "Custom script" -msgstr "Пользовательский скрипт" - -#: ../../enterprise/extensions/cron/main.php:235 -#: ../../enterprise/extensions/cron/main.php:249 -msgid "Path" -msgstr "Путь" - -#: ../../enterprise/extensions/cron/main.php:295 -msgid "First execution" -msgstr "Первое выполнение" - -#: ../../enterprise/extensions/cron/main.php:297 -#: ../../enterprise/operation/log/log_viewer.php:210 -#: ../../enterprise/operation/log/log_viewer.php:218 -#: ../../operation/netflow/nf_live_view.php:237 -#: ../../godmode/agentes/planned_downtime.editor.php:504 -#: ../../godmode/agentes/planned_downtime.editor.php:515 -msgid "Date format in Pandora is year/month/day" -msgstr "Формат даты в Pandora - год/месяц/день" - -#: ../../enterprise/extensions/cron/main.php:299 -#: ../../enterprise/operation/log/log_viewer.php:212 -#: ../../enterprise/operation/log/log_viewer.php:220 -#: ../../operation/netflow/nf_live_view.php:239 -#: ../../godmode/alerts/configure_alert_template.php:536 -#: ../../godmode/alerts/configure_alert_template.php:540 -#: ../../godmode/agentes/planned_downtime.editor.php:506 -#: ../../godmode/agentes/planned_downtime.editor.php:517 -#: ../../godmode/agentes/planned_downtime.editor.php:585 -#: ../../godmode/agentes/planned_downtime.editor.php:593 -#: ../../godmode/reporting/reporting_builder.item_editor.php:796 -#: ../../godmode/reporting/reporting_builder.item_editor.php:805 -msgid "Time format in Pandora is hours(24h):minutes:seconds" -msgstr "Формат времени в Pandora - часы(24 часа): минуты: секунды" - -#: ../../enterprise/extensions/cron/main.php:300 -#: ../../include/functions_events.php:1814 -#: ../../godmode/events/event_responses.editor.php:111 -msgid "Parameters" -msgstr "Параметры" - -#: ../../enterprise/extensions/cron/main.php:336 -#: ../../enterprise/operation/log/log_viewer.php:300 -#: ../../enterprise/operation/log/log_viewer.php:312 -#: ../../enterprise/godmode/alerts/alert_events.php:577 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:672 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2163 -#: ../../extensions/insert_data.php:194 -#: ../../operation/agentes/estado_monitores.php:376 -#: ../../operation/agentes/datos_agente.php:304 -#: ../../operation/agentes/stat_win.php:489 -#: ../../operation/netflow/nf_live_view.php:605 ../../operation/tree.php:391 -#: ../../operation/reporting/graph_viewer.php:247 -#: ../../operation/reporting/reporting_viewer.php:257 -#: ../../operation/reporting/reporting_viewer.php:277 -#: ../../godmode/alerts/configure_alert_template.php:1033 -#: ../../godmode/agentes/planned_downtime.editor.php:1137 -#: ../../godmode/setup/news.php:297 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1730 -msgid "Choose time" -msgstr "Выберите время" - -#: ../../enterprise/extensions/cron/main.php:337 -#: ../../enterprise/operation/log/log_viewer.php:301 -#: ../../enterprise/operation/log/log_viewer.php:313 -#: ../../enterprise/godmode/alerts/alert_events.php:578 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:673 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2164 -#: ../../extensions/insert_data.php:195 -#: ../../operation/agentes/estado_monitores.php:377 -#: ../../operation/agentes/datos_agente.php:305 -#: ../../operation/agentes/stat_win.php:490 -#: ../../operation/netflow/nf_live_view.php:606 ../../operation/tree.php:392 -#: ../../operation/reporting/graph_viewer.php:248 -#: ../../operation/reporting/reporting_viewer.php:258 -#: ../../operation/reporting/reporting_viewer.php:278 -#: ../../godmode/alerts/configure_alert_template.php:1034 -#: ../../godmode/agentes/planned_downtime.editor.php:1138 -#: ../../godmode/setup/news.php:298 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1731 -msgid "Time" -msgstr "Время" - -#: ../../enterprise/extensions/cron/main.php:338 -#: ../../enterprise/operation/log/log_viewer.php:302 -#: ../../enterprise/operation/log/log_viewer.php:314 -#: ../../enterprise/godmode/alerts/alert_events.php:579 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2165 -#: ../../extensions/insert_data.php:196 ../../include/functions_html.php:839 -#: ../../operation/agentes/estado_monitores.php:378 -#: ../../operation/agentes/datos_agente.php:306 -#: ../../operation/agentes/stat_win.php:491 -#: ../../operation/netflow/nf_live_view.php:607 ../../operation/tree.php:393 -#: ../../operation/reporting/graph_viewer.php:249 -#: ../../operation/reporting/reporting_viewer.php:259 -#: ../../operation/reporting/reporting_viewer.php:279 -#: ../../godmode/alerts/configure_alert_template.php:1035 -#: ../../godmode/agentes/planned_downtime.editor.php:1139 -#: ../../godmode/setup/news.php:299 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1732 -msgid "Hour" -msgstr "Час" - -#: ../../enterprise/extensions/cron/main.php:339 -#: ../../enterprise/operation/log/log_viewer.php:303 -#: ../../enterprise/operation/log/log_viewer.php:315 -#: ../../enterprise/godmode/alerts/alert_events.php:580 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:675 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2166 -#: ../../extensions/insert_data.php:197 ../../include/functions_html.php:840 -#: ../../operation/agentes/estado_monitores.php:379 -#: ../../operation/agentes/datos_agente.php:307 -#: ../../operation/agentes/stat_win.php:492 -#: ../../operation/netflow/nf_live_view.php:608 ../../operation/tree.php:394 -#: ../../operation/reporting/graph_viewer.php:250 -#: ../../operation/reporting/reporting_viewer.php:260 -#: ../../operation/reporting/reporting_viewer.php:280 -#: ../../godmode/alerts/configure_alert_template.php:1036 -#: ../../godmode/agentes/planned_downtime.editor.php:1140 -#: ../../godmode/setup/news.php:300 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1733 -msgid "Minute" -msgstr "Минута" - -#: ../../enterprise/extensions/cron/main.php:340 -#: ../../enterprise/operation/log/log_viewer.php:304 -#: ../../enterprise/operation/log/log_viewer.php:316 -#: ../../enterprise/godmode/alerts/alert_events.php:581 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:676 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2167 -#: ../../extensions/insert_data.php:198 -#: ../../operation/agentes/estado_monitores.php:380 -#: ../../operation/agentes/datos_agente.php:308 -#: ../../operation/agentes/stat_win.php:493 -#: ../../operation/netflow/nf_live_view.php:609 ../../operation/tree.php:395 -#: ../../operation/reporting/graph_viewer.php:251 -#: ../../operation/reporting/reporting_viewer.php:261 -#: ../../operation/reporting/reporting_viewer.php:281 -#: ../../godmode/alerts/configure_alert_template.php:1037 -#: ../../godmode/agentes/planned_downtime.editor.php:1141 -#: ../../godmode/setup/news.php:301 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1734 -msgid "Second" -msgstr "Секунда" - -#: ../../enterprise/extensions/cron/main.php:341 -#: ../../enterprise/operation/log/log_viewer.php:305 -#: ../../enterprise/operation/log/log_viewer.php:317 -#: ../../enterprise/operation/agentes/agent_inventory.php:89 -#: ../../enterprise/godmode/alerts/alert_events.php:582 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:677 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2168 -#: ../../extensions/insert_data.php:199 ../../include/functions.php:410 -#: ../../include/functions.php:544 -#: ../../operation/agentes/estado_monitores.php:381 -#: ../../operation/agentes/datos_agente.php:309 -#: ../../operation/agentes/stat_win.php:494 -#: ../../operation/netflow/nf_live_view.php:610 ../../operation/tree.php:396 -#: ../../operation/reporting/graph_viewer.php:252 -#: ../../operation/reporting/reporting_viewer.php:262 -#: ../../operation/reporting/reporting_viewer.php:282 -#: ../../godmode/alerts/configure_alert_template.php:1038 -#: ../../godmode/agentes/planned_downtime.editor.php:1142 -#: ../../godmode/setup/news.php:302 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1735 -msgid "Now" -msgstr "Сейчас" - -#: ../../enterprise/extensions/cron/main.php:342 -#: ../../enterprise/operation/log/log_viewer.php:306 -#: ../../enterprise/operation/log/log_viewer.php:318 -#: ../../enterprise/godmode/alerts/alert_events.php:583 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:678 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2169 -#: ../../mobile/include/ui.class.php:571 ../../mobile/include/ui.class.php:610 -#: ../../extensions/insert_data.php:200 -#: ../../include/functions_filemanager.php:617 -#: ../../include/functions_filemanager.php:638 -#: ../../include/functions_filemanager.php:654 -#: ../../include/functions_snmp_browser.php:441 -#: ../../operation/agentes/estado_monitores.php:382 -#: ../../operation/agentes/datos_agente.php:310 -#: ../../operation/agentes/stat_win.php:495 -#: ../../operation/netflow/nf_live_view.php:611 ../../operation/tree.php:397 -#: ../../operation/reporting/graph_viewer.php:253 -#: ../../operation/reporting/reporting_viewer.php:263 -#: ../../operation/reporting/reporting_viewer.php:283 -#: ../../godmode/alerts/configure_alert_template.php:1039 -#: ../../godmode/agentes/planned_downtime.editor.php:1143 -#: ../../godmode/setup/news.php:303 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1736 -msgid "Close" -msgstr "Закрыть" - -#: ../../enterprise/extensions/cron/functions.php:17 -#: ../../enterprise/extensions/cron/functions.php:27 -#: ../../enterprise/extensions/cron/functions.php:48 -#: ../../enterprise/extensions/cron/functions.php:80 -#: ../../enterprise/extensions/cron/functions.php:95 -#: ../../enterprise/extensions/cron/functions.php:136 -msgid "Report to build" -msgstr "Отчет для разработки" - -#: ../../enterprise/extensions/cron/functions.php:23 -msgid "Send to emails (separated by comma)" -msgstr "" - -#: ../../enterprise/extensions/cron/functions.php:33 -#: ../../enterprise/extensions/cron/functions.php:38 -#: ../../enterprise/extensions/cron/functions.php:54 -#: ../../enterprise/extensions/cron/functions.php:96 -#: ../../enterprise/extensions/cron/functions.php:137 -msgid "Save to disk into path" -msgstr "Сохранить на диск в пути" - -#: ../../enterprise/extensions/cron/functions.php:81 -msgid "Send to email" -msgstr "Отправить письмо по электронной почте" - -#: ../../enterprise/extensions/cron/functions.php:82 -msgid "Send custom report by email" -msgstr "Отправить пользовательский отчет по электронной почте" - -#: ../../enterprise/extensions/cron/functions.php:97 -#: ../../enterprise/extensions/cron/functions.php:138 -msgid "Save custom report to disk" -msgstr "Сохранить пользовательский отчет на диск" - -#: ../../enterprise/extensions/cron/functions.php:110 -#: ../../enterprise/extensions/cron/functions.php:123 -msgid "Backup Pandora database" -msgstr "База данных резервных копий Pandora" - -#: ../../enterprise/extensions/cron/functions.php:153 -msgid "Not scheduled" -msgstr "Не запланировано" - -#: ../../enterprise/extensions/cron/functions.php:154 -#: ../../enterprise/extensions/vmware/functions.php:24 -msgid "Hourly" -msgstr "Ежечасно" - -#: ../../enterprise/extensions/cron/functions.php:155 -#: ../../enterprise/extensions/vmware/functions.php:25 -#: ../../godmode/agentes/module_manager_editor_prediction.php:159 -msgid "Daily" -msgstr "Ежедневно" - -#: ../../enterprise/extensions/cron/functions.php:156 -#: ../../enterprise/extensions/vmware/functions.php:26 -#: ../../godmode/agentes/module_manager_editor_prediction.php:157 -#: ../../godmode/agentes/planned_downtime.editor.php:527 -msgid "Weekly" -msgstr "Еженедельно" - -#: ../../enterprise/extensions/cron/functions.php:157 -#: ../../enterprise/extensions/vmware/functions.php:27 -#: ../../godmode/agentes/module_manager_editor_prediction.php:158 -#: ../../godmode/agentes/planned_downtime.editor.php:528 -msgid "Monthly" -msgstr "Ежемесячно" - -#: ../../enterprise/extensions/cron/functions.php:158 -#: ../../enterprise/extensions/vmware/functions.php:28 -msgid "Yearly" -msgstr "Ежегодно" - -#: ../../enterprise/extensions/cron/functions.php:188 -#: ../../enterprise/godmode/setup/setup_acl.php:72 -#: ../../enterprise/godmode/setup/setup_acl.php:316 -#: ../../include/functions_html.php:645 ../../include/functions_html.php:646 -#: ../../include/functions_html.php:750 ../../include/functions_html.php:751 -msgid "Custom" -msgstr "Другой" - -#: ../../enterprise/extensions/cron/functions.php:362 -msgid "This is the automatic generated report" -msgstr "Автоматически сформированный отчет" - -#: ../../enterprise/extensions/cron/functions.php:365 -msgid "Open the attached file to view it" -msgstr "Открыть вложенный файл чтобы просмотреть его" - -#: ../../enterprise/extensions/cron/functions.php:367 -#: ../../mobile/include/functions_web.php:82 -#: ../../mobile/include/ui.class.php:258 -msgid "Generated at" -msgstr "Сформировано на" - -#: ../../enterprise/extensions/cron/functions.php:371 -msgid "Please do not answer or reply to this email" -msgstr "Пожалуйста, не отвечайте на это сообщение электронной почты" - -#: ../../enterprise/extensions/vmware/vmware_manager.php:160 -msgid "Power Status: " -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_manager.php:202 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:666 -msgid "Status: " -msgstr "Статус: " - -#: ../../enterprise/extensions/vmware/vmware_manager.php:206 -msgid "Change Status" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:30 -msgid "WMware Plugin Settings" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:75 -#: ../../extensions/files_repo/functions_files_repo.php:274 -msgid "There was an error updating the file" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:125 -msgid "There was an error updating the execution data of the plugin" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:132 -msgid "There was an error activating the execution of the plugin" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:179 -msgid "Config Path" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:186 -msgid "Plugin Path" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:208 -msgid "Config parameters" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:215 -msgid "V-Center IP" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:220 -msgid "Datacenter Name" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:242 -msgid "Plugin execution" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:243 -msgid "" -"To enable the plugin execution, this extension needs the Cron jobs extension " -"installed.\n" -"\tKeep in mind that the Cron jobs execution period will be the less real " -"execution period, so if you want to run the plugin every\n" -"\t5 minutes, for example, the Cron jobs script should be configured in the " -"cron to run every 5 minutes or less" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:275 -#: ../../enterprise/godmode/agentes/collections.php:217 -msgid "Apply changes" -msgstr "Применить изменения" - -#: ../../enterprise/extensions/vmware/vmware_view.php:620 -#: ../../enterprise/extensions/vmware/vmware_view.php:1016 -msgid "Top 5 VMs CPU Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:627 -#: ../../enterprise/extensions/vmware/vmware_view.php:1023 -msgid "Top 5 VMs Memory Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:636 -#: ../../enterprise/extensions/vmware/vmware_view.php:1032 -msgid "Top 5 VMs Disk Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:643 -#: ../../enterprise/extensions/vmware/vmware_view.php:1039 -msgid "Top 5 VMs Network Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:686 -msgid "Host ESX" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:905 -#: ../../enterprise/include/functions_services.php:1591 -#: ../../enterprise/include/functions_services.php:1614 -#: ../../enterprise/operation/agentes/policy_view.php:371 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:633 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:642 -#: ../../mobile/operation/modules.php:438 -#: ../../mobile/operation/modules.php:455 -#: ../../include/functions_modules.php:1846 -#: ../../include/functions_modules.php:1854 -#: ../../include/class/Tree.class.php:1476 -#: ../../operation/search_modules.php:108 -#: ../../operation/search_modules.php:125 -#: ../../operation/agentes/status_monitor.php:1123 -#: ../../operation/agentes/status_monitor.php:1140 -msgid "NORMAL" -msgstr "НОРМАЛЬНЫЙ" - -#: ../../enterprise/extensions/vmware/vmware_view.php:909 -#: ../../enterprise/include/functions_services.php:1595 -#: ../../enterprise/include/functions_services.php:1619 -#: ../../enterprise/operation/agentes/policy_view.php:363 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:625 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:647 -#: ../../mobile/operation/modules.php:442 -#: ../../mobile/operation/modules.php:460 -#: ../../include/functions_modules.php:1838 -#: ../../include/functions_modules.php:1858 -#: ../../include/class/Tree.class.php:1450 -#: ../../operation/search_modules.php:112 -#: ../../operation/search_modules.php:132 -#: ../../operation/agentes/status_monitor.php:1127 -#: ../../operation/agentes/status_monitor.php:1145 -msgid "CRITICAL" -msgstr "КРИТИЧНО" - -#: ../../enterprise/extensions/vmware/vmware_view.php:914 -#: ../../enterprise/include/functions_services.php:1599 -#: ../../enterprise/include/functions_services.php:1623 -#: ../../enterprise/operation/agentes/policy_view.php:367 -#: ../../enterprise/operation/agentes/policy_view.php:386 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:629 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:652 -#: ../../mobile/operation/modules.php:446 -#: ../../mobile/operation/modules.php:465 -#: ../../include/functions_modules.php:1842 -#: ../../include/functions_modules.php:1862 -#: ../../include/class/Tree.class.php:1457 -#: ../../operation/search_modules.php:116 -#: ../../operation/search_modules.php:139 -#: ../../operation/agentes/status_monitor.php:1131 -#: ../../operation/agentes/status_monitor.php:1150 -msgid "WARNING" -msgstr "ВНИМАНИЕ" - -#: ../../enterprise/extensions/vmware/vmware_view.php:918 -#: ../../enterprise/include/functions_services.php:1606 -#: ../../enterprise/include/functions_services.php:1614 -#: ../../enterprise/include/functions_services.php:1619 -#: ../../enterprise/include/functions_services.php:1623 -#: ../../enterprise/include/functions_services.php:1627 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:386 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:641 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:646 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:651 -#: ../../mobile/operation/modules.php:454 -#: ../../mobile/operation/modules.php:459 -#: ../../mobile/operation/modules.php:464 -#: ../../include/functions_modules.php:1853 -#: ../../include/functions_modules.php:1857 -#: ../../include/functions_modules.php:1861 -#: ../../include/class/Tree.class.php:1462 -#: ../../operation/search_modules.php:124 -#: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:138 -#: ../../operation/agentes/status_monitor.php:1139 -#: ../../operation/agentes/status_monitor.php:1144 -#: ../../operation/agentes/status_monitor.php:1149 -msgid "UNKNOWN" -msgstr "НЕИЗВЕСТНЫЙ" - -#: ../../enterprise/extensions/vmware/vmware_view.php:929 -msgid "CPU Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:939 -msgid "Memory Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:949 -msgid "Disk I/O Rate" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:959 -msgid "Network Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1070 -#: ../../enterprise/extensions/vmware/vmware_view.php:1089 -#: ../../enterprise/operation/menu.php:89 -#: ../../mobile/include/functions_web.php:21 -#: ../../operation/users/user_edit.php:299 -msgid "Dashboard" -msgstr "Панель" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1076 -msgid "ESX Detail" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1094 -msgid "ESX details" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1105 -msgid "VMware view" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1188 -msgid "Show Datastores" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1191 -msgid "Show ESX" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1194 -msgid "Show VM" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1212 -#: ../../operation/agentes/networkmap.php:530 -msgid "Zoom" -msgstr "Масштаб" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1223 -msgid "View options" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1270 -msgid "VMware map" -msgstr "" - -#: ../../enterprise/extensions/vmware/functions.php:153 -#: ../../enterprise/extensions/vmware/functions.php:181 -msgid "The file does not exists" -msgstr "" - -#: ../../enterprise/extensions/vmware/functions.php:157 -msgid "The file is not readable by HTTP Server" -msgstr "" - -#: ../../enterprise/extensions/vmware/functions.php:158 -#: ../../enterprise/extensions/vmware/functions.php:163 -msgid "Please check that the web server has write rights on the file" -msgstr "" - -#: ../../enterprise/extensions/vmware/functions.php:162 -msgid "The file is not writable by HTTP Server" -msgstr "" - -#: ../../enterprise/extensions/backup/main.php:53 -msgid "Pandora database backup utility" -msgstr "Утилита резервного копирования базы данных Pandora" - -#: ../../enterprise/extensions/backup/main.php:57 -#: ../../enterprise/operation/log/log_viewer.php:150 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:31 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:33 -#: ../../operation/netflow/nf_live_view.php:111 -#: ../../godmode/netflow/nf_edit.php:43 -#: ../../godmode/setup/setup_general.php:177 +msgstr "Проверить ACL" + +#: ../../enterprise/extensions/translate_string.php:168 +#: ../../enterprise/extensions/translate_string.php:380 +msgid "Translate string" +msgstr "Перевести строку" + +#: ../../enterprise/extensions/vmware.php:43 +msgid "Failed to initialize VMware extension." +msgstr "Не удалось инициализировать расширение VMware." + +#: ../../enterprise/extensions/vmware.php:86 +#: ../../enterprise/extensions/vmware/vmware_view.php:1382 +msgid "VMware View" +msgstr "VMware Вид" + +#: ../../enterprise/extensions/backup/main.php:79 +#, php-format +msgid "%s database backup utility" +msgstr "%s утилита резервного копирования базы данных" + +#: ../../enterprise/extensions/backup/main.php:91 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:87 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 +#: ../../enterprise/operation/log/log_viewer.php:444 +#: ../../godmode/netflow/nf_edit.php:47 +#: ../../operation/netflow/nf_live_view.php:133 msgid "Not supported in Windows systems" msgstr "Не поддерживается в Windows-системах" -#: ../../enterprise/extensions/backup/main.php:66 -#: ../../enterprise/include/functions_inventory.php:507 -#: ../../enterprise/include/functions_reporting_csv.php:166 -#: ../../enterprise/include/functions_reporting_csv.php:211 -#: ../../enterprise/include/functions_reporting_pdf.php:943 -#: ../../enterprise/include/functions_reporting_pdf.php:949 -#: ../../enterprise/include/functions_reporting_pdf.php:961 -#: ../../enterprise/include/functions_log.php:318 -#: ../../enterprise/operation/agentes/agent_inventory.php:70 -#: ../../enterprise/operation/inventory/inventory.php:221 -#: ../../mobile/operation/tactical.php:263 -#: ../../extensions/users_connected.php:79 -#: ../../extensions/insert_data.php:166 -#: ../../include/functions_reporting.php:2217 -#: ../../include/functions_reporting.php:2230 ../../include/functions.php:2264 -#: ../../include/functions_reporting_html.php:1194 -#: ../../include/functions_reporting_html.php:1198 -#: ../../include/functions_reporting_html.php:1210 -#: ../../include/functions_reporting_html.php:2758 -#: ../../operation/integria_incidents/incident.tracking.php:23 -#: ../../operation/events/events.build_table.php:473 -#: ../../operation/netflow/nf_live_view.php:231 -#: ../../operation/reporting/graph_viewer.php:183 -#: ../../godmode/alerts/configure_alert_special_days.php:63 -#: ../../godmode/alerts/alert_special_days.php:161 -#: ../../godmode/admin_access_logs.php:190 -#: ../../godmode/reporting/reporting_builder.item_editor.php:971 -#: ../../general/logon_ok.php:223 ../../general/logon_ok.php:420 +#: ../../enterprise/extensions/backup/main.php:94 +msgid "Filter backups" +msgstr "Фильтр резервных копий" + +#: ../../enterprise/extensions/backup/main.php:106 +msgid "Path backups" +msgstr "Путь резервного копирования" + +#: ../../enterprise/extensions/backup/main.php:132 +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +#: ../../enterprise/include/functions_inventory.php:788 +#: ../../enterprise/include/functions_reporting_pdf.php:674 +#: ../../enterprise/include/functions_reporting_csv.php:688 +#: ../../enterprise/include/functions_reporting_csv.php:744 +#: ../../enterprise/include/functions_reporting_csv.php:789 +#: ../../enterprise/include/functions_reporting_csv.php:2376 +#: ../../enterprise/include/functions_reporting.php:2102 +#: ../../enterprise/include/functions_reporting.php:2139 +#: ../../enterprise/include/functions_reporting.php:2174 +#: ../../enterprise/include/functions_reporting.php:2192 +#: ../../enterprise/operation/agentes/agent_inventory.php:75 +#: ../../enterprise/operation/inventory/inventory.php:254 +#: ../../extensions/insert_data.php:193 ../../godmode/admin_access_logs.php:211 +#: ../../godmode/alerts/configure_alert_special_days.php:72 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1755 +#: ../../mobile/operation/tactical.php:348 +#: ../../include/functions_reporting_html.php:1562 +#: ../../include/functions_reporting_html.php:2220 +#: ../../include/functions_reporting_html.php:2229 +#: ../../include/functions_reporting_html.php:2234 +#: ../../include/functions_reporting_html.php:2243 +#: ../../include/functions_reporting_html.php:2248 +#: ../../include/functions_reporting_html.php:2255 +#: ../../include/functions_reporting_html.php:2304 +#: ../../include/functions_reporting_html.php:2378 +#: ../../include/functions_reporting_html.php:5193 +#: ../../include/functions.php:3053 ../../include/functions_reporting.php:3498 +#: ../../include/functions_reporting.php:3539 +#: ../../include/functions_events.php:6936 +#: ../../operation/incidents/list_integriaims_incidents.php:167 +#: ../../operation/reporting/graph_viewer.php:293 +#: ../../operation/events/events.build_table.php:698 +#: ../../general/logon_ok.php:247 msgid "Date" msgstr "Дата" -#: ../../enterprise/extensions/backup/main.php:67 -#: ../../extensions/files_repo/files_repo_list.php:60 -#: ../../include/functions_filemanager.php:580 -#: ../../include/functions_visual_map_editor.php:107 -#: ../../include/functions_visual_map_editor.php:149 -#: ../../include/functions_visual_map_editor.php:411 -#: ../../include/functions_visual_map_editor.php:475 -#: ../../operation/integria_incidents/incident.files.php:45 -#: ../../operation/incidents/incident_detail.php:455 -#: ../../godmode/events/event_responses.editor.php:97 +#: ../../enterprise/extensions/backup/main.php:133 +#: ../../extensions/files_repo/files_repo_list.php:57 +#: ../../godmode/events/event_responses.editor.php:128 +#: ../../include/functions_visual_map_editor.php:125 +#: ../../include/functions_visual_map_editor.php:178 +#: ../../include/functions_visual_map_editor.php:838 +#: ../../include/functions_visual_map_editor.php:933 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 +#: ../../include/rest-api/models/VisualConsole/Item.php:1939 +#: ../../include/functions_filemanager.php:627 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:126 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:300 msgid "Size" msgstr "Размер" -#: ../../enterprise/extensions/backup/main.php:94 -#: ../../godmode/agentes/planned_downtime.list.php:395 -#: ../../godmode/agentes/planned_downtime.list.php:444 -msgid "Running" -msgstr "Работает" +#: ../../enterprise/extensions/backup/main.php:135 +#: ../../enterprise/include/functions_tasklist.php:353 +#: ../../include/functions_cron.php:634 ../../include/functions_cron.php:668 +#: ../../include/class/Diagnostics.class.php:2169 +msgid "Path" +msgstr "Путь" -#: ../../enterprise/extensions/backup/main.php:119 +#: ../../enterprise/extensions/backup/main.php:195 +#: ../../enterprise/godmode/services/services.service.php:943 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:428 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2372 +#: ../../enterprise/include/functions_reporting_csv.php:1437 +#: ../../enterprise/include/functions_reporting_csv.php:1483 +#: ../../enterprise/include/functions_reporting_csv.php:1801 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1668 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1720 +#: ../../enterprise/include/class/DatabaseHA.class.php:389 +#: ../../enterprise/include/class/DatabaseHA.class.php:624 +#: ../../enterprise/include/class/DatabaseHA.class.php:726 +#: ../../enterprise/include/class/AgentRepository.class.php:881 +#: ../../enterprise/include/class/LogSource.class.php:817 +#: ../../enterprise/include/functions_reporting.php:1840 +#: ../../enterprise/include/functions_reporting.php:2782 +#: ../../enterprise/include/functions_reporting.php:3046 +#: ../../enterprise/include/functions_reporting.php:3780 +#: ../../enterprise/include/functions_reporting.php:4049 +#: ../../enterprise/include/functions_reporting.php:4695 +#: ../../enterprise/include/functions_reporting.php:5878 +#: ../../enterprise/include/functions_reporting.php:5916 +#: ../../enterprise/include/functions_services.php:1893 +#: ../../enterprise/include/functions_ux_console.php:472 +#: ../../enterprise/operation/agentes/ux_console_view.php:186 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:405 +#: ../../extensions/module_groups.php:53 +#: ../../godmode/massive/massive_operations.php:382 +#: ../../godmode/setup/setup_general.php:755 +#: ../../godmode/setup/setup_general.php:773 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2222 +#: ../../include/functions_reporting_html.php:639 +#: ../../include/functions_reporting_html.php:834 +#: ../../include/functions_reporting_html.php:2795 +#: ../../include/functions_reporting_html.php:4059 +#: ../../include/functions_db.php:1846 +#: ../../include/class/ConfigPEN.class.php:668 +#: ../../include/class/ConfigPEN.class.php:692 +#: ../../include/class/HelpFeedBack.class.php:369 +#: ../../include/class/CredentialStore.class.php:1221 +#: ../../include/class/ModuleTemplates.class.php:1378 +#: ../../include/class/WelcomeWindow.class.php:173 +#: ../../include/class/AgentWizard.class.php:5822 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:340 +#: ../../operation/agentes/pandora_networkmap.editor.php:593 +#: ../../operation/snmpconsole/snmp_browser.php:631 +msgid "OK" +msgstr "Ок" + +#: ../../enterprise/extensions/backup/main.php:199 msgid "Lost" msgstr "Потеряно" -#: ../../enterprise/extensions/backup/main.php:126 -#: ../../extensions/files_repo/files_repo_list.php:94 -#: ../../extensions/system_info.php:466 +#: ../../enterprise/extensions/backup/main.php:211 +#: ../../extensions/files_repo/files_repo_list.php:123 msgid "Download" msgstr "Скачать" -#: ../../enterprise/extensions/backup/main.php:145 +#: ../../enterprise/extensions/backup/main.php:249 msgid "Backups list" msgstr "Список резервных копий" -#: ../../enterprise/extensions/backup/main.php:150 +#: ../../enterprise/extensions/backup/main.php:254 msgid "Create backup" msgstr "Создать резервную копию" -#: ../../enterprise/extensions/csv_import_group/main.php:40 +#: ../../enterprise/extensions/backup/main.php:271 +msgid "Path to save backup" +msgstr "Путь для сохранения резервной копии" + +#: ../../enterprise/extensions/backup/main.php:271 +msgid "It is important that Apache can read and write on the selected path" +msgstr "Важно, чтобы Apache мог читать и писать на выбранном пути" + +#: ../../enterprise/extensions/csv_import_group/main.php:37 #, php-format msgid "Created group %s" -msgstr "" +msgstr "Созданная группа %s" -#: ../../enterprise/extensions/csv_import_group/main.php:41 +#: ../../enterprise/extensions/csv_import_group/main.php:38 #, php-format msgid "Could not create group %s" -msgstr "" +msgstr "Не удалось создать группу %s" -#: ../../enterprise/extensions/csv_import_group/main.php:46 -#: ../../enterprise/extensions/csv_import/main.php:46 +#: ../../enterprise/extensions/csv_import_group/main.php:45 msgid "File processed" msgstr "Файл обрабатывается" -#: ../../enterprise/extensions/csv_import_group/main.php:56 -#: ../../enterprise/extensions/csv_import/main.php:56 +#: ../../enterprise/extensions/csv_import_group/main.php:48 +msgid "Please syncronize groups to nodes" +msgstr "Пожалуйста, синхронизируйте группы с узлами" + +#: ../../enterprise/extensions/csv_import_group/main.php:58 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1396 msgid "CSV format" msgstr "Формат CSV" -#: ../../enterprise/extensions/csv_import_group/main.php:57 -#: ../../enterprise/extensions/csv_import/main.php:57 +#: ../../enterprise/extensions/csv_import_group/main.php:59 msgid "The CSV file must have the fields in the following order" msgstr "Файл CSV должен иметь поля в следующем порядке" -#: ../../enterprise/extensions/csv_import_group/main.php:72 -#: ../../enterprise/extensions/csv_import/main.php:72 +#: ../../enterprise/extensions/csv_import_group/main.php:75 +#: ../../enterprise/include/class/CSVImportAgents.class.php:144 msgid "Upload file" msgstr "Закачать файл" -#: ../../enterprise/extensions/csv_import_group/main.php:75 -#: ../../enterprise/extensions/csv_import/main.php:79 +#: ../../enterprise/extensions/csv_import_group/main.php:78 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1400 +#: ../../enterprise/include/class/CSVImportAgents.class.php:161 msgid "Separator" msgstr "Разделитель" -#: ../../enterprise/extensions/csv_import_group/main.php:79 -#: ../../enterprise/extensions/csv_import/main.php:83 +#: ../../enterprise/extensions/csv_import_group/main.php:91 msgid "Upload CSV file" msgstr "Загрузить CSV-файл" -#: ../../enterprise/extensions/ipam/ipam_network.php:104 -msgid "No addresses found on this network" -msgstr "" +#: ../../enterprise/extensions/csv_import_group/main.php:96 +#: ../../enterprise/include/class/CSVImportAgents.class.php:196 +#: ../../include/functions_filemanager.php:823 +msgid "Go" +msgstr "Перейти" -#: ../../enterprise/extensions/ipam/ipam_network.php:121 -msgid "Subnet" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:127 -#: ../../enterprise/extensions/ipam/ipam_list.php:85 -#: ../../enterprise/operation/services/services.list.php:166 -#: ../../enterprise/godmode/services/services.service.php:244 -#: ../../godmode/servers/manage_recontask_form.php:250 -#: ../../godmode/servers/manage_recontask.php:340 -msgid "Manual" -msgstr "Вручную" - -#: ../../enterprise/extensions/ipam/ipam_network.php:140 -#: ../../enterprise/extensions/ipam/ipam_editor.php:76 -#: ../../enterprise/extensions/ipam/ipam_list.php:62 -#: ../../extensions/system_info.php:480 ../../extensions/system_info.php:526 -#: ../../godmode/events/event_responses.editor.php:93 -msgid "Location" -msgstr "Месторасположение" - -#: ../../enterprise/extensions/ipam/ipam_network.php:154 -#: ../../enterprise/operation/services/services.list.php:446 -#: ../../enterprise/godmode/agentes/inventory_manager.php:270 -#: ../../include/functions_groups.php:741 -#: ../../include/functions_groups.php:934 ../../include/functions_ui.php:823 -#: ../../include/ajax/module.php:757 -#: ../../operation/agentes/group_view.php:145 -#: ../../operation/agentes/group_view.php:195 -#: ../../operation/agentes/estado_generalagente.php:616 -#: ../../operation/servers/recon_view.php:86 -#: ../../operation/servers/recon_view.php:118 -msgid "Force" -msgstr "Принудительно" - -#: ../../enterprise/extensions/ipam/ipam_network.php:171 -#: ../../operation/menu.php:271 ../../operation/menu.php:359 -#: ../../operation/integria_incidents/incident_statistics.php:29 -#: ../../operation/events/event_statistics.php:32 -#: ../../operation/snmpconsole/snmp_view.php:69 -#: ../../operation/snmpconsole/snmp_statistics.php:61 -#: ../../operation/incidents/incident_statistics.php:30 -msgid "Statistics" -msgstr "Статистика" - -#: ../../enterprise/extensions/ipam/ipam_network.php:219 -msgid "Total IPs" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:225 -#: ../../enterprise/extensions/ipam/ipam_network.php:550 -#: ../../enterprise/extensions/ipam/ipam_excel.php:120 -msgid "Alive" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:227 -#: ../../enterprise/extensions/ipam/ipam_network.php:553 -msgid "Not alive" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:231 -#: ../../enterprise/extensions/ipam/ipam_network.php:540 -#: ../../enterprise/extensions/ipam/ipam_massive.php:77 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:191 -msgid "Managed" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:233 -msgid "Not managed" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:237 -#: ../../enterprise/extensions/ipam/ipam_network.php:306 -#: ../../enterprise/extensions/ipam/ipam_network.php:541 -#: ../../enterprise/extensions/ipam/ipam_massive.php:78 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:201 -msgid "Reserved" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:239 -msgid "Not Reserved" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:269 -#: ../../enterprise/godmode/alerts/alert_events_list.php:420 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:217 -#: ../../godmode/reporting/reporting_builder.list_items.php:306 -#: ../../godmode/reporting/reporting_builder.list_items.php:501 -msgid "Sort" -msgstr "Сортировка" - -#: ../../enterprise/extensions/ipam/ipam_network.php:272 -#: ../../enterprise/extensions/ipam/ipam_network.php:273 -#: ../../enterprise/include/functions_reporting_pdf.php:2235 -#: ../../extensions/users_connected.php:78 ../../extensions/api_checker.php:90 -#: ../../include/functions_visual_map_editor.php:613 -#: ../../include/functions_reporting_html.php:1281 -#: ../../include/functions_reporting_html.php:1485 -#: ../../godmode/admin_access_logs.php:69 -#: ../../godmode/admin_access_logs.php:70 -#: ../../godmode/reporting/visual_console_builder.elements.php:545 -msgid "IP" -msgstr "IP" - -#: ../../enterprise/extensions/ipam/ipam_network.php:272 -msgid "DESC" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:273 -msgid "ASC" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:274 -#: ../../enterprise/extensions/ipam/ipam_network.php:275 -#: ../../enterprise/extensions/ipam/ipam_network.php:536 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:157 -#: ../../enterprise/extensions/ipam/ipam_excel.php:120 -msgid "Hostname" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:274 -msgid "A -> Z" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:275 -msgid "Z -> A" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:276 -#: ../../enterprise/extensions/ipam/ipam_network.php:277 -msgid "Last check" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:276 -msgid "Newer -> Older" -msgstr "Новее->Старее" - -#: ../../enterprise/extensions/ipam/ipam_network.php:277 -msgid "Older -> Newer" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:281 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:165 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1770 -#: ../../mobile/operation/modules.php:254 -#: ../../mobile/operation/alerts.php:188 ../../mobile/operation/events.php:637 -#: ../../mobile/operation/agents.php:194 -#: ../../operation/events/events_list.php:401 -#: ../../operation/snmpconsole/snmp_view.php:403 -#: ../../godmode/events/event_edit_filter.php:236 -#: ../../godmode/snmpconsole/snmp_alert.php:893 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1307 -msgid "Free search" -msgstr "Свободный поиск" - -#: ../../enterprise/extensions/ipam/ipam_network.php:284 -msgid "Exact address match" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:288 -msgid "Big" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:289 -msgid "Tiny" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:290 -msgid "Icons style" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:297 -msgid "Show not alive hosts" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:300 -msgid "Show only managed addresses" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:303 -msgid "Reserved addresses" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:307 -msgid "Unreserved" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:332 -msgid "Filter options" -msgstr "Отфильтровать варианты" - -#: ../../enterprise/extensions/ipam/ipam_network.php:472 -msgid "Edit address" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:477 -msgid "Disabled address" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:477 -msgid "This address will not be updated by the server" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:535 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:41 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:152 -#: ../../enterprise/extensions/ipam/ipam_excel.php:120 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:84 -#: ../../operation/agentes/ver_agente.php:674 -msgid "Address" -msgstr "Адрес" - -#: ../../enterprise/extensions/ipam/ipam_network.php:543 -#: ../../enterprise/extensions/ipam/ipam_network.php:654 -#: ../../enterprise/extensions/ipam/ipam_massive.php:69 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:93 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:206 -#: ../../mobile/operation/events.php:513 ../../include/functions.php:2266 -#: ../../include/functions_reporting_html.php:2760 -#: ../../include/ajax/events.php:301 ../../operation/users/user_edit.php:364 -#: ../../godmode/users/configure_user.php:482 -#: ../../godmode/servers/manage_recontask_form.php:354 -#: ../../godmode/admin_access_logs.php:192 ../../general/logon_ok.php:225 -#: ../../general/logon_ok.php:422 -msgid "Comments" -msgstr "Комментарии" - -#: ../../enterprise/extensions/ipam/ipam_network.php:574 -#: ../../enterprise/extensions/ipam/ipam_network.php:609 -#: ../../enterprise/extensions/ipam/ipam_network.php:632 -msgid "Change to automatic mode" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:575 -#: ../../enterprise/extensions/ipam/ipam_network.php:610 -#: ../../enterprise/extensions/ipam/ipam_network.php:633 -msgid "Change to manual mode" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:649 -msgid "Add comments" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:666 -msgid "Update agent address" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_network.php:783 -msgid "Please, uncheck auto option to set manual agent." -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_action.php:66 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:249 -#: ../../enterprise/godmode/alerts/alert_events_list.php:161 -#: ../../enterprise/godmode/alerts/alert_events_list.php:205 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:282 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:118 -#: ../../enterprise/godmode/modules/local_components.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:191 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:245 -#: ../../enterprise/godmode/policies/policies.php:175 -#: ../../enterprise/godmode/policies/policy_collections.php:69 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:96 -#: ../../enterprise/godmode/policies/policy_agents.php:91 -#: ../../enterprise/godmode/policies/policy_modules.php:920 -#: ../../enterprise/godmode/policies/policy_alerts.php:165 -#: ../../enterprise/godmode/policies/policy_alerts.php:206 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:96 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:141 -#: ../../extensions/files_repo.php:166 ../../operation/events/events.php:486 -#: ../../operation/messages/message_list.php:57 -#: ../../operation/snmpconsole/snmp_view.php:96 -#: ../../operation/gis_maps/gis_map.php:75 -#: ../../operation/incidents/incident.php:62 -#: ../../operation/incidents/incident_detail.php:86 -#: ../../operation/incidents/incident_detail.php:115 -#: ../../godmode/users/configure_user.php:413 -#: ../../godmode/alerts/alert_commands.php:313 -#: ../../godmode/alerts/alert_special_days.php:152 -#: ../../godmode/alerts/alert_list.php:142 -#: ../../godmode/alerts/alert_list.php:184 -#: ../../godmode/alerts/alert_templates.php:225 -#: ../../godmode/alerts/alert_actions.php:333 ../../godmode/setup/news.php:98 -#: ../../godmode/setup/gis.php:55 -#: ../../godmode/massive/massive_delete_alerts.php:157 -#: ../../godmode/massive/massive_delete_tags.php:152 -#: ../../godmode/massive/massive_delete_action_alerts.php:106 -#: ../../godmode/modules/manage_network_components.php:352 -#: ../../godmode/reporting/reporting_builder.php:414 -msgid "Could not be deleted" -msgstr "Не может быть удалено" - -#: ../../enterprise/extensions/ipam/ipam_action.php:69 -#: ../../enterprise/godmode/alerts/alert_events_list.php:160 -#: ../../enterprise/godmode/alerts/alert_events_list.php:204 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:281 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:117 -#: ../../enterprise/godmode/modules/local_components.php:318 -#: ../../enterprise/godmode/reporting/graph_template_list.php:86 -#: ../../enterprise/godmode/reporting/graph_template_list.php:106 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:244 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:98 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:119 -#: ../../enterprise/godmode/policies/policies.php:174 -#: ../../extensions/files_repo.php:166 ../../operation/events/events.php:485 -#: ../../operation/messages/message_list.php:56 -#: ../../operation/messages/message_list.php:73 -#: ../../operation/snmpconsole/snmp_view.php:95 -#: ../../operation/gis_maps/gis_map.php:74 -#: ../../operation/incidents/incident.php:61 -#: ../../operation/incidents/incident_detail.php:85 -#: ../../operation/incidents/incident_detail.php:114 -#: ../../operation/reporting/graph_viewer.php:34 -#: ../../operation/reporting/graph_viewer.php:41 -#: ../../godmode/events/event_filter.php:52 -#: ../../godmode/events/event_filter.php:73 -#: ../../godmode/users/configure_user.php:412 -#: ../../godmode/users/user_list.php:147 ../../godmode/users/user_list.php:188 -#: ../../godmode/users/profile_list.php:94 -#: ../../godmode/snmpconsole/snmp_alert.php:459 -#: ../../godmode/snmpconsole/snmp_filters.php:76 -#: ../../godmode/alerts/alert_commands.php:312 -#: ../../godmode/alerts/alert_special_days.php:151 -#: ../../godmode/alerts/alert_list.php:142 -#: ../../godmode/alerts/alert_list.php:184 -#: ../../godmode/alerts/alert_templates.php:224 -#: ../../godmode/alerts/alert_actions.php:332 -#: ../../godmode/agentes/planned_downtime.list.php:105 -#: ../../godmode/netflow/nf_item_list.php:105 -#: ../../godmode/netflow/nf_item_list.php:126 -#: ../../godmode/netflow/nf_edit.php:76 ../../godmode/netflow/nf_edit.php:100 -#: ../../godmode/setup/news.php:97 ../../godmode/setup/links.php:69 -#: ../../godmode/setup/gis.php:57 -#: ../../godmode/massive/massive_delete_alerts.php:156 -#: ../../godmode/massive/massive_delete_modules.php:236 -#: ../../godmode/massive/massive_delete_tags.php:151 -#: ../../godmode/massive/massive_delete_action_alerts.php:105 -#: ../../godmode/modules/manage_nc_groups.php:122 -#: ../../godmode/modules/manage_network_components.php:351 -#: ../../godmode/reporting/map_builder.php:87 -#: ../../godmode/reporting/graphs.php:79 ../../godmode/reporting/graphs.php:87 -#: ../../godmode/reporting/graphs.php:129 -#: ../../godmode/reporting/reporting_builder.php:413 -msgid "Successfully deleted" -msgstr "Успешно удалено" - -#: ../../enterprise/extensions/ipam/ipam_action.php:84 -#: ../../enterprise/extensions/ipam/ipam_action.php:120 -msgid "Incorrect format in Subnet field" -msgstr "Неверный формат в поле Подсеть" - -#: ../../enterprise/extensions/ipam/ipam_action.php:88 -#: ../../enterprise/extensions/ipam/ipam_action.php:125 -msgid "The location is not filled, please add a location." -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_action.php:133 -#: ../../enterprise/extensions/ipam/ipam_massive.php:42 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:226 -#: ../../enterprise/godmode/alerts/alert_events_list.php:95 -#: ../../enterprise/godmode/alerts/alert_events.php:375 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:159 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:98 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:120 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:106 -#: ../../enterprise/godmode/modules/local_components.php:297 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:52 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:67 -#: ../../enterprise/godmode/policies/policies.php:159 -#: ../../enterprise/godmode/policies/policy_modules.php:862 -#: ../../include/functions_planned_downtimes.php:122 -#: ../../operation/snmpconsole/snmp_view.php:115 -#: ../../operation/incidents/incident.php:106 -#: ../../godmode/alerts/configure_alert_command.php:94 -#: ../../godmode/alerts/alert_special_days.php:135 -#: ../../godmode/alerts/configure_alert_template.php:442 -#: ../../godmode/alerts/alert_templates.php:152 -#: ../../godmode/alerts/alert_actions.php:263 -#: ../../godmode/agentes/planned_downtime.editor.php:353 -#: ../../godmode/setup/gis.php:41 -#: ../../godmode/massive/massive_edit_modules.php:153 -#: ../../godmode/modules/manage_network_components.php:325 -msgid "Could not be updated" -msgstr "Не может быть обновлено" - -#: ../../enterprise/extensions/ipam/ipam_action.php:136 -#: ../../enterprise/extensions/ipam/ipam_massive.php:41 -#: ../../enterprise/godmode/alerts/alert_events_list.php:94 -#: ../../enterprise/godmode/alerts/alert_events.php:374 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:158 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:97 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:119 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:104 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:51 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:66 -#: ../../enterprise/godmode/policies/policy_modules.php:861 -#: ../../include/functions_planned_downtimes.php:125 -#: ../../operation/snmpconsole/snmp_view.php:114 -#: ../../operation/incidents/incident.php:105 -#: ../../godmode/events/event_edit_filter.php:158 -#: ../../godmode/users/profile_list.php:223 -#: ../../godmode/snmpconsole/snmp_alert.php:299 -#: ../../godmode/snmpconsole/snmp_filters.php:54 -#: ../../godmode/alerts/configure_alert_command.php:93 -#: ../../godmode/alerts/alert_special_days.php:134 -#: ../../godmode/alerts/configure_alert_template.php:441 -#: ../../godmode/alerts/alert_templates.php:151 -#: ../../godmode/alerts/alert_actions.php:262 -#: ../../godmode/agentes/planned_downtime.editor.php:362 -#: ../../godmode/agentes/configurar_agente.php:769 -#: ../../godmode/netflow/nf_edit_form.php:131 ../../godmode/setup/news.php:87 -#: ../../godmode/setup/links.php:58 ../../godmode/setup/gis.php:39 -#: ../../godmode/massive/massive_edit_modules.php:152 -#: ../../godmode/modules/manage_nc_groups.php:98 -msgid "Successfully updated" -msgstr "Успешно обновлено" - -#: ../../enterprise/extensions/ipam/ipam_action.php:195 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:345 -msgid "Could not be updated." -msgstr "Не может быть обновлено." - -#: ../../enterprise/extensions/ipam/ipam_action.php:199 -msgid "Successfully updated." -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_action.php:203 -#: ../../include/functions_reporting.php:1414 -msgid "No changes found." -msgstr "Изменения не найдены." - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:21 -msgid "Export to Excel" -msgstr "" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:59 -msgid "Assign next free IP" -msgstr "" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:73 -msgid "Next available IP" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:34 -msgid "Network not found" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:58 -#: ../../operation/incidents/incident.php:257 -msgid "All users" -msgstr "Все пользователи" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:67 -#: ../../enterprise/extensions/ipam/ipam_list.php:60 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:136 -#: ../../operation/servers/recon_view.php:95 -#: ../../godmode/servers/manage_recontask_form.php:241 -#: ../../godmode/servers/manage_recontask.php:287 -msgid "Network" -msgstr "Сеть" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:67 -msgid "Format: IP/Mask" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:69 -msgid "Examples" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:76 -msgid "For example: Central Data Center" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:80 -msgid "Scan interval" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:80 -msgid "0 for manually scan" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:85 -msgid "Operator users" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:85 -msgid "" -"The list of users can manage the networks in the IPAM. Only the admin users " -"can manage networks and edit the networks." -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_massive.php:68 -msgid "Addresses" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_list.php:45 -msgid "No networks found" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_list.php:65 -msgid "IPs" -msgstr "IP-адреса" - -#: ../../enterprise/extensions/ipam/ipam_list.php:66 -#: ../../enterprise/operation/services/services.service.php:135 -#: ../../enterprise/operation/services/services.list.php:322 -#: ../../extensions/agents_modules.php:56 -#: ../../extensions/agents_alerts.php:55 -#: ../../operation/agentes/group_view.php:58 -#: ../../operation/agentes/tactical.php:46 -msgid "Last update" -msgstr "Последнее обновление" - -#: ../../enterprise/extensions/ipam/ipam_list.php:107 -msgid "Edit network" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_list.php:111 -msgid "Delete network" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:43 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:44 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:52 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:53 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:54 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:55 -msgid "Example:" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:46 -msgid "Bit mask" -msgstr "Битовая маска" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:46 -msgid "Net mask" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:48 -msgid "Mask format" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:50 -msgid "Mask" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:63 -msgid "Calculate" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:70 -msgid "Address field is empty" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:76 -msgid "Mask field is empty" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:94 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:109 -msgid "Incorrect address format" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:98 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:102 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:113 -msgid "Incorrect mask format" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:141 -msgid "Network mask" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:155 -msgid "Network wildcard" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:160 -msgid "Network address" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:165 -msgid "Broadcast address" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:170 -msgid "First valid IP" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:175 -msgid "Last valid IP" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:181 -msgid "Hosts/Net" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:84 -msgid "There is not an available IP." -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:87 -msgid "Next available IP Address is:" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:110 -msgid "Reserve this IP now" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:126 -msgid "Manage this IP now" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:167 -msgid "Operating system" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:177 -msgid "This agent has other IPs" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:186 -msgid "Generate events" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:210 -#: ../../include/ajax/events.php:299 -#: ../../operation/integria_incidents/incident.list.php:99 -msgid "Details" -msgstr "Подробности" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:216 -#: ../../extensions/system_info.php:475 -msgid "Created" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:226 -msgid "Edited" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:236 -#: ../../operation/integria_incidents/incident.php:70 -msgid "Tracking" -msgstr "Отслеживание" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:252 -msgid "Ping" -msgstr "" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:269 -#: ../../include/ajax/events.php:157 -#, php-format -msgid "Executing command: %s" -msgstr "Выполнение команды: %s" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:276 -#: ../../include/ajax/events.php:164 -msgid "Execute again" -msgstr "Выполнить еще раз" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:294 -msgid "Ping to host" -msgstr "" - -#: ../../enterprise/extensions/backup.php:63 -msgid "Backup" -msgstr "Резервное копирование" - -#: ../../enterprise/extensions/vmware.php:46 -msgid "VMware" -msgstr "" - -#: ../../enterprise/extensions/resource_exportation/functions.php:19 -#: ../../extensions/resource_exportation.php:350 -#: ../../extensions/resource_exportation.php:353 -#: ../../operation/agentes/exportdata.php:332 -msgid "Export" -msgstr "Экспортировать" - -#: ../../enterprise/extensions/csv_import/main.php:40 -#, php-format -msgid "Created agent %s" -msgstr "Созданный агент %s" - -#: ../../enterprise/extensions/csv_import_group.php:27 -msgid "CSV import group" -msgstr "" - -#: ../../enterprise/extensions/resource_registration/functions.php:37 +#: ../../enterprise/extensions/resource_registration/functions.php:39 #, php-format msgid "Error create '%s' policy, the name exist and there aren't free name." msgstr "" "ошибка при создании '%s' политики, умя уже существует и нет свободных имен." -#: ../../enterprise/extensions/resource_registration/functions.php:44 +#: ../../enterprise/extensions/resource_registration/functions.php:47 #, php-format msgid "" "Warning create '%s' policy, the name exist, the policy have a name %s." msgstr "" -"Предупреждение о создании '%s' политики, имя уже существует, умя для " +"Предостережение о создании '%s' политики, имя уже существует, умя для " "политики уже существует %s." -#: ../../enterprise/extensions/resource_registration/functions.php:51 +#: ../../enterprise/extensions/resource_registration/functions.php:56 msgid "Error the policy haven't name." msgstr "Ошибка политики - отсутстие имени." -#: ../../enterprise/extensions/resource_registration/functions.php:65 +#: ../../enterprise/extensions/resource_registration/functions.php:77 #, php-format msgid "Success create '%s' policy." msgstr "Успешное создание '%s' политики." -#: ../../enterprise/extensions/resource_registration/functions.php:66 +#: ../../enterprise/extensions/resource_registration/functions.php:78 #, php-format msgid "Error create '%s' policy." msgstr "Ошибка при создании '%s' политики." -#: ../../enterprise/extensions/resource_registration/functions.php:102 +#: ../../enterprise/extensions/resource_registration/functions.php:115 +#, php-format +msgid "Error add '%s' agent. The agent does not exist" +msgstr "Ошибка добавления агента '%s'. Агент не существует" + +#: ../../enterprise/extensions/resource_registration/functions.php:119 #, php-format msgid "Success add '%s' agent." msgstr "Успешное добавление '%s' агента." -#: ../../enterprise/extensions/resource_registration/functions.php:103 +#: ../../enterprise/extensions/resource_registration/functions.php:120 #, php-format msgid "Error add '%s' agent." msgstr "Ошибка при добавлении '%s' агента." -#: ../../enterprise/extensions/resource_registration/functions.php:125 +#: ../../enterprise/extensions/resource_registration/functions.php:139 +msgid "The collection does not exist" +msgstr "Коллекция не существует" + +#: ../../enterprise/extensions/resource_registration/functions.php:144 #, php-format msgid "Success add '%s' collection." msgstr "Успешное добавление '%s' коллекции." -#: ../../enterprise/extensions/resource_registration/functions.php:126 +#: ../../enterprise/extensions/resource_registration/functions.php:145 #, php-format msgid "Error add '%s' collection." msgstr "Ошибка при добавлении '%s' коллекции." -#: ../../enterprise/extensions/resource_registration/functions.php:137 +#: ../../enterprise/extensions/resource_registration/functions.php:163 +#, php-format +msgid "Success add '%s' agent plugin." +msgstr "Успешное добавление плагина агента '%s'." + +#: ../../enterprise/extensions/resource_registration/functions.php:164 +#, php-format +msgid "Error add '%s' agent plugin." +msgstr "Ошибка добавления плагина агента '%s'." + +#: ../../enterprise/extensions/resource_registration/functions.php:177 msgid "Error add the module, haven't type." msgstr "Ошибка при добавлении модуля - отсутствие типа." -#: ../../enterprise/extensions/resource_registration/functions.php:209 -#: ../../enterprise/extensions/resource_registration/functions.php:239 -#: ../../enterprise/extensions/resource_registration/functions.php:296 -#: ../../enterprise/extensions/resource_registration/functions.php:328 +#: ../../enterprise/extensions/resource_registration/functions.php:378 +#: ../../enterprise/extensions/resource_registration/functions.php:439 +#: ../../enterprise/extensions/resource_registration/functions.php:540 +#: ../../enterprise/extensions/resource_registration/functions.php:596 msgid "Error add the module, error in tag component." msgstr "Ошибка добавления модуля, ошибка в теге компонента." -#: ../../enterprise/extensions/resource_registration/functions.php:368 +#: ../../enterprise/extensions/resource_registration/functions.php:648 +msgid "Error add the module plugin importation, plugin is not registered" +msgstr "" +"Ошибка добавления модуля импортирования плагина, плагин не зарегистрирован" + +#: ../../enterprise/extensions/resource_registration/functions.php:658 #, php-format msgid "Success add '%s' module." msgstr "Успешное добавление '%s' модуля." -#: ../../enterprise/extensions/resource_registration/functions.php:369 +#: ../../enterprise/extensions/resource_registration/functions.php:659 #, php-format msgid "Error add '%s' module." msgstr "Ошибка при добавление '%s' модуля." -#: ../../enterprise/extensions/resource_registration/functions.php:379 +#: ../../enterprise/extensions/resource_registration/functions.php:671 #, php-format msgid "Error add the alert, the template '%s' don't exist." msgstr "Ошибка при добавлении оповещения, шаблоны '%s' не существуют." -#: ../../enterprise/extensions/resource_registration/functions.php:387 +#: ../../enterprise/extensions/resource_registration/functions.php:682 #, php-format msgid "Error add the alert, the module '%s' don't exist." msgstr "Ошибка при добавлении оповещения, модули '%s' не существуют." -#: ../../enterprise/extensions/resource_registration/functions.php:399 +#: ../../enterprise/extensions/resource_registration/functions.php:698 #, php-format msgid "Success add '%s' alert." msgstr "Успешное добавление '%s'оповещения." -#: ../../enterprise/extensions/resource_registration/functions.php:400 +#: ../../enterprise/extensions/resource_registration/functions.php:699 #, php-format msgid "Error add '%s' alert." msgstr "Ошибка при добавлении '%s' оповещения." -#: ../../enterprise/extensions/resource_registration/functions.php:416 +#: ../../enterprise/extensions/resource_registration/functions.php:720 #, php-format msgid "Error add the alert, the action '%s' don't exist." msgstr "Ошибка при добавлении оповещения, действия '%s' не существуют." -#: ../../enterprise/extensions/resource_registration/functions.php:428 +#: ../../enterprise/extensions/resource_registration/functions.php:739 #, php-format msgid "Success add '%s' action." msgstr "Успешное добавление '%s' действия." -#: ../../enterprise/extensions/resource_registration/functions.php:429 -#: ../../extensions/resource_registration.php:328 -#: ../../extensions/resource_registration.php:349 -#: ../../extensions/resource_registration.php:359 +#: ../../enterprise/extensions/resource_registration/functions.php:740 +#: ../../extensions/resource_registration.php:422 +#: ../../extensions/resource_registration.php:444 +#: ../../extensions/resource_registration.php:455 #, php-format msgid "Error add '%s' action." msgstr "Ошибка при добавлении '%s' действия." -#: ../../enterprise/include/functions_alert_event.php:925 -msgid "Module alert" -msgstr "Модуль оповещений" - -#: ../../enterprise/include/functions_inventory.php:54 -#: ../../enterprise/include/functions_inventory.php:493 -msgid "No changes found" -msgstr "Изменения не найдены" - -#: ../../enterprise/include/functions_inventory.php:80 -msgid "Get CSV file" -msgstr "Получить CSV файл" - -#: ../../enterprise/include/functions_inventory.php:165 -#: ../../operation/tree.php:264 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:752 -msgid "No data found" -msgstr "Данные не найдены" - -#: ../../enterprise/include/functions_inventory.php:510 -#: ../../enterprise/include/functions_inventory.php:573 -#: ../../enterprise/include/functions_reporting_pdf.php:466 -#: ../../include/functions_reporting_html.php:692 -msgid "Added" -msgstr "Добавлено" - -#: ../../enterprise/include/functions_inventory.php:516 -#: ../../enterprise/include/functions_inventory.php:581 -#: ../../enterprise/include/functions_reporting_pdf.php:482 -#: ../../include/functions_filemanager.php:383 -#: ../../include/functions_reporting_html.php:701 -msgid "Deleted" -msgstr "Удалено" - -#: ../../enterprise/include/functions_update_manager.php:141 -#: ../../enterprise/include/functions_update_manager.php:239 -#: ../../include/functions_update_manager.php:320 -#: ../../include/functions_update_manager.php:323 -msgid "Could not connect to internet" -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:144 -#: ../../include/functions_update_manager.php:328 -#: ../../include/functions_update_manager.php:331 -msgid "Server not found." -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:147 -#: ../../enterprise/include/functions_update_manager.php:249 -#, php-format -msgid "There is a error: %s" -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:161 -#, php-format -msgid "There are %s updates, and the first to update is:" -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:166 -msgid "Version number:" -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:167 -#: ../../enterprise/include/functions_networkmap_enterprise.php:607 -msgid "Show details" -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:174 -#: ../../include/functions_update_manager.php:350 -msgid "Update to the last version" -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:189 -#: ../../include/functions_update_manager.php:353 -msgid "There is no update available." -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:244 -#: ../../include/ajax/update_manager.ajax.php:390 -msgid "Fail to update to the last package." -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:259 -#: ../../include/ajax/update_manager.ajax.php:398 -msgid "Starting to update to the last package." -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:290 -#: ../../include/ajax/update_manager.ajax.php:73 -msgid "There was an error extracting the file '" -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:307 -#: ../../include/ajax/update_manager.ajax.php:89 -msgid "The package was not extracted." -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:351 -#: ../../include/ajax/update_manager.ajax.php:469 -msgid "progress" -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:429 -#: ../../enterprise/include/functions_update_manager.php:433 -#: ../../enterprise/include/functions_update_manager.php:460 -#: ../../include/functions_update_manager.php:125 -#: ../../include/functions_update_manager.php:129 -#: ../../include/functions_update_manager.php:155 -#: ../../include/ajax/update_manager.ajax.php:168 -#: ../../include/ajax/update_manager.ajax.php:172 -#: ../../include/ajax/update_manager.ajax.php:199 -msgid "Some of your files might not be recovered." -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:438 -#: ../../enterprise/include/functions_update_manager.php:454 -#: ../../include/functions_update_manager.php:133 -#: ../../include/functions_update_manager.php:149 -#: ../../include/ajax/update_manager.ajax.php:176 -#: ../../include/ajax/update_manager.ajax.php:193 -msgid "Some of your old files might not be recovered." -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:475 -#: ../../include/functions_update_manager.php:170 -#: ../../include/ajax/update_manager.ajax.php:214 -msgid "An error ocurred while reading a file." -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:482 -#: ../../include/functions_update_manager.php:177 -#: ../../include/ajax/update_manager.ajax.php:221 -msgid "The package does not exist" -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:488 -#: ../../include/functions_update_manager.php:183 -#: ../../include/ajax/update_manager.ajax.php:499 -msgid "The package is installed." -msgstr "" - -#: ../../enterprise/include/functions_login.php:22 -msgid "You must change password" -msgstr "Вы должны изменить пароль" - -#: ../../enterprise/include/functions_login.php:47 -msgid "OLD PASS: " -msgstr "" - -#: ../../enterprise/include/functions_login.php:49 -msgid "NEW PASS: " -msgstr "НОВЫЙ ПРОПУСК: " - -#: ../../enterprise/include/functions_login.php:51 -msgid "CONFIRM: " -msgstr "ПОДТВЕРДИТЬ: " - -#: ../../enterprise/include/functions_login.php:58 -msgid "Change" -msgstr "Изменить" - -#: ../../enterprise/include/functions_login.php:103 -msgid "User has been blocked. Try again in " -msgstr "Пользователь был заблокирован. Повторите попытку через " - -#: ../../enterprise/include/functions_login.php:103 -msgid " minutes" -msgstr " минут" - -#: ../../enterprise/include/functions_login.php:227 -msgid "Password must be different from the " -msgstr "Пароль должен быть отличным от " - -#: ../../enterprise/include/functions_login.php:227 -msgid " previous changes." -msgstr " предыдущих изменений." - -#: ../../enterprise/include/functions_login.php:241 -msgid "Password must be different" -msgstr "Пароль должен отличаться" - -#: ../../enterprise/include/functions_login.php:251 -msgid "Password too short" -msgstr "Пароль слишком короткий" - -#: ../../enterprise/include/functions_login.php:262 -msgid "Password must contain numbers" -msgstr "Пароль должен содержать цифры" - -#: ../../enterprise/include/functions_login.php:274 -msgid "Password must contain symbols" -msgstr "Пароль должен содержать символы" - -#: ../../enterprise/include/functions_login.php:294 -msgid "Invalid old password" -msgstr "" - -#: ../../enterprise/include/functions_login.php:318 -msgid "User pass successfully updated" -msgstr "Пропуск пользователя успешно обновлен" - -#: ../../enterprise/include/functions_login.php:319 -msgid "Error updating user pass (no change?)" -msgstr "Ошибка при обновлении пропуска пользователя (без изменений?)" - -#: ../../enterprise/include/functions_login.php:327 -msgid "Password confirm does not match" -msgstr "Подтвержденный пароль не совпадает" - -#: ../../enterprise/include/functions_login.php:335 -msgid "Password empty" -msgstr "пароль не занят" - -#: ../../enterprise/include/functions_setup.php:27 -#: ../../enterprise/include/functions_setup.php:55 -#: ../../enterprise/godmode/menu.php:149 ../../godmode/extensions.php:145 -msgid "Enterprise" -msgstr "Корпорация" - -#: ../../enterprise/include/functions_setup.php:33 -#: ../../enterprise/include/functions_setup.php:63 -#: ../../enterprise/godmode/menu.php:89 -#: ../../operation/agentes/datos_agente.php:172 -msgid "History database" -msgstr "История базы данных" - -#: ../../enterprise/include/functions_setup.php:37 -#: ../../enterprise/include/functions_setup.php:68 -msgid "Log collector" -msgstr "Журнал коллектора" - -#: ../../enterprise/include/functions_setup.php:80 -msgid "Auto provisioning into Metaconsole" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:90 -msgid "URL Metaconsole Api" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:95 -msgid "Api pass" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:99 -msgid "Meta user" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:103 -msgid "Meta pass" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:107 -msgid "Metaconsole APi Online" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:109 -#: ../../enterprise/include/functions_setup.php:139 -msgid "Please click in the dot to re-check" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:115 -msgid "Pandora user" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:116 -msgid "Normally the admin user" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:120 -msgid "Pandora pass" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:124 -msgid "Public url console" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:125 -msgid "Without the index.php such as http://domain/pandora_url" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:131 -msgid "Register your node in metaconsole" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:133 -msgid "Register the node" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:138 -msgid "Status your node in metaconsole" -msgstr "" - -#: ../../enterprise/include/functions_groups.php:47 -msgid "Metaconsole" -msgstr "Мета консоль" - -#: ../../enterprise/include/functions_groups.php:75 -#: ../../enterprise/operation/agentes/ver_agente.php:190 -#: ../../enterprise/godmode/agentes/collections.php:181 -#: ../../operation/agentes/ver_agente.php:1022 -#: ../../godmode/agentes/configurar_agente.php:496 -msgid "Collection" -msgstr "Раздел" - -#: ../../enterprise/include/functions_massive.php:15 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:290 -#: ../../include/functions_visual_map.php:1280 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:168 -#: ../../godmode/massive/massive_add_tags.php:38 -#: ../../godmode/massive/massive_delete_tags.php:102 -#: ../../godmode/massive/massive_edit_modules.php:975 -#: ../../godmode/reporting/visual_console_builder.php:464 -msgid "No modules selected" -msgstr "Не выбраны модули" - -#: ../../enterprise/include/functions_backup.php:135 -msgid "No description" -msgstr "Без описания" - -#: ../../enterprise/include/functions_backup.php:241 -#: ../../enterprise/include/functions_backup.php:323 -msgid "Restoring a backup" -msgstr "Восстановление из резервной копии" - -#: ../../enterprise/include/functions_backup.php:243 -#: ../../enterprise/include/functions_backup.php:325 -msgid "Restoring a Pandora database backup must be done manually" -msgstr "" -"Восстановление из резервной копии базы данных Pandora должно быть сделано " -"вручную" - -#: ../../enterprise/include/functions_backup.php:244 -#: ../../enterprise/include/functions_backup.php:326 +#: ../../enterprise/extensions/vmware/vmware_view.php:61 +msgid "Top 5 VMs CPU Usage" +msgstr "5 лучших VMs при использовании CPU" + +#: ../../enterprise/extensions/vmware/vmware_view.php:70 +msgid "Top 5 VMs Memory Usage" +msgstr "5 лучших VMs при использовании памяти" + +#: ../../enterprise/extensions/vmware/vmware_view.php:82 +msgid "Top 5 VMs Provisioning Usage" +msgstr "5 лучших VMs при использовании а подготовке" + +#: ../../enterprise/extensions/vmware/vmware_view.php:91 +msgid "Top 5 VMs Network Usage" +msgstr "5 лучших VMs при использовании сети" + +#: ../../enterprise/extensions/vmware/vmware_view.php:684 +msgid "Host ESX" +msgstr "Host ESX" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1009 +#: ../../enterprise/include/functions_services.php:1781 +#: ../../enterprise/operation/agentes/policy_view.php:466 +#: ../../enterprise/operation/agentes/policy_view.php:472 +#: ../../enterprise/operation/agentes/tag_view.php:937 +#: ../../enterprise/operation/agentes/tag_view.php:943 +#: ../../enterprise/operation/agentes/tag_view.php:984 +#: ../../enterprise/operation/agentes/tag_view.php:990 +#: ../../mobile/operation/modules.php:535 +#: ../../mobile/operation/modules.php:558 +#: ../../mobile/operation/modules.php:598 +#: ../../mobile/operation/modules.php:621 ../../include/functions.php:1358 +#: ../../include/functions.php:1397 ../../include/functions_modules.php:2577 +#: ../../include/functions_modules.php:2583 +#: ../../include/functions_modules.php:3540 +#: ../../include/functions_modules.php:3572 ../../include/functions_ui.php:3646 +#: ../../include/functions_ui.php:3712 ../../include/class/Tree.class.php:634 +#: ../../include/lib/Module.php:534 ../../include/functions_events.php:54 +#: ../../include/functions_events.php:106 +#: ../../include/functions_events.php:169 +#: ../../operation/agentes/status_monitor.php:1468 +#: ../../operation/agentes/status_monitor.php:1474 +#: ../../operation/agentes/status_monitor.php:1543 +#: ../../operation/agentes/status_monitor.php:1549 +#: ../../operation/agentes/pandora_networkmap.view.php:336 +#: ../../operation/agentes/pandora_networkmap.view.php:344 +#: ../../operation/search_modules.php:102 +#: ../../operation/search_modules.php:129 +#: ../../operation/events/events.php:1876 +#: ../../operation/events/events.php:1943 +#: ../../operation/events/events.php:1970 +msgid "NORMAL" +msgstr "НОРМАЛЬНЫЙ" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1014 +#: ../../enterprise/include/functions_services.php:1789 +#: ../../enterprise/operation/agentes/policy_view.php:460 +#: ../../enterprise/operation/agentes/policy_view.php:477 +#: ../../enterprise/operation/agentes/tag_view.php:951 +#: ../../enterprise/operation/agentes/tag_view.php:957 +#: ../../enterprise/operation/agentes/tag_view.php:1000 +#: ../../enterprise/operation/agentes/tag_view.php:1006 +#: ../../mobile/operation/modules.php:541 +#: ../../mobile/operation/modules.php:566 +#: ../../mobile/operation/modules.php:604 +#: ../../mobile/operation/modules.php:629 ../../include/functions.php:1346 +#: ../../include/functions.php:1378 ../../include/functions_modules.php:2571 +#: ../../include/functions_modules.php:2587 +#: ../../include/functions_modules.php:3544 +#: ../../include/functions_modules.php:3564 ../../include/functions_ui.php:3652 +#: ../../include/functions_ui.php:3722 ../../include/class/Tree.class.php:604 +#: ../../include/lib/Module.php:518 ../../include/functions_events.php:57 +#: ../../include/functions_events.php:110 +#: ../../include/functions_events.php:154 +#: ../../operation/agentes/status_monitor.php:1482 +#: ../../operation/agentes/status_monitor.php:1488 +#: ../../operation/agentes/status_monitor.php:1559 +#: ../../operation/agentes/status_monitor.php:1565 +#: ../../operation/agentes/pandora_networkmap.view.php:330 +#: ../../operation/agentes/pandora_networkmap.view.php:349 +#: ../../operation/search_modules.php:108 +#: ../../operation/search_modules.php:137 +#: ../../operation/events/events.php:1851 +#: ../../operation/events/events.php:1949 +#: ../../operation/events/events.php:1975 +msgid "CRITICAL" +msgstr "КРИТИЧНО" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1019 +#: ../../enterprise/include/functions_services.php:1797 +#: ../../enterprise/include/functions_login.php:34 +#: ../../enterprise/operation/agentes/policy_view.php:463 +#: ../../enterprise/operation/agentes/policy_view.php:482 +#: ../../enterprise/operation/agentes/tag_view.php:965 +#: ../../enterprise/operation/agentes/tag_view.php:971 +#: ../../enterprise/operation/agentes/tag_view.php:1016 +#: ../../enterprise/operation/agentes/tag_view.php:1022 +#: ../../godmode/update_manager/update_manager.offline.php:111 +#: ../../mobile/operation/modules.php:547 +#: ../../mobile/operation/modules.php:574 +#: ../../mobile/operation/modules.php:610 +#: ../../mobile/operation/modules.php:637 ../../include/functions.php:1349 +#: ../../include/functions.php:1385 ../../include/functions_modules.php:2574 +#: ../../include/functions_modules.php:2591 +#: ../../include/functions_modules.php:3548 +#: ../../include/functions_modules.php:3580 ../../include/functions_ui.php:3640 +#: ../../include/functions_ui.php:3717 ../../include/class/Tree.class.php:612 +#: ../../include/class/NetworkMap.class.php:2823 +#: ../../include/lib/Module.php:522 ../../include/functions_events.php:68 +#: ../../include/functions_events.php:102 +#: ../../include/functions_events.php:172 +#: ../../operation/agentes/status_monitor.php:1496 +#: ../../operation/agentes/status_monitor.php:1502 +#: ../../operation/agentes/status_monitor.php:1575 +#: ../../operation/agentes/status_monitor.php:1581 +#: ../../operation/agentes/pandora_networkmap.view.php:333 +#: ../../operation/agentes/pandora_networkmap.view.php:354 +#: ../../operation/search_modules.php:114 +#: ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:1881 +#: ../../operation/events/events.php:1937 +#: ../../operation/events/events.php:1992 +msgid "WARNING" +msgstr "ВНИМАНИЕ" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1024 +#: ../../enterprise/include/functions_services.php:1812 +#: ../../enterprise/operation/agentes/policy_view.php:472 +#: ../../enterprise/operation/agentes/policy_view.php:477 +#: ../../enterprise/operation/agentes/policy_view.php:482 +#: ../../enterprise/operation/agentes/tag_view.php:984 +#: ../../enterprise/operation/agentes/tag_view.php:990 +#: ../../enterprise/operation/agentes/tag_view.php:1000 +#: ../../enterprise/operation/agentes/tag_view.php:1006 +#: ../../enterprise/operation/agentes/tag_view.php:1016 +#: ../../enterprise/operation/agentes/tag_view.php:1022 +#: ../../mobile/operation/modules.php:558 +#: ../../mobile/operation/modules.php:566 +#: ../../mobile/operation/modules.php:574 +#: ../../mobile/operation/modules.php:621 +#: ../../mobile/operation/modules.php:629 +#: ../../mobile/operation/modules.php:637 ../../include/functions.php:1362 +#: ../../include/functions.php:1388 ../../include/functions_modules.php:2583 +#: ../../include/functions_modules.php:2587 +#: ../../include/functions_modules.php:2591 +#: ../../include/functions_modules.php:3552 ../../include/functions_ui.php:3659 +#: ../../include/functions_ui.php:3737 ../../include/class/Tree.class.php:618 +#: ../../include/lib/Module.php:525 ../../include/functions_events.php:71 +#: ../../include/functions_events.php:115 +#: ../../include/functions_events.php:175 +#: ../../operation/agentes/status_monitor.php:1510 +#: ../../operation/agentes/status_monitor.php:1516 +#: ../../operation/agentes/status_monitor.php:1543 +#: ../../operation/agentes/status_monitor.php:1549 +#: ../../operation/agentes/status_monitor.php:1559 +#: ../../operation/agentes/status_monitor.php:1565 +#: ../../operation/agentes/status_monitor.php:1575 +#: ../../operation/agentes/status_monitor.php:1581 +#: ../../operation/agentes/pandora_networkmap.view.php:344 +#: ../../operation/agentes/pandora_networkmap.view.php:349 +#: ../../operation/agentes/pandora_networkmap.view.php:354 +#: ../../operation/search_modules.php:120 +#: ../../operation/search_modules.php:129 +#: ../../operation/search_modules.php:137 +#: ../../operation/search_modules.php:145 +#: ../../operation/events/events.php:1848 +#: ../../operation/events/events.php:1956 +#: ../../operation/events/events.php:1967 +msgid "UNKNOWN" +msgstr "НЕИЗВЕСТНЫЙ" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1036 +msgid "CPU Usage" +msgstr "Использование CPU" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1046 +msgid "Memory Usage" +msgstr "Использование памяти" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1056 +msgid "Disk I/O Rate" +msgstr "Скорость дискового ввода-вывода" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1066 +msgid "Network Usage" +msgstr "Использование сети" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1166 +msgid "Settings updated " +msgstr "Обновленные настройки " + +#: ../../enterprise/extensions/vmware/vmware_view.php:1168 +msgid "No changes in settings " +msgstr "Никаких изменений в настройках " + +#: ../../enterprise/extensions/vmware/vmware_view.php:1176 +msgid "CPU usage graphs" +msgstr "Графики использования процессора" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1177 +#: ../../enterprise/extensions/vmware/vmware_view.php:1183 +#: ../../enterprise/extensions/vmware/vmware_view.php:1189 +#: ../../enterprise/extensions/vmware/vmware_view.php:1195 +msgid "Force minimum value" +msgstr "Принудить минимальное значение" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1179 +#: ../../enterprise/extensions/vmware/vmware_view.php:1185 +#: ../../enterprise/extensions/vmware/vmware_view.php:1191 +#: ../../enterprise/extensions/vmware/vmware_view.php:1197 +msgid "Force maximum value" +msgstr "Принудить максимальное значение" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1182 +msgid "Memory usage graphs" +msgstr "Графики использования памяти" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1188 +msgid "Provisioning Usage graphs" +msgstr "Подготовка Графиков использования" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1194 +msgid "Network usage graphs" +msgstr "Графики использования сети" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1205 +msgid "Map items" +msgstr "Элементы карты" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1206 +msgid "Show datastores" +msgstr "Показать хранилища данных" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1213 +msgid "Show ESXis" +msgstr "Показать ESXis" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1220 +msgid "Show VMs" +msgstr "Показать VMs" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1227 +msgid "Font size (px)" +msgstr "Кегль шрифта (px)" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1229 +msgid "Node radius (px)" +msgstr "Радиус узла (px)" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1231 +msgid "Node separation (rate)" +msgstr "Разделение узлов (скорость)" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1236 msgid "" -"It's a complex operation that needs human intervation to avoid system " -"failures and data loosing" +"Looking for VMware configuration? You can configure several tasks using " +"Discovery Applications." msgstr "" -"Это комплекс операция, который требует вмешательства человека, чтобы " -"избежать сбоев системы и потери данных" +"Ищете конфигурацию VMware? Вы можете настроить несколько задач с помощью " +"Discovery Applications." -#: ../../enterprise/include/functions_backup.php:245 -#: ../../enterprise/include/functions_backup.php:327 -msgid "To restore the selected backup, please follow these steps" -msgstr "" -"Для восстановления выбранной резервной копии, выполните следующие действия" +#: ../../enterprise/extensions/vmware/vmware_view.php:1237 +#: ../../enterprise/extensions/vmware/vmware_view.php:1503 +#: ../../enterprise/include/class/SAPView.class.php:610 +msgid "this link" +msgstr "эту ссылку" -#: ../../enterprise/include/functions_backup.php:251 -#: ../../enterprise/include/functions_backup.php:333 -msgid "Open a root shell in your system located at " -msgstr "Откройте командный интерфейс в вашей системе, который находится в " +#: ../../enterprise/extensions/vmware/vmware_view.php:1244 +msgid "Graph settings" +msgstr "Настройки графика" -#: ../../enterprise/include/functions_backup.php:255 -msgid "Connect to MySQL database using the following command" -msgstr "Подключение к базе данных MySQL с помощью следующей команды" +#: ../../enterprise/extensions/vmware/vmware_view.php:1249 +msgid "Map settings" +msgstr "Настройки карты" -#: ../../enterprise/include/functions_backup.php:262 -msgid "Create a new database" -msgstr "Создать новую базу данных" +#: ../../enterprise/extensions/vmware/vmware_view.php:1293 +msgid "Welcome" +msgstr "Добро пожаловать!" -#: ../../enterprise/include/functions_backup.php:275 -msgid "Restore the backup" -msgstr "Восстановление резервной копии" +#: ../../enterprise/extensions/vmware/vmware_view.php:1303 +#: ../../enterprise/extensions/vmware/vmware_view.php:1345 +#: ../../include/lib/Dashboard/Widgets/network_map.php:316 +#: ../../operation/gis_maps/render_view.php:165 +msgid "Map" +msgstr "Карта" -#: ../../enterprise/include/functions_backup.php:283 -#: ../../enterprise/include/functions_backup.php:348 -msgid "Modify console configuration to use this new database" -msgstr "" -"Измененить конфигурацию консоли, чтобы использовать эту новую базу данных" +#: ../../enterprise/extensions/vmware/vmware_view.php:1313 +#: ../../enterprise/extensions/vmware/vmware_view.php:1350 +#: ../../godmode/users/configure_user.php:1087 +#: ../../mobile/include/functions_web.php:22 +#: ../../include/class/OrderInterpreter.class.php:219 +#: ../../operation/users/user_edit.php:363 ../../operation/menu.php:337 +msgid "Dashboard" +msgstr "Приборная Панель" -#: ../../enterprise/include/functions_backup.php:284 -#: ../../enterprise/include/functions_backup.php:349 -msgid "Open configuration file" -msgstr "Открыть файл конфигурации" +#: ../../enterprise/extensions/vmware/vmware_view.php:1324 +msgid "ESX Detail" +msgstr "Детализация ESX" -#: ../../enterprise/include/functions_backup.php:288 -#: ../../enterprise/include/functions_backup.php:300 -#: ../../enterprise/include/functions_backup.php:353 -#: ../../enterprise/include/functions_backup.php:365 -msgid "Find" -msgstr "Найти" +#: ../../enterprise/extensions/vmware/vmware_view.php:1355 +msgid "ESX details" +msgstr "Детали ESX" -#: ../../enterprise/include/functions_backup.php:290 -#: ../../enterprise/include/functions_backup.php:303 -#: ../../enterprise/include/functions_backup.php:355 -#: ../../enterprise/include/functions_backup.php:368 -msgid "and replace with" -msgstr "и заменить на" +#: ../../enterprise/extensions/vmware/vmware_view.php:1360 +msgid "VMware view options" +msgstr "Варианты вида VMware" -#: ../../enterprise/include/functions_backup.php:297 -#: ../../enterprise/include/functions_backup.php:362 -msgid "Modify servers configuration to use this new database" -msgstr "" -"Изменить конфигурацию сервера для использования этой новой базы данных" - -#: ../../enterprise/include/functions_backup.php:298 -#: ../../enterprise/include/functions_backup.php:363 -msgid "Find servers configuration file and replace the following lines" -msgstr "Найти серверы файла конфигурации и заменить следующие строки" - -#: ../../enterprise/include/functions_backup.php:310 -#: ../../enterprise/include/functions_backup.php:375 -msgid "Restart the servers and login again into the console" -msgstr "Перезагрузить серверы и войти снова в консоль" - -#: ../../enterprise/include/functions_backup.php:340 -msgid "Run import command using the following command" -msgstr "Выполните команду импорта с помощью следующей команды" - -#: ../../enterprise/include/functions_backup.php:344 -msgid "Into your destination database." -msgstr "В вашей целевой базе данных." - -#: ../../enterprise/include/functions_policies.php:456 -#: ../../enterprise/include/functions_policies.php:471 -#: ../../include/functions_alerts.php:382 -msgid "copy" -msgstr "копия" - -#: ../../enterprise/include/functions_policies.php:3029 -msgid "Policy linkation" -msgstr "Политика линейности" - -#: ../../enterprise/include/functions_policies.php:3034 -msgid "Module linked" -msgstr "Модуль связан" - -#: ../../enterprise/include/functions_policies.php:3036 -#: ../../enterprise/include/functions_policies.php:3046 -msgid "Unlink from policy" -msgstr "Отсоединить от политики" - -#: ../../enterprise/include/functions_policies.php:3039 -msgid "Module unlinked" -msgstr "Модуль отсоединен" - -#: ../../enterprise/include/functions_policies.php:3041 -#: ../../enterprise/include/functions_policies.php:3051 -msgid "Relink to policy" -msgstr "Связать заново с политикой" - -#: ../../enterprise/include/functions_policies.php:3044 -msgid "Module pending to link" -msgstr "Модуль, ожидающий связи" - -#: ../../enterprise/include/functions_policies.php:3044 -#: ../../godmode/agentes/module_manager_editor.php:344 -msgid "Module will be linked in the next application" -msgstr "Модуль будет соединен в следующем приложении" - -#: ../../enterprise/include/functions_policies.php:3049 -msgid "Module pending to unlink" -msgstr "Модуль, ожидающий отсоединения" - -#: ../../enterprise/include/functions_policies.php:3049 -#: ../../godmode/agentes/module_manager_editor.php:352 -msgid "Module will be unlinked in the next application" -msgstr "Модуль будет отсоединен в следующем приложении" - -#: ../../enterprise/include/functions_policies.php:3197 -#: ../../enterprise/godmode/policies/configure_policy.php:38 -#: ../../operation/gis_maps/render_view.php:107 -#: ../../operation/agentes/estado_agente.php:132 ../../godmode/menu.php:220 -#: ../../godmode/menu.php:227 ../../godmode/agentes/configurar_agente.php:268 -#: ../../godmode/agentes/configurar_agente.php:493 -msgid "Setup" -msgstr "Установка" - -#: ../../enterprise/include/functions_policies.php:3215 -#: ../../enterprise/godmode/menu.php:53 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:28 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 -msgid "Inventory modules" -msgstr "Модули инвентаризации" - -#: ../../enterprise/include/functions_policies.php:3234 -#: ../../enterprise/godmode/policies/policies.php:347 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:37 -msgid "External alerts" -msgstr "Внешние оповещения" - -#: ../../enterprise/include/functions_policies.php:3244 -#: ../../enterprise/godmode/policies/policy_linking.php:122 -#: ../../enterprise/godmode/policies/policies.php:331 -msgid "Linking" -msgstr "Создаётся ссылка на файл" - -#: ../../enterprise/include/functions_policies.php:3253 -#: ../../enterprise/godmode/menu.php:43 -#: ../../enterprise/godmode/agentes/collections.data.php:42 -#: ../../enterprise/godmode/agentes/collections.editor.php:50 -#: ../../enterprise/godmode/policies/policies.php:335 -#: ../../enterprise/godmode/policies/policy_collections.php:29 -#: ../../enterprise/godmode/policies/policy_collections.php:173 -#: ../../general/firts_task/collections.php:25 -msgid "Collections" -msgstr "Коллекции" - -#: ../../enterprise/include/functions_policies.php:3262 -#: ../../enterprise/godmode/policies/policy.php:46 -#: ../../enterprise/godmode/policies/policies.php:351 -msgid "Queue" -msgstr "Очередь" - -#: ../../enterprise/include/functions_policies.php:3280 -#: ../../enterprise/godmode/agentes/configurar_agente.php:49 -#: ../../enterprise/godmode/policies/policy.php:54 -#: ../../godmode/agentes/configurar_agente.php:504 -msgid "Agent plugins" -msgstr "Агент плагинов" - -#: ../../enterprise/include/functions_policies.php:3743 -msgid "Create a new policy map" -msgstr "Создать новую карту политики" - -#: ../../enterprise/include/functions_reporting.php:34 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:88 -msgid "Wizard SLA" -msgstr "Мастер SLA" - -#: ../../enterprise/include/functions_reporting.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:73 -msgid "Global" -msgstr "Общий" - -#: ../../enterprise/include/functions_reporting.php:40 -msgid "Advance options" -msgstr "Дополнительные опции" - -#: ../../enterprise/include/functions_reporting.php:58 -msgid "Templates list" -msgstr "Список шаблонов" - -#: ../../enterprise/include/functions_reporting.php:84 -msgid "Templates Wizard" -msgstr "Мастер Шаблонов" - -#: ../../enterprise/include/functions_reporting.php:580 -#: ../../enterprise/include/functions_reporting_csv.php:112 -#: ../../include/functions_reports.php:591 -#: ../../include/functions_reporting.php:3754 -msgid "Availability" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:581 -msgid "Availability item created from wizard." -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1128 -#: ../../enterprise/include/functions_reporting.php:1603 -#: ../../enterprise/include/functions_reporting.php:1747 -#: ../../enterprise/include/functions_reporting_pdf.php:1673 -msgid "Inside limits" -msgstr "Внутренние лимиты" - -#: ../../enterprise/include/functions_reporting.php:1129 -#: ../../enterprise/include/functions_reporting.php:1608 -#: ../../enterprise/include/functions_reporting.php:1748 -#: ../../enterprise/include/functions_reporting_pdf.php:1674 -msgid "On the edge" -msgstr "На краю" - -#: ../../enterprise/include/functions_reporting.php:1130 -#: ../../enterprise/include/functions_reporting.php:1612 -#: ../../enterprise/include/functions_reporting.php:1749 -#: ../../enterprise/include/functions_reporting_pdf.php:1675 -#: ../../include/functions_graph.php:1906 -#: ../../include/functions_graph.php:1953 -#: ../../include/graphs/functions_gd.php:165 -#: ../../include/graphs/functions_gd.php:256 -msgid "Out of limits" -msgstr "Кончились лимиты" - -#: ../../enterprise/include/functions_reporting.php:1153 -#: ../../enterprise/include/functions_reporting_pdf.php:1699 -msgid "January" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1156 -#: ../../enterprise/include/functions_reporting_pdf.php:1702 -msgid "February" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1159 -#: ../../enterprise/include/functions_reporting_pdf.php:1705 -msgid "March" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1162 -#: ../../enterprise/include/functions_reporting_pdf.php:1708 -msgid "April" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1165 -#: ../../enterprise/include/functions_reporting_pdf.php:1711 -msgid "May" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1168 -#: ../../enterprise/include/functions_reporting_pdf.php:1714 -msgid "June" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1171 -#: ../../enterprise/include/functions_reporting_pdf.php:1717 -msgid "July" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1174 -#: ../../enterprise/include/functions_reporting_pdf.php:1720 -msgid "August" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1177 -#: ../../enterprise/include/functions_reporting_pdf.php:1723 -msgid "September" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1180 -#: ../../enterprise/include/functions_reporting_pdf.php:1726 -msgid "October" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1183 -#: ../../enterprise/include/functions_reporting_pdf.php:1729 -msgid "November" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1186 -#: ../../enterprise/include/functions_reporting_pdf.php:1732 -msgid "December" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1203 -#: ../../enterprise/include/functions_reporting.php:2239 -#: ../../enterprise/include/functions_reporting_pdf.php:1599 -#: ../../enterprise/include/functions_reporting_pdf.php:1746 -#: ../../include/functions_reporting_html.php:322 -msgid "Max/Min Values" -msgstr "Макс/Мин значения" - -#: ../../enterprise/include/functions_reporting.php:1204 -#: ../../enterprise/include/functions_reporting.php:2240 -#: ../../enterprise/include/functions_reporting.php:3052 -#: ../../enterprise/include/functions_reporting.php:3354 -#: ../../enterprise/include/functions_reporting_pdf.php:1600 -#: ../../enterprise/include/functions_reporting_pdf.php:1747 -#: ../../enterprise/include/functions_reporting_pdf.php:1957 -#: ../../include/functions_reporting_html.php:323 -msgid "SLA Limit" -msgstr "Разрешение SLA" - -#: ../../enterprise/include/functions_reporting.php:1204 -#: ../../enterprise/include/functions_reporting.php:1293 -#: ../../enterprise/include/functions_reporting.php:1784 -#: ../../enterprise/include/functions_reporting.php:2241 -#: ../../enterprise/include/functions_reporting.php:3053 -#: ../../enterprise/include/functions_reporting.php:3355 -#: ../../enterprise/include/functions_reporting_pdf.php:1601 -#: ../../enterprise/include/functions_reporting_pdf.php:1747 -#: ../../enterprise/include/functions_reporting_pdf.php:1846 -#: ../../enterprise/include/functions_reporting_pdf.php:1958 -#: ../../include/functions_reporting_html.php:324 -msgid "SLA Compliance" -msgstr "SLA Соответствие" - -#: ../../enterprise/include/functions_reporting.php:1215 -#: ../../enterprise/include/functions_reporting.php:2258 -#: ../../enterprise/include/functions_reporting.php:3079 -#: ../../enterprise/include/functions_reporting.php:3413 -#: ../../enterprise/include/functions_reporting_csv.php:621 -#: ../../enterprise/include/functions_reporting_pdf.php:1627 -#: ../../enterprise/include/functions_reporting_pdf.php:1764 -#: ../../enterprise/include/functions_reporting_pdf.php:1985 -#: ../../include/functions_reporting_html.php:356 -#: ../../include/functions_config.php:493 -#: ../../include/functions_config.php:1356 -msgid "Fail" -msgstr "Сбой" - -#: ../../enterprise/include/functions_reporting.php:1237 -#: ../../enterprise/include/functions_reporting.php:1792 -#: ../../enterprise/include/functions_reporting_pdf.php:1782 -msgid "SLA Compliance per days" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1290 -#: ../../enterprise/include/functions_reporting_pdf.php:1840 -msgid "Summary of SLA Failures" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1292 -#: ../../enterprise/include/functions_reporting.php:1783 -#: ../../enterprise/include/functions_reporting_pdf.php:1844 -msgid "Day" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1332 -#: ../../enterprise/include/functions_reporting.php:1685 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:112 -#: ../../include/functions_reports.php:539 -msgid "Monthly S.L.A." -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1394 -#: ../../enterprise/include/functions_reporting.php:1739 -#: ../../enterprise/include/functions_reporting.php:3143 -#: ../../enterprise/include/functions_reporting.php:3149 -#: ../../include/functions_reporting.php:492 -msgid "There are no SLAs defined" -msgstr "Нет установленных SLA" - -#: ../../enterprise/include/functions_reporting.php:1526 -#: ../../include/functions_reporting.php:617 +#: ../../enterprise/extensions/vmware/vmware_view.php:1481 msgid "" -"This item is affected by a malformed planned downtime. Go to the planned " -"downtimes section to solve this." +"Some ESX Hosts are not up to date, please check VMware plugin configuration." msgstr "" +"Некоторые ESX-хосты не обновлены, проверьте конфигурацию плагина VMware." -#: ../../enterprise/include/functions_reporting.php:1786 -msgid "Summary of SLA Fails" +#: ../../enterprise/extensions/vmware/vmware_view.php:1483 +msgid "VMware plugin is working." +msgstr "Плагин VMware работает." + +#: ../../enterprise/extensions/vmware/vmware_view.php:1492 +msgid "View VMware map" +msgstr "Просмотр карты VMware" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1493 +msgid "View VMware dashboard" +msgstr "Просмотр приборной панели VMware" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1494 +msgid "View ESX Host statistics from" +msgstr "Просмотр статистики хоста ESX из" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1501 +msgid "There are no VMware information detected in this environment." +msgstr "В этой среде не обнаружено никакой информации о VMware." + +#: ../../enterprise/extensions/vmware/vmware_view.php:1502 +msgid "You can configure several tasks using Discovery Applications at " msgstr "" +"Вы можете настроить несколько задач с помощью Discovery Applications " -#: ../../enterprise/include/functions_reporting.php:1893 -#: ../../enterprise/include/functions_reporting.php:2008 -#: ../../enterprise/include/functions_reporting.php:3183 -#: ../../enterprise/include/functions_reporting_pdf.php:2336 -#: ../../include/functions_reporting_html.php:2976 -msgid "This SLA has been affected by the following planned downtimes" -msgstr "" +#: ../../enterprise/extensions/vmware/vmware_view.php:1713 +#: ../../enterprise/include/class/DeploymentCenter.class.php:482 +#: ../../enterprise/include/class/DeploymentCenter.class.php:490 +#: ../../enterprise/include/class/DeploymentCenter.class.php:498 +#: ../../enterprise/include/class/DeploymentCenter.class.php:657 +#: ../../enterprise/include/class/SAP.app.php:371 +msgid "here" +msgstr "здесь" -#: ../../enterprise/include/functions_reporting.php:1898 -#: ../../enterprise/include/functions_reporting.php:2012 -#: ../../enterprise/include/functions_reporting.php:3187 -#: ../../enterprise/include/functions_reporting_pdf.php:2340 -#: ../../include/functions_reporting_html.php:2980 -#: ../../godmode/agentes/planned_downtime.editor.php:487 -#: ../../godmode/agentes/planned_downtime.list.php:393 -msgid "Execution" -msgstr "Выполнение" - -#: ../../enterprise/include/functions_reporting.php:1899 -#: ../../enterprise/include/functions_reporting.php:2013 -#: ../../enterprise/include/functions_reporting.php:3188 -#: ../../enterprise/include/functions_reporting_pdf.php:2341 -#: ../../include/functions_reporting_html.php:2981 -msgid "Dates" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:1934 -#: ../../enterprise/include/functions_reporting.php:2045 -#: ../../enterprise/include/functions_reporting.php:3220 -#: ../../include/functions_reporting.php:8434 -msgid "Weekly:" -msgstr "Еженедельно:" - -#: ../../enterprise/include/functions_reporting.php:1937 -#: ../../enterprise/include/functions_reporting.php:2048 -#: ../../enterprise/include/functions_reporting.php:3223 -#: ../../enterprise/godmode/alerts/alert_events.php:431 -#: ../../include/functions_reporting.php:8437 ../../include/functions.php:885 -#: ../../godmode/alerts/configure_alert_template.php:517 -#: ../../godmode/alerts/alert_view.php:208 -#: ../../godmode/agentes/planned_downtime.editor.php:538 -msgid "Mon" -msgstr "Пн" - -#: ../../enterprise/include/functions_reporting.php:1941 -#: ../../enterprise/include/functions_reporting.php:2052 -#: ../../enterprise/include/functions_reporting.php:3227 -#: ../../enterprise/godmode/alerts/alert_events.php:433 -#: ../../include/functions_reporting.php:8441 ../../include/functions.php:887 -#: ../../godmode/alerts/configure_alert_template.php:519 -#: ../../godmode/alerts/alert_view.php:209 -#: ../../godmode/agentes/planned_downtime.editor.php:541 -msgid "Tue" -msgstr "Вт" - -#: ../../enterprise/include/functions_reporting.php:1945 -#: ../../enterprise/include/functions_reporting.php:2056 -#: ../../enterprise/include/functions_reporting.php:3231 -#: ../../enterprise/godmode/alerts/alert_events.php:435 -#: ../../include/functions_reporting.php:8445 ../../include/functions.php:889 -#: ../../godmode/alerts/configure_alert_template.php:521 -#: ../../godmode/alerts/alert_view.php:210 -#: ../../godmode/agentes/planned_downtime.editor.php:544 -msgid "Wed" -msgstr "Ср" - -#: ../../enterprise/include/functions_reporting.php:1949 -#: ../../enterprise/include/functions_reporting.php:2060 -#: ../../enterprise/include/functions_reporting.php:3235 -#: ../../enterprise/godmode/alerts/alert_events.php:437 -#: ../../include/functions_reporting.php:8449 ../../include/functions.php:891 -#: ../../godmode/alerts/configure_alert_template.php:523 -#: ../../godmode/alerts/alert_view.php:211 -#: ../../godmode/agentes/planned_downtime.editor.php:547 -msgid "Thu" -msgstr "Чт" - -#: ../../enterprise/include/functions_reporting.php:1953 -#: ../../enterprise/include/functions_reporting.php:2064 -#: ../../enterprise/include/functions_reporting.php:3239 -#: ../../enterprise/godmode/alerts/alert_events.php:439 -#: ../../include/functions_reporting.php:8453 ../../include/functions.php:893 -#: ../../godmode/alerts/configure_alert_template.php:525 -#: ../../godmode/alerts/alert_view.php:212 -#: ../../godmode/agentes/planned_downtime.editor.php:550 -msgid "Fri" -msgstr "Пт" - -#: ../../enterprise/include/functions_reporting.php:1957 -#: ../../enterprise/include/functions_reporting.php:2068 -#: ../../enterprise/include/functions_reporting.php:3243 -#: ../../enterprise/godmode/alerts/alert_events.php:441 -#: ../../include/functions_reporting.php:8457 ../../include/functions.php:895 -#: ../../godmode/alerts/configure_alert_template.php:527 -#: ../../godmode/alerts/alert_view.php:213 -#: ../../godmode/agentes/planned_downtime.editor.php:553 -msgid "Sat" -msgstr "Сб" - -#: ../../enterprise/include/functions_reporting.php:1961 -#: ../../enterprise/include/functions_reporting.php:2072 -#: ../../enterprise/include/functions_reporting.php:3247 -#: ../../enterprise/godmode/alerts/alert_events.php:443 -#: ../../include/functions_reporting.php:8461 ../../include/functions.php:897 -#: ../../godmode/alerts/configure_alert_template.php:529 -#: ../../godmode/alerts/alert_view.php:214 -#: ../../godmode/agentes/planned_downtime.editor.php:556 -msgid "Sun" -msgstr "Sun" - -#: ../../enterprise/include/functions_reporting.php:1968 -#: ../../enterprise/include/functions_reporting.php:2079 -#: ../../enterprise/include/functions_reporting.php:3254 -#: ../../include/functions_reporting.php:8468 -msgid "Monthly:" -msgstr "Ежемесячно:" - -#: ../../enterprise/include/functions_reporting.php:1969 -#: ../../enterprise/include/functions_reporting.php:2080 -#: ../../enterprise/include/functions_reporting.php:3255 -#: ../../include/functions_reporting.php:8469 -msgid "From day" -msgstr "Со дня" - -#: ../../enterprise/include/functions_reporting.php:1970 -#: ../../enterprise/include/functions_reporting.php:2081 -#: ../../enterprise/include/functions_reporting.php:3256 -#: ../../include/functions_reporting.php:8470 -msgid "To day" -msgstr "До дня" - -#: ../../enterprise/include/functions_reporting.php:2107 -#: ../../enterprise/include/functions_reporting.php:3282 -#: ../../enterprise/include/functions_reporting_pdf.php:2380 -#: ../../include/functions_reporting_html.php:3022 -msgid "This item is affected by a malformed planned downtime" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:2108 -#: ../../enterprise/include/functions_reporting.php:3283 -#: ../../enterprise/include/functions_reporting_pdf.php:2381 -#: ../../include/functions_reporting_html.php:3023 -msgid "Go to the planned downtimes section to solve this" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:2644 -#: ../../enterprise/include/functions_reporting.php:3107 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:114 -#: ../../include/functions_reports.php:543 -msgid "Services S.L.A." -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:2666 -msgid "There are no SLAs defined." -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:2780 -#: ../../enterprise/include/functions_reporting.php:3398 -#: ../../enterprise/include/functions_services.php:1216 -#: ../../enterprise/include/functions_services.php:1218 -#: ../../enterprise/include/functions_services.php:1239 -#: ../../enterprise/include/functions_services.php:1240 -#: ../../enterprise/include/functions_services.php:1242 -#: ../../enterprise/include/functions_services.php:1276 -#: ../../enterprise/include/functions_services.php:1278 -msgid "Nonexistent" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:3051 -#: ../../enterprise/include/functions_reporting.php:3353 -#: ../../enterprise/include/functions_services.php:1458 -#: ../../enterprise/include/functions_reporting_pdf.php:1956 -#: ../../enterprise/include/functions_visual_map.php:416 -#: ../../enterprise/include/functions_visual_map_editor.php:17 -#: ../../enterprise/include/functions_visual_map_editor.php:24 -#: ../../enterprise/include/functions_visual_map_editor.php:47 -#: ../../enterprise/godmode/services/services.elements.php:318 -#: ../../enterprise/godmode/services/services.elements.php:359 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:23 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:416 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1355 -msgid "Service" -msgstr "Сервис" - -#: ../../enterprise/include/functions_reporting.php:3935 -#: ../../enterprise/include/functions_reporting.php:4318 +#: ../../enterprise/extensions/vmware/vmware_view.php:1710 #, php-format -msgid "Graph agents(%s) - %s" -msgstr "График агентов(%s) - %s" +msgid "" +"This map is a quick representation of all your VMware entities detected. You " +"can create a custom VMware map by defining a network map based on your " +"VMware discovery task %s" +msgstr "" +"Эта карта представляет собой быстрое представление всех обнаруженных " +"елементов VMware. Вы можете создать пользовательскую карту VMware, определив " +"карту сети, основанную на задачах обнаружения VMware %s" -#: ../../enterprise/include/functions_reporting.php:4690 -#: ../../enterprise/include/functions_reporting.php:4740 -msgid "Template editor" -msgstr "Редактор шаблонов" +#: ../../enterprise/extensions/vmware/vmware_view.php:1720 +msgid "Show Datastores" +msgstr "Показать хранилища данных" -#: ../../enterprise/include/functions_reporting.php:4694 -#: ../../enterprise/include/functions_reporting.php:4744 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:108 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:143 -#: ../../operation/reporting/reporting_viewer.php:90 -#: ../../godmode/reporting/reporting_builder.php:1832 -msgid "Item editor" -msgstr "Элемент редактирования" +#: ../../enterprise/extensions/vmware/vmware_view.php:1723 +msgid "Show ESX" +msgstr "Показать ESX" -#: ../../enterprise/include/functions_reporting.php:4754 -msgid "Get PDF file" -msgstr "Получить PDF файл" +#: ../../enterprise/extensions/vmware/vmware_view.php:1726 +msgid "Show VM" +msgstr "Показать VM" -#: ../../enterprise/include/functions_enterprise.php:276 -msgid "Tree view by tags" -msgstr "Просмотр в виде дерева по тегам" +#: ../../enterprise/extensions/vmware/vmware_view.php:1730 +#: ../../godmode/reporting/visual_console_builder.wizard.php:235 +msgid "Font" +msgstr "Шрифт" -#: ../../enterprise/include/functions_dashboard.php:369 +#: ../../enterprise/extensions/vmware/vmware_view.php:1734 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:124 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:74 +#: ../../operation/agentes/pandora_networkmap.editor.php:302 +msgid "Node radius" +msgstr "Радиус узла" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1738 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:215 +#: ../../operation/agentes/pandora_networkmap.editor.php:416 +msgid "Node separation" +msgstr "Разделение узлов" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1748 +msgid "View options" +msgstr "Посмотреть опции" + +#: ../../enterprise/extensions/vmware/vmware_manager.php:227 +msgid "Power Status: " +msgstr "Статус: " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:269 +#: ../../operation/agentes/pandora_networkmap.view.php:369 +msgid "Status: " +msgstr "Статус: " + +#: ../../enterprise/extensions/vmware/vmware_manager.php:273 +msgid "Change Status" +msgstr "Изменить статус" + +#: ../../enterprise/extensions/resource_exportation/functions.php:20 +msgid "Export agents" +msgstr "Экспортнировать агентов" + +#: ../../enterprise/extensions/resource_exportation/functions.php:21 +#: ../../extensions/resource_exportation.php:429 +#: ../../extensions/resource_exportation.php:432 +#: ../../operation/agentes/exportdata.php:388 +msgid "Export" +msgstr "Экспортировать" + +#: ../../enterprise/extensions/csv_import_group.php:45 +msgid "CSV import group" +msgstr "Импортировать группы CSV" + +#: ../../enterprise/extensions/csv_import_group.php:59 +msgid "CSV group import" +msgstr "Импортация из группы CSV" + +#: ../../enterprise/load_html_extra.php:194 +msgid "Activate license" +msgstr "Активировать лицензию" + +#: ../../enterprise/load_html_extra.php:195 +msgid "Your <b>request key</b> is:" +msgstr "Ваш <b>ключ запроса</b> - это:" + +#: ../../enterprise/load_html_extra.php:197 #, php-format -msgid "Copy of %s" +msgid "" +"You can activate it manually <a href=\"%s\" target=\"_blank\">here</a> or " +"automatically filling the form below:" msgstr "" +"Вы можете активировать его вручную <a href=\"%s\" " +"target=\"_blank\">здесь</a> или автоматически, заполнив форму ниже:" -#: ../../enterprise/include/functions_reporting_csv.php:135 -#: ../../include/functions_reporting.php:1372 -msgid "Inventory Changes" -msgstr "" +#: ../../enterprise/load_html_extra.php:202 +msgid "Auth Key:" +msgstr "Ключ авторизации:" -#: ../../enterprise/include/functions_reporting_csv.php:147 -#: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:24 -#: ../../enterprise/operation/agentes/ver_agente.php:174 -#: ../../enterprise/operation/inventory/inventory.php:112 -#: ../../enterprise/godmode/agentes/configurar_agente.php:33 -#: ../../include/functions_reports.php:620 -#: ../../include/functions_reports.php:621 -#: ../../include/functions_reports.php:623 -#: ../../include/functions_reporting.php:1435 -#: ../../operation/agentes/ver_agente.php:1019 -#: ../../godmode/agentes/configurar_agente.php:500 -msgid "Inventory" -msgstr "Опись" +#: ../../enterprise/load_html_extra.php:210 +#: ../../enterprise/load_html_extra.php:229 +msgid "Online validation" +msgstr "Онлайн валидация" -#: ../../enterprise/include/functions_reporting_csv.php:159 -#: ../../include/functions_reports.php:549 -msgid "Prediction date" -msgstr "Прогнозирование даты" +#: ../../enterprise/load_html_extra.php:222 +msgid "ERROR:" +msgstr "ОШИБКА:" -#: ../../enterprise/include/functions_reporting_csv.php:175 -#: ../../include/functions_reporting.php:3253 -msgid "Projection Graph" -msgstr "Проекционный график" +#: ../../enterprise/load_html_extra.php:222 +msgid "When connecting to licence server." +msgstr "При подключении к серверу лицензий." -#: ../../enterprise/include/functions_reporting_csv.php:186 -#: ../../enterprise/include/functions_reporting_csv.php:234 -#: ../../enterprise/include/functions_reporting_csv.php:255 -#: ../../enterprise/include/functions_reporting_csv.php:312 -#: ../../enterprise/include/functions_reporting_csv.php:572 -#: ../../enterprise/include/functions_services.php:1428 -#: ../../enterprise/include/functions_reporting_pdf.php:944 -#: ../../enterprise/include/functions_reporting_pdf.php:950 -#: ../../enterprise/operation/agentes/policy_view.php:308 -#: ../../enterprise/godmode/agentes/collections.data.php:62 -#: ../../enterprise/godmode/agentes/collections.data.php:101 -#: ../../enterprise/godmode/agentes/collections.data.php:136 -#: ../../enterprise/godmode/agentes/collections.data.php:152 -#: ../../enterprise/godmode/agentes/collections.data.php:167 -#: ../../enterprise/godmode/agentes/collections.data.php:189 -#: ../../enterprise/godmode/agentes/collections.data.php:212 -#: ../../enterprise/godmode/agentes/collections.data.php:233 -#: ../../enterprise/godmode/agentes/collections.data.php:252 -#: ../../enterprise/godmode/agentes/collections.editor.php:39 -#: ../../mobile/operation/modules.php:524 -#: ../../mobile/operation/modules.php:578 -#: ../../mobile/operation/modules.php:648 ../../extensions/insert_data.php:164 -#: ../../extensions/insert_data.php:165 ../../include/functions_graph.php:3025 -#: ../../include/functions_reporting.php:2217 -#: ../../include/functions_reporting.php:2231 -#: ../../include/functions_netflow.php:310 -#: ../../include/functions_reporting_html.php:1194 -#: ../../include/functions_reporting_html.php:1198 -#: ../../include/ajax/module.php:714 ../../operation/search_modules.php:53 -#: ../../operation/agentes/exportdata.php:98 -#: ../../operation/agentes/gis_view.php:194 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/status_monitor.php:964 -msgid "Data" -msgstr "Данные" +#: ../../enterprise/godmode/modules/configure_local_component.php:137 +msgid "Update Local Component" +msgstr "Обновить локальный компонент" -#: ../../enterprise/include/functions_reporting_csv.php:200 -msgid "Serialized data " -msgstr "" +#: ../../enterprise/godmode/modules/configure_local_component.php:139 +msgid "Create Local Component" +msgstr "Создать локальный компонент" -#: ../../enterprise/include/functions_reporting_csv.php:224 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:45 -#: ../../include/functions_reports.php:577 -#: ../../include/functions_reporting.php:1598 -msgid "Exception" -msgstr "Исключение" +#: ../../enterprise/godmode/modules/configure_local_component.php:158 +#: ../../godmode/modules/manage_network_components_form_common.php:46 +#: ../../godmode/alerts/configure_alert_template.php:1169 +msgid "Wizard level" +msgstr "Уровень мастера" -#: ../../enterprise/include/functions_reporting_csv.php:246 -#: ../../include/functions_reporting.php:829 -#: ../../operation/snmpconsole/snmp_statistics.php:127 -#: ../../operation/snmpconsole/snmp_statistics.php:185 -#, php-format -msgid "Top %d" -msgstr "" +#: ../../enterprise/godmode/modules/configure_local_component.php:188 +msgid "Throw unknown events" +msgstr "Сбросить неизвестные события" -#: ../../enterprise/include/functions_reporting_csv.php:267 -#: ../../include/functions_reporting.php:2022 -msgid "Group Report" -msgstr "" +#: ../../enterprise/godmode/modules/configure_local_component.php:288 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:454 +#: ../../godmode/modules/manage_network_components_form_common.php:142 +#: ../../godmode/massive/massive_edit_modules.php:540 +msgid "Dynamic Interval" +msgstr "Динамический интервал" -#: ../../enterprise/include/functions_reporting_csv.php:275 -#: ../../enterprise/include/functions_reporting_csv.php:338 -#: ../../enterprise/include/functions_reporting_csv.php:361 -#: ../../enterprise/include/functions_reporting_csv.php:384 -#: ../../enterprise/include/functions_reporting_csv.php:407 -#: ../../enterprise/include/functions_reporting_csv.php:458 -#: ../../enterprise/include/functions_reporting_csv.php:481 -#: ../../enterprise/include/functions_reporting_csv.php:504 -#: ../../enterprise/include/functions_reporting_csv.php:527 -#: ../../enterprise/include/functions_reporting_csv.php:550 -msgid "Report type" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:276 -#: ../../mobile/operation/groups.php:99 -#: ../../include/functions_reporting.php:5598 -#: ../../include/functions_reporting_html.php:2629 -#: ../../operation/tree.php:271 ../../godmode/db/db_main.php:99 -msgid "Total agents" -msgstr "Общее количество агентов" - -#: ../../enterprise/include/functions_reporting_csv.php:277 -msgid "Uknown agents" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:278 -#: ../../operation/tree.php:272 -msgid "Total modules" -msgstr "Общее число модулей" - -#: ../../enterprise/include/functions_reporting_csv.php:279 -#: ../../mobile/operation/groups.php:115 ../../operation/tree.php:302 -msgid "Normal modules" -msgstr "Обычные модули" - -#: ../../enterprise/include/functions_reporting_csv.php:280 -#: ../../mobile/operation/groups.php:123 ../../operation/tree.php:282 -msgid "Critical modules" -msgstr "Критические модули" - -#: ../../enterprise/include/functions_reporting_csv.php:281 -#: ../../mobile/operation/groups.php:119 ../../operation/tree.php:287 -msgid "Warning modules" -msgstr "Предупреждающие модули" - -#: ../../enterprise/include/functions_reporting_csv.php:282 -#: ../../mobile/operation/groups.php:107 ../../operation/tree.php:292 -msgid "Unknown modules" -msgstr "Неизвестные модули" - -#: ../../enterprise/include/functions_reporting_csv.php:283 -#: ../../mobile/operation/groups.php:111 ../../operation/tree.php:297 -msgid "Not init modules" -msgstr "Нет инициализированных модулей" - -#: ../../enterprise/include/functions_reporting_csv.php:284 -#: ../../include/functions_reporting.php:5439 -msgid "Defined alerts" -msgstr "Определенные оповещения" - -#: ../../enterprise/include/functions_reporting_csv.php:285 -#: ../../include/functions_graph.php:1745 -#: ../../include/functions_reporting.php:5443 -#: ../../include/functions_reporting.php:5464 ../../operation/tree.php:276 -#: ../../operation/tree.php:277 ../../operation/tree.php:278 -msgid "Fired alerts" -msgstr "Запущенные оповещения" - -#: ../../enterprise/include/functions_reporting_csv.php:286 -msgid "Last 8 hours events" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:289 -#: ../../include/functions_reports.php:575 -msgid "Group report" -msgstr "Отчет группы" - -#: ../../enterprise/include/functions_reporting_csv.php:330 -#: ../../enterprise/include/functions_reporting_csv.php:341 -#: ../../include/functions_reports.php:531 -#: ../../include/functions_reporting.php:3500 -msgid "MTTR" -msgstr "среднее время восстановления (MTTR)" - -#: ../../enterprise/include/functions_reporting_csv.php:338 -#: ../../enterprise/include/functions_reporting_csv.php:361 -#: ../../enterprise/include/functions_reporting_csv.php:384 -#: ../../enterprise/include/functions_reporting_csv.php:407 -#: ../../enterprise/include/functions_reporting_csv.php:458 -#: ../../enterprise/include/functions_reporting_csv.php:481 -#: ../../enterprise/include/functions_reporting_csv.php:504 -#: ../../enterprise/include/functions_reporting_csv.php:527 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/include/functions_reporting_pdf.php:745 -#: ../../enterprise/include/functions_reporting_pdf.php:806 -#: ../../enterprise/include/functions_reporting_pdf.php:898 -#: ../../enterprise/operation/services/services.service.php:128 -#: ../../enterprise/operation/services/services.list.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:271 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1542 -#: ../../include/functions_graph.php:4981 -#: ../../include/functions_snmp_browser.php:406 -#: ../../include/functions_reporting_html.php:407 -#: ../../include/functions_reporting_html.php:939 -#: ../../include/functions_reporting_html.php:1764 -#: ../../include/functions_reporting_html.php:2267 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 -#: ../../godmode/alerts/configure_alert_template.php:594 -#: ../../godmode/agentes/module_manager_editor_common.php:580 -#: ../../godmode/setup/setup_visuals.php:565 -#: ../../godmode/massive/massive_edit_modules.php:482 -#: ../../godmode/reporting/visual_console_builder.wizard.php:194 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1163 -msgid "Value" -msgstr "Значение" - -#: ../../enterprise/include/functions_reporting_csv.php:353 -#: ../../enterprise/include/functions_reporting_csv.php:364 -#: ../../include/functions_reports.php:529 -#: ../../include/functions_reporting.php:3503 -msgid "MTBF" -msgstr "Наработка на отказ (MTBF)" - -#: ../../enterprise/include/functions_reporting_csv.php:376 -#: ../../enterprise/include/functions_reporting_csv.php:387 -#: ../../include/functions_reports.php:527 -#: ../../include/functions_reporting.php:3506 -msgid "TTO" -msgstr "Офис Передачи технологий (ТТО)" - -#: ../../enterprise/include/functions_reporting_csv.php:399 -#: ../../enterprise/include/functions_reporting_csv.php:410 -#: ../../include/functions_reports.php:525 -#: ../../include/functions_reporting.php:3509 -msgid "TTRT" -msgstr "TTRT - целевое время оборота маркера" - -#: ../../enterprise/include/functions_reporting_csv.php:420 -#: ../../enterprise/godmode/reporting/mysql_builder.php:142 -#: ../../include/functions_reporting.php:3663 -msgid "SQL" -msgstr "SQL" - -#: ../../enterprise/include/functions_reporting_csv.php:431 -msgid "Illegal query or any other error" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:450 -#: ../../enterprise/include/functions_reporting_csv.php:461 -#: ../../include/functions_reports.php:566 -#: ../../include/functions_reporting.php:3497 -#: ../../include/functions_reporting.php:4224 -msgid "Summatory" -msgstr "Сумма" - -#: ../../enterprise/include/functions_reporting_csv.php:473 -#: ../../enterprise/include/functions_reporting_csv.php:484 -#: ../../enterprise/godmode/modules/configure_local_component.php:268 -#: ../../include/functions_graph.php:692 -#: ../../include/functions_graph.php:3521 -#: ../../include/functions_reports.php:560 -#: ../../include/functions_reporting.php:3491 -#: ../../godmode/agentes/module_manager_editor_common.php:372 +#: ../../enterprise/godmode/modules/configure_local_component.php:294 #: ../../godmode/modules/manage_network_components_form_common.php:148 +#: ../../godmode/agentes/module_manager_editor_common.php:645 +msgid "Advanced options Dynamic Threshold" +msgstr "Дополнительные опции Динамический порог" + +#: ../../enterprise/godmode/modules/configure_local_component.php:299 +#: ../../godmode/modules/manage_network_components_form_common.php:153 +msgid "Dynamic Min. " +msgstr "Динамический мин. " + +#: ../../enterprise/godmode/modules/configure_local_component.php:301 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:458 +#: ../../godmode/modules/manage_network_components_form_common.php:155 +#: ../../godmode/massive/massive_edit_modules.php:544 +msgid "Dynamic Max." +msgstr "Динамический макс." + +#: ../../enterprise/godmode/modules/configure_local_component.php:303 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:460 +#: ../../godmode/modules/manage_network_components_form_common.php:157 +#: ../../godmode/massive/massive_edit_modules.php:546 +msgid "Dynamic Two Tailed: " +msgstr "Динамика 2 не удалась: " + +#: ../../enterprise/godmode/modules/configure_local_component.php:306 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:284 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:463 +#: ../../godmode/modules/manage_network_components_form_common.php:160 +#: ../../godmode/massive/massive_edit_modules.php:549 +#: ../../include/functions_treeview.php:96 +#: ../../include/functions_alerts.php:676 +msgid "Warning status" +msgstr "статус Предостережение" + +#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/modules/configure_local_component.php:342 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:288 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:337 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:467 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:536 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:750 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +#: ../../godmode/modules/manage_network_components_form_common.php:196 +#: ../../godmode/modules/manage_network_components_form_wizard.php:383 +#: ../../godmode/modules/manage_network_components_form_wizard.php:405 +#: ../../godmode/massive/massive_edit_modules.php:553 +#: ../../godmode/massive/massive_edit_modules.php:622 +#: ../../godmode/massive/massive_edit_modules.php:829 +#: ../../godmode/alerts/configure_alert_template.php:889 +#: ../../include/functions_reporting_html.php:4708 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:673 +#: ../../include/lib/Dashboard/Widgets/top_n.php:281 +msgid "Min." +msgstr "Мин." + +#: ../../enterprise/godmode/modules/configure_local_component.php:316 +#: ../../enterprise/godmode/modules/configure_local_component.php:351 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:303 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:352 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:482 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:551 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:752 +#: ../../godmode/modules/manage_network_components_form_common.php:170 +#: ../../godmode/modules/manage_network_components_form_common.php:205 +#: ../../godmode/modules/manage_network_components_form_wizard.php:385 +#: ../../godmode/modules/manage_network_components_form_wizard.php:414 +#: ../../godmode/agentes/module_manager_editor_common.php:403 +#: ../../godmode/agentes/module_manager_editor_common.php:456 +#: ../../godmode/massive/massive_edit_modules.php:568 +#: ../../godmode/massive/massive_edit_modules.php:637 +#: ../../godmode/massive/massive_edit_modules.php:831 +#: ../../godmode/alerts/configure_alert_template.php:901 +#: ../../include/functions_reporting_html.php:4709 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 +#: ../../include/functions_alerts.php:672 +#: ../../include/lib/Dashboard/Widgets/top_n.php:280 +msgid "Max." +msgstr "Макс." + +#: ../../enterprise/godmode/modules/configure_local_component.php:325 +#: ../../enterprise/godmode/modules/configure_local_component.php:360 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:318 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:367 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:497 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:566 +#: ../../godmode/modules/manage_network_components_form_common.php:179 +#: ../../godmode/modules/manage_network_components_form_common.php:214 +#: ../../godmode/agentes/module_manager_editor_common.php:419 +#: ../../godmode/agentes/module_manager_editor_common.php:472 +#: ../../godmode/massive/massive_edit_modules.php:583 +#: ../../godmode/massive/massive_edit_modules.php:652 +#: ../../include/functions_treeview.php:90 +#: ../../include/functions_treeview.php:102 +msgid "Str." +msgstr "Ул." + +#: ../../enterprise/godmode/modules/configure_local_component.php:341 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:333 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532 +#: ../../godmode/modules/manage_network_components_form_common.php:195 +#: ../../godmode/massive/massive_edit_modules.php:618 +#: ../../include/functions_treeview.php:108 +#: ../../include/functions_alerts.php:677 +msgid "Critical status" +msgstr "Критический статус" + +#: ../../enterprise/godmode/modules/configure_local_component.php:372 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 +#: ../../godmode/modules/manage_network_components_form_common.php:226 +#: ../../godmode/agentes/module_manager_editor_common.php:734 +#: ../../godmode/massive/massive_edit_modules.php:874 +msgid "FF threshold" +msgstr "FF порог" + +#: ../../enterprise/godmode/modules/configure_local_component.php:375 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:235 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:863 +#: ../../godmode/modules/manage_network_components_form_common.php:229 +#: ../../godmode/agentes/module_manager_editor_common.php:736 +#: ../../godmode/massive/massive_edit_modules.php:938 +msgid "Keep counters" +msgstr "Продолжить ведение счетчиков" + +#: ../../enterprise/godmode/modules/configure_local_component.php:383 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:822 +#: ../../godmode/modules/manage_network_components_form_common.php:243 +#: ../../godmode/agentes/module_manager_editor_common.php:753 +#: ../../godmode/massive/massive_edit_modules.php:882 +#: ../../godmode/massive/massive_edit_modules.php:897 +msgid "All state changing" +msgstr "Все состояния изменяются" + +#: ../../enterprise/godmode/modules/configure_local_component.php:398 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:274 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832 +#: ../../godmode/modules/manage_network_components_form_common.php:259 +#: ../../godmode/agentes/module_manager_editor_common.php:775 +#: ../../godmode/massive/massive_edit_modules.php:881 +#: ../../godmode/massive/massive_edit_modules.php:907 +msgid "Each state changing" +msgstr "Каждое состояние изменяется" + +#: ../../enterprise/godmode/modules/configure_local_component.php:399 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:275 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:833 +#: ../../godmode/modules/manage_network_components_form_common.php:260 +#: ../../godmode/agentes/module_manager_editor_common.php:776 +#: ../../godmode/massive/massive_edit_modules.php:908 +msgid "To normal" +msgstr "в нормальное состояние" + +#: ../../enterprise/godmode/modules/configure_local_component.php:408 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:289 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:843 +#: ../../godmode/modules/manage_network_components_form_common.php:269 +#: ../../godmode/agentes/module_manager_editor_common.php:790 +#: ../../godmode/massive/massive_edit_modules.php:918 +msgid "To warning" +msgstr "К предостережению" + +#: ../../enterprise/godmode/modules/configure_local_component.php:417 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:853 +#: ../../godmode/modules/manage_network_components_form_common.php:278 +#: ../../godmode/agentes/module_manager_editor_common.php:804 +#: ../../godmode/massive/massive_edit_modules.php:928 +msgid "To critical" +msgstr "К критическому" + +#: ../../enterprise/godmode/modules/configure_local_component.php:428 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:888 +#: ../../enterprise/include/functions_reporting_csv.php:2033 +#: ../../godmode/modules/manage_network_components_form_common.php:288 +#: ../../godmode/agentes/module_manager_editor_common.php:490 +#: ../../godmode/massive/massive_edit_modules.php:986 +#: ../../include/functions_reporting.php:3434 +msgid "Historical data" +msgstr "Статистические данные" + +#: ../../enterprise/godmode/modules/configure_local_component.php:431 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 +#: ../../godmode/agentes/module_manager_editor_common.php:834 +#: ../../godmode/massive/massive_edit_modules.php:972 +msgid "FF timeout" +msgstr "FF время вышло" + +#: ../../enterprise/godmode/modules/configure_local_component.php:439 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:886 +#: ../../godmode/massive/massive_edit_modules.php:982 +msgid "" +"Timeout in secs from start of flip flop counting. If this value is exceeded, " +"FF counter is reset. Set to 0 for no timeout." +msgstr "" +"Время окончания в секундах от начала действия счетчика флип-флопа (FF). Если " +"это значение превышено, счетчик сбрасывается и устанавливается вновь. " +"Установите его на 0 чтобы время не истекло." + +#: ../../enterprise/godmode/modules/configure_local_component.php:440 +msgid "This value can be set only in the async modules." +msgstr "Это значение может быть установлено только в асинхронных модулях." + +#: ../../enterprise/godmode/modules/configure_local_component.php:442 +#: ../../enterprise/include/functions_reporting_csv.php:1099 +#: ../../godmode/modules/manage_network_components_form_common.php:291 +#: ../../godmode/agentes/module_manager_editor_common.php:618 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:474 +#: ../../include/functions_reports.php:731 +#: ../../include/functions_reporting.php:5572 msgid "Min. Value" msgstr "Минимальное значение" -#: ../../enterprise/include/functions_reporting_csv.php:496 -#: ../../enterprise/include/functions_reporting_csv.php:507 -#: ../../enterprise/godmode/modules/configure_local_component.php:273 -#: ../../include/functions_graph.php:690 -#: ../../include/functions_graph.php:3520 -#: ../../include/functions_reports.php:558 -#: ../../include/functions_reporting.php:3488 -#: ../../godmode/agentes/module_manager_editor_common.php:376 -#: ../../godmode/modules/manage_network_components_form_common.php:150 +#: ../../enterprise/godmode/modules/configure_local_component.php:442 +#: ../../godmode/modules/manage_network_components_form_common.php:292 +msgid "Any value below this number is discarted" +msgstr "Любое значение ниже этого числа отбрасывается" + +#: ../../enterprise/godmode/modules/configure_local_component.php:447 +#: ../../enterprise/include/functions_reporting_csv.php:1154 +#: ../../godmode/modules/manage_network_components_form_common.php:293 +#: ../../godmode/agentes/module_manager_editor_common.php:622 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:486 +#: ../../include/functions_reports.php:727 +#: ../../include/functions_reporting.php:5568 msgid "Max. Value" msgstr "Максимальное значение" -#: ../../enterprise/include/functions_reporting_csv.php:519 -#: ../../enterprise/include/functions_reporting_csv.php:530 -#: ../../include/functions_reporting.php:3494 -msgid "AVG. Value" -msgstr "СРД. значение" - -#: ../../enterprise/include/functions_reporting_csv.php:542 -#: ../../enterprise/include/functions_reporting_csv.php:553 -#: ../../include/functions_reporting.php:2991 -msgid "Monitor Report" -msgstr "Отчёт монитора" - -#: ../../enterprise/include/functions_reporting_csv.php:550 -msgid "% OK" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:550 -msgid "% Wrong" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:564 -msgid "Simple Graph" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:586 -#: ../../enterprise/godmode/services/services.service.php:290 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:111 -#: ../../include/functions_reports.php:536 -#: ../../include/functions_reporting.php:459 -msgid "S.L.A." -msgstr "Соглашения об уровне обслуживания (SLA)" - -#: ../../enterprise/include/functions_reporting_csv.php:595 -msgid "% Limit" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:635 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:271 -#: ../../operation/search_reports.php:38 -#: ../../operation/reporting/custom_reporting.php:38 -#: ../../godmode/reporting/reporting_builder.php:535 -msgid "Report name" -msgstr "Название отчёта" - -#: ../../enterprise/include/functions_reporting_csv.php:637 -#: ../../enterprise/include/functions_reporting_pdf.php:2079 -#: ../../enterprise/include/functions_netflow_pdf.php:157 -msgid "Generated" -msgstr "Сгенерировано" - -#: ../../enterprise/include/functions_reporting_csv.php:661 -#: ../../include/functions.php:215 -msgid "." -msgstr "." - -#: ../../enterprise/include/functions_services.php:23 -msgid "Service does not exist." -msgstr "Сервис не существует." - -#: ../../enterprise/include/functions_services.php:30 -msgid "Module store the service does not exist." -msgstr "Модуль запаса сервиса не существует." - -#: ../../enterprise/include/functions_services.php:35 -msgid "Module store SLA service does not exist." -msgstr "Модуль запаса SLA сервиса не существует." - -#: ../../enterprise/include/functions_services.php:41 -msgid "Agent store the service does not exist." -msgstr "Агент запаса сервиса не существует." - -#: ../../enterprise/include/functions_services.php:47 -msgid "Agent store SLA service does not exist." -msgstr "Агент запаса SLA сервиса не существует." - -#: ../../enterprise/include/functions_services.php:57 -msgid "Alert critical SLA service does not exist." -msgstr "Оповещение критического SLA сервиса не существует." - -#: ../../enterprise/include/functions_services.php:68 -msgid "Alert warning service does not exist." -msgstr "Оповещение предупреждающего SLA сервиса не существует." - -#: ../../enterprise/include/functions_services.php:79 -msgid "Alert critical service does not exist." -msgstr "Оповещение критического сервиса не существует." - -#: ../../enterprise/include/functions_services.php:90 -msgid "Alert unknown service does not exist." -msgstr "Оповещение неизвестного сервиса не существует." - -#: ../../enterprise/include/functions_services.php:328 -#, php-format -msgid "Module automatic create for the service %s" -msgstr "Модули автоматически создаются для сервиса %s" - -#: ../../enterprise/include/functions_services.php:1261 -msgid "Critical (Alert)" -msgstr "Критическое (Оповещение)" - -#: ../../enterprise/include/functions_services.php:1271 -msgid "Unknow" -msgstr "Неизвестное" - -#: ../../enterprise/include/functions_services.php:1391 -msgid "There are no service elements defined" -msgstr "Здесь нет определенных элементов сервиса" - -#: ../../enterprise/include/functions_services.php:1417 -msgid "Weight Critical" -msgstr "Плотность Критичесности" - -#: ../../enterprise/include/functions_services.php:1418 -msgid "Weight Warning" -msgstr "Плотность Предупреждений" - -#: ../../enterprise/include/functions_services.php:1419 -msgid "Weight Unknown" -msgstr "Плотность Неизвесности" - -#: ../../enterprise/include/functions_services.php:1420 -msgid "Weight Ok" -msgstr "Плотность Ок" - -#: ../../enterprise/include/functions_services.php:1446 -#: ../../enterprise/include/functions_services.php:1461 -#: ../../enterprise/include/functions_services.php:1496 -msgid "Nonexistent. This element should be deleted" -msgstr "" - -#: ../../enterprise/include/functions_services.php:1569 -#: ../../include/functions_ui.php:3646 -msgid "Snapshot view" -msgstr "Просмотр снимков" - -#: ../../enterprise/include/functions_services.php:1614 -#: ../../enterprise/include/functions_services.php:1619 -#: ../../enterprise/include/functions_services.php:1623 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:386 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:641 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:646 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:651 -#: ../../mobile/operation/modules.php:454 -#: ../../mobile/operation/modules.php:459 -#: ../../mobile/operation/modules.php:464 -#: ../../include/functions_modules.php:1853 -#: ../../include/functions_modules.php:1857 -#: ../../include/functions_modules.php:1861 -#: ../../operation/search_modules.php:124 -#: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:138 -#: ../../operation/agentes/status_monitor.php:1139 -#: ../../operation/agentes/status_monitor.php:1144 -#: ../../operation/agentes/status_monitor.php:1149 -msgid "Last status" -msgstr "Последний статус" - -#: ../../enterprise/include/functions_services.php:1647 -#: ../../enterprise/godmode/services/services.elements.php:133 -msgid "Edit service elements" -msgstr "Редактировать элементы сервиса" - -#: ../../enterprise/include/functions_services.php:1661 -msgid "Delete service element" -msgstr "Удалить элемент сервиса" - -#: ../../enterprise/include/functions_services.php:1703 -msgid "FAIL" -msgstr "СБОЙ" - -#: ../../enterprise/include/functions_reporting_pdf.php:51 -#: ../../enterprise/include/functions_netflow_pdf.php:45 -msgid "Automated Pandora FMS report for user defined report" -msgstr "" -"Автоматизированный отчет Pandora FMS для определенного отчета пользователя" - -#: ../../enterprise/include/functions_reporting_pdf.php:601 -#: ../../include/functions_reporting_html.php:848 -#, php-format -msgid "%s in %s : NORMAL" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:609 -#: ../../include/functions_reporting_html.php:856 -#, php-format -msgid "%s in %s : CRITICAL" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:617 -#: ../../include/functions_reporting_html.php:864 -#, php-format -msgid "%s in %s : WARNING" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:625 -#: ../../include/functions_reporting_html.php:872 -#, php-format -msgid "%s in %s : UNKNOWN" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:633 -#: ../../include/functions_reporting_html.php:880 -#, php-format -msgid "%s in %s : ALERTS FIRED" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:702 -#: ../../include/functions_reporting_html.php:1053 -#: ../../godmode/servers/manage_recontask_form.php:250 -msgid "Defined" -msgstr "Определено" - -#: ../../enterprise/include/functions_reporting_pdf.php:703 -#: ../../enterprise/include/functions_reporting_pdf.php:1037 -#: ../../enterprise/include/functions_reporting_pdf.php:1081 -#: ../../enterprise/include/functions_reporting_pdf.php:1126 -#: ../../mobile/operation/alerts.php:38 -#: ../../include/functions_reporting_html.php:1055 -#: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:1360 -#: ../../include/functions_reporting_html.php:1396 -#: ../../operation/snmpconsole/snmp_view.php:162 -#: ../../operation/snmpconsole/snmp_view.php:821 -#: ../../operation/agentes/alerts_status.functions.php:74 -msgid "Fired" -msgstr "Запущено" - -#: ../../enterprise/include/functions_reporting_pdf.php:718 -#: ../../include/functions_reporting_html.php:1068 -#, php-format -msgid "Last %s" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:773 -#: ../../enterprise/include/functions_reporting_pdf.php:865 -#: ../../enterprise/include/functions_reporting_pdf.php:921 -#: ../../enterprise/include/functions_reporting_pdf.php:1914 -#: ../../include/functions_reporting_html.php:447 -#: ../../include/functions_reporting_html.php:980 -#: ../../include/functions_reporting_html.php:1715 -#: ../../include/functions_reporting_html.php:1843 -msgid "Min Value" -msgstr "Минимальное значение" - -#: ../../enterprise/include/functions_reporting_pdf.php:774 -#: ../../enterprise/include/functions_reporting_pdf.php:866 -#: ../../enterprise/include/functions_reporting_pdf.php:922 -#: ../../enterprise/include/functions_reporting_pdf.php:1915 -#: ../../include/functions_reporting_html.php:448 -#: ../../include/functions_reporting_html.php:981 -#: ../../include/functions_reporting_html.php:1716 -#: ../../include/functions_reporting_html.php:1844 -msgid "Average Value" -msgstr "Среднее значение" - -#: ../../enterprise/include/functions_reporting_pdf.php:775 -#: ../../enterprise/include/functions_reporting_pdf.php:867 -#: ../../enterprise/include/functions_reporting_pdf.php:923 -#: ../../enterprise/include/functions_reporting_pdf.php:1916 -#: ../../include/functions_reporting_html.php:449 -#: ../../include/functions_reporting_html.php:982 -#: ../../include/functions_reporting_html.php:1718 -#: ../../include/functions_reporting_html.php:1846 -msgid "Max Value" -msgstr "Максимальное значение" - -#: ../../enterprise/include/functions_reporting_pdf.php:1035 -#: ../../enterprise/include/functions_reporting_pdf.php:1079 -#: ../../enterprise/include/functions_reporting_pdf.php:1124 -#: ../../enterprise/operation/agentes/policy_view.php:195 -#: ../../enterprise/godmode/policies/policy_alerts.php:239 -#: ../../enterprise/godmode/policies/policy_alerts.php:438 -#: ../../mobile/operation/alerts.php:270 -#: ../../extensions/agents_alerts.php:343 -#: ../../include/functions_treeview.php:287 -#: ../../include/functions_reporting_html.php:1320 -#: ../../include/functions_reporting_html.php:1358 -#: ../../include/functions_reporting_html.php:1394 -#: ../../operation/agentes/alerts_status.php:421 -#: ../../operation/agentes/alerts_status.php:461 -#: ../../operation/agentes/alerts_status.php:494 -#: ../../operation/agentes/alerts_status.php:527 -#: ../../operation/servers/recon_view.php:101 -#: ../../operation/search_alerts.php:45 -#: ../../godmode/alerts/alert_list.list.php:400 -#: ../../godmode/alerts/alert_view.php:75 -#: ../../godmode/alerts/alert_list.builder.php:83 -msgid "Template" -msgstr "Шаблон" - -#: ../../enterprise/include/functions_reporting_pdf.php:1176 -#: ../../enterprise/include/functions_reporting_pdf.php:1456 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 -#: ../../include/functions_reporting_html.php:616 -#: ../../include/functions_reporting_html.php:1094 -#: ../../operation/snmpconsole/snmp_view.php:508 -msgid "Count" -msgstr "Подсчет" - -#: ../../enterprise/include/functions_reporting_pdf.php:1197 -#: ../../enterprise/include/functions_reporting_pdf.php:1345 -#: ../../enterprise/include/functions_reporting_pdf.php:1480 -#: ../../mobile/operation/events.php:242 -#: ../../include/functions_reporting.php:4765 -#: ../../include/functions_reporting.php:4879 -#: ../../include/functions_reporting.php:5008 -#: ../../include/functions_reporting_html.php:502 -#: ../../include/functions_reporting_html.php:635 -#: ../../include/functions_reporting_html.php:1114 -#: ../../include/functions_events.php:913 -#: ../../include/functions_events.php:2397 ../../include/ajax/events.php:446 -#: ../../operation/events/events.build_table.php:203 -msgid "New event" -msgstr "Новое событие" - -#: ../../enterprise/include/functions_reporting_pdf.php:1201 -#: ../../enterprise/include/functions_reporting_pdf.php:1349 -#: ../../enterprise/include/functions_reporting_pdf.php:1484 -#: ../../mobile/operation/events.php:246 -#: ../../include/functions_reporting.php:4769 -#: ../../include/functions_reporting.php:4883 -#: ../../include/functions_reporting.php:5012 -#: ../../include/functions_reporting_html.php:506 -#: ../../include/functions_reporting_html.php:639 -#: ../../include/functions_reporting_html.php:1118 -#: ../../include/functions_events.php:917 -#: ../../include/functions_events.php:2401 ../../include/ajax/events.php:450 -#: ../../operation/events/events.build_table.php:207 -#: ../../operation/events/events.php:591 ../../operation/events/events.php:620 -#: ../../operation/events/events.php:621 ../../operation/events/events.php:841 -#: ../../operation/events/events.php:846 ../../operation/events/events.php:847 -msgid "Event validated" -msgstr "Событие подтверждено" - -#: ../../enterprise/include/functions_reporting_pdf.php:1205 -#: ../../enterprise/include/functions_reporting_pdf.php:1353 -#: ../../enterprise/include/functions_reporting_pdf.php:1488 -#: ../../mobile/operation/events.php:250 -#: ../../include/functions_reporting.php:4773 -#: ../../include/functions_reporting.php:4887 -#: ../../include/functions_reporting.php:5016 -#: ../../include/functions_reporting_html.php:510 -#: ../../include/functions_reporting_html.php:643 -#: ../../include/functions_reporting_html.php:1122 -#: ../../include/functions_events.php:921 -#: ../../include/functions_events.php:2405 ../../include/ajax/events.php:454 -#: ../../operation/events/events.build_table.php:211 -#: ../../operation/events/events.php:653 ../../operation/events/events.php:691 -#: ../../operation/events/events.php:692 ../../operation/events/events.php:851 -#: ../../operation/events/events.php:865 ../../operation/events/events.php:866 -msgid "Event in process" -msgstr "Событие активно" - -#: ../../enterprise/include/functions_reporting_pdf.php:1325 -#: ../../enterprise/include/functions_reporting_pdf.php:1460 -#: ../../include/functions_reporting.php:4735 -#: ../../include/functions_reporting_html.php:486 -#: ../../include/functions_reporting_html.php:1098 -msgid "Val. by" -msgstr "Утв. по" - -#: ../../enterprise/include/functions_reporting_pdf.php:1377 -#: ../../include/functions_reporting.php:4792 -#: ../../include/functions_reporting_html.php:529 -#: ../../include/functions_events.php:2650 -msgid "Pandora System" -msgstr "Система Pandora" - -#: ../../enterprise/include/functions_reporting_pdf.php:1400 -#: ../../include/functions_reporting_html.php:553 -msgid "Events by agent" -msgstr "События по агенту" - -#: ../../enterprise/include/functions_reporting_pdf.php:1411 -#: ../../include/functions_reporting_html.php:565 -msgid "Events by user validator" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1422 -#: ../../enterprise/include/functions_reporting_pdf.php:1554 -#: ../../include/functions_reporting_html.php:1171 -#: ../../include/functions_reporting_html.php:2721 -msgid "Events by severity" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1433 -#: ../../include/functions_reporting_html.php:589 -msgid "Events validated vs unvalidated" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1543 -#: ../../include/functions_reporting_html.php:1159 -msgid "Events validated by user" -msgstr "События, утвержденные пользователем" - -#: ../../enterprise/include/functions_reporting_pdf.php:1565 -#: ../../include/functions_reporting_html.php:1183 -#: ../../operation/events/event_statistics.php:65 -msgid "Amount events validated" -msgstr "Количество утвержденных событий" - -#: ../../enterprise/include/functions_reporting_pdf.php:1887 -#: ../../include/functions_reporting_html.php:1658 -msgid "# Checks" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1888 -#: ../../include/functions_reporting_html.php:1659 -msgid "# Failed" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1889 -#: ../../include/functions_reporting_html.php:1660 -msgid "% Fail" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1890 -#: ../../include/functions_reporting_html.php:1661 -msgid "Poling time" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1891 -#: ../../include/functions_reporting_html.php:1662 -msgid "Time unavailable" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1892 -#: ../../include/functions_reporting_html.php:1663 -msgid "% Ok" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2024 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:290 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1560 -#: ../../include/functions_reporting_html.php:1459 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1185 -msgid "Not OK" -msgstr "Не ОК" - -#: ../../enterprise/include/functions_reporting_pdf.php:2082 -msgid "Report date" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2086 -#: ../../enterprise/include/functions_reporting_pdf.php:2172 -#: ../../enterprise/include/functions_reporting_pdf.php:2210 -#: ../../operation/agentes/gis_view.php:182 -#: ../../godmode/agentes/planned_downtime.list.php:143 -msgid "To" -msgstr "Кому" - -#: ../../enterprise/include/functions_reporting_pdf.php:2089 -#: ../../operation/reporting/reporting_viewer.php:202 -msgid "Items period before" -msgstr "Элементы периода до" - -#: ../../enterprise/include/functions_reporting_pdf.php:2108 -#: ../../enterprise/include/functions_netflow_pdf.php:56 -msgid "Contents" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2178 -#: ../../enterprise/include/functions_reporting_pdf.php:2216 -#: ../../include/functions_treeview.php:215 -#: ../../include/functions_reporting_html.php:70 -#: ../../include/functions_reporting_html.php:2543 -#: ../../operation/agentes/ver_agente.php:1013 -msgid "Last data" -msgstr "Последние данные" - -#: ../../enterprise/include/functions_reporting_pdf.php:2234 -msgid "SO" -msgstr "SO" - -#: ../../enterprise/include/functions_reporting_pdf.php:2275 -msgid "There are no modules." -msgstr "Здесь нет модулей." - -#: ../../enterprise/include/functions_reporting_pdf.php:2282 -#: ../../enterprise/godmode/alerts/alert_events_list.php:563 -#: ../../enterprise/godmode/alerts/alert_events_list.php:604 -#: ../../include/functions_reporting_html.php:1517 -#: ../../include/functions_reporting_html.php:2268 -#: ../../godmode/alerts/alert_list.list.php:528 -#: ../../godmode/alerts/alert_list.list.php:603 -#: ../../godmode/alerts/configure_alert_action.php:142 -#: ../../godmode/alerts/alert_view.php:391 -#: ../../godmode/alerts/alert_list.builder.php:132 -msgid "Threshold" -msgstr "Порог" - -#: ../../enterprise/include/functions_visual_map.php:179 -#: ../../enterprise/include/functions_visual_map.php:232 -msgid "Crit:" -msgstr "Крит:" - -#: ../../enterprise/include/functions_visual_map.php:181 -#: ../../enterprise/include/functions_visual_map.php:234 -msgid "Warn:" -msgstr "Пред:" - -#: ../../enterprise/include/functions_visual_map.php:183 -#: ../../enterprise/include/functions_visual_map.php:236 -msgid "Ok:" -msgstr "Ок:" - -#: ../../enterprise/include/functions_visual_map.php:185 -#: ../../enterprise/include/functions_visual_map.php:238 -msgid "Value:" -msgstr "Значение:" - -#: ../../enterprise/include/functions_visual_map.php:535 -msgid "None of the services was added" -msgstr "" - -#: ../../enterprise/include/functions_visual_map.php:538 -#, php-format -msgid "%d services couldn't be added" -msgstr "" - -#: ../../enterprise/include/functions_visual_map.php:542 -#: ../../include/functions_ui.php:232 -msgid "Success" -msgstr "Успешно" - -#: ../../enterprise/include/functions_visual_map.php:546 -msgid "There was an error retrieving the visual map information" -msgstr "" - -#: ../../enterprise/include/functions_visual_map.php:550 -msgid "No services selected" -msgstr "" - -#: ../../enterprise/include/functions_license.php:37 -msgid "Client" -msgstr "" - -#: ../../enterprise/include/functions_license.php:37 -msgid "Trial" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:605 -#, php-format -msgid "Edit node %s" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:606 -msgid "Holding Area" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:609 -msgid "Set as children" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:610 -msgid "Set parent" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:611 -#: ../../enterprise/include/functions_networkmap_enterprise.php:617 -msgid "Abort the action of set relationship" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:613 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1641 -msgid "Add node" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:614 -msgid "Set center" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:616 -msgid "Refresh Holding area" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1072 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1552 -msgid "Circle" -msgstr "Круг" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1073 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1553 -msgid "Square" -msgstr "Квадрат" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1074 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1554 -msgid "Rhombus" -msgstr "Ромб" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1079 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1550 -msgid "Shape" -msgstr "Форма" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1080 -msgid "Radius" -msgstr "Радиус" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1081 -msgid "Color" -msgstr "Цвет" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1083 -msgid "Network map linked" -msgstr "Сетевая карта связана" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1154 -msgid "Show modules:" -msgstr "Показать модули:" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1229 -msgid "Copy of " -msgstr "Копия " - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1451 -msgid "Open Minimap" -msgstr "Открыть мини-карту" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1541 -msgid "Edit node" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1564 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1704 -msgid "name fictional node" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1565 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1705 -msgid "Networkmap to link" -msgstr "Соединить с сетевой картой" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1571 -msgid "Update fictional node" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1574 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1575 -msgid "Node options" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1584 -msgid "Node source" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1586 -msgid "Interface source" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1587 -msgid "Interface Target" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1589 -msgid "Node target" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1590 -msgid "E." -msgstr "Е." - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1627 -msgid "There are not relations" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1635 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1636 -msgid "Relations" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1660 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1665 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1666 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1689 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1694 -#: ../../enterprise/include/functions_networkmap_enterprise.php:1715 -msgid "Add agent node" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1693 -msgid "Add agent node (filter by group)" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1711 -msgid "Add fictional node" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:1714 -msgid "Add fictional point" -msgstr "Добавить вымышленный пункт" - -#: ../../enterprise/include/functions_metaconsole.php:784 -msgid "Group does not exist. Agent " -msgstr "" - -#: ../../enterprise/include/functions_metaconsole.php:790 -msgid "Created group in destination DB" -msgstr "" - -#: ../../enterprise/include/functions_metaconsole.php:794 -msgid "Error creating group. Agent " -msgstr "" - -#: ../../enterprise/include/functions_metaconsole.php:800 -msgid "Group already exists in destination DB" -msgstr "" - -#: ../../enterprise/include/functions_collection.php:42 -#, php-format -msgid "Fail create the directory: %s" -msgstr "Сбой создания папки: %s" - -#: ../../enterprise/include/functions_collection.php:69 -msgid "No files in collection" -msgstr "Нет файлов в сборнике" - -#: ../../enterprise/include/functions_collection.php:77 -msgid "File of collection is bigger than the limit (" -msgstr "Файл сборника больше чем лимит (" - -#: ../../enterprise/include/functions_collection.php:129 -#: ../../enterprise/godmode/agentes/collections.data.php:104 -#: ../../enterprise/godmode/agentes/collections.data.php:214 -#: ../../enterprise/godmode/agentes/collections.data.php:254 -#: ../../enterprise/godmode/agentes/collections.editor.php:46 -#: ../../enterprise/godmode/agentes/collections.editor.php:345 -#: ../../enterprise/godmode/agentes/collections.editor.php:370 -#: ../../operation/integria_incidents/incident.php:66 -msgid "Files" -msgstr "Файлы" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:249 -msgid "Error accesing to API, auth error." -msgstr "" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:253 -msgid "Error accesing to API." -msgstr "" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:257 -msgid "Error could not resolve the host." -msgstr "" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:268 -msgid "Database credentials not found" -msgstr "Учетные данные базы данных не найдены" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:272 -msgid "Error connecting to the specified host" -msgstr "Ошибка подключения к указанному хосту" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:276 -msgid "Connected to the host, but cannot found the specified database" -msgstr "Подключен к хосту, но не может найти указанную базу данных" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:287 -#: ../../enterprise/include/ajax/metaconsole.ajax.php:311 -msgid "Server connection failed" -msgstr "Соединение с сервером утеряно" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:291 -msgid "" -"\"Translate string\" extension is missed in the server. This extension is " -"mandatory to be configured on metaconsole." -msgstr "" -"Расширение \"Перевести строку\" пропущено на сервере. Это расширение " -"обязательным должно быть настроено на мета консоли." - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:295 -msgid "" -"Server name doesnt match. Check the node server name and configure the same " -"one on metasetup" -msgstr "" -"Имя сервера не совпадает. Проверьте имя узла сервера и настройку одной и той " -"же мета установки" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:306 -msgid "Last event replication" -msgstr "Последнее событие репликации" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:320 -msgid "Agent cache activated" -msgstr "" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:324 -msgid "Agent cache failed" -msgstr "" - -#: ../../enterprise/include/functions_local_components.php:138 -#: ../../enterprise/godmode/agentes/collections.data.php:163 -msgid "Empty name" -msgstr "Пустое имя" - -#: ../../enterprise/include/functions_local_components.php:142 -msgid "Empty configuration" -msgstr "Пустая конфигурация" - -#: ../../enterprise/include/functions_local_components.php:146 -msgid "Empty OS" -msgstr "Пустой OS" - -#: ../../enterprise/include/functions_local_components.php:276 -#: ../../include/functions_alerts.php:951 -#: ../../include/functions_network_components.php:503 -msgid "Copy of" -msgstr "Копия" - -#: ../../enterprise/include/functions_netflow_pdf.php:160 -#: ../../enterprise/operation/log/log_viewer.php:207 -msgid "Start date" -msgstr "Дата начала" - -#: ../../enterprise/include/functions_netflow_pdf.php:163 -#: ../../enterprise/operation/log/log_viewer.php:215 -#: ../../operation/agentes/exportdata.php:310 -msgid "End date" -msgstr "Дата окончания" - -#: ../../enterprise/include/functions_log.php:303 -#: ../../enterprise/include/functions_log.php:318 -msgid "Lines" -msgstr "Строки" - -#: ../../enterprise/operation/menu.php:101 -msgid "Network console" -msgstr "Сетевая консоль" - -#: ../../enterprise/operation/menu.php:112 -msgid "Custom SQL" -msgstr "Пользовательские SQL" - -#: ../../enterprise/operation/menu.php:120 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:79 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:22 -#: ../../include/functions_menu.php:506 -msgid "SNMP trap editor" -msgstr "SNMP редактор прерывания" - -#: ../../enterprise/operation/menu.php:129 -#: ../../enterprise/operation/log/log_viewer.php:145 -msgid "Log viewer" -msgstr "Просмотор журнала" - -#: ../../enterprise/operation/log/log_viewer.php:231 -#: ../../enterprise/operation/reporting/custom_reporting.php:52 -#: ../../include/graphs/functions_flot.php:221 -#: ../../godmode/agentes/planned_downtime.list.php:506 -#: ../../godmode/modules/manage_network_templates.php:207 -msgid "Export to CSV" -msgstr "Экспорт в CSV" - -#: ../../enterprise/operation/log/log_viewer.php:340 -msgid "The start date cannot be greater than the end date" -msgstr "" - -#: ../../enterprise/operation/log/log_viewer.php:418 -#: ../../enterprise/operation/agentes/agent_inventory.php:242 -#: ../../enterprise/operation/inventory/inventory.php:251 -#: ../../include/functions_reporting.php:1476 -#: ../../godmode/reporting/reporting_builder.php:725 -msgid "No data found." -msgstr "Данные не найдены." - -#: ../../enterprise/operation/services/services.service.php:37 -#: ../../enterprise/operation/services/services.service_map.php:44 -#: ../../enterprise/godmode/services/services.service.php:126 -#: ../../enterprise/godmode/services/services.service.php:153 -msgid "Not found" -msgstr "Не найдено" - -#: ../../enterprise/operation/services/services.service.php:54 -#: ../../enterprise/operation/services/services.service_map.php:63 -#: ../../enterprise/godmode/services/services.elements.php:96 -#: ../../enterprise/godmode/services/services.service.php:170 -msgid "Config Service" -msgstr "Сервис конфигурации" - -#: ../../enterprise/operation/services/services.service.php:59 -#: ../../enterprise/operation/services/services.service_map.php:69 -#: ../../enterprise/godmode/services/services.elements.php:102 -#: ../../enterprise/godmode/services/services.service.php:175 -msgid "Config Elements" -msgstr "Конфигурация Элементов" - -#: ../../enterprise/operation/services/services.service.php:67 -#: ../../enterprise/operation/services/services.service_map.php:77 -#: ../../enterprise/godmode/services/services.elements.php:110 -#: ../../enterprise/godmode/services/services.service.php:182 -msgid "View Service" -msgstr "Просмотр сервиса" - -#: ../../enterprise/operation/services/services.service.php:73 -#: ../../enterprise/operation/services/services.service_map.php:83 -#: ../../enterprise/godmode/services/services.elements.php:117 -#: ../../enterprise/godmode/services/services.service.php:188 -msgid "Service map" -msgstr "Карта сервиса" - -#: ../../enterprise/operation/services/services.service.php:80 -#: ../../enterprise/operation/services/services.service_map.php:90 -#: ../../enterprise/operation/services/services.service_map.php:95 -msgid "Service Map" -msgstr "Карта обслуживания" - -#: ../../enterprise/operation/services/services.service.php:93 -msgid "No Services" -msgstr "" - -#: ../../enterprise/operation/services/services.service.php:132 -#: ../../enterprise/operation/services/services.list.php:320 -#: ../../include/functions_reports.php:535 -#: ../../include/functions_reports.php:538 -#: ../../include/functions_reports.php:542 -msgid "SLA" -msgstr "соглашениe об уровне обслуживания (SLA)" - -#: ../../enterprise/operation/services/services.service.php:168 -#: ../../enterprise/operation/services/services.list.php:147 -#: ../../enterprise/operation/services/services.list.php:376 -#: ../../enterprise/operation/services/services.service_map.php:117 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:355 -#: ../../enterprise/load_enterprise.php:681 -#: ../../include/functions_config.php:491 -#: ../../include/functions_config.php:1353 -#: ../../operation/gis_maps/render_view.php:139 -#: ../../godmode/massive/massive_edit_agents.php:386 -msgid "Ok" -msgstr "Ок" - -#: ../../enterprise/operation/services/services.service.php:197 -#: ../../enterprise/operation/services/services.list.php:413 -msgid "SLA graph" -msgstr "" - -#: ../../enterprise/operation/services/services.service.php:207 -msgid "List of elements" -msgstr "Список элементов" - -#: ../../enterprise/operation/services/services.list.php:50 -msgid "Service deleted successfully" -msgstr "Сервис удален успешно" - -#: ../../enterprise/operation/services/services.list.php:51 -msgid "Error deleting service" -msgstr "Ошибка при удалении сервиса" - -#: ../../enterprise/operation/services/services.list.php:56 -msgid "Service forced successfully" -msgstr "" - -#: ../../enterprise/operation/services/services.list.php:57 -msgid "Error service forced" -msgstr "" - -#: ../../enterprise/operation/services/services.list.php:167 -#: ../../enterprise/godmode/services/services.service.php:247 -#: ../../include/ajax/events.php:480 -msgid "Auto" -msgstr "Автоматически" - -#: ../../enterprise/operation/services/services.list.php:169 -#: ../../enterprise/godmode/services/services.service.php:242 -#: ../../godmode/alerts/alert_view.php:423 -#: ../../godmode/servers/manage_recontask_form.php:236 -#: ../../godmode/servers/manage_recontask.php:287 -#: ../../godmode/massive/massive_edit_modules.php:514 -msgid "Mode" -msgstr "Режим" - -#: ../../enterprise/operation/services/services.list.php:265 -#: ../../enterprise/operation/services/services.list.php:272 -msgid "No services defined." -msgstr "" - -#: ../../enterprise/operation/services/services.list.php:435 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:366 -msgid "Config" -msgstr "Конфигурация" - -#: ../../enterprise/operation/services/services.list.php:484 -#: ../../enterprise/godmode/services/services.service.php:54 -msgid "Create Service" -msgstr "Создать сервис" - -#: ../../enterprise/operation/services/services.service_map.php:106 -#: ../../extensions/module_groups.php:296 -#: ../../extensions/agents_modules.php:358 -#: ../../include/functions_reporting_html.php:897 -#: ../../operation/snmpconsole/snmp_view.php:833 -#: ../../godmode/snmpconsole/snmp_alert.php:1225 -msgid "Legend" -msgstr "Легенда" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:130 -msgid "Succesfully created" -msgstr "Успешно создано" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:226 -msgid "Succesfully updated" -msgstr "Успешно обновлено" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:240 -msgid "Succesfully duplicate" -msgstr "Успешно дублировано" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:240 -#: ../../enterprise/godmode/policies/policy_modules.php:996 -msgid "Could not be duplicated" -msgstr "Не может быть дублировано" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:249 -msgid "Succesfully deleted" -msgstr "Успешно удалено" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:262 -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:210 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:1074 -msgid "Networkmap enterprise" -msgstr "Карта сетевого предприятия" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:299 -#: ../../include/functions_reporting_html.php:2649 -msgid "Nodes" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:302 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:359 -#: ../../enterprise/godmode/policies/policies.php:380 -#: ../../enterprise/godmode/policies/policy_modules.php:1149 -#: ../../godmode/alerts/alert_actions.php:342 -#: ../../godmode/massive/massive_copy_modules.php:224 -#: ../../godmode/reporting/map_builder.php:214 -msgid "Copy" -msgstr "Копировать" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:346 -msgid "Pending to generate" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:382 -msgid "There are no maps defined." -msgstr "" - -#: ../../enterprise/operation/agentes/agent_inventory.php:56 -msgid "This agent has not modules inventory" -msgstr "" - -#: ../../enterprise/operation/agentes/agent_inventory.php:160 -#: ../../enterprise/operation/agentes/agent_inventory.php:161 -msgid "Diff view" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:37 -msgid "This agent has no policy assigned" -msgstr "У данного агента нет назначенной политики" - -#: ../../enterprise/operation/agentes/policy_view.php:47 -#: ../../enterprise/operation/agentes/policy_view.php:134 -#: ../../enterprise/operation/agentes/policy_view.php:193 -#: ../../enterprise/operation/agentes/policy_view.php:198 -#: ../../enterprise/godmode/admin_access_logs.php:22 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:217 -#: ../../enterprise/godmode/policies/policy_agents.php:350 -#: ../../mobile/operation/agents.php:285 -#: ../../include/functions_events.php:883 -#: ../../operation/agentes/alerts_status.php:411 -#: ../../operation/agentes/alerts_status.php:454 -#: ../../operation/agentes/alerts_status.php:488 -#: ../../operation/agentes/alerts_status.php:522 -#: ../../godmode/agentes/module_manager.php:513 -msgid "S." -msgstr "S." - -#: ../../enterprise/operation/agentes/policy_view.php:50 -#: ../../enterprise/godmode/policies/policy_agents.php:353 -msgid "Last application" -msgstr "Последнее приложение" - -#: ../../enterprise/operation/agentes/policy_view.php:51 -#: ../../include/functions_events.php:880 -msgid "V." -msgstr "V." - -#: ../../enterprise/operation/agentes/policy_view.php:62 -#: ../../enterprise/godmode/policies/policy_agents.php:459 -msgid "Policy applied" -msgstr "Политика применена" - -#: ../../enterprise/operation/agentes/policy_view.php:65 -msgid "Policy outdate" -msgstr "Политика устарела" - -#: ../../enterprise/operation/agentes/policy_view.php:130 -#: ../../enterprise/operation/agentes/policy_view.php:137 -msgid "Toggle the collection table" -msgstr "Переключить коллекции таблицы" - -#: ../../enterprise/operation/agentes/policy_view.php:132 -#: ../../enterprise/operation/agentes/collection_view.php:64 -#: ../../enterprise/godmode/agentes/collection_manager.php:164 -msgid "Dir" -msgstr "Кат." - -#: ../../enterprise/operation/agentes/policy_view.php:133 -msgid "Descripttion" -msgstr "Описание" - -#: ../../enterprise/operation/agentes/policy_view.php:138 -msgid "Show Collection" -msgstr "Показать коллекцию" - -#: ../../enterprise/operation/agentes/policy_view.php:154 -#: ../../enterprise/operation/agentes/collection_view.php:90 -#: ../../enterprise/godmode/agentes/collection_manager.php:121 -#: ../../enterprise/godmode/agentes/collection_manager.php:205 -msgid "Show files" -msgstr "Показать файлы" - -#: ../../enterprise/operation/agentes/policy_view.php:164 -#: ../../enterprise/operation/agentes/collection_view.php:101 -#: ../../enterprise/godmode/policies/policy_collections.php:161 -#: ../../enterprise/godmode/policies/policy_collections.php:213 -msgid "Outdate" -msgstr "Устарело" - -#: ../../enterprise/operation/agentes/policy_view.php:192 -#: ../../enterprise/operation/agentes/policy_view.php:201 -msgid "Toggle the alert table" -msgstr "Переключить оповещения таблицы" - -#: ../../enterprise/operation/agentes/policy_view.php:202 -msgid "Show Alert" -msgstr "Показать Оповещение" - -#: ../../enterprise/operation/agentes/policy_view.php:303 -#: ../../enterprise/operation/agentes/policy_view.php:312 -msgid "Toggle the module table" -msgstr "Переключить модуль таблицы" - -#: ../../enterprise/operation/agentes/policy_view.php:304 -msgid "Relationship" -msgstr "Взаимосвязь" - -#: ../../enterprise/operation/agentes/policy_view.php:304 -#: ../../enterprise/godmode/policies/policy_agents.php:349 -msgid "R." -msgstr "R." - -#: ../../enterprise/operation/agentes/policy_view.php:313 -msgid "Show Modules" -msgstr "Показать модули" - -#: ../../enterprise/operation/agentes/policy_view.php:333 -msgid "(Un-adopted)" -msgstr "(Не принято)" - -#: ../../enterprise/operation/agentes/policy_view.php:337 -msgid "(Adopted)" -msgstr "(Принято)" - -#: ../../enterprise/operation/agentes/policy_view.php:343 -msgid "(Un-adopted) (Unlinked)" -msgstr "(Не принято) (Не связаны)" - -#: ../../enterprise/operation/agentes/policy_view.php:347 -msgid "(Adopted) (Unlinked)" -msgstr "(Принято) (Не связано)" - -#: ../../enterprise/operation/agentes/policy_view.php:355 -#: ../../godmode/agentes/module_manager.php:657 -msgid "Non initialized module" -msgstr "Модуль не инициализирован" - -#: ../../enterprise/operation/agentes/collection_view.php:47 -#: ../../enterprise/godmode/agentes/collection_manager.php:37 -msgid "This agent have not a remote configuration, please set it." -msgstr "" -"Этот агент не имеет дистанционной конфигурации, пожалуйста, задайте ее." - -#: ../../enterprise/operation/agentes/collection_view.php:54 -msgid "No collection assigned to this agent" -msgstr "Нет коллекции, назначенной для этого агент" - -#: ../../enterprise/operation/agentes/collection_view.php:62 -#: ../../enterprise/godmode/agentes/inventory_manager.php:232 -#: ../../enterprise/godmode/agentes/collection_manager.php:162 -#: ../../include/ajax/module.php:700 -#: ../../operation/agentes/alerts_status.php:407 -#: ../../operation/agentes/alerts_status.php:451 -#: ../../operation/agentes/status_monitor.php:916 -#: ../../godmode/snmpconsole/snmp_alert.php:1042 -#: ../../godmode/agentes/module_manager.php:510 -#: ../../godmode/reporting/reporting_builder.list_items.php:284 -msgid "P." -msgstr "P." - -#: ../../enterprise/operation/agentes/collection_view.php:105 -#: ../../enterprise/operation/agentes/collection_view.php:106 -#: ../../enterprise/godmode/agentes/collections.php:222 -#: ../../enterprise/godmode/agentes/collections.php:223 -#: ../../enterprise/godmode/agentes/collections.data.php:344 -#: ../../enterprise/godmode/agentes/collections.data.php:345 -#: ../../enterprise/godmode/agentes/collection_manager.php:144 -#: ../../enterprise/godmode/agentes/collection_manager.php:145 -#: ../../enterprise/godmode/agentes/collection_manager.php:230 -#: ../../enterprise/godmode/agentes/collection_manager.php:231 -msgid "The collection directory does not exist." -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.popup.php:64 -msgid "Details of node:" -msgstr "Детали узла:" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:241 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:1076 -msgid "Not found networkmap." -msgstr "Карта сети не найдена." - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:266 -msgid "Source data" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:269 -#: ../../include/functions_groups.php:92 ../../godmode/menu.php:201 -msgid "Recon task" -msgstr "Рекон задачи" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:270 -msgid "CIDR IP mask" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:274 -msgid "Generate networkmap with parents relationships" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:276 -msgid "" -"This feature is deprecated, be careful because in the next releases it will " -"be disappear." -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:286 -msgid "Source from recon task" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:288 -msgid "" -"It is setted any recon task, the nodes get from the recontask IP mask " -"instead from the group." -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:292 -msgid "Show only the task with the recon script \"SNMP L2 Recon\"." -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:295 -msgid "Source from CIDR IP mask" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:299 -#: ../../operation/agentes/networkmap.php:543 -msgid "Don't show subgroups:" -msgstr "Не показывать подгруппы:" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:303 -msgid "Start empty networkmap" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:306 -msgid "The networkmap has been generated already." -msgstr "Карта сети была сформирована уже." - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:319 -msgid "Size of networkmap (Width x Height)" -msgstr "Размер карты сети (ширина х высота)" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:321 -msgid "x" -msgstr "x" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:332 -msgid "Method generation networkmap" -msgstr "Метод формирования карты сети" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:336 -msgid "Refresh network map state" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:340 -msgid "Resize the networkmap" -msgstr "Изменить размер карты сети" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:342 -msgid "This operation can't be undone, because it is on DB." -msgstr "Эта операция не может быть отменена, так как она находится на БД." - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:344 -#: ../../include/functions_visual_map_editor.php:315 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:936 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:432 -#: ../../godmode/reporting/visual_console_builder.wizard.php:150 -msgid "Process" -msgstr "Процесс" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:360 -msgid "Save networkmap" -msgstr "Сохранить карту сети" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:366 -msgid "Update networkmap" -msgstr "Обновить карту сети" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:405 -msgid "Networkmap resized." -msgstr "Размер карты сети изменен." - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:412 -msgid "Error process map" -msgstr "Ошибка процесса карты" - -#: ../../enterprise/operation/agentes/ver_agente.php:70 -#: ../../operation/agentes/ver_agente.php:538 -msgid "Main IP" -msgstr "Главний IP" - -#: ../../enterprise/operation/agentes/ver_agente.php:76 -#: ../../include/functions_events.php:2038 -#: ../../operation/agentes/ver_agente.php:549 -msgid "Last remote contact" -msgstr "Последнее подключение" - -#: ../../enterprise/operation/agentes/ver_agente.php:113 -#: ../../operation/agentes/ver_agente.php:589 -msgid "Monitors down" -msgstr "Мониторы выключны" - -#: ../../enterprise/operation/agentes/ver_agente.php:152 -#: ../../mobile/operation/groups.php:126 ../../mobile/operation/groups.php:127 -#: ../../mobile/operation/groups.php:128 -#: ../../include/functions_groups.php:818 -#: ../../include/functions_groups.php:820 -#: ../../include/functions_groups.php:822 -#: ../../include/functions_groups.php:823 -#: ../../include/functions_groups.php:824 -#: ../../include/functions_reporting_html.php:2090 -#: ../../include/functions_reporting_html.php:2099 -#: ../../operation/agentes/ver_agente.php:625 -#: ../../general/shortcut_bar.php:176 ../../general/shortcut_bar.php:178 -msgid "Alerts fired" -msgstr "Угрозы снятия" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:342 -msgid "Success be updated." -msgstr "Успех быть обновленным." - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:567 -msgid "Name: " -msgstr "Имя: " - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:598 -#: ../../operation/agentes/status_monitor.php:1015 -msgid "(Adopt) " -msgstr "(Принять) " - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:608 -#: ../../operation/agentes/status_monitor.php:1025 -msgid "(Unlinked) (Adopt) " -msgstr "(Не связаны) (Принять) " - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:612 -#: ../../operation/agentes/status_monitor.php:1029 -msgid "(Unlinked) " -msgstr "(Не связаны) " - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:617 -msgid "Policy: " -msgstr "Политика: " - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:712 -msgid "Data: " -msgstr "Данные: " - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:715 -#: ../../operation/agentes/estado_generalagente.php:550 -msgid "Last contact: " -msgstr "Последний контакт: " - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:1104 -#: ../../operation/snmpconsole/snmp_view.php:75 -#: ../../operation/snmpconsole/snmp_statistics.php:45 -#: ../../operation/snmpconsole/snmp_browser.php:86 -#: ../../operation/agentes/networkmap.php:301 -msgid "Normal screen" -msgstr "Обычный экран" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:1113 -#: ../../extensions/agents_modules.php:129 -#: ../../extensions/agents_alerts.php:117 -#: ../../operation/events/events.php:315 -#: ../../operation/snmpconsole/snmp_view.php:79 -#: ../../operation/snmpconsole/snmp_statistics.php:49 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../operation/agentes/networkmap.php:314 -msgid "Full screen" -msgstr "На весь экран" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:1119 -msgid "List of networkmap Enterprise" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:1123 -#, php-format -msgid "Networkmap enterprise - %s" -msgstr "Карта сетевого производрсва - %s" - -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:40 -msgid "Unsucessful get module inventory data." -msgstr "" - -#: ../../enterprise/operation/inventory/inventory.php:225 -#: ../../include/functions_graph.php:737 ../../include/functions_graph.php:738 -#: ../../include/functions_graph.php:739 ../../include/functions_graph.php:742 -#: ../../include/functions_graph.php:1350 -#: ../../include/functions_graph.php:3536 -#: ../../include/functions_graph.php:3541 -#: ../../include/functions_graph.php:4202 -#: ../../include/functions_graph.php:4205 -#: ../../include/functions_graph.php:4208 -#: ../../godmode/reporting/reporting_builder.item_editor.php:982 -msgid "Last" -msgstr "Последний" - -#: ../../enterprise/operation/inventory/inventory.php:264 -msgid "Export this list to CSV" -msgstr "Экспорт этого списка в CSV" - -#: ../../enterprise/operation/reporting/custom_reporting.php:17 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:290 -msgid "PDF" -msgstr "PDF" - -#: ../../enterprise/operation/reporting/custom_reporting.php:19 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:291 -msgid "JSON" -msgstr "" - -#: ../../enterprise/operation/reporting/custom_reporting.php:21 -#: ../../extensions/insert_data.php:169 -#: ../../operation/agentes/exportdata.php:322 -msgid "CSV" -msgstr "CSV" - -#: ../../enterprise/operation/reporting/custom_reporting.php:22 -msgid "" -"All the items are not available in CSV, only the previous versions ones." -msgstr "" - -#: ../../enterprise/operation/reporting/custom_reporting.php:43 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:339 -msgid "Export to PDF" -msgstr "Экспорт в PDF" - -#: ../../enterprise/operation/reporting/custom_reporting.php:47 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:341 -msgid "Export to JSON" -msgstr "" - -#: ../../enterprise/operation/reporting/custom_reporting.php:55 -#: ../../enterprise/operation/reporting/custom_reporting.php:78 -msgid "Send by email" -msgstr "" - -#: ../../enterprise/operation/reporting/custom_reporting.php:63 -msgid "ID Report" -msgstr "" - -#: ../../enterprise/operation/reporting/custom_reporting.php:102 -msgid "Send by email " -msgstr "" - -#: ../../enterprise/godmode/menu.php:17 -#: ../../enterprise/godmode/massive/massive_operations.php:67 -msgid "Policies operations" -msgstr "Политика операций" - -#: ../../enterprise/godmode/menu.php:26 -#: ../../enterprise/godmode/massive/massive_operations.php:47 -msgid "SNMP operations" -msgstr "SNMP операций" - -#: ../../enterprise/godmode/menu.php:35 -#: ../../enterprise/godmode/massive/massive_operations.php:27 -msgid "Satellite operations" -msgstr "" - -#: ../../enterprise/godmode/menu.php:45 ../../enterprise/godmode/menu.php:136 -msgid "Duplicate config" -msgstr "Дубликат конфигурации" - -#: ../../enterprise/godmode/menu.php:70 -msgid "Manage policies" -msgstr "Управление политикой" - -#: ../../enterprise/godmode/menu.php:96 -msgid "Enterprise ACL Setup" -msgstr "" - -#: ../../enterprise/godmode/menu.php:103 -msgid "Skins" -msgstr "Скины" - -#: ../../enterprise/godmode/menu.php:112 -#: ../../enterprise/godmode/servers/manage_export.php:41 -#: ../../enterprise/godmode/servers/manage_export_form.php:56 -msgid "Export targets" -msgstr "Экспорт заданий" - -#: ../../enterprise/godmode/menu.php:130 -msgid "Log Collector" -msgstr "Журнал коллектора" - -#: ../../enterprise/godmode/menu.php:143 -msgid "Password policy" -msgstr "" - -#: ../../enterprise/godmode/services/services.elements.php:70 -#: ../../enterprise/godmode/services/services.service.php:255 -msgid "" -"This values are by default because the service is auto calculate mode." -msgstr "" -"Это значения по умолчанию, потому что сервис в режиме авто вычисления." - -#: ../../enterprise/godmode/services/services.elements.php:82 -msgid "Invalid service" -msgstr "" - -#: ../../enterprise/godmode/services/services.elements.php:123 -#: ../../enterprise/godmode/services/services.elements.php:128 -#: ../../operation/search_maps.php:33 -msgid "Elements" -msgstr "Элементы" - -#: ../../enterprise/godmode/services/services.elements.php:147 -msgid "Error empty module" -msgstr "Ошибка пустой модуль" - -#: ../../enterprise/godmode/services/services.elements.php:156 -msgid "Error empty agent" -msgstr "Ошибка пустой агент" - -#: ../../enterprise/godmode/services/services.elements.php:165 -msgid "Error empty service" -msgstr "Ошибка пустой сервис" - -#: ../../enterprise/godmode/services/services.elements.php:187 -msgid "Service element created successfully" -msgstr "Сервисный элемент создан успешно" - -#: ../../enterprise/godmode/services/services.elements.php:188 -msgid "Error creating service element" -msgstr "Ошибка создания сервисного элемента" - -#: ../../enterprise/godmode/services/services.elements.php:253 -msgid "Service element updated successfully" -msgstr "Сервисный элемент успешно обновлен" - -#: ../../enterprise/godmode/services/services.elements.php:254 -msgid "Error updating service element" -msgstr "Ошибка при обновлении элемента сервиса" - -#: ../../enterprise/godmode/services/services.elements.php:261 -msgid "Service element deleted successfully" -msgstr "Сервисный элемент успешно удален" - -#: ../../enterprise/godmode/services/services.elements.php:262 -msgid "Error deleting service element" -msgstr "Ошибка при удалении элемента сервиса" - -#: ../../enterprise/godmode/services/services.elements.php:300 -msgid "Edit element service" -msgstr "Редактировать элемент сервиса" - -#: ../../enterprise/godmode/services/services.elements.php:303 -msgid "Create element service" -msgstr "Создать элементасервиса" - -#: ../../enterprise/godmode/services/services.elements.php:353 -msgid "First select an agent" -msgstr "Сначала выберите агента" - -#: ../../enterprise/godmode/services/services.elements.php:371 -msgid "Critical weight" -msgstr "Критическая плотность" - -#: ../../enterprise/godmode/services/services.elements.php:376 -msgid "Warning weight" -msgstr "Предупреждающая плотность" - -#: ../../enterprise/godmode/services/services.elements.php:381 -msgid "Unknown weight" -msgstr "Неизвестная плотность" - -#: ../../enterprise/godmode/services/services.elements.php:386 -msgid "Ok weight" -msgstr "Хорошая плотность" - -#: ../../enterprise/godmode/services/services.elements.php:394 -msgid "" -"Only the critical elements are relevant to calculate the service status" -msgstr "" - -#: ../../enterprise/godmode/services/services.service.php:62 -msgid "Service created successfully" -msgstr "Сервис успешно создан" - -#: ../../enterprise/godmode/services/services.service.php:63 -msgid "Error creating service" -msgstr "Ошибка при создание сервиса" - -#: ../../enterprise/godmode/services/services.service.php:85 -msgid "No name and description specified for the service" -msgstr "" - -#: ../../enterprise/godmode/services/services.service.php:90 -msgid "No name specified for the service" -msgstr "" - -#: ../../enterprise/godmode/services/services.service.php:95 -msgid "No description specified for the service" -msgstr "" - -#: ../../enterprise/godmode/services/services.service.php:109 -msgid "Error updating service" -msgstr "Ошибка при обновлении сервиса" - -#: ../../enterprise/godmode/services/services.service.php:113 -msgid "Service updated successfully" -msgstr "Сервис успешно обновлен" - -#: ../../enterprise/godmode/services/services.service.php:130 -msgid "New Service" -msgstr "Новый сервис" - -#: ../../enterprise/godmode/services/services.service.php:218 -msgid "No Services or concrete action" -msgstr "" - -#: ../../enterprise/godmode/services/services.service.php:229 -msgid "General Data" -msgstr "" - -#: ../../enterprise/godmode/services/services.service.php:245 -msgid "You should set the weights manually" -msgstr "" - -#: ../../enterprise/godmode/services/services.service.php:248 -msgid "The weights have default values" -msgstr "" - -#: ../../enterprise/godmode/services/services.service.php:251 -msgid "" -"Only the elements configured as 'critical element' are used to calculate the " -"service status" -msgstr "" - -#: ../../enterprise/godmode/services/services.service.php:271 -msgid "Agent to store data" -msgstr "Агент для хранения данных" - -#: ../../enterprise/godmode/services/services.service.php:294 -msgid "S.L.A. interval" -msgstr "Интервал S.L.A." - -#: ../../enterprise/godmode/services/services.service.php:299 -msgid "S.L.A. limit" -msgstr "Лимит S.L.A." - -#: ../../enterprise/godmode/services/services.service.php:301 -msgid "Please set limit between 0 to 100." -msgstr "Пожалуйста, установите лимит от 0 до 100." - -#: ../../enterprise/godmode/services/services.service.php:309 -msgid "" -"Here are described the alert templates, which will use their default " -"actions.\n" -"\t\tYou can modify the default behaviour editing alerts in the agent who " -"stores data and alert definitions about the service and the SLA status." -msgstr "" - -#: ../../enterprise/godmode/services/services.service.php:322 -msgid "Warning Service alert" -msgstr "Оповещения предупреждающего сервиса" - -#: ../../enterprise/godmode/services/services.service.php:333 -msgid "Critical Service alert" -msgstr "Оповещения критического сервиса" - -#: ../../enterprise/godmode/services/services.service.php:351 -msgid "SLA critical service alert" -msgstr "Оповещения критического сервиса SLA" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:230 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:243 -#: ../../extensions/realtime_graphs.php:108 -#: ../../include/functions_snmp_browser.php:401 -msgid "OID" -msgstr "OID" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:65 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:231 -msgid "Custom OID" -msgstr "Пользователь OID" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:55 -msgid "Error parsing MIB" -msgstr "Ошибка разбора MIB" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:128 -msgid "Successfully added trap custom values" -msgstr "успешное добавление пользовательсих значений прерывания" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:131 -msgid "Error adding trap custom values" -msgstr "Ошибка при добавлении пользовательских значений прерывания" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:158 -msgid "No change in data" -msgstr "Нет изменений в данных" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:161 -msgid "Successfully updated trap custom values" -msgstr "Успешное обновление пользовательских значений прерывания" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:164 -msgid "Error updating trap custom values" -msgstr "Ошибка обновления пользовательских значений прерывания" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:174 -msgid "Successfully deleted trap custom values" -msgstr "Успешное добавление пользовательских значений прерывания" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:178 -msgid "Error deleting trap custom values" -msgstr "Ошибка удаления обновление пользовательских значений прерывания" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:187 -#, php-format -msgid "Uploaded %s/%s traps" -msgstr "Загружено %s/%s прерываний" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:191 -#, php-format -msgid "Fail uploaded %s/%s traps" -msgstr "Сбой загрузки %s/%s прерывания" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:196 -msgid "Fail uploaded file" -msgstr "Сбой загруженного файла" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:200 -msgid "" -"MIB files will be loaded and searched for SNMP trap definitions. They will " -"not be installed on the system! You can use the MIB uploader for that " -"purpose." -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:208 -msgid "Load MIB" -msgstr "Загрузить MIB" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:210 -msgid "Upload MIB" -msgstr "Загрузить MIB" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:55 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:49 -#: ../../enterprise/godmode/alerts/alert_events.php:45 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:70 -msgid "List event alerts" -msgstr "Список событий оповещений" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:59 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:54 -#: ../../enterprise/godmode/alerts/alert_events.php:50 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:75 -msgid "Builder event alert" -msgstr "Разработчик событий оповещений" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:186 -#: ../../enterprise/godmode/policies/policy_agents.php:144 -#: ../../operation/incidents/incident_detail.php:67 -#: ../../godmode/alerts/alert_list.php:167 -#: ../../godmode/massive/massive_add_alerts.php:112 -#: ../../godmode/massive/massive_add_tags.php:88 -#: ../../godmode/massive/massive_add_action_alerts.php:101 -msgid "Successfully added" -msgstr "Успешно добавленно" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:187 -#: ../../enterprise/godmode/policies/policy_agents.php:145 -#: ../../enterprise/godmode/policies/policy_alerts.php:188 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:121 -#: ../../operation/incidents/incident_detail.php:68 -#: ../../godmode/alerts/alert_list.php:167 -#: ../../godmode/massive/massive_add_alerts.php:113 -#: ../../godmode/massive/massive_add_tags.php:89 -#: ../../godmode/massive/massive_add_action_alerts.php:60 -#: ../../godmode/massive/massive_add_action_alerts.php:85 -#: ../../godmode/massive/massive_add_action_alerts.php:101 -#: ../../godmode/massive/massive_add_action_alerts.php:105 -msgid "Could not be added" -msgstr "Не может быть добавлено" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:255 -#: ../../enterprise/godmode/policies/policy_alerts.php:122 -#: ../../godmode/alerts/alert_list.php:235 -#: ../../godmode/massive/massive_standby_alerts.php:96 -msgid "Successfully set standby" -msgstr "Режим ожидания успешно установлен" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:256 -#: ../../enterprise/godmode/policies/policy_alerts.php:122 -#: ../../godmode/alerts/alert_list.php:235 -#: ../../godmode/massive/massive_standby_alerts.php:96 -msgid "Could not be set standby" -msgstr "Не может быть установлен режим ожидания" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:272 -#: ../../enterprise/godmode/policies/policy_alerts.php:139 -#: ../../godmode/alerts/alert_list.php:252 -#: ../../godmode/massive/massive_standby_alerts.php:78 -msgid "Successfully set off standby" -msgstr "Режим ожидания успешно отправлен" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:273 -#: ../../enterprise/godmode/policies/policy_alerts.php:139 -#: ../../godmode/alerts/alert_list.php:252 -#: ../../godmode/massive/massive_standby_alerts.php:78 -msgid "Could not be set off standby" -msgstr "Режим ожидания не может быть отправлен" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:328 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:357 -#: ../../godmode/servers/modificar_server.php:76 -#: ../../godmode/servers/modificar_server.php:88 -msgid "Successfully action" -msgstr "Удачное действие" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:328 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:357 -msgid "Error processing action" -msgstr "Ошибка обработки действий" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:343 -#: ../../operation/agentes/alerts_status.functions.php:32 -msgid "Alert(s) validated" -msgstr "Оповещение(я) подтверждены" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:343 -msgid "Error validating alert(s)" -msgstr "Ошибка подтверждения оповещения(й)" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:421 -msgid "Ac." -msgstr "Ac." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:426 -msgid "Val." -msgstr "Подтв." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:427 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:412 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:305 -#: ../../enterprise/godmode/policies/policy_alerts.php:242 -#: ../../godmode/alerts/alert_list.list.php:405 -#: ../../godmode/massive/massive_copy_modules.php:133 -msgid "Operations" -msgstr "Операции" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:486 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:440 -msgid "Move up" -msgstr "Переместить вверх" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:498 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:447 -msgid "Move down" -msgstr "Переместить вниз" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:536 -msgid "No associated actions" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:551 -#: ../../enterprise/godmode/policies/policy_alerts.php:328 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:214 -#: ../../include/functions_alerts.php:558 -#: ../../godmode/alerts/alert_list.list.php:513 -#: ../../godmode/alerts/alert_view.php:195 -msgid "Always" -msgstr "Всегда" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:553 -#: ../../enterprise/godmode/policies/policy_alerts.php:330 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:216 -#: ../../godmode/alerts/alert_list.list.php:515 -msgid "On" -msgstr "Вкл." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:557 -#: ../../enterprise/godmode/policies/policy_alerts.php:334 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:220 -#: ../../godmode/alerts/alert_list.list.php:519 -msgid "Until" -msgstr "До" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:582 -#: ../../enterprise/godmode/alerts/alert_events_list.php:584 -#: ../../enterprise/godmode/policies/policy_alerts.php:588 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:242 -#: ../../godmode/snmpconsole/snmp_alert.php:1121 -#: ../../godmode/alerts/alert_list.list.php:681 -#: ../../godmode/alerts/alert_list.list.php:685 -#: ../../godmode/alerts/alert_list.list.php:819 -msgid "Add action" -msgstr "Добавить действие" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:599 -#: ../../enterprise/godmode/policies/policy_alerts.php:465 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:278 -#: ../../godmode/alerts/alert_list.list.php:593 -#: ../../godmode/alerts/alert_list.builder.php:119 -#: ../../godmode/massive/massive_add_action_alerts.php:159 -msgid "Number of alerts match from" -msgstr "Число совпадающих оповещений из" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:640 -msgid "View associated rules" -msgstr "Посмотреть похожие правила" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:657 -msgid "There are no defined events alerts" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:707 -#: ../../enterprise/godmode/agentes/plugins_manager.php:111 -#: ../../enterprise/godmode/agentes/plugins_manager.php:160 -#: ../../enterprise/godmode/policies/policy_alerts.php:548 -#: ../../include/functions.php:2534 ../../godmode/extensions.php:285 -#: ../../godmode/users/user_list.php:464 -#: ../../godmode/alerts/alert_list.list.php:129 -#: ../../godmode/alerts/alert_list.list.php:762 -msgid "Disable" -msgstr "Отключить" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:715 -#: ../../enterprise/godmode/agentes/plugins_manager.php:111 -#: ../../enterprise/godmode/agentes/plugins_manager.php:147 -#: ../../enterprise/godmode/policies/policy_alerts.php:556 -#: ../../godmode/extensions.php:281 ../../godmode/users/user_list.php:467 -#: ../../godmode/alerts/alert_list.list.php:128 -#: ../../godmode/alerts/alert_list.list.php:771 -msgid "Enable" -msgstr "Включить" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:724 -#: ../../enterprise/godmode/policies/policy_alerts.php:565 -#: ../../godmode/alerts/alert_list.list.php:780 -msgid "Set off standby" -msgstr "Отправить в режим ожидания" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:733 -#: ../../enterprise/godmode/policies/policy_alerts.php:574 -#: ../../godmode/alerts/alert_list.list.php:789 -msgid "Set standby" -msgstr "Установить режим ожидания" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:58 -#: ../../enterprise/godmode/alerts/alert_events.php:58 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:79 -msgid "List event rules" -msgstr "Список правил событий" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:69 -msgid "Configure event rule" -msgstr "Настройка правил события" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:134 -msgid "User comment" -msgstr "комментарий пользователя" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:134 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:137 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 -msgid "This field will be processed with regexp" -msgstr "Это поле будет обрабатываться с регулярным выражением" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:137 -#: ../../operation/events/events.php:73 -msgid "Event" -msgstr "Событие" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:140 -msgid "Window" -msgstr "Окно" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 -#: ../../include/class/Tree.class.php:1554 -msgid "Module alerts" -msgstr "Модуль оповещений" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:410 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:308 -#: ../../mobile/operation/modules.php:151 -#: ../../mobile/operation/modules.php:152 -#: ../../mobile/operation/modules.php:244 -#: ../../mobile/operation/modules.php:245 -#: ../../operation/agentes/group_view.php:228 -msgid "Tag" -msgstr "Метка" - -#: ../../enterprise/godmode/alerts/alert_events.php:71 -msgid "Configure event alert" -msgstr "Настройка событий оповещения" - -#: ../../enterprise/godmode/alerts/alert_events.php:96 -#: ../../enterprise/godmode/alerts/alert_events.php:101 -#: ../../enterprise/godmode/alerts/alert_events.php:116 -#: ../../enterprise/godmode/alerts/alert_events.php:121 -#: ../../enterprise/godmode/alerts/alert_events.php:136 -#: ../../enterprise/godmode/alerts/alert_events.php:141 -#: ../../enterprise/godmode/setup/setup_history.php:67 -#: ../../include/functions_config.php:633 -#: ../../godmode/alerts/configure_alert_template.php:147 -#: ../../godmode/alerts/configure_alert_template.php:152 -#: ../../godmode/alerts/configure_alert_template.php:167 -#: ../../godmode/alerts/configure_alert_template.php:172 -#: ../../godmode/alerts/configure_alert_template.php:187 -#: ../../godmode/alerts/configure_alert_template.php:192 -msgid "Step" -msgstr "Шаг" - -#: ../../enterprise/godmode/alerts/alert_events.php:117 -#: ../../enterprise/godmode/alerts/alert_events.php:122 -#: ../../godmode/alerts/configure_alert_template.php:168 -#: ../../godmode/alerts/configure_alert_template.php:173 -msgid "Conditions" -msgstr "Условия" - -#: ../../enterprise/godmode/alerts/alert_events.php:137 -#: ../../enterprise/godmode/alerts/alert_events.php:142 -#: ../../godmode/alerts/configure_alert_template.php:188 -#: ../../godmode/alerts/configure_alert_template.php:193 -msgid "Advanced fields" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events.php:347 -msgid "Could not be created, please fill alert name" -msgstr "Не может быть создано, пожалуйста, заполните имя оповещения" - -#: ../../enterprise/godmode/alerts/alert_events.php:430 -#: ../../godmode/alerts/configure_alert_template.php:516 -msgid "Days of week" -msgstr "Дни недели" - -#: ../../enterprise/godmode/alerts/alert_events.php:446 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1311 -#: ../../godmode/alerts/configure_alert_template.php:535 -#: ../../godmode/reporting/reporting_builder.item_editor.php:795 -msgid "Time from" -msgstr "Время с" - -#: ../../enterprise/godmode/alerts/alert_events.php:449 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1319 -#: ../../godmode/alerts/configure_alert_template.php:539 -#: ../../godmode/reporting/reporting_builder.item_editor.php:804 -msgid "Time to" -msgstr "Время по" - -#: ../../enterprise/godmode/alerts/alert_events.php:457 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:253 -#: ../../godmode/snmpconsole/snmp_alert.php:805 -#: ../../godmode/alerts/configure_alert_template.php:549 -msgid "Min. number of alerts" -msgstr "Мин. число оповещений" - -#: ../../enterprise/godmode/alerts/alert_events.php:460 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:255 -#: ../../godmode/snmpconsole/snmp_alert.php:808 -#: ../../godmode/alerts/configure_alert_template.php:552 -msgid "Max. number of alerts" -msgstr "Макс. число оповещений" - -#: ../../enterprise/godmode/alerts/alert_events.php:463 -msgid "Rule evaluation mode" -msgstr "Правила оценки режима" - -#: ../../enterprise/godmode/alerts/alert_events.php:467 -msgid "Group by" -msgstr "Группировать по" - -#: ../../enterprise/godmode/alerts/alert_events.php:474 -#: ../../godmode/alerts/alert_commands.php:105 -#: ../../godmode/alerts/alert_commands.php:109 -#: ../../godmode/alerts/alert_commands.php:120 -#: ../../godmode/alerts/alert_commands.php:128 -#: ../../godmode/alerts/configure_alert_template.php:668 -#: ../../godmode/alerts/alert_view.php:471 -#: ../../godmode/alerts/alert_view.php:548 -#, php-format -msgid "Field %s" -msgstr "Поле %s" - -#: ../../enterprise/godmode/alerts/alert_events.php:517 -#: ../../godmode/alerts/configure_alert_action.php:101 -#: ../../godmode/alerts/alert_list.builder.php:129 -msgid "Create Action" -msgstr "Создать действие" - -#: ../../enterprise/godmode/alerts/alert_events.php:523 -msgid "Please Read" -msgstr "Пожалуйста, Прочитайте" - -#: ../../enterprise/godmode/alerts/alert_events.php:524 -msgid "" -"Since the alert can have multiple actions. You can edit them from the alert " -"list of events." -msgstr "" -"Поскольку оповещение может содержать несколько действий. Вы можете " -"редактировать их из списка оповещений событий." - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:91 -msgid "Event rules" -msgstr "Правила события" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:203 -msgid "Error creating rule" -msgstr "Ошибка при создании правил" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:208 -msgid "Successfully created rule" -msgstr "Правила созданы успешно" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:255 -msgid "Error updating rule" -msgstr "Ошибка приобновлении правил" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:259 -msgid "Successfully updating rule" -msgstr "Успешное обновление правила" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:269 -msgid "Error updating rule operators" -msgstr "Ошибка при обновлении правил операторов" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:272 -msgid "Successfully update rule operators" -msgstr "Успешное обновление правил операртора" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:408 -msgid "(Agent)" -msgstr "(Агент)" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:411 -msgid "Operator" -msgstr "Оператор" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:492 -msgid "Logic expression for these rules:" -msgstr "Логическое выражение для этих правил:" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:500 -msgid "Update operators" -msgstr "Обновить операторов" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:506 -msgid "There are no defined alert event rules" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.php:48 -msgid "Success: recreate file" -msgstr "Успех: воссоздать файл" - -#: ../../enterprise/godmode/agentes/collections.php:51 -msgid "Error: recreate file " -msgstr "Ошибка : воссоздать файл " - -#: ../../enterprise/godmode/agentes/collections.php:64 -#: ../../enterprise/godmode/agentes/collections.php:82 -#: ../../enterprise/godmode/agentes/collections.php:153 -msgid "Collections Management" -msgstr "Управление сборниками" - -#: ../../enterprise/godmode/agentes/collections.php:116 -msgid "Manager collection" -msgstr "Менеджер сборника" - -#: ../../enterprise/godmode/agentes/collections.php:124 -#: ../../enterprise/godmode/agentes/collections.php:139 -#: ../../enterprise/godmode/agentes/collection_manager.php:91 -msgid "Successful create collection package." -msgstr "Успешное создание пакета сборника." - -#: ../../enterprise/godmode/agentes/collections.php:140 -#: ../../enterprise/godmode/agentes/collection_manager.php:92 -msgid "Can not create collection package." -msgstr "Пакет сборника не может быть создан." - -#: ../../enterprise/godmode/agentes/collections.php:160 -msgid "Error: The main directory of collections does not exist." -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.php:182 -#: ../../enterprise/godmode/agentes/collection_manager.php:106 -#: ../../enterprise/godmode/policies/policy_collections.php:122 -#: ../../enterprise/godmode/policies/policy_collections.php:193 -msgid "Short Name" -msgstr "Сокращенное имя" - -#: ../../enterprise/godmode/agentes/collections.php:204 -msgid "Are you sure to delete?" -msgstr "Вы действительно хотите удалить?" - -#: ../../enterprise/godmode/agentes/collections.php:205 -msgid "Delete collection" -msgstr "Удалить сборник" - -#: ../../enterprise/godmode/agentes/collections.php:211 -msgid "Re-Apply changes" -msgstr "Повторно применить изменения" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26 -msgid "Synthetic arithmetic" -msgstr "Синтетический счет" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:29 -msgid "Synthetic average" -msgstr "Синтетическая средняя величина" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:99 -msgid "Fixed value" -msgstr "Фиксированное значение" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:104 -msgid "Add module to operation as add" -msgstr "Добавить модуль к операциям как добавление" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:105 -msgid "Add module to operations as deduct" -msgstr "Добавить модуль к операциям как вычетание" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:106 -msgid "Add module to operations as multiplicate " -msgstr "Добавить модуль к операциям как умножение " - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:107 -msgid "Add module to operations as divide" -msgstr "Добавить модуль к операциям как деление" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:108 -msgid "Remove selected modules" -msgstr "Удалить выбранные модули" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:113 -msgid "Add module to average operation" -msgstr "Добавить модуль к средней операции" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 -msgid "Remove selected modules from operations stack" -msgstr "Удалить выбранные модули из стека операций" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129 -msgid "Move down selected modules" -msgstr "Передвинуть вниз выбранные модули" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:130 -msgid "Move up selected modules" -msgstr "Передвинуть вверх выбранные модули" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:158 -msgid "Select Service" -msgstr "Выбрать Сервис" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:169 -msgid "Netflow filter" -msgstr "Фильтр Сетевого потока" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:178 -msgid "Select filter" -msgstr "Выбрать фильтр" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:29 -msgid "Web server module" -msgstr "Модуль веб сервера" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:85 -msgid "Requests" -msgstr "Запросы" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:88 -msgid "Agent browser id" -msgstr "ID браузера агента" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:102 -msgid "HTTP auth (login)" -msgstr "HTTP-авторизации (логин)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:106 -msgid "HTTP auth (pass)" -msgstr "HTTP-авторизации (пропуск)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:113 -msgid "HTTP auth (server)" -msgstr "HTTP-авторизации (сервер)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:117 -msgid "HTTP auth (realm)" -msgstr "HTTP-авторизации (область)" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:57 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:81 -msgid "Successfully added inventory module" -msgstr "Успешное добавление модуля инвентаризации" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:60 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:85 -msgid "Error adding inventory module" -msgstr "Ошибка при добавлении модуля инвентаризации" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:69 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:106 -msgid "Successfully deleted inventory module" -msgstr "Модуль инвентаризации успешно удален" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:72 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:110 -msgid "Error deleting inventory module" -msgstr "Ошибка при удалении модуля инвентаризации" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:80 -msgid "Successfully forced inventory module" -msgstr "Модуль инвентаризации успешно переведен" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:83 -msgid "Error forcing inventory module" -msgstr "Ошибка при переведении модуля инвентаризации" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:108 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:92 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:141 -msgid "Successfully updated inventory module" -msgstr "Модуль инвентаризации успешно обновлен" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:111 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:96 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:145 -msgid "Error updating inventory module" -msgstr "Ошибка при обновлении модуля инвентаризации" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:129 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:54 -msgid "Inventory module error" -msgstr "Ошибка модуля инвентаризации" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:178 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:184 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:192 -#: ../../include/ajax/module.php:120 -msgid "6 hours" -msgstr "6 часов" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:181 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:187 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:195 -#: ../../include/functions_netflow.php:1054 -#: ../../include/functions_netflow.php:1087 -#: ../../godmode/setup/performance.php:88 -msgid "2 days" -msgstr "2 дня" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:182 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:196 -msgid "7 days" -msgstr "7 дней" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:183 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:190 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:197 -#: ../../include/functions.php:1990 ../../include/functions_netflow.php:1056 -#: ../../include/functions_netflow.php:1089 ../../include/ajax/module.php:124 -msgid "15 days" -msgstr "15 дней" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:184 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:198 -#: ../../include/functions.php:1991 ../../include/functions_netflow.php:1091 -#: ../../include/ajax/module.php:125 -msgid "1 month" -msgstr "1 месяц" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:188 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:201 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:262 -#: ../../godmode/agentes/module_manager_editor_wmi.php:51 -#: ../../godmode/massive/massive_edit_modules.php:495 -#: ../../godmode/modules/manage_network_components_form_wmi.php:48 -msgid "Username" -msgstr "Имя пользователя" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:195 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:207 -msgid "Update all" -msgstr "Обновить все" - -#: ../../enterprise/godmode/agentes/collections.data.php:47 -#: ../../enterprise/godmode/agentes/collections.data.php:123 -#: ../../enterprise/godmode/agentes/collections.data.php:142 -#: ../../enterprise/godmode/agentes/collections.data.php:157 -#: ../../enterprise/godmode/agentes/collections.data.php:179 -#: ../../enterprise/godmode/agentes/collections.data.php:221 -msgid "Manager configuration > New" -msgstr "Управлять конфигурацией > Новая" - -#: ../../enterprise/godmode/agentes/collections.data.php:94 -#: ../../enterprise/godmode/agentes/collections.data.php:198 -#: ../../enterprise/godmode/agentes/collections.data.php:267 -#: ../../enterprise/godmode/agentes/collections.data.php:281 -#: ../../enterprise/godmode/agentes/collections.data.php:287 -#: ../../enterprise/godmode/agentes/collections.editor.php:55 -msgid "Manager configuration > Edit " -msgstr "Управлять конфигурацией > Редактировать " - -#: ../../enterprise/godmode/agentes/collections.data.php:130 -msgid "" -"Unable to create the collection. Another collection with the same short name." -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:148 -#: ../../enterprise/godmode/agentes/collections.data.php:163 -msgid "Unable to create the collection" -msgstr "Не удается создать сборник" - -#: ../../enterprise/godmode/agentes/collections.data.php:148 -msgid "Invalid characters in short name" -msgstr "Недопустимые символы в кратком имени" - -#: ../../enterprise/godmode/agentes/collections.data.php:185 -#: ../../enterprise/godmode/agentes/collections.data.php:229 -msgid "Unable to create the collection." -msgstr "Не удается создать сборник." - -#: ../../enterprise/godmode/agentes/collections.data.php:206 -#: ../../enterprise/godmode/agentes/collections.data.php:293 -msgid "Correct create collection" -msgstr "Правильно создать сборник" - -#: ../../enterprise/godmode/agentes/collections.data.php:271 -msgid "Unable to edit the collection, empty name." -msgstr "Не удается редактировать сборник, пустое имя." - -#: ../../enterprise/godmode/agentes/collections.data.php:284 -msgid "Unable to edit the collection." -msgstr "Не удается редактировать сборник." - -#: ../../enterprise/godmode/agentes/collections.data.php:306 -msgid "Error: The collection directory does not exist." -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:316 -#: ../../godmode/setup/os.builder.php:34 -#: ../../godmode/reporting/visual_console_builder.data.php:99 -msgid "Name:" -msgstr "Название:" - -#: ../../enterprise/godmode/agentes/collections.data.php:323 -msgid "Recreate file" -msgstr "воссоздать файл" - -#: ../../enterprise/godmode/agentes/collections.data.php:339 -#: ../../enterprise/godmode/agentes/collections.data.php:340 -#: ../../enterprise/godmode/agentes/collection_manager.php:138 -#: ../../enterprise/godmode/agentes/collection_manager.php:139 -#: ../../enterprise/godmode/agentes/collection_manager.php:224 -#: ../../enterprise/godmode/agentes/collection_manager.php:225 -msgid "Need to regenerate" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:356 -#: ../../godmode/reporting/visual_console_builder.data.php:104 -msgid "Group:" -msgstr "Группа:" - -#: ../../enterprise/godmode/agentes/collections.data.php:367 -msgid "Short name:" -msgstr "Краткое имя:" - -#: ../../enterprise/godmode/agentes/collections.data.php:373 -msgid "" -"The collection's short name is the name of dir in attachment dir and the " -"package collection." -msgstr "" -"Сокращенное название сборника это имя каталога в папке приложения и пакете " -"сборника." - -#: ../../enterprise/godmode/agentes/collections.data.php:373 -msgid "Short name must contain only alphanumeric characters, - or _ ." -msgstr "" -"Сокращенное название должно содержать только буквенно-цифровые символы, - " -"или _." - -#: ../../enterprise/godmode/agentes/collections.data.php:373 -msgid "Empty for default short name fc_X where X is the collection id." -msgstr "" -"Бессодержательные сокращенные имена по умолчанию fc_X где X является ID " -"сборника." - -#: ../../enterprise/godmode/agentes/collections.data.php:377 -#: ../../operation/snmpconsole/snmp_view.php:702 -msgid "Description:" -msgstr "Описание:" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:41 -msgid "Plug-in deleted succesfully" -msgstr "Плагин успешно удален" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:41 -msgid "Plug-in cannot be deleted" -msgstr "Плагин ме может быть удален" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:49 -#: ../../enterprise/godmode/policies/policy_plugins.php:50 -msgid "Plug-in added succesfully" -msgstr "Плагин добавлен успешно" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:49 -#: ../../enterprise/godmode/policies/policy_plugins.php:51 -msgid "Plug-in cannot be added" -msgstr "Плагин не может быть добавлен" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:64 -msgid "Plug-in disabled succesfully" -msgstr "Плагин успешно отключен" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:64 -msgid "Plug-in cannot be disabled" -msgstr "Плагин не может быть отключен" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:79 -msgid "Plug-in enabled succesfully" -msgstr "Плагин отключен успешно" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:79 -msgid "Plug-in cannot be enabled" -msgstr "Плагин не может быть отключен" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:90 -#: ../../enterprise/godmode/policies/policy_plugins.php:61 -msgid "New plug-in" -msgstr "Новый плагин" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:109 -#: ../../enterprise/godmode/policies/policy_plugins.php:82 -#: ../../godmode/menu.php:206 -msgid "Plugins" -msgstr "Плагины" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:42 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:43 -msgid "The changes on this field are linked with the configuration data." -msgstr "Изменения в этой области связаны с данным конфигурации." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:48 -msgid "Using local component" -msgstr "Использование местного компонента" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:54 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:64 -#: ../../godmode/agentes/module_manager_editor_common.php:74 -#: ../../godmode/agentes/module_manager_editor_common.php:83 -msgid "Manual setup" -msgstr "Ручная настройка" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:60 -#: ../../godmode/agentes/module_manager_editor_common.php:79 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:337 -msgid "No component was found" -msgstr "Ни один компонент не был найден" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:121 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:122 -msgid "Show configuration data" -msgstr "Показать данные кондигурацииДанные конфигурации" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132 -msgid "Hide configuration data" -msgstr "Спрятать данные конфигурации" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:140 -msgid "Data configuration" -msgstr "Данные конфигурации" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:146 -#: ../../enterprise/godmode/modules/configure_local_component.php:296 +#: ../../enterprise/godmode/modules/configure_local_component.php:447 +#: ../../godmode/modules/manage_network_components_form_common.php:294 +msgid "Any value over this number is discarted" +msgstr "Любое значение выше этого числа отбрасывается" + +#: ../../enterprise/godmode/modules/configure_local_component.php:454 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 +#: ../../godmode/modules/manage_network_components_form_plugin.php:49 +#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_wmi.php:55 +#: ../../godmode/agentes/module_manager_editor_common.php:603 +#: ../../godmode/massive/massive_edit_modules.php:724 +#: ../../godmode/setup/snmp_wizard.php:43 +msgid "Post process" +msgstr "Заключительная обработка" + +#: ../../enterprise/godmode/modules/configure_local_component.php:481 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 msgid "Load a basic structure on data configuration" msgstr "Загрузите базовую структуру на данные конфигурации" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:151 -#: ../../enterprise/godmode/modules/configure_local_component.php:303 +#: ../../enterprise/godmode/modules/configure_local_component.php:484 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 msgid "Check the correct structure of the data configuration" msgstr "Проверьте правильность структуры данных конфигурации" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:162 -#: ../../enterprise/godmode/modules/configure_local_component.php:306 +#: ../../enterprise/godmode/modules/configure_local_component.php:487 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 msgid "First line must be \"module_begin\"" msgstr "Первая линия должна быть \"module_begin\"" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:163 -#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/modules/configure_local_component.php:488 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 msgid "Data configuration is empty" msgstr "Данные конфигурации пусты" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:164 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:168 -#: ../../enterprise/godmode/modules/configure_local_component.php:308 -#: ../../enterprise/godmode/modules/configure_local_component.php:312 +#: ../../enterprise/godmode/modules/configure_local_component.php:489 +#: ../../enterprise/godmode/modules/configure_local_component.php:493 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 msgid "Last line must be \"module_end\"" msgstr "Последняя линия должна быть \"module_end\"" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:165 -#: ../../enterprise/godmode/modules/configure_local_component.php:309 +#: ../../enterprise/godmode/modules/configure_local_component.php:490 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to " "data configuration" @@ -14321,8 +13276,8 @@ msgstr "" "Имя пропущено. Пожалуйста, добавьте строку с \"module_name yourmodulename\" " "к данным конфигурации" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 -#: ../../enterprise/godmode/modules/configure_local_component.php:310 +#: ../../enterprise/godmode/modules/configure_local_component.php:491 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to " "data configuration" @@ -14330,115 +13285,1066 @@ msgstr "" "Тип пропущен. Пожалуйста, добавьте строку с \"module_type yourmoduletype\" к " "данным конфигурации" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:167 -#: ../../enterprise/godmode/modules/configure_local_component.php:311 +#: ../../enterprise/godmode/modules/configure_local_component.php:492 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 msgid "Type is wrong. Please set a correct type" msgstr "Тип неправилен. Пожалуйста, установите правильный тип" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 -#: ../../enterprise/godmode/modules/configure_local_component.php:314 +#: ../../enterprise/godmode/modules/configure_local_component.php:495 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 msgid "Error in the syntax, please check the data configuration." msgstr "Ошибка в синтаксисе, пожалуйста, проверьте конфигурационные данные." -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171 -#: ../../enterprise/godmode/modules/configure_local_component.php:315 +#: ../../enterprise/godmode/modules/configure_local_component.php:496 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 msgid "Data configuration are built correctly" msgstr "Конфигурация данных построены правильно" -#: ../../enterprise/godmode/agentes/module_manager.php:16 -msgid "Create a new web Server module" -msgstr "Создайте новый модуль веб сервера" +#: ../../enterprise/godmode/modules/configure_local_component.php:504 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:938 +#: ../../godmode/modules/manage_network_components_form_common.php:306 +#: ../../godmode/agentes/module_manager_editor_common.php:1047 +#: ../../godmode/massive/massive_edit_modules.php:1036 +msgid "Critical instructions" +msgstr "Критические инструкции" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:43 -msgid "Data Copy" -msgstr "Копировать данные" +#: ../../enterprise/godmode/modules/configure_local_component.php:504 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:938 +#: ../../godmode/modules/manage_network_components_form_common.php:306 +#: ../../godmode/massive/massive_edit_modules.php:1036 +msgid "Instructions when the status is critical" +msgstr "Инструкции, когда статус критический" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:52 -msgid "No selected agents to copy" -msgstr "Нет выбранных агентов для копирования" +#: ../../enterprise/godmode/modules/configure_local_component.php:509 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:942 +#: ../../godmode/modules/manage_network_components_form_common.php:310 +#: ../../godmode/agentes/module_manager_editor_common.php:1052 +#: ../../godmode/massive/massive_edit_modules.php:1040 +msgid "Warning instructions" +msgstr "Интрукции при предостережении" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:66 -msgid "No source agent selected" -msgstr "Агент испочника не выбран" +#: ../../enterprise/godmode/modules/configure_local_component.php:509 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:942 +#: ../../godmode/modules/manage_network_components_form_common.php:310 +#: ../../godmode/massive/massive_edit_modules.php:1040 +msgid "Instructions when the status is warning" +msgstr "Инструкции, когда статус предостерегающий" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:107 -msgid "Making copy of configuration file for" -msgstr "Создание копии файла конфигурации для" +#: ../../enterprise/godmode/modules/configure_local_component.php:514 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 +#: ../../godmode/modules/manage_network_components_form_common.php:314 +#: ../../godmode/agentes/module_manager_editor_common.php:1056 +#: ../../godmode/massive/massive_edit_modules.php:1044 +msgid "Unknown instructions" +msgstr "Неизвестные инструкции" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:116 -msgid "Error copying md5 file " -msgstr "Ошибка при копировании md5 файла " +#: ../../enterprise/godmode/modules/configure_local_component.php:514 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 +#: ../../godmode/modules/manage_network_components_form_common.php:314 +#: ../../godmode/massive/massive_edit_modules.php:1044 +msgid "Instructions when the status is unknown" +msgstr "Инструкции, когда статус неизвестен" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:116 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -msgid " md5 file" -msgstr " md5 файл" +#: ../../enterprise/godmode/modules/configure_local_component.php:523 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:906 +#: ../../godmode/modules/manage_network_components_form_common.php:325 +#: ../../godmode/agentes/module_manager_editor_common.php:1097 +#: ../../godmode/massive/massive_edit_modules.php:1004 +#: ../../godmode/module_library/module_library_view.php:105 +msgid "Category" +msgstr "Категория" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 -msgid "Copied " -msgstr "Копированный " +#: ../../enterprise/godmode/modules/configure_local_component.php:542 +#: ../../godmode/modules/manage_network_components_form_common.php:345 +#: ../../godmode/agentes/module_manager_editor_common.php:860 +msgid "Tags available" +msgstr "Свободные теги" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:122 -msgid "Error copying " -msgstr "Ошибка копирования " +#: ../../enterprise/godmode/modules/configure_local_component.php:560 +#: ../../godmode/modules/manage_network_components_form_common.php:363 +#: ../../godmode/agentes/module_manager_editor_common.php:955 +msgid "Add tags to module" +msgstr "Добавить теги к модулю" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:122 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 -msgid " config file" -msgstr " конфигурационный файл" +#: ../../enterprise/godmode/modules/configure_local_component.php:561 +#: ../../godmode/modules/manage_network_components_form_common.php:364 +#: ../../godmode/agentes/module_manager_editor_common.php:964 +msgid "Delete tags to module" +msgstr "Удалить теги модуля" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:138 -msgid "Remote configuration management" -msgstr "Удалить управление конфигурацией" +#: ../../enterprise/godmode/modules/configure_local_component.php:562 +#: ../../enterprise/godmode/setup/setup_auth.php:172 +#: ../../enterprise/godmode/setup/setup_auth.php:456 +#: ../../enterprise/godmode/setup/setup_auth.php:1232 +#: ../../godmode/modules/manage_network_components_form_common.php:365 +#: ../../godmode/agentes/module_manager_editor_common.php:968 +msgid "Tags selected" +msgstr "Теги выбраны" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:143 -msgid "Source group" -msgstr "Источник группы" +#: ../../enterprise/godmode/modules/configure_local_component.php:584 +msgid "Macros" +msgstr "Макросы" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:154 -#: ../../operation/agentes/exportdata.php:235 -#: ../../godmode/db/db_refine.php:83 -msgid "Source agent" -msgstr "агент источника" +#: ../../enterprise/godmode/modules/configure_local_component.php:620 +#: ../../godmode/servers/plugin.php:494 +#: ../../include/class/ManageNetScanScripts.class.php:636 +msgid "Default value" +msgstr "Значение по умолчанию" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:185 -msgid "To agent(s):" -msgstr "К агенту(ам):" +#: ../../enterprise/godmode/modules/configure_local_component.php:636 +#: ../../godmode/servers/plugin.php:556 +#: ../../include/class/ManageNetScanScripts.class.php:724 +msgid "Add macro" +msgstr "Добавить макрос" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:210 -msgid "Replicate configuration" -msgstr "Копирование конфигурации" +#: ../../enterprise/godmode/modules/configure_local_component.php:644 +#: ../../godmode/servers/plugin.php:570 +#: ../../include/class/ManageNetScanScripts.class.php:742 +msgid "Delete macro" +msgstr "Удалить макрос" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:106 +#: ../../enterprise/godmode/modules/configure_local_component.php:892 +#: ../../godmode/modules/manage_network_components_form_common.php:631 +#: ../../godmode/agentes/module_manager_editor_common.php:1892 +msgid "Normal Status" +msgstr "Нормальный статус" + +#: ../../enterprise/godmode/modules/configure_local_component.php:893 +#: ../../godmode/modules/manage_network_components_form_common.php:632 +#: ../../godmode/agentes/module_manager_editor_common.php:1893 +msgid "Warning Status" +msgstr "Статус Предостережения" + +#: ../../enterprise/godmode/modules/configure_local_component.php:894 +#: ../../godmode/modules/manage_network_components_form_common.php:633 +#: ../../godmode/agentes/module_manager_editor_common.php:1894 +msgid "Critical Status" +msgstr "Критический Статус" + +#: ../../enterprise/godmode/modules/configure_local_component.php:896 +#: ../../godmode/modules/manage_network_components_form_common.php:635 +#: ../../godmode/agentes/module_manager_editor_common.php:1896 +msgid "Please introduce a maximum warning higher than the minimun warning" +msgstr "" +"Пожалуйста, введите максимальное предупреждение выше минимального " +"предостережения" + +#: ../../enterprise/godmode/modules/configure_local_component.php:897 +#: ../../godmode/modules/manage_network_components_form_common.php:636 +#: ../../godmode/agentes/module_manager_editor_common.php:1897 +msgid "Please introduce a maximum critical higher than the minimun critical" +msgstr "" +"Пожалуйста, введите максимальный критический показатель выше, чем " +"минимальный критический показатель" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:40 +msgid "To manage inventory plugin you must activate centralized management" +msgstr "" +"Для управления плагином инвентаризации необходимо активировать " +"централизованное управление" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:78 +msgid "" +"This console is not manager of this environment,\n" +" please manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "" +"Эта консоль не является менеджером этой среды,\n" +" мы можете управлять этой функцией с консоли централизованного " +"менеджера (Metaconsole)." + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:125 +msgid "Successfully created inventory module" +msgstr "Модуль инвентаризации успешно создан" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:128 +msgid "Error creating inventory module" +msgstr "Ошибка при создании модуля инвентаризации" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:145 +#: ../../enterprise/godmode/agentes/inventory_manager.php:125 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:175 +msgid "Successfully updated inventory module" +msgstr "Модуль инвентаризации успешно обновлен" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:148 +#: ../../enterprise/godmode/agentes/inventory_manager.php:127 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:178 +msgid "Error updating inventory module" +msgstr "Ошибка при обновлении модуля инвентаризации" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:160 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:176 +#: ../../enterprise/godmode/agentes/inventory_manager.php:97 +msgid "Successfully deleted inventory module" +msgstr "Модуль инвентаризации успешно удален" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:163 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:179 +#: ../../enterprise/godmode/agentes/inventory_manager.php:99 +msgid "Error deleting inventory module" +msgstr "Ошибка при удалении модуля инвентаризации" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:212 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:245 +#: ../../enterprise/godmode/modules/local_components.php:388 +#: ../../godmode/modules/manage_nc_groups.php:185 +#: ../../godmode/modules/manage_network_components.php:556 +#: ../../godmode/modules/manage_network_templates.php:102 +msgid "Successfully multiple deleted" +msgstr "Успешно удалено несколько данных" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:213 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:246 +#: ../../enterprise/godmode/modules/local_components.php:389 +#: ../../godmode/modules/manage_nc_groups.php:186 +#: ../../godmode/modules/manage_network_components.php:557 +#: ../../godmode/modules/manage_network_templates.php:103 +msgid "Not deleted. Error deleting multiple data" +msgstr "Не удалено. Ошибка при удалении нескольких данных" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272 +msgid "Successfully created inventory module in the node" +msgstr "Успешно создан модуль инвентаризации в узле" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:275 +msgid "Error creating inventory module in the node" +msgstr "Ошибка при создании модуля инвентаризации в узле" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:377 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 +msgid "Interpreter" +msgstr "Переводчик" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:386 +msgid "No inventory modules defined" +msgstr "Модули инвентаризации не определены" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:407 +msgid "Local module" +msgstr "Локальный модуль" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:409 +msgid "Remote/Local" +msgstr "Удаленный/Локальный" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:425 +msgid "Deploy to the nodes" +msgstr "Развернуть узлы" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:469 +msgid "" +"The configurations of inventory modules from the nodes have been unified. \n" +"\t\tFrom this point on, changes to the inventory scripts must be made " +"through this screen." +msgstr "" +"Конфигурации модулей инвентаризации с узлов были унифицированы. \n" +"\t\tС этого момента изменения в скриптах инвентаризации должны производиться " +"через этот экран." + +#: ../../enterprise/godmode/modules/local_components.php:107 +#: ../../godmode/modules/manage_network_components.php:189 +#: ../../godmode/alerts/configure_alert_template.php:158 +#, php-format +msgid "Successfully created from %s" +msgstr "успешно создан из %s" + +#: ../../enterprise/godmode/modules/local_components.php:123 +msgid "Local component management" +msgstr "Управление местными компонентами" + +#: ../../enterprise/godmode/modules/local_components.php:279 +#: ../../godmode/modules/manage_network_components.php:409 +#: ../../include/class/ManageNetScanScripts.class.php:228 +msgid "Created successfully" +msgstr "Создание успешно завершено" + +#: ../../enterprise/godmode/modules/local_components.php:341 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:108 +#: ../../enterprise/godmode/policies/policy_modules.php:1244 +#: ../../enterprise/godmode/policies/policies.php:262 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133 +#: ../../enterprise/godmode/alerts/alert_events.php:429 +#: ../../enterprise/godmode/alerts/alert_events_list.php:102 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:176 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:318 +#: ../../enterprise/include/ajax/servers.ajax.php:331 +#: ../../enterprise/operation/agentes/transactional_map.php:134 +#: ../../enterprise/tools/ipam/ipam_action.php:180 +#: ../../enterprise/tools/ipam/ipam_massive.php:48 +#: ../../godmode/modules/manage_network_components.php:494 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/agentes/planned_downtime.editor.php:406 +#: ../../godmode/alerts/configure_alert_command.php:120 +#: ../../godmode/alerts/alert_templates.php:162 +#: ../../godmode/alerts/configure_alert_template.php:528 +#: ../../godmode/alerts/alert_special_days.php:244 +#: ../../godmode/alerts/alert_list.php:95 +#: ../../godmode/alerts/alert_list.php:300 ../../godmode/setup/gis.php:38 +#: ../../include/functions_alerts.php:2877 +#: ../../include/functions_planned_downtimes.php:122 +#: ../../operation/agentes/pandora_networkmap.php:202 +#: ../../operation/agentes/pandora_networkmap.php:500 +#: ../../operation/snmpconsole/snmp_view.php:181 +msgid "Could not be updated" +msgstr "Не может быть обновлено" + +#: ../../enterprise/godmode/modules/local_components.php:347 +#: ../../godmode/modules/manage_network_components.php:500 +#: ../../include/class/ManageNetScanScripts.class.php:315 +msgid "Updated successfully" +msgstr "Обновлено успешно" + +#: ../../enterprise/godmode/modules/local_components.php:492 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2880 +#: ../../godmode/modules/manage_network_components.php:636 +msgid "Free Search" +msgstr "Свободный поиск" + +#: ../../enterprise/godmode/modules/local_components.php:493 +msgid "Search by name, description or data, list matches." +msgstr "Поиск по имени, описанию или данным, список совпадений." + +#: ../../enterprise/godmode/modules/local_components.php:620 +#: ../../enterprise/godmode/policies/policy_modules.php:1558 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:567 +#: ../../godmode/modules/manage_network_components.php:819 +#: ../../godmode/modules/manage_network_components.php:820 +#: ../../godmode/agentes/module_manager.php:1096 +#: ../../godmode/snmpconsole/snmp_alert.php:1393 +#: ../../godmode/alerts/alert_actions.php:429 +#: ../../godmode/alerts/alert_templates.php:425 +msgid "Duplicate" +msgstr "Скопировать" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 +#: ../../enterprise/godmode/agentes/inventory_manager.php:162 +msgid "Inventory module error" +msgstr "Ошибка модуля инвентаризации" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116 +msgid "Left blank for the LOCAL inventory modules" +msgstr "Оставляется пустым для модулей инвентаризации LOCAL" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 +msgid "Block Mode" +msgstr "Режим блокировки" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121 +#: ../../godmode/massive/massive_standby_alerts.php:199 +#: ../../godmode/massive/massive_standby_alerts.php:234 +#: ../../godmode/massive/massive_enable_disable_alerts.php:187 +#: ../../godmode/massive/massive_enable_disable_alerts.php:222 +#: ../../include/class/ModuleTemplates.class.php:1205 +msgid "Format" +msgstr "Формат" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 +msgid "separate fields with " +msgstr "разделить поля с " + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 +#: ../../include/ajax/double_auth.ajax.php:149 +#: ../../include/ajax/double_auth.ajax.php:292 +msgid "Code" +msgstr "Код" + +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 +msgid "" +"Here is placed the script for the REMOTE inventory modules Local inventory " +"modules don't use this field" +msgstr "" +"Здесь размещен скрипт для УДАЛЕННЫХ модулей инвентаризации. ЛОКАЛЬНЫЕ Модули " +"инвентаризации не используют это поле" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:55 +msgid "Cannot delete rule from autoconfiguration" +msgstr "Невозможно удалить правило из автоконфигурации" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:61 +msgid "Agent Autoconfiguration Information" +msgstr "Информация об автоконфигурации агента" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:62 +msgid "" +"You must click the Create or Update buttom for a correct configuration!!!" +msgstr "" +"Вы должны нажать кнопку Создать или Обновить для правильной конфигурации!!!" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:70 +msgid "" +"Cannot create autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"Невозможно создать автоконфигурацию, используя консоль, предназначенную " +"только для чтения, пожалуйста, создайте это, используя метаконсоль " +"(централизованное управление)" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:91 +msgid "Cannot create autoconfiguration in metaconsole" +msgstr "Невозможно создать автоконфигурацию в метаконсоли" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:99 +msgid "Cannot create unnamed autoconfiguration" +msgstr "Невозможно создать автоконфигурацию без имени" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109 +msgid "" +"Cannot udpate autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"Невозможно обновить автоконфигурацию, используя консоль, предназначенную " +"только для чтения, пожалуйста, обновите это, используя метаконсоль " +"(централизованное управление)" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:126 +msgid "Cannot update autoconfiguration" +msgstr "Невозможно обновить автоконфигурацию" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:136 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:191 +msgid "" +"Cannot modify autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" +"Невозможно модифицировать автоконфигурацию, используя консоль, " +"предназначенную только для чтения, пожалуйста, модифицируйте это, используя " +"метаконсоль (централизованное управление)" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:292 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:69 +msgid "Agent autoconfiguration list" +msgstr "Список автоконфигурации агента" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:313 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:88 +#: ../../enterprise/godmode/agentes/collections.php:57 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:18 +#: ../../enterprise/include/functions_enterprise_api.php:5658 +msgid "" +"This console is not manager of this environment, please manage this feature " +"from centralized manager console (Metaconsole)." +msgstr "" +"Эта консоль не является менеджером данной среды, пожалуйста, управляйте этой " +"функцией с централизованной консоли менеджера (Metaconsole)." + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:322 +msgid "Autoconfiguration" +msgstr "Автоконфигурация" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:364 +#: ../../include/class/CredentialStore.class.php:939 +msgid "Extra" +msgstr "Дополнительно" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:392 +msgid "Add rule" +msgstr "Добавить правило" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 +msgid "Rules" +msgstr "Правила" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:419 +msgid "New group" +msgstr "Новая группа" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:451 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:384 +msgid "Launch custom event" +msgstr "Запустить пользовательское событие" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:452 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:385 +msgid "Launch alert action" +msgstr "Запустить действия по предупреждению" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:453 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:386 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 +msgid "Launch script" +msgstr "Запустить Скрипт" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:497 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:511 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:308 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:323 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:586 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:617 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:626 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:685 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:708 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:729 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:733 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:744 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:764 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:789 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:805 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:866 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:889 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:907 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:913 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:926 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:954 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1056 +#: ../../godmode/massive/massive_edit_agents.php:563 +#: ../../godmode/massive/massive_edit_agents.php:579 +#: ../../godmode/massive/massive_edit_agents.php:592 +#: ../../godmode/massive/massive_edit_agents.php:600 +#: ../../godmode/massive/massive_edit_agents.php:624 +#: ../../godmode/massive/massive_edit_agents.php:671 +#: ../../godmode/massive/massive_edit_agents.php:678 +#: ../../godmode/massive/massive_edit_agents.php:719 +#: ../../godmode/massive/massive_edit_agents.php:723 +#: ../../godmode/massive/massive_edit_agents.php:732 +#: ../../godmode/massive/massive_edit_agents.php:760 +#: ../../godmode/massive/massive_edit_agents.php:828 +#: ../../godmode/massive/massive_edit_modules.php:603 +#: ../../godmode/massive/massive_edit_modules.php:672 +#: ../../godmode/massive/massive_edit_modules.php:703 +#: ../../godmode/massive/massive_edit_modules.php:712 +#: ../../godmode/massive/massive_edit_modules.php:771 +#: ../../godmode/massive/massive_edit_modules.php:789 +#: ../../godmode/massive/massive_edit_modules.php:808 +#: ../../godmode/massive/massive_edit_modules.php:812 +#: ../../godmode/massive/massive_edit_modules.php:823 +#: ../../godmode/massive/massive_edit_modules.php:843 +#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/massive/massive_edit_modules.php:880 +#: ../../godmode/massive/massive_edit_modules.php:941 +#: ../../godmode/massive/massive_edit_modules.php:987 +#: ../../godmode/massive/massive_edit_modules.php:1005 +#: ../../godmode/massive/massive_edit_modules.php:1011 +#: ../../godmode/massive/massive_edit_modules.php:1024 +#: ../../godmode/massive/massive_edit_modules.php:1052 +#: ../../godmode/massive/massive_edit_modules.php:1156 +#: ../../include/functions_html.php:1617 ../../include/functions_html.php:1718 +#: ../../include/functions_html.php:1850 +msgid "No change" +msgstr "Не изменять" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:515 +#: ../../godmode/agentes/agent_manager.php:445 +#: ../../include/functions_events.php:4983 +#: ../../operation/agentes/estado_generalagente.php:396 +msgid "Secondary groups" +msgstr "Второстепенные группы" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:562 +#: ../../godmode/agentes/agent_manager.php:517 +msgid "Add secondary groups" +msgstr "Добавить второстепенные группы" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:569 +#: ../../godmode/agentes/agent_manager.php:528 +msgid "Remove secondary groups" +msgstr "Удалить второстепенные группы" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:606 +#: ../../enterprise/godmode/policies/configure_policy.php:47 +msgid "Add policy" +msgstr "Добавить политику" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:621 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:356 +msgid "Op" +msgstr "Оп" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:638 +msgid "Extra configuration block" +msgstr "Блок дополнительной конфигурации" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:640 +msgid "" +"Put here any extra configuration you want to be applied to any new agent " +"matching previously defined rules" +msgstr "" +"Поместите сюда любую дополнительную конфигурацию, которую вы хотите " +"применить к любому новому агенту, соответствующему ранее определенным " +"правилам" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:673 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:704 +msgid "Extra actions" +msgstr "Дополнительные действия" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:694 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:997 +msgid "Add extra action" +msgstr "Добавить дополнительное действие" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:862 +msgid "Add new rule" +msgstr "Добавить новое правило" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:864 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:175 +msgid "Update rule" +msgstr "Обновить правило" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1084 +msgid "Update extra action" +msgstr "Обновить дополнительное действие" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:51 +msgid "Cannot delete autoconfiguration" +msgstr "Невозможно удалить автоконфигурацию" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:115 +msgid "There are no defined autoconfigurations" +msgstr "Нет определенных автоконфигураций" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:140 +msgid "Add new configuration definition" +msgstr "Добавьте новое определение конфигурации" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:37 +#: ../../enterprise/operation/agentes/tag_view.php:277 +#: ../../operation/agentes/status_monitor.php:583 +msgid "Web server module" +msgstr "Модуль веб сервера" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:116 +msgid "Debug remotely this module" +msgstr "Удаленное устранение ошибок этого модуля" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:120 +msgid "Debug this module once it has been initialized" +msgstr "Устранение ошибок этого модуля после его инициализации" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:142 +#: ../../enterprise/include/class/WebServerModuleDebug.class.php:325 +msgid "Debug" +msgstr "Устранение ошибок" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:167 +msgid "Requests" +msgstr "Запросы" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:170 +msgid "Agent browser id" +msgstr "ID браузера агента" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:176 +msgid "HTTP auth (login)" +msgstr "HTTP-авторизации (логин)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:179 +msgid "HTTP auth (password)" +msgstr "HTTP аутентификация (пароль)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:193 +msgid "Proxy auth (login)" +msgstr "Прокси-аутентификация (логин)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:197 +msgid "Proxy auth (pass)" +msgstr "Прокси-аутентификация (проход)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:204 +msgid "Proxy auth (server)" +msgstr "Прокси-аутентификация (сервер)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:208 +msgid "Proxy auth (realm)" +msgstr "Прокси-аутентификация (сфера)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:220 +msgid "There isn't get or post" +msgstr "Не может быть получена или опубликована." + +#: ../../enterprise/godmode/agentes/collections.agents.php:38 +msgid "Show Agent >" +msgstr "Показать агента >" + +#: ../../enterprise/godmode/agentes/collections.agents.php:122 +#: ../../enterprise/godmode/agentes/collections.agents.php:126 +msgid "This collection has not been added to any agents" +msgstr "Эта коллекция не была добавлена ни к одному агенту" + +#: ../../enterprise/godmode/agentes/configurar_agente.php:44 +#: ../../enterprise/godmode/policies/policies.php:578 +#: ../../enterprise/include/functions_reporting_csv.php:666 +#: ../../enterprise/operation/agentes/ver_agente.php:189 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 +#: ../../enterprise/operation/menu.php:19 +#: ../../enterprise/operation/inventory/inventory.php:122 +#: ../../godmode/agentes/configurar_agente.php:703 +#: ../../godmode/setup/setup_integria.php:303 +#: ../../include/functions_reports.php:853 +#: ../../include/functions_reports.php:854 +#: ../../include/functions_reports.php:858 +#: ../../include/functions_reporting.php:2360 +msgid "Inventory" +msgstr "Опись" + +#: ../../enterprise/godmode/agentes/configurar_agente.php:68 +#: ../../enterprise/godmode/policies/policy.php:82 +#: ../../enterprise/include/functions_policies.php:3859 +#: ../../godmode/agentes/configurar_agente.php:709 +msgid "Agent plugins" +msgstr "Агент плагинов" + +#: ../../enterprise/godmode/agentes/collection_manager.php:37 +#: ../../enterprise/operation/agentes/collection_view.php:47 +msgid "This agent have not a remote configuration, please set it." +msgstr "" +"Этот агент не имеет дистанционной конфигурации, пожалуйста, задайте ее." + +#: ../../enterprise/godmode/agentes/collection_manager.php:83 +msgid "Succesful add the collection" +msgstr "Сборник успешно добавлен" + +#: ../../enterprise/godmode/agentes/collection_manager.php:84 +msgid "Unsuccesful add the collection" +msgstr "Неуспешное добавление сборника" + +#: ../../enterprise/godmode/agentes/collection_manager.php:135 +#: ../../enterprise/godmode/agentes/collection_manager.php:136 +#: ../../enterprise/godmode/agentes/collection_manager.php:257 +#: ../../enterprise/operation/agentes/policy_view.php:182 +#: ../../enterprise/operation/agentes/policy_view.php:183 +#: ../../enterprise/operation/agentes/collection_view.php:91 +msgid "Show files" +msgstr "Показать файлы" + +#: ../../enterprise/godmode/agentes/collection_manager.php:202 +#: ../../enterprise/operation/agentes/agent_inventory.php:254 +#: ../../enterprise/operation/log/log_viewer.php:1222 +#: ../../enterprise/operation/log/log_viewer.php:1230 +#: ../../enterprise/operation/inventory/inventory.php:295 +#: ../../godmode/reporting/reporting_builder.php:1166 +#: ../../include/functions_reporting.php:2435 +msgid "No data found." +msgstr "Данные не найдены." + +#: ../../enterprise/godmode/agentes/collection_manager.php:211 +#: ../../enterprise/godmode/agentes/inventory_manager.php:216 +#: ../../enterprise/operation/agentes/collection_view.php:61 +#: ../../godmode/agentes/module_manager.php:771 +#: ../../godmode/snmpconsole/snmp_alert.php:1318 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/graph_builder.graph_editor.php:211 +#: ../../include/ajax/alert_list.ajax.php:271 ../../include/ajax/module.php:974 +#: ../../operation/agentes/alerts_status.php:526 +#: ../../operation/agentes/alerts_status.php:562 +#: ../../operation/agentes/status_monitor.php:1214 +msgid "P." +msgstr "P." + +#: ../../enterprise/godmode/agentes/collection_manager.php:213 +#: ../../enterprise/operation/agentes/policy_view.php:151 +#: ../../enterprise/operation/agentes/collection_view.php:63 +msgid "Dir" +msgstr "Кат." + +#: ../../enterprise/godmode/agentes/collection_manager.php:216 +#: ../../enterprise/godmode/policies/policy_collections.php:157 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:159 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:147 +#: ../../enterprise/include/functions_ui.php:120 +#: ../../enterprise/include/functions_ui.php:168 +#: ../../godmode/alerts/alert_special_days.php:534 +#: ../../godmode/events/event_edit_filter.php:531 +#: ../../godmode/events/event_edit_filter.php:584 +#: ../../operation/events/events_list.php:618 +#: ../../operation/events/events_list.php:691 +#: ../../operation/events/events.php:595 ../../operation/events/events.php:669 +msgid "Remove" +msgstr "Удалить" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:163 +#: ../../enterprise/godmode/services/services.elements.php:95 +#: ../../enterprise/godmode/services/services.elements.php:181 +#: ../../enterprise/include/functions_visual_map_editor.php:30 +#: ../../enterprise/include/functions_visual_map_editor.php:41 +#: ../../enterprise/include/functions_visual_map_editor.php:54 +#: ../../enterprise/include/functions_visual_map_editor.php:85 +#: ../../enterprise/include/functions_visual_map.php:539 +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:286 +#: ../../enterprise/include/functions_reporting.php:5859 +#: ../../enterprise/include/functions_services.php:1554 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3121 +#: ../../include/lib/Dashboard/Widgets/service_map.php:287 +msgid "Service" +msgstr "Сервис" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 +msgid "Synthetic arithmetic" +msgstr "Синтетический счет" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:30 +msgid "Synthetic average" +msgstr "Синтетическая средняя величина" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111 +msgid "Fixed value" +msgstr "Фиксированное значение" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:116 +msgid "Add module to operation as add" +msgstr "Добавить модуль к операциям как добавление" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:117 +msgid "Add module to operations as deduct" +msgstr "Добавить модуль к операциям как вычетание" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:118 +msgid "Add module to operations as multiplicate " +msgstr "Добавить модуль к операциям как умножение " + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 +msgid "Add module to operations as divide" +msgstr "Добавить модуль к операциям как деление" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 +msgid "Remove selected modules" +msgstr "Удалить выбранные модули" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:125 +msgid "Add module to average operation" +msgstr "Добавить модуль к средней операции" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:126 +msgid "Remove selected modules from operations stack" +msgstr "Удалить выбранные модули из стека операций" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:133 +#: ../../enterprise/godmode/policies/policy_alerts.php:291 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 +#: ../../enterprise/godmode/alerts/alert_events_list.php:507 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:463 +#: ../../enterprise/include/functions_tasklist.php:173 +#: ../../godmode/massive/massive_copy_modules.php:184 +#: ../../godmode/alerts/alert_list.list.php:476 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:563 +msgid "Operations" +msgstr "Операции" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 +msgid "Move down selected modules" +msgstr "Передвинуть вниз выбранные модули" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 +msgid "Move up selected modules" +msgstr "Передвинуть вверх выбранные модули" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:172 +msgid "Select Service" +msgstr "Выбрать Сервис" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:185 +msgid "Netflow filter" +msgstr "Фильтр Сетевого потока" + +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:194 +msgid "Select filter" +msgstr "Выбрать фильтр" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:81 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:125 +msgid "Successfully added inventory module" +msgstr "Успешное добавление модуля инвентаризации" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:83 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:128 +msgid "Error adding inventory module" +msgstr "Ошибка при добавлении модуля инвентаризации" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:86 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:131 +msgid "The inventory of the module already exists" +msgstr "Инвентарь модуля уже существует" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:107 +msgid "Successfully forced inventory module" +msgstr "Модуль инвентаризации успешно переведен" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:109 +msgid "Error forcing inventory module" +msgstr "Ошибка при переведении модуля инвентаризации" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:254 +#: ../../enterprise/include/functions_ipam.php:1247 +#: ../../enterprise/operation/services/services.list.php:641 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:535 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:625 +#: ../../include/ajax/module.php:1052 ../../include/functions_ui.php:1144 +#: ../../operation/agentes/group_view.php:192 +#: ../../operation/agentes/group_view.php:247 +#: ../../operation/servers/recon_view.php:91 +#: ../../operation/servers/recon_view.php:123 +msgid "Force" +msgstr "Принудительно" + +#: ../../enterprise/godmode/agentes/collections.data.php:362 +msgid "Collection updated successfully" +msgstr "Коллекция успешно обновлена" + +#: ../../enterprise/godmode/agentes/collections.data.php:376 +msgid "Error: The collection directory does not exist." +msgstr "Ошибка: Каталог коллекции не существует." + +#: ../../enterprise/godmode/agentes/collections.editor.php:95 +msgid "Files in " +msgstr "Файлы в " + +#: ../../enterprise/godmode/agentes/plugins_manager.php:60 +msgid "Plug-in updated succesfully" +msgstr "Плагин успешно обновлен" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:60 +msgid "Plug-in cannot be updated" +msgstr "Плагин не может быть обновлен" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:68 +msgid "Plug-in deleted succesfully" +msgstr "Плагин успешно удален" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:68 +msgid "Plug-in cannot be deleted" +msgstr "Плагин ме может быть удален" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:81 +#: ../../enterprise/godmode/policies/policy_plugins.php:74 +msgid "Plug-in added succesfully" +msgstr "Плагин добавлен успешно" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:81 +#: ../../enterprise/godmode/policies/policy_plugins.php:75 +msgid "Plug-in cannot be added" +msgstr "Плагин не может быть добавлен" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:91 +msgid "Plug-in enabled succesfully" +msgstr "Плагин отключен успешно" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:92 +msgid "Plug-in cannot be enabled" +msgstr "Плагин не может быть отключен" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:103 +msgid "Plug-in disabled succesfully" +msgstr "Плагин успешно отключен" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:104 +msgid "Plug-in cannot be disabled" +msgstr "Плагин не может быть отключен" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:121 +#: ../../enterprise/godmode/policies/policy_plugins.php:94 +msgid "If enabled, allows to define a complex module plugin or log." +msgstr "" +"Если он включен, то он позволяет определить сложный модуль плагина или " +"журнала." + +#: ../../enterprise/godmode/agentes/plugins_manager.php:136 +#: ../../enterprise/godmode/policies/policy_plugins.php:108 +msgid "New plug-in" +msgstr "Новый плагин" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:186 +#: ../../enterprise/godmode/policies/policy_plugins.php:152 +#: ../../enterprise/godmode/policies/policies.php:574 +#: ../../godmode/menu.php:289 +msgid "Plugins" +msgstr "Плагины" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:189 +#: ../../enterprise/godmode/agentes/plugins_manager.php:255 +#: ../../enterprise/godmode/policies/policy_alerts.php:658 +#: ../../enterprise/godmode/alerts/alert_events_list.php:800 +#: ../../enterprise/include/functions_HA_cluster.php:61 +#: ../../enterprise/include/lib/Metaconsole/Node.php:722 +#: ../../enterprise/include/lib/Metaconsole/Node.php:723 +#: ../../godmode/extensions.php:257 ../../godmode/users/user_list.php:649 +#: ../../godmode/alerts/alert_list.list.php:1011 +#: ../../operation/users/user_edit_notifications.php:63 +msgid "Enable" +msgstr "Включить" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:189 +#: ../../enterprise/godmode/agentes/plugins_manager.php:262 +#: ../../enterprise/godmode/policies/policy_alerts.php:650 +#: ../../enterprise/godmode/alerts/alert_events_list.php:792 +#: ../../enterprise/include/functions_HA_cluster.php:58 +#: ../../enterprise/include/lib/Metaconsole/Node.php:751 +#: ../../enterprise/include/lib/Metaconsole/Node.php:752 +#: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:647 +#: ../../godmode/alerts/alert_list.list.php:984 +#: ../../include/functions.php:3355 +msgid "Disable" +msgstr "Отключить" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 +msgid "The changes on this field are linked with the configuration data." +msgstr "Изменения в этой области связаны с данным конфигурации." + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 +msgid "Using local component" +msgstr "Использование местного компонента" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 +#: ../../godmode/agentes/module_manager_editor_common.php:99 +#: ../../godmode/agentes/module_manager_editor_common.php:116 +msgid "Manual setup" +msgstr "Ручная настройка" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 +#: ../../godmode/agentes/module_manager_editor_common.php:108 +msgid "No component was found" +msgstr "Ни один компонент не был найден" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 +msgid "Show configuration data" +msgstr "Показать данные кондигурацииДанные конфигурации" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 +msgid "Hide configuration data" +msgstr "Спрятать данные конфигурации" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 +msgid "Data configuration" +msgstr "Данные конфигурации" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:117 msgid "Error: The conf file of agent is not readble." msgstr "Ошибка: конфигурационный файл агента не читается." -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:121 msgid "Error: The conf file of agent is not writable." msgstr "Ошибка: конфигурационный файл агента не доступен для записи." -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:149 -#: ../../enterprise/godmode/policies/policy_modules.php:262 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:174 +#: ../../enterprise/godmode/policies/policy_modules.php:383 msgid "Add module" msgstr "Добавить модуль" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:175 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:209 msgid "No module was found" msgstr "Модуль не найден" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:203 -msgid "Delete remote conf agent files in Pandora" -msgstr "Удалить дистанционные файлы агента конфигурации в Pandora" +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:244 +msgid "Delete remote conf agent files" +msgstr "Удалить дистанционные файлы агента конфигурации" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:206 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:162 -#: ../../godmode/agentes/agent_manager.php:333 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:245 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:336 +#: ../../godmode/agentes/agent_manager.php:590 msgid "Delete remote configuration file" msgstr "Удалить удаленный файл конфигурации" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:207 -#: ../../godmode/agentes/agent_manager.php:336 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:245 msgid "" "Delete this conf file implies that for restore you must reactive remote " "config in the local agent." @@ -14446,782 +14352,1904 @@ msgstr "" "Удалить это конфигурационный файл подразумевает, что для восстановления вам " "будет необходимо реактивировать удаленную конфигурацию в местный агент." -#: ../../enterprise/godmode/agentes/collections.editor.php:63 -msgid "Files in " -msgstr "Файлы в " +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 +#: ../../enterprise/tools/ipam/ipam_excel.php:112 +#: ../../enterprise/tools/ipam/ipam_excel.php:182 +#: ../../extensions/api_checker.php:161 +#: ../../godmode/modules/module_list.php:58 +#: ../../godmode/groups/group_list.php:792 +#: ../../godmode/groups/modu_group_list.php:234 +#: ../../godmode/agentes/fields_manager.php:118 +#: ../../godmode/agentes/agent_manager.php:216 +#: ../../godmode/agentes/agent_incidents.php:88 +#: ../../godmode/agentes/module_manager_editor_common.php:206 +#: ../../godmode/alerts/alert_commands.php:628 +#: ../../godmode/setup/os.list.php:31 ../../include/functions_events.php:6469 +#: ../../operation/incidents/list_integriaims_incidents.php:261 +#: ../../operation/events/events.build_table.php:146 +msgid "ID" +msgstr "ID" -#: ../../enterprise/godmode/agentes/collections.editor.php:111 -#: ../../enterprise/godmode/agentes/collections.editor.php:172 -#: ../../include/functions_filemanager.php:747 -msgid "Edit file" -msgstr "Редактировать файл" +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98 +#: ../../godmode/agentes/module_manager_editor_common.php:214 +msgid "Delete module" +msgstr "Удалить модуль" -#: ../../enterprise/godmode/agentes/collections.editor.php:112 -#: ../../enterprise/godmode/agentes/collections.editor.php:173 -msgid "Back to file explorer" -msgstr "Назад к файлу исследования" +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127 +msgid "Run performance tests" +msgstr "Выполнить тесты производительности" -#: ../../enterprise/godmode/agentes/collections.editor.php:148 -#: ../../enterprise/godmode/agentes/collections.editor.php:311 -#: ../../include/functions_filemanager.php:346 -msgid "Security error." -msgstr "Ошибка безопасности." +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138 +msgid "Target web site" +msgstr "Целевой веб-сайт" -#: ../../enterprise/godmode/agentes/collections.editor.php:193 -msgid "Compatibility mode" -msgstr "Режим совместимости" - -#: ../../enterprise/godmode/agentes/collections.editor.php:236 -msgid "Correct update file." -msgstr "Правильное обновление файла." - -#: ../../enterprise/godmode/agentes/collections.editor.php:237 -msgid "Incorrect update file." -msgstr "Неправильное обновление файла." - -#: ../../enterprise/godmode/agentes/collections.editor.php:371 -msgid "Please, first save a new collection before to upload files." -msgstr "" -"Пожалуйста, сначала сохраните новый сборник, прежде чем загружать файлы." - -#: ../../enterprise/godmode/agentes/collection_manager.php:76 -msgid "Succesful add the collection" -msgstr "Сборник успешно добавлен" - -#: ../../enterprise/godmode/agentes/collection_manager.php:77 -msgid "Unsuccesful add the collection" -msgstr "Неуспешное добавление сборника" - -#: ../../enterprise/godmode/agentes/collection_manager.php:167 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:115 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:113 -#: ../../enterprise/godmode/policies/policy_collections.php:125 -#: ../../operation/events/events_list.php:329 -#: ../../operation/events/events_list.php:357 -#: ../../godmode/events/event_edit_filter.php:343 -#: ../../godmode/events/event_edit_filter.php:358 -msgid "Remove" -msgstr "Удалить" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:129 -msgid "Error: The conf file of server is not readble." -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:134 -msgid "Error: The conf file of server is not writable." -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:159 -msgid "Delete remote conf server files in Pandora" -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:163 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140 msgid "" -"Delete this conf file implies that Pandora will send back local config to " -"console" +"The url specified in this field is mandatory to retrieve performance stats." msgstr "" +"Url, указанный в этом поле, является обязательным для получения статистики " +"производительности." -#: ../../enterprise/godmode/servers/manage_export.php:61 -msgid "Error updating export target" -msgstr "Ошибка при обновлении экспорта задания" +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154 +msgid "target web site (http://...)" +msgstr "целевой веб-сайт (http://...)" -#: ../../enterprise/godmode/servers/manage_export.php:64 -msgid "Successfully updated export target" -msgstr "Успешно обновлен экспорт задания" +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161 +msgid "Execute tests from" +msgstr "Выполнение тестов из" -#: ../../enterprise/godmode/servers/manage_export.php:73 -msgid "Error deleting export target" -msgstr "Ошибка при удалении экспорта задания" +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177 +msgid "Browser" +msgstr "Браузер" -#: ../../enterprise/godmode/servers/manage_export.php:76 -msgid "Successfully deleted export target" -msgstr "Успешно удален экспорт задания" - -#: ../../enterprise/godmode/servers/manage_export.php:98 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179 msgid "" -"Can't be created export target: User and password must be filled with FTP " -"mode" +"Support for IE and Edge browsers is experimental. Tests might not work as " +"expected." msgstr "" -"экспорта задания не может быть создан: пользователь и пароль должны быть " -"заполнены в режиме FTP" +"Поддержка браузеров IE и Edge является экспериментальной. Тесты могут " +"работать не так, как ожидается." -#: ../../enterprise/godmode/servers/manage_export.php:121 -msgid "There are no defined export targets" +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221 +msgid "Accept insecure certificates" +msgstr "Принять небезопасные сертификаты" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:223 +msgid "Only Selenium 3." +msgstr "Только Selenium 3." + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:349 +msgid "Paste your selenium test, exported as HTML, here" +msgstr "Вставьте ваш тест selenium, экспортированный в формат HTML, сюда" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362 +msgid "Add file" +msgstr "Добавить файл" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 +msgid "Upload your selenium test in html or side (only Selenium 3) format" msgstr "" +"Загрузите свой тест Selenium в формате html или side (только Selenium 3)" -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:76 -msgid "Preffix" -msgstr "Preffix" +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:398 +#: ../../godmode/groups/configure_group.php:224 +#: ../../godmode/agentes/agent_manager.php:195 +#: ../../godmode/agentes/module_manager_editor_common.php:525 +#: ../../godmode/massive/massive_edit_agents.php:666 +msgid "Custom ID" +msgstr "Пользовательский ID" -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:88 -msgid "Transfer mode" -msgstr "Режим передачи" - -#: ../../enterprise/godmode/servers/manage_export_form.php:71 -#: ../../include/functions_servers.php:398 -msgid "Export server" -msgstr "Экспорт сервера" - -#: ../../enterprise/godmode/servers/manage_export_form.php:105 -#: ../../enterprise/godmode/setup/setup_history.php:52 -#: ../../include/functions_config.php:623 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:336 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:696 -#: ../../godmode/agentes/module_manager_editor_network.php:70 -#: ../../godmode/modules/manage_network_components_form_network.php:38 -msgid "Port" -msgstr "Порт" - -#: ../../enterprise/godmode/servers/manage_export_form.php:109 -msgid "Target directory" -msgstr "Каталог заданий" - -#: ../../enterprise/godmode/servers/manage_export_form.php:113 -msgid "Extra options" -msgstr "Дополнительные параметры" - -#: ../../enterprise/godmode/admin_access_logs.php:25 -#: ../../enterprise/godmode/policies/policy_agents.php:352 -#: ../../mobile/operation/agents.php:287 -#: ../../godmode/reporting/visual_console_builder.elements.php:86 -msgid "A." -msgstr "А." - -#: ../../enterprise/godmode/admin_access_logs.php:42 -msgid "Show extended info" -msgstr "Показать расширенную информацию" - -#: ../../enterprise/godmode/admin_access_logs.php:61 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:454 +#: ../../godmode/agentes/module_manager.php:1035 msgid "" -"Maybe delete the extended data or the audit data is previous to table " -"tsession_extended." +"The policy modules of data type will only update their intervals when policy " +"is applied." msgstr "" -"Возможно, удалите расширенные данные или данные аудита предыдущей таблице " -"tsession_extended." +"Модули политики типа данных будут обновлять свои интервалы только при " +"применении политики." -#: ../../enterprise/godmode/admin_access_logs.php:71 -msgid "Security check is ok." -msgstr "Проверка безопасности в порядке." +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:480 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:883 +#: ../../godmode/agentes/module_manager_editor_common.php:819 +#: ../../godmode/massive/massive_edit_modules.php:958 +msgid "FF interval" +msgstr "FF интервал" -#: ../../enterprise/godmode/admin_access_logs.php:78 -msgid "Security check is fail." -msgstr "Проверка безопасности не в порядке." +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:496 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 +#: ../../godmode/massive/massive_edit_modules.php:968 +msgid "Module execution flip flop time interval (in secs)." +msgstr "Модуль выполнения за интервал времени флип-флоп (в секундах)." -#: ../../enterprise/godmode/admin_access_logs.php:115 -msgid "Extended info:" -msgstr "Расширенная информация:" +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:500 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:979 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 +#: ../../godmode/agentes/module_manager_editor_common.php:1092 +#: ../../godmode/massive/massive_edit_modules.php:1079 +msgid "Retries" +msgstr "Попытки" -#: ../../enterprise/godmode/setup/setup_log_collector.php:44 -msgid "Log storage directory" -msgstr "Директорий хранения журнала" +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:515 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:981 +#: ../../godmode/massive/massive_edit_modules.php:1081 +msgid "Number of retries that the module will attempt to run." +msgstr "Количество попыток для запуска модуля." -#: ../../enterprise/godmode/setup/setup_log_collector.php:45 -msgid "Directory where log data will be stored." -msgstr "Директорий, где данные журнала будут сохранены." +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:574 +#: ../../enterprise/godmode/policies/policy_modules.php:413 +#: ../../godmode/agentes/module_manager_editor.php:723 +#: ../../godmode/agentes/module_manager_editor_common.php:1180 +msgid "Custom macros" +msgstr "Пользовательские макросы" -#: ../../enterprise/godmode/setup/setup_log_collector.php:47 -#: ../../include/functions_config.php:615 -msgid "Log max lifetime" -msgstr "Макс срок службы журнала" +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:77 +#: ../../operation/agentes/pandora_networkmap.editor.php:207 +#: ../../operation/agentes/pandora_networkmap.php:649 +#: ../../operation/agentes/pandora_networkmap.view.php:794 +msgid "Networkmap" +msgstr "Карта сети" -#: ../../enterprise/godmode/setup/setup_log_collector.php:48 -msgid "Sets the maximum lifetime for log data in days." -msgstr "Устанавливает максимальный срок службы данных журнала в днях." +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:85 +#: ../../operation/agentes/pandora_networkmap.editor.php:247 +#: ../../operation/agentes/pandora_networkmap.view.php:800 +msgid "Not found networkmap." +msgstr "Карта сети не найдена." -#: ../../enterprise/godmode/setup/edit_skin.php:42 -#: ../../enterprise/godmode/setup/setup_skins.php:36 -msgid "Skins configuration" -msgstr "Скины конфигурации" +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:145 +#: ../../operation/agentes/pandora_networkmap.editor.php:436 +msgid "Save networkmap" +msgstr "Сохранить карту сети" -#: ../../enterprise/godmode/setup/edit_skin.php:45 -msgid "Successfully updated skin" -msgstr "Скин успешно обновлен" +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:156 +#: ../../operation/agentes/pandora_networkmap.editor.php:447 +msgid "Update networkmap" +msgstr "Обновить карту сети" -#: ../../enterprise/godmode/setup/edit_skin.php:48 -#: ../../enterprise/godmode/setup/edit_skin.php:60 -msgid "Error updating skin" -msgstr "Ошибка при обновлении скина" +#: ../../enterprise/godmode/agentes/collections.php:70 +msgid "Success: recreate file" +msgstr "Успех: воссоздать файл" -#: ../../enterprise/godmode/setup/edit_skin.php:170 -msgid "Error creating skin" -msgstr "Ошибка при обновлении скина" +#: ../../enterprise/godmode/agentes/collections.php:72 +msgid "Error: recreate file " +msgstr "Ошибка : воссоздать файл " -#: ../../enterprise/godmode/setup/edit_skin.php:175 -msgid "Successfully created skin" -msgstr "Скин успешно создан" +#: ../../enterprise/godmode/agentes/collections.php:87 +#: ../../enterprise/godmode/agentes/collections.php:117 +#: ../../enterprise/godmode/agentes/collections.php:226 +msgid "Collections Management" +msgstr "Управление сборниками" -#: ../../enterprise/godmode/setup/edit_skin.php:215 -#: ../../enterprise/godmode/setup/setup_skins.php:118 -msgid "Relative path" -msgstr "Относительный путь" +#: ../../enterprise/godmode/agentes/collections.php:169 +msgid "Manager collection" +msgstr "Менеджер сборника" -#: ../../enterprise/godmode/setup/edit_skin.php:216 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:42 +msgid "Data Copy" +msgstr "Копировать данные" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:49 +msgid "No selected agents to copy" +msgstr "Нет выбранных агентов для копирования" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:62 +msgid "No source agent selected" +msgstr "Агент испочника не выбран" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 +msgid "Making copy of configuration file for" +msgstr "Создание копии файла конфигурации для" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 +msgid "Error copying md5 file " +msgstr "Ошибка при копировании md5 файла " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 +msgid " md5 file" +msgstr " md5 файл" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 +msgid "Copied " +msgstr "Копированный " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 +msgid "Error copying " +msgstr "Ошибка копирования " + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 +msgid " config file" +msgstr " конфигурационный файл" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:129 +msgid "Remote configuration management" +msgstr "Удалить управление конфигурацией" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:134 +#: ../../operation/agentes/pandora_networkmap.editor.php:356 +msgid "Source group" +msgstr "Источник группы" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:147 +#: ../../operation/agentes/exportdata.php:247 +msgid "Source agent" +msgstr "агент источника" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:180 +msgid "To agent(s):" +msgstr "К агенту(ам):" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:197 +msgid "Replicate configuration" +msgstr "Копирование конфигурации" + +#: ../../enterprise/godmode/agentes/module_manager.php:21 +msgid "Create a new web Server module" +msgstr "Создайте новый модуль веб сервера" + +#: ../../enterprise/godmode/agentes/module_manager.php:31 +msgid "Create a new web analysis module" +msgstr "Создайте новый модуль веб-анализа" + +#: ../../enterprise/godmode/policies/policy_plugins.php:28 +#: ../../enterprise/godmode/policies/policy_alerts.php:43 +#: ../../enterprise/godmode/policies/configure_policy.php:70 +#: ../../enterprise/godmode/policies/policy_modules.php:462 +#: ../../enterprise/godmode/policies/policy_queue.php:147 +#: ../../enterprise/godmode/policies/policies.php:308 +#: ../../enterprise/godmode/policies/policy_linking.php:95 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:196 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:81 +#: ../../enterprise/godmode/policies/policy_collections.php:40 +#: ../../enterprise/godmode/policies/policy_agents.php:373 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:27 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:25 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:27 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:27 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:28 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:25 +#: ../../enterprise/operation/agentes/policy_view.php:135 +#: ../../godmode/massive/massive_operations.php:337 msgid "" -"Zip file with skin subdirectory. The name of the zip file only can have " -"alphanumeric characters." +"This node is configured with centralized mode. All policies information is " +"read only. Go to metaconsole to manage it." msgstr "" -"Заархивированный файл со скином подкаталога. Название архива может иметь " -"только буквы и цифры." +"Этот узел настроен в централизованном режиме. Вся информация о политиках " +"доступна только для чтения. Для управления перейдите в метаконсоль." -#: ../../enterprise/godmode/setup/edit_skin.php:238 -msgid "Group/s" -msgstr "Группа/ы" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:29 -msgid "Metaconsole setup" -msgstr "Установка Мета консоли" - -#: ../../enterprise/godmode/setup/setup_skins.php:71 -msgid "Error deleting skin" -msgstr "Ошибка при удалении скина" - -#: ../../enterprise/godmode/setup/setup_skins.php:74 -msgid "Successfully deleted skin" -msgstr "Скин успешно удален" - -#: ../../enterprise/godmode/setup/setup_skins.php:117 -msgid "Skin name" -msgstr "Имя скина" - -#: ../../enterprise/godmode/setup/setup_skins.php:143 -msgid "There are no defined skins" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_skins.php:148 -msgid "Create skin" -msgstr "Создать скин" - -#: ../../enterprise/godmode/setup/setup_acl.php:40 -msgid "Enterprise ACL setup" -msgstr "Настройки предприятия ACL" - -#: ../../enterprise/godmode/setup/setup_acl.php:73 -#: ../../enterprise/godmode/setup/setup_acl.php:105 -msgid "Add new ACL element to profile" -msgstr "Добавить новый ACL элемент к профилю" - -#: ../../enterprise/godmode/setup/setup_acl.php:78 -#: ../../enterprise/godmode/setup/setup_acl.php:150 -msgid "Section" -msgstr "Раздел" - -#: ../../enterprise/godmode/setup/setup_acl.php:83 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 -#: ../../extensions/api_checker.php:143 ../../include/functions_graph.php:2220 -#: ../../include/functions_graph.php:2361 -#: ../../include/functions_graph.php:2399 -#: ../../include/functions_graph.php:2437 -#: ../../include/functions_graph.php:2490 -#: ../../include/functions_graph.php:2543 -#: ../../include/functions_graph.php:2594 -#: ../../include/functions_graph.php:2764 -#: ../../include/functions_graph.php:2901 -#: ../../include/functions_graph.php:2957 -#: ../../include/functions_graph.php:3896 -#: ../../operation/integria_incidents/incident_statistics.php:58 -#: ../../operation/users/user_edit.php:297 -#: ../../operation/snmpconsole/snmp_view.php:419 -#: ../../operation/snmpconsole/snmp_view.php:708 -#: ../../operation/snmpconsole/snmp_view.php:730 -#: ../../operation/snmpconsole/snmp_statistics.php:172 -#: ../../operation/snmpconsole/snmp_statistics.php:219 -#: ../../operation/gis_maps/render_view.php:140 -#: ../../godmode/snmpconsole/snmp_alert.php:33 -#: ../../godmode/groups/configure_group.php:176 -msgid "Other" -msgstr "Прочее" - -#: ../../enterprise/godmode/setup/setup_acl.php:83 -#: ../../enterprise/godmode/setup/setup_acl.php:239 -msgid "Mobile" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:87 -#: ../../enterprise/godmode/setup/setup_acl.php:151 -msgid "Section 2" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:92 -#: ../../enterprise/godmode/setup/setup_acl.php:152 -msgid "Section 3" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:104 -msgid "Hidden" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:110 -msgid "Page" -msgstr "Страница" - -#: ../../enterprise/godmode/setup/setup_acl.php:129 -msgid "Filter by profile" -msgstr "Фильтр по профилю" - -#: ../../enterprise/godmode/setup/setup_acl.php:149 -#: ../../operation/users/user_edit.php:419 -#: ../../godmode/users/configure_user.php:616 -#: ../../godmode/users/configure_profile.php:242 -#: ../../godmode/massive/massive_delete_profiles.php:102 -#: ../../godmode/massive/massive_add_profiles.php:88 -msgid "Profile name" -msgstr "Имя профиля" - -#: ../../enterprise/godmode/setup/setup_acl.php:294 -#: ../../enterprise/godmode/setup/setup_acl.php:307 -#: ../../include/functions_graph.php:2415 -#: ../../include/functions_graph.php:2430 -msgid "Invalid" -msgstr "Ошибка" - -#: ../../enterprise/godmode/setup/setup.php:30 -#: ../../include/functions_config.php:208 -msgid "Forward SNMP traps to agent (if exist)" -msgstr "Переслать SNMP прерывания к агенту (если есть)" - -#: ../../enterprise/godmode/setup/setup.php:38 -#: ../../include/functions_config.php:210 -msgid "Use Enterprise ACL System" -msgstr "Использовать систему предприятия ACL" - -#: ../../enterprise/godmode/setup/setup.php:38 +#: ../../enterprise/godmode/policies/policy_plugins.php:41 msgid "" -"Before activating this option check your ACL Setup. You may lose access to " -"the console." +"Successfully added to delete pending plugins. Will be deleted in the next " +"policy application." msgstr "" -"Перед активацией данной опции проверьте настройки ACL. Вы можете потерять " -"доступ к консоли." +"Успешно добавлено к удаленным плагинам в режиме ожидания. Будут удалены из " +"следующего приложения политики." -#: ../../enterprise/godmode/setup/setup.php:47 -#: ../../include/functions_config.php:214 -msgid "Size of collection" -msgstr "Размер коллекции" +#: ../../enterprise/godmode/policies/policy_plugins.php:42 +msgid "Cannot be added to delete pending plugins." +msgstr "Не может быть добавлено к удаленным плагинам в режиме ожидания." -#: ../../enterprise/godmode/setup/setup.php:48 -msgid " Bytes" -msgstr " Байт" +#: ../../enterprise/godmode/policies/policy_plugins.php:55 +#: ../../enterprise/godmode/policies/policy_alerts.php:205 +#: ../../enterprise/godmode/policies/policy_modules.php:1318 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:111 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 +#: ../../enterprise/godmode/policies/policy_collections.php:84 +#: ../../enterprise/godmode/policies/policy_agents.php:122 +#: ../../enterprise/godmode/policies/policy_agents.php:144 +msgid "Successfully reverted deletion" +msgstr "Успешное восстановление удаленного" -#: ../../enterprise/godmode/setup/setup.php:63 -#: ../../include/functions_config.php:219 -msgid "Replication interval" -msgstr "Интервал репликации" +#: ../../enterprise/godmode/policies/policy_plugins.php:56 +#: ../../enterprise/godmode/policies/policy_alerts.php:206 +#: ../../enterprise/godmode/policies/policy_modules.php:1319 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:112 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:147 +#: ../../enterprise/godmode/policies/policy_collections.php:85 +#: ../../enterprise/godmode/policies/policy_agents.php:123 +#: ../../enterprise/godmode/policies/policy_agents.php:145 +msgid "Could not be reverted" +msgstr "Не может быть востановлено" -#: ../../enterprise/godmode/setup/setup.php:64 -msgid "Seconds" -msgstr "Секунды" +#: ../../enterprise/godmode/policies/policy_plugins.php:195 +msgid "There are no defined plugins" +msgstr "Нет определенных плагинов" -#: ../../enterprise/godmode/setup/setup.php:70 -#: ../../include/functions_config.php:221 -msgid "Replication limit" -msgstr "" +#: ../../enterprise/godmode/policies/policy_alerts.php:70 +#: ../../enterprise/godmode/policies/policy_modules.php:580 +#: ../../enterprise/godmode/policies/policies.php:299 +#: ../../enterprise/godmode/policies/policy_linking.php:41 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:61 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:85 +#: ../../enterprise/godmode/policies/policy_collections.php:50 +#: ../../enterprise/godmode/policies/policy_agents.php:109 +#: ../../godmode/agentes/module_manager_editor.php:534 +msgid "This policy is applying and cannot be modified" +msgstr "Эта установка применяется и не может быть изменена" -#: ../../enterprise/godmode/setup/setup.php:72 +#: ../../enterprise/godmode/policies/policy_alerts.php:139 +#: ../../enterprise/godmode/alerts/alert_events_list.php:294 +#: ../../godmode/massive/massive_standby_alerts.php:120 +#: ../../godmode/alerts/alert_list.php:383 +msgid "Successfully set standby" +msgstr "Режим ожидания успешно установлен" + +#: ../../enterprise/godmode/policies/policy_alerts.php:140 +#: ../../enterprise/godmode/alerts/alert_events_list.php:295 +#: ../../godmode/massive/massive_standby_alerts.php:120 +#: ../../godmode/alerts/alert_list.php:384 +msgid "Could not be set standby" +msgstr "Не может быть установлен режим ожидания" + +#: ../../enterprise/godmode/policies/policy_alerts.php:160 +#: ../../enterprise/godmode/alerts/alert_events_list.php:314 +#: ../../godmode/massive/massive_standby_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:404 +msgid "Successfully set off standby" +msgstr "Режим ожидания успешно отправлен" + +#: ../../enterprise/godmode/policies/policy_alerts.php:161 +#: ../../enterprise/godmode/alerts/alert_events_list.php:315 +#: ../../godmode/massive/massive_standby_alerts.php:102 +#: ../../godmode/alerts/alert_list.php:405 +msgid "Could not be set off standby" +msgstr "Режим ожидания не может быть отправлен" + +#: ../../enterprise/godmode/policies/policy_alerts.php:195 +msgid " created successfuly" +msgstr " успешно создано" + +#: ../../enterprise/godmode/policies/policy_alerts.php:195 +msgid " could not be created" +msgstr " не может быть создано" + +#: ../../enterprise/godmode/policies/policy_alerts.php:201 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:107 msgid "" -"Limit the number of events that are replicated metaconsole each specified " -"range." +"Successfully added to delete pending alerts. Will be deleted in the next " +"policy application." msgstr "" +"Успешно добавлено к удаленным оповещениям в режиме ожидания. Будут удалены " +"из следующего приложения политики." -#: ../../enterprise/godmode/setup/setup.php:78 -msgid "Last replication at" -msgstr "" +#: ../../enterprise/godmode/policies/policy_alerts.php:226 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:155 +msgid "Added action successfuly" +msgstr "Действие добавлено успешно" -#: ../../enterprise/godmode/setup/setup.php:80 -msgid "No replication yet" -msgstr "" +#: ../../enterprise/godmode/policies/policy_alerts.php:226 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:156 +#: ../../enterprise/godmode/policies/policy_agents.php:248 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 +#: ../../enterprise/godmode/alerts/alert_events_list.php:214 +#: ../../godmode/massive/massive_delete_action_alerts.php:163 +#: ../../godmode/massive/massive_add_alerts.php:157 +#: ../../godmode/massive/massive_add_action_alerts.php:75 +#: ../../godmode/massive/massive_add_action_alerts.php:134 +#: ../../godmode/massive/massive_add_action_alerts.php:154 +#: ../../godmode/massive/massive_add_action_alerts.php:157 +#: ../../godmode/massive/massive_add_action_alerts.php:160 +#: ../../godmode/alerts/alert_list.php:266 +msgid "Could not be added" +msgstr "Не может быть добавлено" -#: ../../enterprise/godmode/setup/setup.php:89 -#: ../../include/functions_config.php:223 -msgid "Replication mode" -msgstr "Репликация режима" +#: ../../enterprise/godmode/policies/policy_alerts.php:243 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:134 +msgid "Deleted action successfuly" +msgstr "Действие удалено успешно" -#: ../../enterprise/godmode/setup/setup.php:90 -msgid "Only validated events" -msgstr "Только утвержденные события" +#: ../../enterprise/godmode/policies/policy_alerts.php:288 +#: ../../enterprise/godmode/policies/policy_alerts.php:494 +#: ../../enterprise/godmode/reporting/visual_console_template.php:109 +#: ../../enterprise/include/functions_tasklist.php:276 +#: ../../enterprise/include/functions_reporting_csv.php:2323 +#: ../../enterprise/operation/agentes/policy_view.php:246 +#: ../../godmode/alerts/alert_list.list.php:474 +#: ../../godmode/alerts/alert_view.php:72 +#: ../../godmode/alerts/alert_list.builder.php:139 +#: ../../mobile/operation/alerts.php:323 +#: ../../include/functions_reporting_html.php:2676 +#: ../../include/functions_reporting_html.php:2679 +#: ../../include/functions_cron.php:560 +#: ../../include/ajax/alert_list.ajax.php:279 +#: ../../include/ajax/alert_list.ajax.php:304 +#: ../../include/functions_treeview.php:412 +#: ../../include/functions_treeview.php:453 +#: ../../include/class/AgentsAlerts.class.php:331 +#: ../../include/class/AgentsAlerts.class.php:981 +#: ../../operation/agentes/alerts_status.php:538 +#: ../../operation/agentes/alerts_status.php:573 +#: ../../operation/agentes/alerts_status.php:608 +#: ../../operation/agentes/alerts_status.php:640 +#: ../../operation/search_alerts.php:35 +#: ../../operation/servers/recon_view.php:106 +msgid "Template" +msgstr "Шаблон" -#: ../../enterprise/godmode/setup/setup.php:90 -#: ../../operation/events/events_list.php:561 -#: ../../godmode/events/event_edit_filter.php:286 -msgid "All events" -msgstr "Все события" +#: ../../enterprise/godmode/policies/policy_alerts.php:365 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:246 +#: ../../enterprise/godmode/alerts/alert_events_list.php:639 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2434 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3393 +#: ../../godmode/alerts/alert_list.list.php:627 +#: ../../godmode/alerts/alert_view.php:202 +#: ../../include/functions_alerts.php:680 +msgid "Always" +msgstr "Всегда" -#: ../../enterprise/godmode/setup/setup.php:96 -#: ../../include/functions_config.php:240 -msgid "Metaconsole agent cache" -msgstr "" +#: ../../enterprise/godmode/policies/policy_alerts.php:367 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:248 +#: ../../enterprise/godmode/alerts/alert_events_list.php:641 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3395 +#: ../../godmode/alerts/alert_list.list.php:629 +#: ../../include/class/Diagnostics.class.php:1175 +#: ../../include/class/Diagnostics.class.php:1179 +msgid "On" +msgstr "Вкл." -#: ../../enterprise/godmode/setup/setup.php:105 -msgid "Metaconsole DB engine" -msgstr "" +#: ../../enterprise/godmode/policies/policy_alerts.php:371 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:252 +#: ../../enterprise/godmode/alerts/alert_events_list.php:645 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3399 +#: ../../godmode/alerts/alert_list.list.php:633 +msgid "Until" +msgstr "До" -#: ../../enterprise/godmode/setup/setup.php:106 -msgid "MySQL" -msgstr "" +#: ../../enterprise/godmode/policies/policy_alerts.php:466 +#: ../../enterprise/godmode/policies/policy_modules.php:1576 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:292 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:287 +#: ../../enterprise/godmode/policies/policy_agents.php:945 +#: ../../enterprise/godmode/policies/policy_agents.php:1312 +msgid "Undo deletion" +msgstr "Отменить удаление" -#: ../../enterprise/godmode/setup/setup.php:106 -msgid "Oracle" -msgstr "" +#: ../../enterprise/godmode/policies/policy_alerts.php:533 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:326 +#: ../../enterprise/godmode/alerts/alert_events_list.php:692 +#: ../../godmode/massive/massive_add_action_alerts.php:246 +#: ../../godmode/alerts/alert_list.list.php:744 +#: ../../godmode/alerts/alert_list.builder.php:126 +#: ../../include/ajax/alert_list.ajax.php:497 +#: ../../include/class/AgentsAlerts.class.php:307 +msgid "Number of alerts match from" +msgstr "Число совпадающих оповещений из" -#: ../../enterprise/godmode/setup/setup.php:112 -msgid "Metaconsole DB host" -msgstr "" +#: ../../enterprise/godmode/policies/policy_alerts.php:550 +msgid "There is not alerts configured in this policy." +msgstr "В этой политике не настроены оповещения." -#: ../../enterprise/godmode/setup/setup.php:119 -msgid "Metaconsole DB name" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:126 -msgid "Metaconsole DB user" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:133 -msgid "Metaconsole DB password" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:140 -msgid "Metaconsole DB port" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:147 -#: ../../include/functions_config.php:225 -msgid "Show events list in local console (read only)" -msgstr "Показать список событий в местной консоли (читать только)" - -#: ../../enterprise/godmode/setup/setup.php:156 -#: ../../include/functions_config.php:246 -msgid "Inventory changes blacklist" -msgstr "Черный список изменений инвентаризации" - -#: ../../enterprise/godmode/setup/setup.php:156 -msgid "" -"The inventory modules included in the changes blacklist will not generate " -"events when change." -msgstr "" -"Модули инвентаризации, включенные в черный список изменений не будет " -"создавать события, когда изменятся." - -#: ../../enterprise/godmode/setup/setup.php:187 -msgid "Out of black list" -msgstr "Вне черного списка" - -#: ../../enterprise/godmode/setup/setup.php:189 -msgid "In black list" -msgstr "В черном списке" - -#: ../../enterprise/godmode/setup/setup.php:195 -msgid "Push selected modules into blacklist" -msgstr "Вставьте выбранные модули в черный список" - -#: ../../enterprise/godmode/setup/setup.php:199 -msgid "Pop selected modules out of blacklist" -msgstr "Поп выбранных модулей из черного списка" - -#: ../../enterprise/godmode/setup/setup.php:212 -#: ../../include/functions_config.php:242 -msgid "Activate Log Collector" -msgstr "Активировать сборщика журнала" - -#: ../../enterprise/godmode/setup/setup.php:225 -msgid "Enterprise options" -msgstr "Параметры предприятия" - -#: ../../enterprise/godmode/setup/setup.php:318 -msgid "Enterprise password policy" -msgstr "Политика паролей предприятия" - -#: ../../enterprise/godmode/setup/setup.php:319 -msgid "" -"Rules applied to the management of passwords. This policy applies to all " -"users except the administrator." -msgstr "" -"Правила, применяемые к управлению паролями. Эта политика распространяется на " -"всех пользователей, кроме администратора." - -#: ../../enterprise/godmode/setup/setup_auth.php:31 -msgid "Active directory" -msgstr "Активный каталог" - -#: ../../enterprise/godmode/setup/setup_auth.php:32 -msgid "Remote Pandora FMS" -msgstr "Удалить Pandora FMS" - -#: ../../enterprise/godmode/setup/setup_auth.php:33 -msgid "Remote Babel Enterprise" -msgstr "Удалить Babel предприятие" - -#: ../../enterprise/godmode/setup/setup_auth.php:34 -msgid "Remote Integria" -msgstr "Удалить Integria" - -#: ../../enterprise/godmode/setup/setup_auth.php:60 -msgid "Autosync users" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:71 -msgid "" -"Enable this option will be synchronice the groups and tags each new user " -"when he/she will login." -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:138 -#: ../../include/functions_config.php:321 -msgid "MySQL host" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_history.php:45 -#: ../../include/functions_config.php:619 -msgid "Enable history database" -msgstr "Включить историю базы данных" - -#: ../../enterprise/godmode/setup/setup_history.php:49 -#: ../../include/functions_config.php:621 -msgid "Host" -msgstr "Хост" - -#: ../../enterprise/godmode/setup/setup_history.php:58 -#: ../../include/functions_config.php:627 -msgid "Database user" -msgstr "Пользователь базы данных" - -#: ../../enterprise/godmode/setup/setup_history.php:61 -#: ../../include/functions_config.php:629 -msgid "Database password" -msgstr "Пароль базы данных" - -#: ../../enterprise/godmode/setup/setup_history.php:64 -msgid "Number of days before data is transfered to history database." -msgstr "" -"Количество дней до того как данные передадутся в историю базы данных." - -#: ../../enterprise/godmode/setup/setup_history.php:67 -msgid "" -"Data size of mechanism used to transfer data (similar to a data buffer.)" -msgstr "" -"Данные размеры механизма, используемого для передачи данных (по аналогии с " -"буфером данных.)" - -#: ../../enterprise/godmode/setup/setup_history.php:70 -#: ../../include/functions_config.php:635 -msgid "Delay" -msgstr "Задержка" - -#: ../../enterprise/godmode/setup/setup_history.php:70 -msgid "Time interval between data transfer." -msgstr "Интервал времени между передачей данных." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 -msgid "Success: remove the alerts." -msgstr "Успех: удалить оповещения." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 -msgid "Failed: remove the alerts for this modules, please check." -msgstr "Сбой: удалить оповещения для этого модуля, пожалуйста, проверьте." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:101 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 -#: ../../enterprise/godmode/policies/policy_alerts.php:507 -#: ../../extensions/module_groups.php:46 -#: ../../godmode/massive/massive_delete_alerts.php:206 -#: ../../godmode/massive/massive_standby_alerts.php:148 -#: ../../godmode/massive/massive_add_alerts.php:174 -#: ../../godmode/massive/massive_enable_disable_alerts.php:148 +#: ../../enterprise/godmode/policies/policy_alerts.php:578 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:97 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:110 +#: ../../godmode/massive/massive_standby_alerts.php:193 +#: ../../godmode/massive/massive_add_alerts.php:265 +#: ../../godmode/massive/massive_enable_disable_alerts.php:181 +#: ../../godmode/massive/massive_delete_alerts.php:256 msgid "Alert template" msgstr "Шаблоны оповещений" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:113 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:113 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:114 -#: ../../include/functions_alerts.php:548 -msgid "Regular expression" -msgstr "Регулярное выражение" +#: ../../enterprise/godmode/policies/policy_alerts.php:589 +msgid "Policy module" +msgstr "Модуль политики" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:115 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:116 -msgid "Modules agents in policy" -msgstr "Агенты модуля в политике" +#: ../../enterprise/godmode/policies/policy_alerts.php:667 +#: ../../enterprise/godmode/alerts/alert_events_list.php:809 +#: ../../godmode/alerts/alert_list.list.php:1038 +msgid "Set off standby" +msgstr "Отправить в режим ожидания" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:202 -#: ../../godmode/massive/massive_delete_modules.php:435 -#: ../../godmode/massive/massive_edit_modules.php:278 -msgid "Agent group" -msgstr "Агент группы" +#: ../../enterprise/godmode/policies/policy_alerts.php:676 +#: ../../enterprise/godmode/alerts/alert_events_list.php:818 +#: ../../godmode/alerts/alert_list.list.php:1065 +msgid "Set standby" +msgstr "Установить режим ожидания" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:212 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:361 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:433 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:162 -#: ../../enterprise/godmode/policies/policy_agents.php:243 -#: ../../enterprise/godmode/policies/policy_agents.php:251 +#: ../../enterprise/godmode/policies/policy_alerts.php:690 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:276 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 +#: ../../enterprise/godmode/alerts/alert_events_list.php:673 +#: ../../enterprise/godmode/alerts/alert_events_list.php:675 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:466 +#: ../../godmode/snmpconsole/snmp_alert.php:1393 +#: ../../godmode/alerts/alert_list.list.php:882 +#: ../../godmode/alerts/alert_list.list.php:887 +#: ../../godmode/alerts/alert_list.list.php:1113 +msgid "Add action" +msgstr "Добавить действие" + +#: ../../enterprise/godmode/policies/configure_policy.php:38 +#: ../../enterprise/godmode/servers/HA_cluster.php:63 +#: ../../enterprise/include/functions_policies.php:3741 +#: ../../godmode/agentes/configurar_agente.php:396 +#: ../../godmode/agentes/configurar_agente.php:692 ../../godmode/menu.php:302 +#: ../../godmode/menu.php:309 +#: ../../godmode/module_library/module_library_view.php:45 +#: ../../operation/agentes/estado_agente.php:183 +#: ../../operation/gis_maps/render_view.php:160 +msgid "Setup" +msgstr "Установка" + +#: ../../enterprise/godmode/policies/configure_policy.php:108 +msgid "Force Apply" +msgstr "Принудительное применение" + +#: ../../enterprise/godmode/policies/configure_policy.php:108 +msgid "" +"Force the creation of modules even if the software agent does not have " +"remote configuration" +msgstr "" +"Принудить создание модулей, даже если программный агент не имеет удаленной " +"конфигурации" + +#: ../../enterprise/godmode/policies/policy_modules.php:295 +msgid "" +"If you change this description, you must change into the text of Data " +"configuration." +msgstr "" +"Если вы измените это описание, вы должны изменить текст данных конфигурации." + +#: ../../enterprise/godmode/policies/policy_modules.php:368 +msgid "Invalid module type." +msgstr "Недействительный тип модуля." + +#: ../../enterprise/godmode/policies/policy_modules.php:399 +#: ../../godmode/agentes/module_manager_editor.php:711 +msgid "Base options" +msgstr "Базовые параметры" + +#: ../../enterprise/godmode/policies/policy_modules.php:529 +msgid "Could not be added module(s). You must select a policy" +msgstr "Не удалось добавить модули). Вы должны выбрать политику" + +#: ../../enterprise/godmode/policies/policy_modules.php:562 +#, php-format +msgid "Successfully added module(s) (%s/%s) to policy %s" +msgstr "Успешно добавлену модуль(и) (%s/%s) к политике %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:568 +#, php-format +msgid "Could not be added module(s) (%s/%s) to policy %s" +msgstr "Не удается добавить модуль(и) (%s/%s) к политике %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:604 +msgid "To define plugins please use plugin configuration tab." +msgstr "Для определения плагинов используйте вкладку конфигурации плагинов." + +#: ../../enterprise/godmode/policies/policy_modules.php:884 +msgid "Could not be added module." +msgstr "Модуль не может быть добавлен." + +#: ../../enterprise/godmode/policies/policy_modules.php:1267 +msgid "" +"The module type in Data configuration is empty, take from combo box of form." +msgstr "" +"Тип модуля в данных конфигурации пуст, возьмите из выпадающего списка на " +"форме." + +#: ../../enterprise/godmode/policies/policy_modules.php:1271 +msgid "" +"The module name in Data configuration is empty, take from text field of form." +msgstr "" +"Имя модуля в конфигурации данных пусто, возьмите из текстового поля формы." + +#: ../../enterprise/godmode/policies/policy_modules.php:1301 +#: ../../enterprise/godmode/policies/policy_modules.php:1314 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:138 +msgid "" +"Successfully added to delete pending modules. Will be deleted in the next " +"policy application." +msgstr "" +"Успешно добавлено к удаленным модулям в режиме ожидания. Будут удалены в " +"следующем приложении политики." + +#: ../../enterprise/godmode/policies/policy_modules.php:1305 +msgid "Could not be added to deleted all modules." +msgstr "Не удалось добавить к удаленным все модули." + +#: ../../enterprise/godmode/policies/policy_modules.php:1368 +#: ../../godmode/agentes/configurar_agente.php:2239 +#, php-format +msgid "copy of %s" +msgstr "копия %s" + +#: ../../enterprise/godmode/policies/policy_modules.php:1386 +#: ../../godmode/agentes/configurar_agente.php:2253 +#, php-format +msgid "copy of %s (%d)" +msgstr "копия %s (%d)" + +#: ../../enterprise/godmode/policies/policy_modules.php:1410 +msgid "Successfully duplicate the module." +msgstr "Успешное дублирование модуля." + +#: ../../enterprise/godmode/policies/policy_modules.php:1411 +#: ../../operation/agentes/pandora_networkmap.php:525 +msgid "Could not be duplicated" +msgstr "Не может быть дублировано" + +#: ../../enterprise/godmode/policies/policy_modules.php:1499 +msgid "Local component" +msgstr "Местные компоненты" + +#: ../../enterprise/godmode/policies/policy_modules.php:1516 +#: ../../enterprise/godmode/policies/policy_modules.php:1517 +msgid "Disabled module" +msgstr "Отключенный модуль" + +#: ../../enterprise/godmode/policies/policy_modules.php:1523 +#: ../../enterprise/godmode/policies/policy_modules.php:1524 +msgid "Enabled module" +msgstr "Включенный модуль" + +#: ../../enterprise/godmode/policies/policy_modules.php:1533 +#: ../../enterprise/godmode/policies/policy_modules.php:1534 +#: ../../godmode/agentes/module_manager.php:1073 +#: ../../godmode/agentes/module_manager.php:1074 +msgid "Enable module" +msgstr "Включить модуль" + +#: ../../enterprise/godmode/policies/policy_modules.php:1542 +#: ../../enterprise/godmode/policies/policy_modules.php:1543 +#: ../../godmode/agentes/module_manager.php:1082 +#: ../../godmode/agentes/module_manager.php:1083 +msgid "Disable module" +msgstr "Отключить модуль" + +#: ../../enterprise/godmode/policies/policy_modules.php:1627 +msgid "There are no defined modules" +msgstr "Нет определенных модулей" + +#: ../../enterprise/godmode/policies/policy_modules.php:1646 +#: ../../godmode/massive/massive_copy_modules.php:187 +msgid "Copy modules" +msgstr "Копировать модули" + +#: ../../enterprise/godmode/policies/policy_modules.php:1647 +msgid "Copy selected modules to policy: " +msgstr "Копировать выбранные модули к политике: " + +#: ../../enterprise/godmode/policies/policy_modules.php:1709 +#: ../../godmode/agentes/module_manager_editor.php:795 +msgid "No module name provided" +msgstr "Имя модуля не предоставлено" + +#: ../../enterprise/godmode/policies/policy_modules.php:1710 +#: ../../godmode/agentes/module_manager_editor.php:805 +msgid "No target IP provided" +msgstr "Целевой IP не предоставлен" + +#: ../../enterprise/godmode/policies/policy_modules.php:1711 +#: ../../godmode/agentes/module_manager_editor.php:815 +msgid "No SNMP OID provided" +msgstr "SNMP OID не предоставлен" + +#: ../../enterprise/godmode/policies/policy_modules.php:1852 +msgid "Are you sure to copy modules into policy?\\n" +msgstr "Вы уверены, что хотите копировать модули в политике?\\n" + +#: ../../enterprise/godmode/policies/policy_modules.php:1872 +msgid "Please select any module to copy" +msgstr "Пожалуйста, выберите любой модуль для копирования" + +#: ../../enterprise/godmode/policies/policy_queue.php:108 +msgid "Operations successfully deleted from the queue" +msgstr "Операции успешно удалены из очереди" + +#: ../../enterprise/godmode/policies/policy_queue.php:109 +msgid "Operations cannot be deleted from the queue" +msgstr "Операции не могут быть удалены из очереди" + +#: ../../enterprise/godmode/policies/policy_queue.php:189 +#, php-format +msgid "Some nodes (%s) are unreachebles. Some information may be missing." +msgstr "" +"Некоторые узлы (%s) недоступны. Некоторая информация может отсутствовать." + +#: ../../enterprise/godmode/policies/policy_queue.php:224 +msgid "Update pending" +msgstr "Обновить режим ожидания" + +#: ../../enterprise/godmode/policies/policy_queue.php:230 +msgid "Update pending agents" +msgstr "Обновить агенты в режиме ожидания" + +#: ../../enterprise/godmode/policies/policy_queue.php:253 +#: ../../enterprise/godmode/policies/policy_agents.php:912 +#: ../../enterprise/godmode/policies/policy_agents.php:1270 +msgid "Add to apply queue" +msgstr "Добавить к примененной очереди" + +#: ../../enterprise/godmode/policies/policy_queue.php:259 +msgid "Add to apply queue only for database" +msgstr "Добавить применение очереди только для базы данных" + +#: ../../enterprise/godmode/policies/policy_queue.php:266 +msgid "Update pending groups" +msgstr "Обновление ожидающих групп" + +#: ../../enterprise/godmode/policies/policy_queue.php:273 +msgid "Link pending modules" +msgstr "Ссылка модулей ожидания" + +#: ../../enterprise/godmode/policies/policy_queue.php:278 +msgid "Will be linked in the next policy application" +msgstr "Будет связано в следующем приложении политики" + +#: ../../enterprise/godmode/policies/policy_queue.php:281 +msgid "Unlink pending modules" +msgstr "Несвязанные модули ожидания" + +#: ../../enterprise/godmode/policies/policy_queue.php:286 +msgid "Will be unlinked in the next policy application" +msgstr "Будет несвязано в следующем приложении политики" + +#: ../../enterprise/godmode/policies/policy_queue.php:291 +msgid "Delete pending" +msgstr "Удалить ожидание" + +#: ../../enterprise/godmode/policies/policy_queue.php:293 +msgid "Delete pending agents" +msgstr "Удалить агенты режима ожидания" + +#: ../../enterprise/godmode/policies/policy_queue.php:298 +#: ../../enterprise/godmode/policies/policy_queue.php:306 +#: ../../enterprise/godmode/policies/policy_queue.php:314 +#: ../../enterprise/godmode/policies/policy_queue.php:322 +#: ../../enterprise/godmode/policies/policy_queue.php:330 +#: ../../enterprise/godmode/policies/policy_queue.php:338 +#: ../../enterprise/godmode/policies/policy_queue.php:346 +#: ../../enterprise/godmode/policies/policy_queue.php:354 +msgid "Will be deleted in the next policy application" +msgstr "Будет удалено в следующем приложении политики" + +#: ../../enterprise/godmode/policies/policy_queue.php:301 +msgid "Delete pending groups" +msgstr "Удаленить ожидающие группы" + +#: ../../enterprise/godmode/policies/policy_queue.php:309 +msgid "Delete pending modules" +msgstr "Удалить модули ожидания" + +#: ../../enterprise/godmode/policies/policy_queue.php:317 +msgid "Delete pending inventory modules" +msgstr "Удалять модулей инвентаризации режима ожидания" + +#: ../../enterprise/godmode/policies/policy_queue.php:325 +msgid "Delete pending alerts" +msgstr "Удалить оповещения режима ожидания" + +#: ../../enterprise/godmode/policies/policy_queue.php:333 +msgid "Delete pending external alerts" +msgstr "Удалить внешние оповещения режима ожидания" + +#: ../../enterprise/godmode/policies/policy_queue.php:341 +msgid "Delete pending file collections" +msgstr "Удалить коллекции файлов режима ожидания" + +#: ../../enterprise/godmode/policies/policy_queue.php:349 +msgid "Delete pending plugins" +msgstr "Удалить плагины режима ожидания" + +#: ../../enterprise/godmode/policies/policy_queue.php:360 +msgid "Advices" +msgstr "Советы" + +#: ../../enterprise/godmode/policies/policy_queue.php:363 +msgid "Queue summary" +msgstr "Очередь резюме" + +#: ../../enterprise/godmode/policies/policy_queue.php:468 +msgid "Queue filter" +msgstr "Фильтр очереди" + +#: ../../enterprise/godmode/policies/policy_queue.php:500 +#: ../../enterprise/godmode/policies/policy_linking.php:128 +#: ../../include/lib/Dashboard/Widget.php:576 +msgid "Node" +msgstr "Узел" + +#: ../../enterprise/godmode/policies/policy_queue.php:576 +msgid "Empty queue" +msgstr "Пустая очередь" + +#: ../../enterprise/godmode/policies/policy_queue.php:590 +msgid "This operation could take a long time" +msgstr "Эта операция может занять много времени" + +#: ../../enterprise/godmode/policies/policy_queue.php:601 +msgid "Apply all queues" +msgstr "Применить все очереди" + +#: ../../enterprise/godmode/policies/policy_queue.php:609 +msgid "Clear all items" +msgstr "Очистить все элементы" + +#: ../../enterprise/godmode/policies/policies.php:206 +msgid "Policy name already exists" +msgstr "Имя политики уже существует" + +#: ../../enterprise/godmode/policies/policies.php:274 +msgid "Policies Management" +msgstr "Политика Управления" + +#: ../../enterprise/godmode/policies/policies.php:285 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:398 +#: ../../godmode/alerts/alert_actions.php:132 +#: ../../godmode/alerts/alert_commands.php:607 +#: ../../godmode/reporting/map_builder.php:290 +#: ../../godmode/reporting/map_builder.php:297 +#: ../../include/functions_agents.php:967 +msgid "Successfully copied" +msgstr "Успешно скопировано" + +#: ../../enterprise/godmode/policies/policies.php:286 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:399 +#: ../../godmode/alerts/alert_actions.php:133 +#: ../../godmode/alerts/alert_commands.php:608 +msgid "Could not be copied" +msgstr "Не может быть скопировано" + +#: ../../enterprise/godmode/policies/policies.php:293 +msgid "All policy agents added to delete queue" +msgstr "Все агенты политики добавлены к удаленной очереди" + +#: ../../enterprise/godmode/policies/policies.php:294 +msgid "Policy agents cannot be added to the delete queue" +msgstr "Агенты политики не могут быть добавлены к удаленной очереди" + +#: ../../enterprise/godmode/policies/policies.php:367 +msgid "a" +msgstr "a" + +#: ../../enterprise/godmode/policies/policies.php:540 +#: ../../enterprise/godmode/policies/policy_linking.php:132 +#: ../../enterprise/include/functions_policies.php:3810 +msgid "Linking" +msgstr "Создаётся ссылка на файл" + +#: ../../enterprise/godmode/policies/policies.php:553 +msgid "Agent Wizard" +msgstr "Помощник Агента" + +#: ../../enterprise/godmode/policies/policies.php:562 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:41 +#: ../../enterprise/include/functions_policies.php:3798 +msgid "External alerts" +msgstr "Внешние оповещения" + +#: ../../enterprise/godmode/policies/policies.php:566 +#: ../../enterprise/godmode/policies/policy.php:60 +#: ../../enterprise/include/functions_policies.php:3840 +msgid "Queue" +msgstr "Очередь" + +#: ../../enterprise/godmode/policies/policies.php:634 +msgid "There must be no agents to delete the policy." +msgstr "При удалении политики не должно быть агентов." + +#: ../../enterprise/godmode/policies/policies.php:640 +msgid "A policy with agents cannot be deleted. Purge it first" +msgstr "Политика с агентами не может быть удалена. Очистить ее первой" + +#: ../../enterprise/godmode/policies/policies.php:650 +msgid "Deleting all policy agents" +msgstr "Удаление всех агентов политики" + +#: ../../enterprise/godmode/policies/policies.php:655 +msgid "All the policy agents will be deleted" +msgstr "Все агенты политики будут удалены" + +#: ../../enterprise/godmode/policies/policies.php:664 +msgid "Delete all agents" +msgstr "Удалить все агенты политики" + +#: ../../enterprise/godmode/policies/policy_linking.php:28 +msgid "Linking modules" +msgstr "Соединение модулей" + +#: ../../enterprise/godmode/policies/policy_linking.php:87 +msgid "Error: Update linking modules to policy" +msgstr "Ошибка: Обновление модулей соединения с политикой" + +#: ../../enterprise/godmode/policies/policy_linking.php:89 +msgid "Success: Update linking modules to policy" +msgstr "Успех: Обновление модулей соединения с политикой" + +#: ../../enterprise/godmode/policies/policy_linking.php:102 +msgid "Free text for filter (*)" +msgstr "Свободный текст для фильтра (*)" + +#: ../../enterprise/godmode/policies/policy_linking.php:103 +msgid "Free text for filter" +msgstr "Свободный текст для фильтра" + +#: ../../enterprise/godmode/policies/policy_linking.php:113 +msgid "Cannot retrieve unlinked modules" +msgstr "Невозможно возвратить несвязанные модули" + +#: ../../enterprise/godmode/policies/policy_linking.php:115 +msgid "There are no defined modules unlinked" +msgstr "Нет определенных модулей, не связанных между собой" + +#: ../../enterprise/godmode/policies/policy_linking.php:117 +msgid "List of modules unlinked" +msgstr "Список несвязанных модулей" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:71 +#: ../../godmode/alerts/alert_list.php:173 +msgid "No module specified" +msgstr "Модуль не указан" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:94 +msgid "Created successfuly" +msgstr "Создано успешно" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 +msgid "Duplicated alert" +msgstr "Дублированные оповещения" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:205 +msgid "Modules in policy per agents" +msgstr "Модули в политике на количество агентов" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:315 +msgid "There is not external alerts configured in this policy" +msgstr "В этой политике не настроены внешние оповещения" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:346 +msgid "Modules in policy agents" +msgstr "Модули в политике агентов" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:371 +msgid "The complete and exact name of the module must be specified" +msgstr "Необходимо указать полное и точное имя модуля" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:374 +msgid "Alert Template" +msgstr "Шаблон Оповещения" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:97 +msgid "Module is not selected" +msgstr "Модуль не выбран" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:254 +msgid "There are no defined inventory modules" +msgstr "Нет определенных модулей инвентаризации" + +#: ../../enterprise/godmode/policies/policy_collections.php:80 +msgid "" +"Successfully added to delete the collection. Will be deleted in the next " +"policy application." +msgstr "" +"Успешно добавлено к удаленной коллекции. Будут удалены из следующего " +"приложения политики." + +#: ../../enterprise/godmode/policies/policy_collections.php:208 +#: ../../enterprise/godmode/policies/policy_collections.php:281 +#: ../../enterprise/operation/agentes/policy_view.php:204 +#: ../../enterprise/operation/agentes/policy_view.php:205 +#: ../../enterprise/operation/agentes/collection_view.php:111 +#: ../../enterprise/operation/agentes/collection_view.php:112 +msgid "Outdate" +msgstr "Устарело" + +#: ../../enterprise/godmode/policies/policy_collections.php:225 +msgid "Collections in policy" +msgstr "Коллекции в политике" + +#: ../../enterprise/godmode/policies/policy_collections.php:229 +msgid "Collections to add" +msgstr "Коллекции для добавления" + +#: ../../enterprise/godmode/policies/policy_collections.php:300 +msgid "No available collection to add" +msgstr "Нет доступной коллекции для добавления" + +#: ../../enterprise/godmode/policies/policy_agents.php:118 +msgid "" +"Successfully added to delete pending agents. Will be deleted in the next " +"policy application." +msgstr "" +"Успешно добавлены к удаленным агентам в режиме ожидания. Будут удалены из " +"следующего приложения политики." + +#: ../../enterprise/godmode/policies/policy_agents.php:140 +msgid "" +"Successfully added to delete pending groups. Will be deleted in the next " +"policy application." +msgstr "" +"Успешно добавлено для удаления ожидающих групп. Будут удалены в следующем " +"применении политики." + +#: ../../enterprise/godmode/policies/policy_agents.php:193 +#: ../../enterprise/godmode/policies/policy_agents.php:367 +msgid "Successfully added to delete queue" +msgstr "Успешно добавлено к удаленной очереди" + +#: ../../enterprise/godmode/policies/policy_agents.php:194 +#: ../../enterprise/godmode/policies/policy_agents.php:368 +msgid "Could not be added to delete queue" +msgstr "Не может быть добавлено к удаленной очереди" + +#: ../../enterprise/godmode/policies/policy_agents.php:247 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:91 +#: ../../enterprise/godmode/alerts/alert_events_list.php:213 +#: ../../godmode/massive/massive_add_alerts.php:156 +#: ../../godmode/massive/massive_add_action_alerts.php:154 +#: ../../godmode/alerts/alert_list.php:265 +msgid "Successfully added" +msgstr "Успешно добавленно" + +#: ../../enterprise/godmode/policies/policy_agents.php:252 +#, php-format +msgid "" +"Exceeded max. number (%d) of agents added to policy concurrently (%d added)" +msgstr "" +"Превышено максимальное количество (%d) агентов, одновременно добавленных в " +"политику (%d добавлено)" + +#: ../../enterprise/godmode/policies/policy_agents.php:265 +msgid "Successfully deleted from delete pending agents" +msgstr "Успешно удалены из удаленных агентов в режиме ожидания" + +#: ../../enterprise/godmode/policies/policy_agents.php:266 +msgid "Could not be deleted from delete pending agents" +msgstr "Не может быть удалено из удаленных агентов в режиме ожидания" + +#: ../../enterprise/godmode/policies/policy_agents.php:333 +msgid "" +"Number of agents added to the policy concurrently is too large. This might " +"cause the operation to fail or lead to performance issues." +msgstr "" +"Количество агентов, одновременно добавляемых в политику, слишком велико. Это " +"может привести к сбою операции или проблемам с производительностью." + +#: ../../enterprise/godmode/policies/policy_agents.php:457 +msgid "Apply to" +msgstr "Применить к" + +#: ../../enterprise/godmode/policies/policy_agents.php:504 +#: ../../enterprise/godmode/policies/policy_agents.php:535 +#: ../../enterprise/godmode/policies/policy_agents.php:578 +#: ../../enterprise/godmode/policies/policy_agents.php:761 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:98 +#: ../../godmode/massive/massive_copy_modules.php:111 +#: ../../godmode/massive/massive_copy_modules.php:264 +#: ../../godmode/massive/massive_standby_alerts.php:176 +#: ../../godmode/massive/massive_delete_action_alerts.php:209 +#: ../../godmode/massive/massive_delete_modules.php:381 +#: ../../godmode/massive/massive_add_alerts.php:216 +#: ../../godmode/massive/massive_delete_agents.php:141 +#: ../../godmode/massive/massive_enable_disable_alerts.php:163 +#: ../../godmode/massive/massive_edit_agents.php:432 +#: ../../godmode/massive/massive_delete_alerts.php:290 +#: ../../godmode/massive/massive_add_action_alerts.php:203 +#: ../../godmode/massive/massive_edit_modules.php:358 +#: ../../include/functions_html.php:1084 ../../include/functions_html.php:1234 +#: ../../include/lib/Dashboard/Widgets/events_list.php:436 +msgid "Group recursion" +msgstr "Группа рекурсии" + +#: ../../enterprise/godmode/policies/policy_agents.php:549 +#: ../../enterprise/godmode/policies/policy_agents.php:557 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:254 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:183 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:692 +#: ../../enterprise/include/class/Omnishell.class.php:825 +#: ../../enterprise/include/class/Omnishell.class.php:904 msgid "Filter agent" msgstr "Агент фильтра" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:215 -msgid "Filter module" +#: ../../enterprise/godmode/policies/policy_agents.php:569 +#: ../../enterprise/godmode/policies/policy_agents.php:679 +msgid "Agents in Policy" +msgstr "Агенты в Полтике" + +#: ../../enterprise/godmode/policies/policy_agents.php:595 +#: ../../enterprise/godmode/policies/policy_agents.php:1054 +msgid "Groups in Policy" +msgstr "Группы в политике" + +#: ../../enterprise/godmode/policies/policy_agents.php:689 +msgid "Add agents to policy" +msgstr "Добавить агенты к политике" + +#: ../../enterprise/godmode/policies/policy_agents.php:704 +msgid "Delete agents from policy" +msgstr "Удалить агенты из политики" + +#: ../../enterprise/godmode/policies/policy_agents.php:771 +msgid "Applied" +msgstr "Применено" + +#: ../../enterprise/godmode/policies/policy_agents.php:772 +msgid "Not applied" +msgstr "Не применено" + +#: ../../enterprise/godmode/policies/policy_agents.php:783 +#: ../../godmode/agentes/configurar_agente.php:602 +#: ../../godmode/agentes/configurar_agente.php:745 +#: ../../godmode/agentes/agent_manager.php:580 +#: ../../godmode/massive/massive_edit_agents.php:683 +#: ../../godmode/servers/servers.build_table.php:232 +msgid "Remote configuration" +msgstr "Удаленная конфигурация" + +#: ../../enterprise/godmode/policies/policy_agents.php:783 +#: ../../enterprise/operation/agentes/policy_view.php:381 +msgid "R." +msgstr "R." + +#: ../../enterprise/godmode/policies/policy_agents.php:785 +#: ../../enterprise/godmode/policies/policy_agents.php:1165 +#: ../../enterprise/godmode/admin_access_logs.php:24 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 +#: ../../enterprise/operation/agentes/policy_view.php:49 +#: ../../enterprise/operation/agentes/policy_view.php:153 +#: ../../enterprise/operation/agentes/policy_view.php:244 +#: ../../enterprise/operation/agentes/policy_view.php:249 +#: ../../godmode/agentes/module_manager.php:774 +#: ../../mobile/operation/agents.php:387 +#: ../../include/ajax/alert_list.ajax.php:272 +#: ../../include/ajax/alert_list.ajax.php:297 +#: ../../include/functions_events.php:2542 +#: ../../operation/agentes/alerts_status.php:528 +#: ../../operation/agentes/alerts_status.php:564 +#: ../../operation/agentes/alerts_status.php:599 +#: ../../operation/agentes/alerts_status.php:632 +msgid "S." +msgstr "S." + +#: ../../enterprise/godmode/policies/policy_agents.php:786 +msgid "Unlinked modules" +msgstr "Несвязаные модули" + +#: ../../enterprise/godmode/policies/policy_agents.php:786 +msgid "U." +msgstr "U." + +#: ../../enterprise/godmode/policies/policy_agents.php:787 +#: ../../enterprise/godmode/policies/policy_agents.php:1166 +#: ../../enterprise/godmode/admin_access_logs.php:28 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../mobile/operation/agents.php:388 +msgid "A." +msgstr "А." + +#: ../../enterprise/godmode/policies/policy_agents.php:789 +#: ../../enterprise/godmode/policies/policy_agents.php:1168 +#: ../../enterprise/operation/agentes/policy_view.php:52 +msgid "Last application" +msgstr "Последнее приложение" + +#: ../../enterprise/godmode/policies/policy_agents.php:790 +#: ../../enterprise/godmode/policies/policy_agents.php:1170 +msgid "Add to delete queue" +msgstr "Добавить к удаленной очереди" + +#: ../../enterprise/godmode/policies/policy_agents.php:790 +#: ../../enterprise/godmode/policies/policy_agents.php:1170 +msgid "D." +msgstr "D." + +#: ../../enterprise/godmode/policies/policy_agents.php:856 +#: ../../godmode/agentes/agent_manager.php:257 +msgid "This agent can be remotely configured" +msgstr "Этот агент может быть сконфигурирован дистанционно" + +#: ../../enterprise/godmode/policies/policy_agents.php:862 +msgid "This agent can not be remotely configured" +msgstr "Этот агент не может быть сконфигурирован дистанционно" + +#: ../../enterprise/godmode/policies/policy_agents.php:901 +#: ../../enterprise/godmode/policies/policy_agents.php:1259 +msgid "Process deletion" +msgstr "Удаление процесса" + +#: ../../enterprise/godmode/policies/policy_agents.php:963 +#: ../../enterprise/godmode/policies/policy_agents.php:1213 +#: ../../enterprise/operation/agentes/policy_view.php:66 +msgid "Policy applied" +msgstr "Политика применена" + +#: ../../enterprise/godmode/policies/policy_agents.php:969 +#: ../../enterprise/godmode/policies/policy_agents.php:1219 +msgid "Need apply" +msgstr "Нужно применить" + +#: ../../enterprise/godmode/policies/policy_agents.php:979 +#: ../../enterprise/godmode/policies/policy_agents.php:1228 +msgid "Applying policy" +msgstr "Принципы применения" + +#: ../../enterprise/godmode/policies/policy_agents.php:989 +#: ../../enterprise/godmode/policies/policy_agents.php:1236 +msgid "Deleting from policy" +msgstr "Удаление из политики" + +#: ../../enterprise/godmode/policies/policy_agents.php:1004 +#: ../../godmode/massive/massive_delete_modules.php:87 +#: ../../godmode/massive/massive_add_alerts.php:100 +#: ../../godmode/massive/massive_delete_agents.php:50 +#: ../../godmode/massive/massive_edit_agents.php:151 +#: ../../godmode/massive/massive_delete_alerts.php:113 +#: ../../godmode/massive/massive_add_action_alerts.php:75 +#: ../../include/functions_visual_map.php:2566 +#: ../../include/functions_visual_map.php:2953 +msgid "No agents selected" +msgstr "Не выбраны агенты" + +#: ../../enterprise/godmode/policies/policy_agents.php:1112 +msgid "Add groups to policy" +msgstr "Добавить группы к политике" + +#: ../../enterprise/godmode/policies/policy_agents.php:1120 +msgid "Delete groups from policy" +msgstr "Удалить группы из политики" + +#: ../../enterprise/godmode/policies/policy_agents.php:1167 +msgid "Total agents in policy group" +msgstr "Общее количество агентов в группе политики" + +#: ../../enterprise/godmode/policies/policy_agents.php:1167 +msgid "T." +msgstr "T." + +#: ../../enterprise/godmode/policies/policy.php:102 +#: ../../enterprise/include/functions_policies.php:3759 +#: ../../godmode/agentes/configurar_agente.php:525 +msgid "Agent wizard" +msgstr "Агент мастера" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:23 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 +#: ../../enterprise/operation/menu.php:170 ../../include/functions_menu.php:545 +msgid "SNMP trap editor" +msgstr "SNMP редактор прерывания" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:338 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:292 +#: ../../godmode/setup/snmp_wizard.php:42 +#: ../../include/functions_snmp_browser.php:556 +msgid "OID" +msgstr "OID" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:339 +msgid "Custom OID" +msgstr "Пользователь OID" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:341 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2038 +#: ../../enterprise/include/functions_reporting_csv.php:2245 +#: ../../enterprise/include/functions_reporting_csv.php:2259 +#: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1330 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1887 +#: ../../include/functions_reports.php:816 +#: ../../include/functions_reporting.php:5965 +#: ../../include/lib/Dashboard/Widgets/post.php:214 +msgid "Text" +msgstr "Текст" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:187 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:199 +msgid "Successfully added trap custom values" +msgstr "успешное добавление пользовательсих значений прерывания" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:189 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:201 +msgid "Error adding trap custom values" +msgstr "Ошибка при добавлении пользовательских значений прерывания" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:204 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:279 +msgid "This custom OID is preexistent." +msgstr "Этот пользовательский OID уже существует." + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:245 +msgid "No change in data" +msgstr "Нет изменений в данных" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:247 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:274 +msgid "Successfully updated trap custom values" +msgstr "Успешное обновление пользовательских значений прерывания" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:249 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:276 +msgid "Error updating trap custom values" +msgstr "Ошибка обновления пользовательских значений прерывания" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:289 +msgid "Successfully deleted trap custom values" +msgstr "Успешное добавление пользовательских значений прерывания" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:292 +msgid "Error deleting trap custom values" +msgstr "Ошибка удаления обновление пользовательских значений прерывания" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:298 +#, php-format +msgid "Uploaded %s/%s traps" +msgstr "Загружено %s/%s прерываний" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:302 +msgid "Fail uploaded file" +msgstr "Сбой загруженного файла" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:307 +msgid "" +"MIB files will be loaded and searched for SNMP trap definitions. They will " +"not be installed on the system! You can use the MIB uploader for that " +"purpose." msgstr "" +"Файлы MIB будут загружены и будут искаться определения ловушек SNMP. Они не " +"будут установлены в системе! Для этой цели вы можете использовать программу " +"загрузки MIB." -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:225 -#: ../../godmode/massive/massive_delete_alerts.php:226 -#: ../../godmode/massive/massive_delete_modules.php:487 -#: ../../godmode/massive/massive_add_alerts.php:167 -#: ../../godmode/massive/massive_edit_modules.php:332 -msgid "When select agents" -msgstr "При выборе агентов" +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:316 +msgid "Load MIB" +msgstr "Загрузить MIB" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:228 -#: ../../godmode/massive/massive_delete_alerts.php:228 -#: ../../godmode/massive/massive_delete_modules.php:489 -#: ../../godmode/massive/massive_add_alerts.php:169 -#: ../../godmode/massive/massive_edit_modules.php:335 -msgid "Show common modules" -msgstr "Показать общие модули" +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:318 +msgid "Upload MIB" +msgstr "Загрузить MIB" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:229 -#: ../../godmode/massive/massive_delete_alerts.php:228 -#: ../../godmode/massive/massive_delete_modules.php:489 -#: ../../godmode/massive/massive_add_alerts.php:169 -#: ../../godmode/massive/massive_edit_modules.php:336 -msgid "Show all modules" -msgstr "Показать все модули" +#: ../../enterprise/godmode/menu.php:16 +msgid "Manage Satellite Server" +msgstr "Управление Satellite Server" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:237 -#: ../../enterprise/godmode/modules/configure_local_component.php:218 -#: ../../include/functions_alerts.php:554 -#: ../../include/functions_treeview.php:98 -#: ../../godmode/agentes/module_manager_editor_common.php:232 -#: ../../godmode/massive/massive_edit_modules.php:345 -#: ../../godmode/modules/manage_network_components_form_common.php:106 -msgid "Warning status" -msgstr "статус Предупреждение" +#: ../../enterprise/godmode/menu.php:25 +#: ../../enterprise/godmode/massive/massive_operations.php:98 +msgid "Policies operations" +msgstr "Политика операций" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:258 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:287 -#: ../../enterprise/godmode/modules/configure_local_component.php:225 -#: ../../enterprise/godmode/modules/configure_local_component.php:240 -#: ../../include/functions_treeview.php:91 -#: ../../include/functions_treeview.php:104 -#: ../../godmode/agentes/module_manager_editor_common.php:245 -#: ../../godmode/agentes/module_manager_editor_common.php:265 -#: ../../godmode/massive/massive_edit_modules.php:367 -#: ../../godmode/massive/massive_edit_modules.php:413 -#: ../../godmode/modules/manage_network_components_form_common.php:113 -#: ../../godmode/modules/manage_network_components_form_common.php:126 -msgid "Str." -msgstr "Ул." +#: ../../enterprise/godmode/menu.php:36 +#: ../../enterprise/godmode/massive/massive_operations.php:74 +msgid "SNMP operations" +msgstr "SNMP операций" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../enterprise/godmode/modules/configure_local_component.php:233 -#: ../../include/functions_alerts.php:555 -#: ../../include/functions_treeview.php:110 -#: ../../godmode/agentes/module_manager_editor_common.php:253 -#: ../../godmode/massive/massive_edit_modules.php:391 -#: ../../godmode/modules/manage_network_components_form_common.php:119 -msgid "Critical status" -msgstr "Критический статус" +#: ../../enterprise/godmode/menu.php:48 +#: ../../enterprise/godmode/massive/massive_operations.php:28 +msgid "Satellite operations" +msgstr "Satellite операции" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:334 -msgid "Updated modules on database" -msgstr "" +#: ../../enterprise/godmode/menu.php:60 +#: ../../enterprise/godmode/massive/massive_operations.php:52 +msgid "Services operations" +msgstr "Операции сервисов" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:336 -msgid "Agent configuration files updated" -msgstr "" +#: ../../enterprise/godmode/menu.php:72 ../../enterprise/godmode/menu.php:273 +msgid "Duplicate config" +msgstr "Дубликат конфигурации" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:62 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:62 +#: ../../enterprise/godmode/menu.php:99 +#: ../../enterprise/include/functions_policies.php:3738 +msgid "Manage policies" +msgstr "Управление политикой" + +#: ../../enterprise/godmode/menu.php:108 +msgid "Manage agent autoconfiguration" +msgstr "Управление автоконфигурацией агента" + +#: ../../enterprise/godmode/menu.php:117 +#: ../../enterprise/include/class/AgentRepository.class.php:596 +msgid "Software agents repository" +msgstr "Репозиторий программных агентов" + +#: ../../enterprise/godmode/menu.php:139 +#: ../../enterprise/include/functions_setup.php:67 +#: ../../enterprise/include/functions_setup.php:119 +#: ../../operation/agentes/datos_agente.php:180 +msgid "History database" +msgstr "История базы данных" + +#: ../../enterprise/godmode/menu.php:150 +#: ../../enterprise/include/class/CSVImportAgents.class.php:114 +#: ../../godmode/wizards/HostDevices.class.php:159 +msgid "Import CSV" +msgstr "Импортировать CSV" + +#: ../../enterprise/godmode/menu.php:154 +#: ../../enterprise/include/class/DeploymentCenter.class.php:613 +#: ../../godmode/wizards/HostDevices.class.php:165 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:774 +msgid "Agent deployment" +msgstr "Развертывание агента" + +#: ../../enterprise/godmode/menu.php:164 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:400 +msgid "Microsoft SQL Server" +msgstr "Microsoft SQL Server" + +#: ../../enterprise/godmode/menu.php:165 +msgid "Mysql" +msgstr "Mysql" + +#: ../../enterprise/godmode/menu.php:166 +#: ../../enterprise/godmode/setup/setup.php:179 +#: ../../enterprise/include/class/Oracle.app.php:405 +msgid "Oracle" +msgstr "Oracle" + +#: ../../enterprise/godmode/menu.php:167 +#: ../../enterprise/include/class/VMware.app.php:489 +msgid "VMware" +msgstr "VMware" + +#: ../../enterprise/godmode/menu.php:168 +#: ../../enterprise/include/class/SAPView.class.php:605 +#: ../../enterprise/include/class/SAPView.class.php:608 +#: ../../include/class/CredentialStore.class.php:928 +msgid "SAP" +msgstr "SAP" + +#: ../../enterprise/godmode/menu.php:169 +#: ../../enterprise/include/class/DB2.app.php:404 +msgid "DB2" +msgstr "DB2" + +#: ../../enterprise/godmode/menu.php:170 +#: ../../enterprise/godmode/wizards/Applications.class.php:162 +#: ../../enterprise/godmode/wizards/Applications.class.php:170 +msgid "Applications" +msgstr "Приложения" + +#: ../../enterprise/godmode/menu.php:181 +msgid "Amazon Web Services" +msgstr "Веб-Сервисы Amazon" + +#: ../../enterprise/godmode/menu.php:182 +msgid "Microsoft Azure" +msgstr "Microsoft Azure" + +#: ../../enterprise/godmode/menu.php:183 +msgid "Google Compute Platform" +msgstr "Google Compute Platform" + +#: ../../enterprise/godmode/menu.php:184 +#: ../../enterprise/godmode/wizards/Cloud.class.php:186 +#: ../../enterprise/godmode/wizards/Cloud.class.php:195 +#: ../../enterprise/include/class/Azure.cloud.php:150 +#: ../../enterprise/include/class/Azure.cloud.php:194 +#: ../../enterprise/include/class/Aws.cloud.php:109 +#: ../../enterprise/include/class/Aws.cloud.php:156 +#: ../../enterprise/include/class/Google.cloud.php:144 +#: ../../enterprise/include/class/Google.cloud.php:188 +msgid "Cloud" +msgstr "Cloud" + +#: ../../enterprise/godmode/menu.php:199 +msgid "New console task" +msgstr "Новая задача консоли" + +#: ../../enterprise/godmode/menu.php:209 +msgid "Enterprise ACL Setup" +msgstr "Загрузка Enterprise ACL" + +#: ../../enterprise/godmode/menu.php:218 +msgid "Skins" +msgstr "Скины" + +#: ../../enterprise/godmode/menu.php:228 +msgid "Manage database HA" +msgstr "Управление базой данных HA" + +#: ../../enterprise/godmode/menu.php:238 +#: ../../enterprise/godmode/servers/manage_export.php:43 +#: ../../enterprise/godmode/servers/manage_export_form.php:59 +msgid "Export targets" +msgstr "Экспорт заданий" + +#: ../../enterprise/godmode/menu.php:248 +msgid "Alert correlation" +msgstr "Корреляция предупреждений" + +#: ../../enterprise/godmode/menu.php:264 +msgid "Log Collector" +msgstr "Журнал коллектора" + +#: ../../enterprise/godmode/menu.php:282 +msgid "Password policy" +msgstr "Политика паролей" + +#: ../../enterprise/godmode/menu.php:290 +#: ../../enterprise/include/functions_setup.php:44 +#: ../../enterprise/include/functions_setup.php:108 +#: ../../godmode/extensions.php:140 ../../godmode/setup/setup.php:314 +msgid "Enterprise" +msgstr "Корпорация" + +#: ../../enterprise/godmode/menu.php:303 +#: ../../general/first_task/omnishell.php:31 +#: ../../general/first_task/omnishell.php:34 +msgid "Omnishell" +msgstr "Omnishell" + +#: ../../enterprise/godmode/menu.php:317 +#: ../../enterprise/tools/ipam/ipam.php:283 +msgid "IPAM" +msgstr "IPAM" + +#: ../../enterprise/godmode/menu.php:326 ../../godmode/setup/setup.php:187 +#: ../../godmode/setup/setup.php:286 +#: ../../godmode/module_library/module_library_view.php:65 +msgid "Module Library" +msgstr "Библиотека модулей" + +#: ../../enterprise/godmode/menu.php:334 +#: ../../enterprise/godmode/alerts/alert_inventory.php:78 +#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +msgid "Inventory alerts" +msgstr "Оповещения инвенторизации" + +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:76 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:73 msgid "Successful update the tags" -msgstr "" +msgstr "Успешное обновление тегов" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:63 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:63 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:77 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:74 msgid "Unsuccessful update the tags" -msgstr "" +msgstr "Неудалось обновление тегов" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:102 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 msgid "Tags unused" -msgstr "" +msgstr "Теги не использованы" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:118 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:165 msgid "Tags used" -msgstr "" +msgstr "Теги использованы" -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:100 -msgid "Modules unused" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:116 -msgid "Modules used" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 msgid "Success: create the alerts." msgstr "Успех: создать оповещения." -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 msgid "Failed: create the alerts for this modules, please check." msgstr "Сбой: создать оповещения для этого модуля, пожалуйста, проверьте." -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -#: ../../operation/snmpconsole/snmp_view.php:414 -#: ../../operation/snmpconsole/snmp_view.php:708 -#: ../../operation/snmpconsole/snmp_view.php:715 -#: ../../godmode/snmpconsole/snmp_alert.php:28 -msgid "Cold start (0)" -msgstr "Холодный старт (0)" +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:110 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:124 +#: ../../include/functions_alerts.php:670 +msgid "Regular expression" +msgstr "Регулярное выражение" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:113 +msgid "Modules in policy" +msgstr "Модули в политике" + +#: ../../enterprise/godmode/massive/massive_operations.php:114 +msgid "Bulk alerts policy add" +msgstr "Массовое добавление оповещений в политику" + +#: ../../enterprise/godmode/massive/massive_operations.php:115 +msgid "Bulk alerts policy delete" +msgstr "Массовое удаление оповещений из политики" + +#: ../../enterprise/godmode/massive/massive_operations.php:116 +msgid "Bulk tags module policy edit" +msgstr "Массовое редактирование тегов модулей в политиках" + +#: ../../enterprise/godmode/massive/massive_operations.php:117 +msgid "Bulk modules policy tags edit" +msgstr "Массовое редактирование тегов модулей в политиках" + +#: ../../enterprise/godmode/massive/massive_operations.php:118 +msgid "Bulk modules policy add from agent" +msgstr "Массовое добавление модулей в политику агента" + +#: ../../enterprise/godmode/massive/massive_operations.php:119 +msgid "Bulk modules policy edit" +msgstr "Массовое редактирование модулей в политике" + +#: ../../enterprise/godmode/massive/massive_operations.php:130 +msgid "Bulk alert SNMP delete" +msgstr "Массовое удаление оповещений SNMP" + +#: ../../enterprise/godmode/massive/massive_operations.php:131 +msgid "Bulk alert SNMP edit" +msgstr "Массовое редактирование оповещений SNMP" + +#: ../../enterprise/godmode/massive/massive_operations.php:142 +msgid "Bulk Satellite modules edit" +msgstr "Массовое редактирование модулей Satellite" + +#: ../../enterprise/godmode/massive/massive_operations.php:155 +msgid "Bulk Services creation" +msgstr "Массовое создание сервисов" + +#: ../../enterprise/godmode/massive/massive_operations.php:156 +msgid "Bulk Services deletion" +msgstr "Массовое удаление сервисов" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:59 +msgid "Successfully copied " +msgstr "Успешно скопировано " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +#: ../../include/ajax/events.php:1968 ../../include/ajax/events.php:1982 +#: ../../include/ajax/events.php:1996 +msgid "Module " +msgstr "Модуль " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +msgid " cannot be copied to " +msgstr " невозможно скопировать в " + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +msgid " policy" +msgstr " политика" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:152 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:169 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:175 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:184 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:242 +#: ../../enterprise/godmode/services/services.elements.php:290 +#: ../../enterprise/godmode/setup/setup_auth.php:66 +#: ../../enterprise/godmode/setup/setup_auth.php:267 +#: ../../enterprise/godmode/setup/setup_auth.php:317 +#: ../../enterprise/godmode/setup/setup_auth.php:378 +#: ../../enterprise/godmode/setup/setup_auth.php:544 +#: ../../enterprise/godmode/setup/setup_auth.php:1154 +#: ../../enterprise/godmode/setup/setup_auth.php:1324 +#: ../../enterprise/godmode/setup/setup_acl.php:440 +#: ../../enterprise/include/class/DeploymentCenter.class.php:779 +#: ../../enterprise/include/class/AgentRepository.class.php:633 +#: ../../enterprise/include/class/Omnishell.class.php:361 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1656 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3915 +#: ../../enterprise/operation/services/services.list.php:259 +#: ../../enterprise/operation/services/services.list.php:289 +#: ../../enterprise/operation/services/services.table_services.php:211 +#: ../../enterprise/operation/services/services.table_services.php:241 +#: ../../godmode/agentes/planned_downtime.list.php:160 +#: ../../godmode/agentes/planned_downtime.editor.php:788 +#: ../../godmode/agentes/agent_manager.php:325 +#: ../../godmode/agentes/agent_manager.php:567 +#: ../../godmode/massive/massive_copy_modules.php:177 +#: ../../godmode/massive/massive_delete_modules.php:402 +#: ../../godmode/massive/massive_delete_modules.php:516 +#: ../../godmode/massive/massive_edit_agents.php:537 +#: ../../godmode/massive/massive_edit_agents.php:764 +#: ../../godmode/massive/massive_add_action_alerts.php:210 +#: ../../godmode/massive/massive_edit_modules.php:399 +#: ../../godmode/massive/massive_edit_modules.php:485 +#: ../../godmode/reporting/create_container.php:573 +#: ../../godmode/reporting/visual_console_builder.wizard.php:556 +#: ../../godmode/events/event_edit_filter.php:425 +#: ../../include/functions_visual_map_editor.php:498 +#: ../../include/functions_visual_map_editor.php:1459 +#: ../../include/functions_visual_map_editor.php:1553 +#: ../../include/ajax/visual_console_builder.ajax.php:1186 +#: ../../include/functions_profile.php:338 +#: ../../include/functions_html.php:2050 ../../include/functions_html.php:2051 +#: ../../include/functions_html.php:2052 ../../include/functions_html.php:2053 +#: ../../include/functions_html.php:2054 ../../include/functions_html.php:2056 +#: ../../include/functions_html.php:2057 ../../include/functions_html.php:2058 +#: ../../include/functions_html.php:2059 ../../include/functions_html.php:2060 +#: ../../include/lib/Dashboard/Widgets/events_list.php:329 +#: ../../operation/events/events_list.php:791 +#: ../../operation/events/events.php:1189 +#: ../../operation/events/events.php:2432 +msgid "Any" +msgstr "Любой" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:173 +#: ../../godmode/massive/massive_copy_modules.php:212 +msgid "No modules for this agent" +msgstr "Нет модулей для этого агента" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:206 +msgid "To policies" +msgstr "К политикам" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:342 +#: ../../godmode/massive/massive_add_alerts.php:309 +#: ../../godmode/massive/massive_edit_agents.php:941 +#: ../../godmode/massive/massive_delete_alerts.php:367 +msgid "" +"Unsucessful sending the data, please contact with your administrator or make " +"with less elements." +msgstr "" +"Не удалось отправить данные, пожалуйста, свяжитесь с вашим администратором " +"или повторите с меньшим количеством элементов." + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:349 +#: ../../godmode/massive/massive_copy_modules.php:549 +#: ../../include/functions_agents.php:789 +msgid "No source agent to copy" +msgstr "Нет источника агента для копирования" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:354 +#: ../../godmode/massive/massive_copy_modules.php:562 +#: ../../include/functions_agents.php:820 +msgid "No modules have been selected" +msgstr "Модули не выбраны" + +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 +msgid "No destiny policies to copy" +msgstr "Нет политики назначения для копирования" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:206 +#: ../../godmode/massive/massive_delete_modules.php:367 +#: ../../godmode/massive/massive_edit_modules.php:344 +msgid "Agent group" +msgstr "Агент группы" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:237 +msgid "Filter module" +msgstr "Фильтр модуля" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:256 +#: ../../godmode/massive/massive_delete_action_alerts.php:229 +#: ../../godmode/massive/massive_delete_modules.php:546 +#: ../../godmode/massive/massive_add_alerts.php:248 +#: ../../godmode/massive/massive_delete_alerts.php:320 +#: ../../godmode/massive/massive_add_action_alerts.php:214 +#: ../../godmode/massive/massive_edit_modules.php:512 +msgid "When select agents" +msgstr "При выборе агентов" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:260 +#: ../../extensions/agents_modules.php:410 +#: ../../extensions/agents_modules.php:413 +#: ../../godmode/agentes/planned_downtime.editor.php:799 +#: ../../godmode/massive/massive_delete_action_alerts.php:233 +#: ../../godmode/massive/massive_delete_modules.php:550 +#: ../../godmode/massive/massive_add_alerts.php:252 +#: ../../godmode/massive/massive_delete_alerts.php:324 +#: ../../godmode/massive/massive_add_action_alerts.php:218 +#: ../../godmode/massive/massive_edit_modules.php:516 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1607 +#: ../../include/functions_html.php:1452 ../../include/functions_html.php:1457 +msgid "Show common modules" +msgstr "Показать общие модули" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261 +#: ../../extensions/agents_modules.php:411 +#: ../../godmode/agentes/planned_downtime.editor.php:800 +#: ../../godmode/massive/massive_delete_action_alerts.php:234 +#: ../../godmode/massive/massive_delete_modules.php:551 +#: ../../godmode/massive/massive_add_alerts.php:253 +#: ../../godmode/massive/massive_delete_alerts.php:325 +#: ../../godmode/massive/massive_add_action_alerts.php:219 +#: ../../godmode/massive/massive_edit_modules.php:517 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1608 +#: ../../include/functions_html.php:1453 +msgid "Show all modules" +msgstr "Показать все модули" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:418 +msgid "Updated modules on database" +msgstr "Обновление модулей на базе данных" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:420 +msgid "Agent configuration files updated" +msgstr "Файлы конфигурации агента обновлены" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:686 +msgid "No changes have been made." +msgstr "Никаких изменений не было произведено." + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:687 +#: ../../enterprise/tools/ipam/ipam.php:237 +#: ../../godmode/massive/massive_operations.php:380 +#: ../../godmode/massive/massive_edit_plugins.php:916 +msgid "Massive operations" +msgstr "Массовые операции" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 -#: ../../operation/snmpconsole/snmp_view.php:415 -#: ../../operation/snmpconsole/snmp_view.php:708 -#: ../../operation/snmpconsole/snmp_view.php:718 -#: ../../godmode/snmpconsole/snmp_alert.php:29 -msgid "Warm start (1)" -msgstr "Теплый старт (1)" +#: ../../godmode/snmpconsole/snmp_alert.php:28 +#: ../../operation/snmpconsole/snmp_view.php:653 +#: ../../operation/snmpconsole/snmp_view.php:1119 +#: ../../operation/snmpconsole/snmp_view.php:1133 +msgid "Cold start (0)" +msgstr "Холодный старт (0)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 -#: ../../operation/snmpconsole/snmp_view.php:416 -#: ../../operation/snmpconsole/snmp_view.php:708 -#: ../../operation/snmpconsole/snmp_view.php:721 -#: ../../godmode/snmpconsole/snmp_alert.php:30 -msgid "Link down (2)" -msgstr "Ссылка внизу (2)" +#: ../../godmode/snmpconsole/snmp_alert.php:29 +#: ../../operation/snmpconsole/snmp_view.php:654 +#: ../../operation/snmpconsole/snmp_view.php:1120 +#: ../../operation/snmpconsole/snmp_view.php:1137 +msgid "Warm start (1)" +msgstr "Теплый старт (1)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 -#: ../../operation/snmpconsole/snmp_view.php:417 -#: ../../operation/snmpconsole/snmp_view.php:708 -#: ../../operation/snmpconsole/snmp_view.php:724 -#: ../../godmode/snmpconsole/snmp_alert.php:31 -msgid "Link up (3)" -msgstr "Ссылка вверху (3)" +#: ../../godmode/snmpconsole/snmp_alert.php:30 +#: ../../operation/snmpconsole/snmp_view.php:655 +#: ../../operation/snmpconsole/snmp_view.php:1121 +#: ../../operation/snmpconsole/snmp_view.php:1141 +msgid "Link down (2)" +msgstr "Ссылка внизу (2)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 -#: ../../operation/snmpconsole/snmp_view.php:418 -#: ../../operation/snmpconsole/snmp_view.php:708 -#: ../../operation/snmpconsole/snmp_view.php:727 +#: ../../godmode/snmpconsole/snmp_alert.php:31 +#: ../../operation/snmpconsole/snmp_view.php:656 +#: ../../operation/snmpconsole/snmp_view.php:1122 +#: ../../operation/snmpconsole/snmp_view.php:1145 +msgid "Link up (3)" +msgstr "Ссылка вверху (3)" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:32 +#: ../../operation/snmpconsole/snmp_view.php:657 +#: ../../operation/snmpconsole/snmp_view.php:1123 +#: ../../operation/snmpconsole/snmp_view.php:1149 msgid "Authentication failure (4)" msgstr "Ошибка проверки подлинности (4)" -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:137 -#: ../../godmode/snmpconsole/snmp_alert.php:484 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 +#: ../../enterprise/godmode/setup/setup_acl.php:350 +#: ../../enterprise/godmode/setup/setup_acl.php:354 +#: ../../enterprise/include/class/Aws.cloud.php:340 +#: ../../extensions/api_checker.php:176 +#: ../../godmode/groups/configure_group.php:236 +#: ../../godmode/users/configure_user.php:1084 +#: ../../godmode/snmpconsole/snmp_alert.php:33 +#: ../../include/functions_graph.php:3010 +#: ../../include/functions_graph.php:3055 +#: ../../include/functions_graph.php:3096 +#: ../../include/functions_graph.php:3138 +#: ../../include/functions_graph.php:3215 +#: ../../include/functions_graph.php:3424 +#: ../../include/functions_graph.php:3532 +#: ../../include/functions_graph.php:3597 +#: ../../include/functions_graph.php:3771 +#: ../../include/functions_graph.php:3783 +#: ../../include/functions_graph.php:3784 +#: ../../include/functions_graph.php:3787 +#: ../../include/functions_graph.php:3792 +#: ../../include/functions_graph.php:3793 +#: ../../include/functions_graph.php:3796 +#: ../../include/functions_graph.php:4784 +#: ../../operation/users/user_edit.php:362 +#: ../../operation/snmpconsole/snmp_statistics.php:208 +#: ../../operation/snmpconsole/snmp_statistics.php:265 +#: ../../operation/snmpconsole/snmp_view.php:658 +#: ../../operation/snmpconsole/snmp_view.php:1124 +#: ../../operation/snmpconsole/snmp_view.php:1153 +#: ../../operation/gis_maps/render_view.php:154 +msgid "Other" +msgstr "Прочее" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:150 +#: ../../godmode/snmpconsole/snmp_alert.php:761 #, php-format msgid "Successfully deleted alerts (%s / %s)" msgstr "Оповещения успешно удалены (%s / %s)" -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:141 -#: ../../godmode/snmpconsole/snmp_alert.php:488 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:158 +#: ../../godmode/snmpconsole/snmp_alert.php:765 #, php-format msgid "Unsuccessfully deleted alerts (%s / %s)" msgstr "Оповещения не удалены (%s / %s)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:166 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:224 +msgid "You must select a SNMP alert" +msgstr "Вы должны выбрать предупреждение SNMP" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:191 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:251 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " "Single value, each Custom OIDs/Datas." @@ -15229,556 +16257,2355 @@ msgstr "" "Поиск по описанию этих полей, OID, пользовательских значений, агента SNMP " "(IP), одиночного значения, каждого пользовательского OIDs / Данные." -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:169 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:220 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:249 -#: ../../operation/snmpconsole/snmp_view.php:410 -#: ../../godmode/snmpconsole/snmp_alert.php:563 -#: ../../godmode/snmpconsole/snmp_alert.php:897 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:195 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:255 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:298 +#: ../../godmode/snmpconsole/snmp_alert.php:859 +#: ../../godmode/snmpconsole/snmp_alert.php:1179 +#: ../../include/functions_snmp.php:433 +#: ../../operation/snmpconsole/snmp_view.php:650 msgid "Trap type" msgstr "Тип прерывания" -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:182 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:210 msgid "SNMP Alerts to be deleted" msgstr "SNMP оповещения будут удалены" -#: ../../enterprise/godmode/massive/massive_operations.php:78 -msgid "Bulk alerts policy add" -msgstr "" +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:282 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:396 +msgid "No snmp alert found." +msgstr "Не найдены предупреждения snmp." -#: ../../enterprise/godmode/massive/massive_operations.php:79 -msgid "Bulk alerts policy delete" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_operations.php:80 -msgid "Bulk tags module policy edit" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_operations.php:81 -msgid "Bulk modules policy tags edit" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_operations.php:89 -msgid "Bulk alert SNMP delete" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_operations.php:90 -msgid "Bulk alert SNMP edit" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_operations.php:98 -msgid "Bulk Satellite modules edit" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:27 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:259 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:278 -#: ../../godmode/massive/massive_edit_agents.php:278 -#: ../../godmode/massive/massive_edit_agents.php:281 -#: ../../godmode/massive/massive_edit_agents.php:285 -#: ../../godmode/massive/massive_edit_agents.php:289 -#: ../../godmode/massive/massive_edit_agents.php:300 -#: ../../godmode/massive/massive_edit_agents.php:338 -#: ../../godmode/massive/massive_edit_agents.php:344 -#: ../../godmode/massive/massive_edit_agents.php:383 -#: ../../godmode/massive/massive_edit_agents.php:392 -#: ../../godmode/massive/massive_edit_agents.php:399 -#: ../../godmode/massive/massive_edit_modules.php:383 -#: ../../godmode/massive/massive_edit_modules.php:428 -#: ../../godmode/massive/massive_edit_modules.php:443 -#: ../../godmode/massive/massive_edit_modules.php:447 -#: ../../godmode/massive/massive_edit_modules.php:465 -#: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/massive/massive_edit_modules.php:477 -#: ../../godmode/massive/massive_edit_modules.php:480 -#: ../../godmode/massive/massive_edit_modules.php:493 -#: ../../godmode/massive/massive_edit_modules.php:506 -#: ../../godmode/massive/massive_edit_modules.php:514 -#: ../../godmode/massive/massive_edit_modules.php:527 -#: ../../godmode/massive/massive_edit_modules.php:535 -#: ../../godmode/massive/massive_edit_modules.php:541 -#: ../../godmode/massive/massive_edit_modules.php:553 -#: ../../godmode/massive/massive_edit_modules.php:572 -msgid "No change" -msgstr "Не изменять" - -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:186 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:208 #, php-format msgid "Successfully updated alerts (%s / %s)" msgstr "Оповещения успешно обновлены (%s / %s)" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:190 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216 #, php-format msgid "Unsuccessfully updated alerts (%s / %s)" msgstr "Неудачное обновление оповещений (%s / %s)" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270 msgid "SNMP Alerts to be edit" msgstr "SNMP оповещения будут редактированы" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:245 -#: ../../godmode/snmpconsole/snmp_alert.php:542 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:294 +#: ../../godmode/snmpconsole/snmp_alert.php:814 msgid "Custom Value/OID" msgstr "Пользовательские значения / OID" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:247 -#: ../../operation/snmpconsole/snmp_view.php:499 -#: ../../godmode/snmpconsole/snmp_alert.php:551 -#: ../../godmode/snmpconsole/snmp_alert.php:1047 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:78 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:296 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:112 +#: ../../godmode/snmpconsole/snmp_alert.php:822 +#: ../../godmode/snmpconsole/snmp_alert.php:1323 +#: ../../operation/snmpconsole/snmp_view.php:856 msgid "SNMP Agent" msgstr "SNMP Агент" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:251 -#: ../../godmode/snmpconsole/snmp_alert.php:568 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:300 +#: ../../godmode/snmpconsole/snmp_alert.php:864 msgid "Single value" msgstr "Одно значение" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270 -#: ../../godmode/snmpconsole/snmp_alert.php:827 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:302 +#: ../../enterprise/godmode/alerts/alert_events.php:533 +#: ../../godmode/snmpconsole/snmp_alert.php:1067 +#: ../../godmode/alerts/configure_alert_template.php:729 +msgid "Min. number of alerts" +msgstr "Мин. число оповещений" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:304 +#: ../../enterprise/godmode/alerts/alert_events.php:542 +#: ../../godmode/snmpconsole/snmp_alert.php:1070 +#: ../../godmode/alerts/configure_alert_template.php:766 +msgid "Max. number of alerts" +msgstr "Макс. число оповещений" + +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:319 +#: ../../godmode/snmpconsole/snmp_alert.php:1089 msgid "Other value" msgstr "Другое значение" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:280 -#: ../../include/functions_visual_map_editor.php:464 -#: ../../godmode/snmpconsole/snmp_alert.php:860 -#: ../../godmode/snmpconsole/snmp_alert.php:1042 -#: ../../godmode/reporting/reporting_builder.list_items.php:284 -#: ../../godmode/reporting/visual_console_builder.elements.php:80 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:325 +#: ../../godmode/snmpconsole/snmp_alert.php:1140 +#: ../../godmode/snmpconsole/snmp_alert.php:1318 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../include/functions_visual_map_editor.php:922 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 +#: ../../include/rest-api/models/VisualConsole/Item.php:1971 msgid "Position" msgstr "Координаты" -#: ../../enterprise/godmode/modules/local_components.php:89 -msgid "Local component management" -msgstr "Управление местными компонентами" +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:113 +msgid "Modules unused" +msgstr "Неиспользованные модули" -#: ../../enterprise/godmode/modules/local_components.php:106 -#: ../../godmode/alerts/configure_alert_template.php:118 -#: ../../godmode/modules/manage_network_components.php:147 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:153 +msgid "Modules used" +msgstr "Использованные модули" + +#: ../../enterprise/godmode/massive/massive_edit_services.php:107 +#: ../../enterprise/godmode/services/services.service.php:117 +msgid "No name specified for the service" +msgstr "Для сервиса не указано имя" + +#: ../../enterprise/godmode/massive/massive_edit_services.php:113 +#: ../../enterprise/godmode/services/services.service.php:128 +msgid "No description specified for the service" +msgstr "Для сервиса не указано описание" + +#: ../../enterprise/godmode/massive/massive_edit_services.php:119 +#: ../../enterprise/godmode/services/services.service.php:139 +msgid "You must specify an agent to store the service" +msgstr "Вы должны указать агента для сохранения сервиса" + +#: ../../enterprise/godmode/massive/massive_edit_services.php:133 +#: ../../enterprise/godmode/massive/massive_edit_services.php:381 #, php-format -msgid "Successfully created from %s" -msgstr "успешно создан из %s" +msgid "Agent selected %d not found" +msgstr "Выбранный агент %d не найден" -#: ../../enterprise/godmode/modules/local_components.php:245 -#: ../../godmode/servers/recon_script.php:320 -#: ../../godmode/modules/manage_network_components.php:244 -msgid "Created successfully" -msgstr "Создание успешно завершено" +#: ../../enterprise/godmode/massive/massive_edit_services.php:194 +#, php-format +msgid "Failed to create service for agent %s, %s" +msgstr "Не удалось создать сервис для агента %s, %s" -#: ../../enterprise/godmode/modules/local_components.php:303 -#: ../../godmode/servers/recon_script.php:274 -#: ../../godmode/modules/manage_network_components.php:331 -msgid "Updated successfully" -msgstr "Обновлено успешно" +#: ../../enterprise/godmode/massive/massive_edit_services.php:208 +#: ../../enterprise/godmode/massive/massive_edit_services.php:412 +#, php-format +msgid "Module selected %d not found" +msgstr "Выбранный модуль %d не найден" -#: ../../enterprise/godmode/modules/local_components.php:343 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:136 -#: ../../godmode/modules/manage_nc_groups.php:154 -#: ../../godmode/modules/manage_network_components.php:378 -#: ../../godmode/modules/manage_network_templates.php:76 -msgid "Successfully multiple deleted" -msgstr "Успешно удалено несколько данных" +#: ../../enterprise/godmode/massive/massive_edit_services.php:267 +#, php-format +msgid "Failed to create service for module %s, %s" +msgstr "Не удалось создать сервис для модуля %s, %s" -#: ../../enterprise/godmode/modules/local_components.php:344 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:137 -#: ../../godmode/modules/manage_nc_groups.php:155 -#: ../../godmode/modules/manage_network_components.php:379 -#: ../../godmode/modules/manage_network_templates.php:77 -msgid "Not deleted. Error deleting multiple data" -msgstr "Не удалено. Ошибка при удалении нескольких данных" +#: ../../enterprise/godmode/massive/massive_edit_services.php:281 +#: ../../enterprise/godmode/massive/massive_edit_services.php:443 +#, php-format +msgid "Service selected %d not found" +msgstr "Выбранный сервис %d не найден" -#: ../../enterprise/godmode/modules/local_components.php:428 -#: ../../godmode/modules/manage_network_components.php:491 -msgid "Free Search" -msgstr "" +#: ../../enterprise/godmode/massive/massive_edit_services.php:341 +#, php-format +msgid "Failed to create service for service %s, %s" +msgstr "Не удалось создать сервис для сервиса %s, %s" -#: ../../enterprise/godmode/modules/local_components.php:429 -msgid "Search by name, description or data, list matches." -msgstr "" +#: ../../enterprise/godmode/massive/massive_edit_services.php:474 +#, php-format +msgid "Failed to create service for agent %s" +msgstr "Не удалось создать сервис для агента %s" -#: ../../enterprise/godmode/modules/local_components.php:513 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:356 -#: ../../enterprise/godmode/policies/policy_modules.php:1071 -#: ../../godmode/alerts/alert_templates.php:338 -#: ../../godmode/agentes/module_manager.php:702 -#: ../../godmode/modules/manage_network_components.php:588 -msgid "Duplicate" -msgstr "Скопировать" +#: ../../enterprise/godmode/massive/massive_edit_services.php:481 +#, php-format +msgid "Failed to create services: %s" +msgstr "Не удалось создать сервисы: %s" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:67 -msgid "Successfully created inventory module" -msgstr "Модуль инвентаризации успешно создан" +#: ../../enterprise/godmode/massive/massive_edit_services.php:497 +#, php-format +msgid "%d services created with %d items" +msgstr "%d сервисов, созданных с %d элементами" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:71 -msgid "Error creating inventory module" -msgstr "Ошибка при создании модуля инвентаризации" +#: ../../enterprise/godmode/massive/massive_edit_services.php:503 +msgid "No services created" +msgstr "Сервисы не созданы" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:157 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:86 -msgid "Interpreter" -msgstr "Переводчик" +#: ../../enterprise/godmode/massive/massive_edit_services.php:531 +msgid "Service(s) definition" +msgstr "Определение сервиса(сервисов)" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:200 -msgid "No inventory modules defined" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217 -msgid "Local module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:220 -msgid "Remote/Local" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:88 -msgid "Left blank for the LOCAL inventory modules" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:90 -msgid "Block Mode" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:93 -#: ../../godmode/massive/massive_standby_alerts.php:154 -#: ../../godmode/massive/massive_standby_alerts.php:171 -#: ../../godmode/massive/massive_enable_disable_alerts.php:154 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -msgid "Format" -msgstr "Формат" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:94 -msgid "separate fields with " -msgstr "разделить поля с " - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:97 -#: ../../include/ajax/double_auth.ajax.php:151 -#: ../../include/ajax/double_auth.ajax.php:287 -msgid "Code" -msgstr "Код" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:98 +#: ../../enterprise/godmode/massive/massive_edit_services.php:558 +#: ../../enterprise/godmode/services/services.service.php:551 msgid "" -"Here is placed the script for the REMOTE inventory modules Local inventory " -"modules don't use this field" +"This group will be used also to control access to this service and its " +"elements." msgstr "" +"Эта группа будет использоваться также для контроля доступа к данному сервису " +"и его элементам." -#: ../../enterprise/godmode/modules/configure_local_component.php:127 -msgid "Update Local Component" -msgstr "" +#: ../../enterprise/godmode/massive/massive_edit_services.php:573 +#: ../../enterprise/godmode/services/services.service.php:615 +msgid "Agent to store data" +msgstr "Агент для хранения данных" -#: ../../enterprise/godmode/modules/configure_local_component.php:130 -msgid "Create Local Component" -msgstr "" +#: ../../enterprise/godmode/massive/massive_edit_services.php:588 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:802 +#: ../../enterprise/godmode/services/services.service.php:632 +#: ../../enterprise/godmode/servers/HA_cluster.php:150 +#: ../../enterprise/operation/services/services.list.php:288 +#: ../../enterprise/operation/services/services.table_services.php:240 +#: ../../godmode/massive/massive_edit_modules.php:877 +#: ../../godmode/alerts/alert_view.php:425 +msgid "Mode" +msgstr "Режим" -#: ../../enterprise/godmode/modules/configure_local_component.php:147 -#: ../../godmode/alerts/configure_alert_template.php:732 -#: ../../godmode/modules/manage_network_components_form_common.php:56 -msgid "Wizard level" -msgstr "Уровень мастера" +#: ../../enterprise/godmode/massive/massive_edit_services.php:596 +#: ../../enterprise/godmode/services/services.service.php:639 +#: ../../enterprise/include/class/VMware.app.php:662 +#: ../../enterprise/include/class/DB2.app.php:545 +#: ../../enterprise/include/class/Aws.S3.php:515 +#: ../../enterprise/include/class/SAP.app.php:522 +#: ../../enterprise/include/class/Aws.cloud.php:1320 +#: ../../enterprise/include/class/MySQL.app.php:567 +#: ../../enterprise/include/class/Oracle.app.php:546 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:540 +#: ../../enterprise/include/functions_ipam.php:1221 +#: ../../enterprise/operation/services/services.list.php:285 +#: ../../enterprise/operation/services/services.table_services.php:237 +#: ../../enterprise/tools/ipam/ipam_list.php:191 +#: ../../godmode/wizards/HostDevices.class.php:807 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:663 +#: ../../include/class/CustomNetScan.class.php:529 +msgid "Manual" +msgstr "Вручную" -#: ../../enterprise/godmode/modules/configure_local_component.php:168 -#: ../../godmode/agentes/module_manager_editor_common.php:404 -#: ../../godmode/massive/massive_edit_modules.php:550 -#: ../../godmode/modules/manage_network_components_form_common.php:155 -msgid "Throw unknown events" -msgstr "Сбросить неизвестные события" +#: ../../enterprise/godmode/massive/massive_edit_services.php:597 +#: ../../enterprise/godmode/services/services.service.php:640 +#: ../../enterprise/operation/services/services.list.php:286 +#: ../../enterprise/operation/services/services.table_services.php:238 +msgid "Smart" +msgstr "Интеллектуальный режим" -#: ../../enterprise/godmode/modules/configure_local_component.php:246 -#: ../../godmode/agentes/module_manager_editor_common.php:274 -#: ../../godmode/massive/massive_edit_modules.php:512 -#: ../../godmode/modules/manage_network_components_form_common.php:132 -msgid "FF threshold" -msgstr "FF порог" +#: ../../enterprise/godmode/massive/massive_edit_services.php:614 +#: ../../enterprise/godmode/services/services.service.php:657 +msgid "In smart mode, thresholds are percentual." +msgstr "В интеллектуальном режиме пороговые значения являются процентными." -#: ../../enterprise/godmode/modules/configure_local_component.php:248 -#: ../../godmode/agentes/module_manager_editor_common.php:277 -#: ../../godmode/massive/massive_edit_modules.php:514 -#: ../../godmode/massive/massive_edit_modules.php:515 -#: ../../godmode/modules/manage_network_components_form_common.php:134 -msgid "All state changing" -msgstr "" +#: ../../enterprise/godmode/massive/massive_edit_services.php:663 +msgid "Create a service per item" +msgstr "Создайте сервис для каждого элемента" -#: ../../enterprise/godmode/modules/configure_local_component.php:251 -#: ../../godmode/agentes/module_manager_editor_common.php:280 -#: ../../godmode/massive/massive_edit_modules.php:514 -#: ../../godmode/massive/massive_edit_modules.php:516 -#: ../../godmode/modules/manage_network_components_form_common.php:137 -msgid "Each state changing" -msgstr "" +#: ../../enterprise/godmode/massive/massive_edit_services.php:664 +msgid "If enabled multiple services will be created." +msgstr "При включении будет создано несколько служб." -#: ../../enterprise/godmode/modules/configure_local_component.php:252 -#: ../../godmode/agentes/module_manager_editor_common.php:281 -#: ../../godmode/massive/massive_edit_modules.php:517 -#: ../../godmode/modules/manage_network_components_form_common.php:138 -msgid "To normal" -msgstr "" +#: ../../enterprise/godmode/massive/massive_edit_services.php:682 +msgid "Services header" +msgstr "Заголовок сервисов" -#: ../../enterprise/godmode/modules/configure_local_component.php:254 -#: ../../godmode/agentes/module_manager_editor_common.php:283 -#: ../../godmode/massive/massive_edit_modules.php:518 -#: ../../godmode/modules/manage_network_components_form_common.php:140 -msgid "To warning" -msgstr "" +#: ../../enterprise/godmode/massive/massive_edit_services.php:683 +msgid "All services names created will start with selected name." +msgstr "Имена всех созданных сервисов будут начинаться с выбранного имени." -#: ../../enterprise/godmode/modules/configure_local_component.php:256 -#: ../../godmode/agentes/module_manager_editor_common.php:285 -#: ../../godmode/massive/massive_edit_modules.php:519 -#: ../../godmode/modules/manage_network_components_form_common.php:142 -msgid "To critical" -msgstr "" +#: ../../enterprise/godmode/massive/massive_edit_services.php:697 +#: ../../enterprise/godmode/services/services.service.php:707 +msgid "Unknown elements as critical" +msgstr "Неизвестные элементы как критические" -#: ../../enterprise/godmode/modules/configure_local_component.php:260 -#: ../../include/functions_reporting.php:2210 -#: ../../godmode/agentes/module_manager_editor_common.php:287 -#: ../../godmode/massive/massive_edit_modules.php:526 -#: ../../godmode/modules/manage_network_components_form_common.php:145 -msgid "Historical data" -msgstr "Статистические данные" +#: ../../enterprise/godmode/massive/massive_edit_services.php:727 +#: ../../enterprise/godmode/services/services.service.php:737 +msgid "Cascade protection enabled" +msgstr "Включена каскадная защита" -#: ../../enterprise/godmode/modules/configure_local_component.php:263 -#: ../../godmode/agentes/module_manager_editor_common.php:415 -#: ../../godmode/massive/massive_edit_modules.php:523 -msgid "FF timeout" -msgstr "" +#: ../../enterprise/godmode/massive/massive_edit_services.php:737 +msgid "SLA calculation" +msgstr "Расчет SLA" -#: ../../enterprise/godmode/modules/configure_local_component.php:265 -#: ../../godmode/agentes/module_manager_editor_common.php:421 -#: ../../godmode/massive/massive_edit_modules.php:524 +#: ../../enterprise/godmode/massive/massive_edit_services.php:740 +#: ../../enterprise/godmode/services/services.service.php:757 +msgid "Calculate continuous SLA" +msgstr "Рассчитать непрерывный SLA" + +#: ../../enterprise/godmode/massive/massive_edit_services.php:750 +#: ../../enterprise/godmode/services/services.service.php:767 +msgid "S.L.A. interval" +msgstr "Интервал S.L.A." + +#: ../../enterprise/godmode/massive/massive_edit_services.php:764 +#: ../../enterprise/godmode/services/services.service.php:781 +msgid "S.L.A. limit" +msgstr "Лимит S.L.A." + +#: ../../enterprise/godmode/massive/massive_edit_services.php:794 +#: ../../enterprise/godmode/services/services.service.php:828 +msgid "Warning service alert" +msgstr "Сервисное предупреждение об опасности" + +#: ../../enterprise/godmode/massive/massive_edit_services.php:806 +#: ../../enterprise/godmode/services/services.service.php:840 +msgid "Critical service alert" +msgstr "Предупреждение о критических сервисах" + +#: ../../enterprise/godmode/massive/massive_edit_services.php:818 +#: ../../enterprise/godmode/services/services.service.php:852 +msgid "Unknown service alert" +msgstr "Предупреждение о неизвестном сервисе" + +#: ../../enterprise/godmode/massive/massive_edit_services.php:830 +#: ../../enterprise/godmode/services/services.service.php:864 +msgid "S.L.A. critical service alert" +msgstr "Предупреждение о критическом сервисе S.L.A." + +#: ../../enterprise/godmode/massive/massive_edit_services.php:844 msgid "" -"Timeout in secs from start of flip flop counting. If this value is exceeded, " -"FF counter is reset. Set to 0 for no timeout." +"Items selected here will be added to the lists at Service items summary." msgstr "" +"Выбранные здесь элементы будут добавлены в списки в сводке Сервисные " +"элементы." -#: ../../enterprise/godmode/modules/configure_local_component.php:266 -#: ../../godmode/agentes/module_manager_editor_common.php:424 -msgid "This value can be set only in the async modules." +#: ../../enterprise/godmode/massive/massive_edit_services.php:847 +msgid "Item(s) definition" +msgstr "Определение элемента(ов)" + +#: ../../enterprise/godmode/massive/massive_edit_services.php:855 +msgid "Item type" +msgstr "Тип элемента" + +#: ../../enterprise/godmode/massive/massive_edit_services.php:872 +msgid "Add selected" +msgstr "Добавить выбранное" + +#: ../../enterprise/godmode/massive/massive_edit_services.php:950 +msgid "" +"Weights configured are common for every item added to the service, if you " +"want to customize them, please edit the service." msgstr "" +"Настроенные веса являются общими для каждого элемента, добавленного в " +"сервис, если вы хотите настроить их, пожалуйста, отредактируйте сервис." -#: ../../enterprise/godmode/modules/configure_local_component.php:268 -#: ../../godmode/modules/manage_network_components_form_common.php:149 -msgid "Any value below this number is discarted" -msgstr "Любое значение ниже этого числа отбрасывается" +#: ../../enterprise/godmode/massive/massive_edit_services.php:954 +msgid "Service items summary" +msgstr "Обзор Сервисных элементов" -#: ../../enterprise/godmode/modules/configure_local_component.php:273 -#: ../../godmode/modules/manage_network_components_form_common.php:151 -msgid "Any value over this number is discarted" -msgstr "Любое значение выше этого числа отбрасывается" +#: ../../enterprise/godmode/massive/massive_edit_services.php:957 +#: ../../include/functions_visual_map_editor.php:1148 +#: ../../include/rest-api/models/VisualConsole/Item.php:2462 +msgid "Critical weight" +msgstr "Критическая плотность" -#: ../../enterprise/godmode/modules/configure_local_component.php:280 -#: ../../godmode/agentes/module_manager_editor_common.php:365 -#: ../../godmode/massive/massive_edit_modules.php:452 -#: ../../godmode/modules/manage_network_components_form_wmi.php:56 -#: ../../godmode/modules/manage_network_components_form_plugin.php:27 -#: ../../godmode/modules/manage_network_components_form_network.php:80 -msgid "Post process" -msgstr "Заключительная обработка" +#: ../../enterprise/godmode/massive/massive_edit_services.php:970 +#: ../../include/functions_visual_map_editor.php:1174 +#: ../../include/rest-api/models/VisualConsole/Item.php:2476 +msgid "Warning weight" +msgstr "Опасный вес" -#: ../../enterprise/godmode/modules/configure_local_component.php:323 -#: ../../godmode/agentes/module_manager_editor_common.php:525 -#: ../../godmode/massive/massive_edit_modules.php:558 -#: ../../godmode/modules/manage_network_components_form_common.php:159 -msgid "Critical instructions" -msgstr "Критические инструкции" +#: ../../enterprise/godmode/massive/massive_edit_services.php:983 +msgid "Unknown weight" +msgstr "Неизвестная плотность" -#: ../../enterprise/godmode/modules/configure_local_component.php:324 -#: ../../godmode/agentes/module_manager_editor_common.php:526 -#: ../../godmode/massive/massive_edit_modules.php:558 -#: ../../godmode/modules/manage_network_components_form_common.php:159 -msgid "Instructions when the status is critical" -msgstr "Инструкции, когда статус критический" +#: ../../enterprise/godmode/massive/massive_edit_services.php:996 +msgid "Normal weight" +msgstr "Нормальный вес" -#: ../../enterprise/godmode/modules/configure_local_component.php:329 -#: ../../godmode/agentes/module_manager_editor_common.php:530 -#: ../../godmode/massive/massive_edit_modules.php:562 -#: ../../godmode/modules/manage_network_components_form_common.php:163 -msgid "Warning instructions" -msgstr "Предупредительные инструкции" +#: ../../enterprise/godmode/massive/massive_edit_services.php:1011 +msgid "Selected services" +msgstr "Выбранные сервисы" -#: ../../enterprise/godmode/modules/configure_local_component.php:330 -#: ../../godmode/agentes/module_manager_editor_common.php:531 -#: ../../godmode/massive/massive_edit_modules.php:562 -#: ../../godmode/modules/manage_network_components_form_common.php:163 -msgid "Instructions when the status is warning" -msgstr "Инструкции, когда статус предостерегающий" +#: ../../enterprise/godmode/massive/massive_edit_services.php:1026 +#: ../../enterprise/include/class/Omnishell.class.php:915 +msgid "Selected agents" +msgstr "Выбранные Агенты" -#: ../../enterprise/godmode/modules/configure_local_component.php:335 -#: ../../godmode/agentes/module_manager_editor_common.php:535 -#: ../../godmode/massive/massive_edit_modules.php:566 -#: ../../godmode/modules/manage_network_components_form_common.php:167 -msgid "Unknown instructions" -msgstr "Неизвестные инструкции" +#: ../../enterprise/godmode/massive/massive_edit_services.php:1041 +#: ../../enterprise/include/class/SAP.app.php:842 +msgid "Selected modules" +msgstr "Выбранные модули" -#: ../../enterprise/godmode/modules/configure_local_component.php:336 -#: ../../godmode/agentes/module_manager_editor_common.php:535 -#: ../../godmode/massive/massive_edit_modules.php:566 -#: ../../godmode/modules/manage_network_components_form_common.php:167 -msgid "Instructions when the status is unknown" -msgstr "Инструкции, когда статус неизвестен" +#: ../../enterprise/godmode/massive/massive_edit_services.php:1066 +msgid "Create services" +msgstr "Создать сервис" -#: ../../enterprise/godmode/modules/configure_local_component.php:345 -#: ../../godmode/agentes/module_manager_editor_common.php:552 -#: ../../godmode/massive/massive_edit_modules.php:534 -#: ../../godmode/modules/manage_network_components_form_common.php:174 -msgid "Category" -msgstr "Категория" +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:75 +msgid "Success: remove the alerts." +msgstr "Успех: удалить оповещения." -#: ../../enterprise/godmode/modules/configure_local_component.php:366 -#: ../../godmode/agentes/module_manager_editor_common.php:431 -#: ../../godmode/modules/manage_network_components_form_common.php:196 -msgid "Tags available" -msgstr "Свободные теги" +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:75 +msgid "Failed: remove the alerts for this modules, please check." +msgstr "Сбой: удалить оповещения для этого модуля, пожалуйста, проверьте." -#: ../../enterprise/godmode/modules/configure_local_component.php:373 -#: ../../godmode/agentes/module_manager_editor_common.php:493 -#: ../../godmode/modules/manage_network_components_form_common.php:203 -msgid "Add tags to module" -msgstr "Добавить теги к модулю" +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:126 +msgid "Modules agents in policy" +msgstr "Агенты модуля в политике" -#: ../../enterprise/godmode/modules/configure_local_component.php:375 -#: ../../godmode/agentes/module_manager_editor_common.php:494 -#: ../../godmode/modules/manage_network_components_form_common.php:204 -msgid "Delete tags to module" -msgstr "Удалить теги модуля" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:456 +#: ../../godmode/massive/massive_edit_modules.php:542 +msgid "Dynamic Min." +msgstr "Динамический мин." -#: ../../enterprise/godmode/modules/configure_local_component.php:377 -#: ../../godmode/agentes/module_manager_editor_common.php:496 -#: ../../godmode/modules/manage_network_components_form_common.php:206 -msgid "Tags selected" -msgstr "Теги выбраны" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../godmode/massive/massive_edit_modules.php:740 +msgid "SMNP community" +msgstr "SMNP сообщество" -#: ../../enterprise/godmode/modules/configure_local_component.php:389 -msgid "Macros" -msgstr "Макросы" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:664 +#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/massive/massive_edit_modules.php:750 +msgid "SNMP OID" +msgstr "SNMP OID" -#: ../../enterprise/godmode/modules/configure_local_component.php:425 -#: ../../godmode/servers/plugin.php:401 -#: ../../godmode/servers/recon_script.php:161 -msgid "Default value" -msgstr "Значение по умолчанию" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 +#: ../../godmode/agentes/module_manager_editor_wmi.php:45 +#: ../../godmode/agentes/module_manager_editor_network.php:80 +#: ../../godmode/massive/massive_edit_modules.php:765 +#: ../../include/class/AgentWizard.class.php:620 +#: ../../include/functions_snmp_browser.php:702 +msgid "Target IP" +msgstr "Целевой IP" -#: ../../enterprise/godmode/modules/configure_local_component.php:441 -#: ../../godmode/servers/plugin.php:441 -#: ../../godmode/servers/recon_script.php:199 -msgid "Add macro" -msgstr "Добавить макрос" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:702 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 +#: ../../godmode/modules/manage_network_components_form_network.php:55 +#: ../../godmode/agentes/module_manager_editor_network.php:180 +#: ../../godmode/massive/massive_edit_modules.php:783 +#: ../../godmode/wizards/HostDevices.class.php:1199 +#: ../../include/class/AgentWizard.class.php:745 +msgid "SNMP version" +msgstr "Версия SNMP" -#: ../../enterprise/godmode/modules/configure_local_component.php:449 -#: ../../godmode/servers/plugin.php:456 -#: ../../godmode/servers/recon_script.php:206 -msgid "Delete macro" -msgstr "Удалить макрос" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:717 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299 +#: ../../godmode/modules/manage_network_components_form_network.php:96 +#: ../../godmode/agentes/module_manager_editor_network.php:336 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../godmode/wizards/HostDevices.class.php:1259 +#: ../../include/functions_snmp_browser.php:826 +msgid "Auth user" +msgstr "Идентификация пользователя" -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:100 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:81 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:90 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:134 -msgid "Edit template" -msgstr "Редактировать шаблон" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:726 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:308 +#: ../../godmode/modules/manage_network_components_form_network.php:105 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/massive/massive_edit_modules.php:805 +#: ../../godmode/wizards/HostDevices.class.php:1270 +#: ../../include/functions_snmp_browser.php:836 +msgid "Auth password" +msgstr "Идентификация пароля" -#: ../../enterprise/godmode/reporting/graph_template_list.php:32 -#: ../../enterprise/godmode/reporting/graph_template_list.php:43 -#: ../../enterprise/godmode/reporting/graph_template_list.php:53 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:79 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:89 -#: ../../godmode/reporting/graphs.php:39 ../../godmode/reporting/graphs.php:49 -msgid "Graph list" -msgstr "Графический список" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:726 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:730 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:805 +#: ../../godmode/massive/massive_edit_modules.php:809 +#: ../../godmode/wizards/HostDevices.class.php:1272 +#: ../../godmode/wizards/HostDevices.class.php:1303 +msgid "The pass length must be eight character minimum." +msgstr "Длина пароля должна состоять минимум из восьми символов." -#: ../../enterprise/godmode/reporting/graph_template_list.php:70 -msgid "Graph template management" -msgstr "Управление шаблоном графика" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:728 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324 +#: ../../godmode/modules/manage_network_components_form_network.php:123 +#: ../../godmode/agentes/module_manager_editor_network.php:369 +#: ../../godmode/massive/massive_edit_modules.php:807 +#: ../../godmode/wizards/HostDevices.class.php:1286 +#: ../../include/class/AgentWizard.class.php:879 +#: ../../include/functions_snmp_browser.php:853 +msgid "Privacy method" +msgstr "Метод конфиденциальности" -#: ../../enterprise/godmode/reporting/graph_template_list.php:87 -#: ../../enterprise/godmode/reporting/graph_template_list.php:107 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:99 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:120 -#: ../../operation/reporting/graph_viewer.php:36 -#: ../../operation/reporting/graph_viewer.php:43 -#: ../../godmode/events/event_filter.php:53 -#: ../../godmode/events/event_filter.php:74 -#: ../../godmode/agentes/planned_downtime.list.php:106 -#: ../../godmode/netflow/nf_item_list.php:106 -#: ../../godmode/netflow/nf_item_list.php:127 -#: ../../godmode/netflow/nf_edit.php:77 ../../godmode/netflow/nf_edit.php:101 -#: ../../godmode/modules/manage_nc_groups.php:123 -#: ../../godmode/reporting/map_builder.php:94 -#: ../../godmode/reporting/graphs.php:81 ../../godmode/reporting/graphs.php:91 -#: ../../godmode/reporting/graphs.php:130 -msgid "Not deleted. Error deleting data" -msgstr "Не удалено. Ошибка при удалении данных" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:729 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327 +#: ../../godmode/modules/manage_network_components_form_network.php:126 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:808 +#: ../../godmode/wizards/HostDevices.class.php:1291 +#: ../../include/functions_snmp_browser.php:856 +msgid "DES" +msgstr "система шифрования данных (DES)" -#: ../../enterprise/godmode/reporting/graph_template_list.php:163 -msgid "There are no defined graph templates" -msgstr "Здесь нет определенных шаблонов графика" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:729 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:328 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:808 +#: ../../godmode/wizards/HostDevices.class.php:1292 +#: ../../include/functions_snmp_browser.php:857 +msgid "AES" +msgstr "симметричный алгоритм блочного шифрования (AES)" -#: ../../enterprise/godmode/reporting/graph_template_list.php:168 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:118 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:379 -msgid "Create template" -msgstr "Создать шаблон" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:730 +#: ../../godmode/modules/manage_network_components_form_network.php:136 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:809 +#: ../../godmode/wizards/HostDevices.class.php:1301 +#: ../../include/class/AgentWizard.class.php:893 +#: ../../include/functions_snmp_browser.php:867 +msgid "Privacy pass" +msgstr "Конфиденциальный пропуск" -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:225 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:236 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:246 -#: ../../godmode/reporting/reporting_builder.list_items.php:287 -#: ../../godmode/reporting/reporting_builder.list_items.php:292 -#: ../../godmode/reporting/reporting_builder.list_items.php:298 -msgid "Ascendent" -msgstr "Восходящий" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347 +#: ../../godmode/modules/manage_network_components_form_network.php:148 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/massive/massive_edit_modules.php:811 +#: ../../godmode/wizards/HostDevices.class.php:1317 +#: ../../include/functions_snmp_browser.php:877 +msgid "Auth method" +msgstr "Метод идентификации" -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:229 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:249 -#: ../../godmode/reporting/reporting_builder.list_items.php:288 -#: ../../godmode/reporting/reporting_builder.list_items.php:293 -#: ../../godmode/reporting/reporting_builder.list_items.php:299 -msgid "Descent" -msgstr "Нисходящий" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:733 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:350 +#: ../../godmode/modules/manage_network_components_form_network.php:151 +#: ../../godmode/agentes/module_manager_editor_network.php:394 +#: ../../godmode/massive/massive_edit_modules.php:812 +#: ../../godmode/wizards/HostDevices.class.php:1322 +#: ../../include/class/Diagnostics.class.php:2169 +#: ../../include/functions_snmp_browser.php:880 +msgid "MD5" +msgstr "MD5" -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:290 -#: ../../godmode/netflow/nf_item_list.php:206 -#: ../../godmode/netflow/nf_item_list.php:209 -msgid "Move to up" -msgstr "Переместить вверх" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:733 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:351 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../godmode/agentes/module_manager_editor_network.php:395 +#: ../../godmode/massive/massive_edit_modules.php:812 +#: ../../godmode/wizards/HostDevices.class.php:1323 +#: ../../include/functions_snmp_browser.php:881 +msgid "SHA" +msgstr "SHA" -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:300 -#: ../../godmode/netflow/nf_item_list.php:203 -#: ../../godmode/netflow/nf_item_list.php:210 -msgid "Move to down" -msgstr "Переместить вниз" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:734 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 +#: ../../godmode/modules/manage_network_components_form_network.php:161 +#: ../../godmode/agentes/module_manager_editor_network.php:408 +#: ../../godmode/massive/massive_edit_modules.php:813 +#: ../../godmode/wizards/HostDevices.class.php:1332 +#: ../../include/class/AgentWizard.class.php:820 +#: ../../include/functions_snmp_browser.php:890 +msgid "Security level" +msgstr "Уровень безопасности" -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:105 -msgid "Advance Options" +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:737 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 +#: ../../godmode/modules/manage_network_components_form_network.php:164 +#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/massive/massive_edit_modules.php:816 +#: ../../godmode/wizards/HostDevices.class.php:1337 +#: ../../include/functions_snmp_browser.php:893 +msgid "Not auth and not privacy method" +msgstr "Нет идентификации и нет метода конфиденциальности" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:738 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/massive/massive_edit_modules.php:817 +#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../include/functions_snmp_browser.php:894 +msgid "Auth and not privacy method" +msgstr "Идентификация и нет метода конфиденциальности" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:739 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:365 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../godmode/agentes/module_manager_editor_network.php:413 +#: ../../godmode/massive/massive_edit_modules.php:818 +#: ../../godmode/wizards/HostDevices.class.php:1339 +#: ../../include/functions_snmp_browser.php:895 +msgid "Auth and privacy method" +msgstr "Идентификация и метод конфиденциальности" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 +#: ../../enterprise/operation/agentes/tag_view.php:136 +#: ../../godmode/agentes/module_manager_editor_common.php:247 +#: ../../godmode/agentes/module_manager_editor_common.php:1142 +#: ../../godmode/massive/massive_edit_modules.php:836 +#: ../../include/functions_graph.php:5259 +#: ../../include/functions_treeview.php:116 +#: ../../operation/agentes/status_monitor.php:460 +msgid "Not assigned" +msgstr "Не назначено" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:771 +#: ../../enterprise/godmode/setup/setup_module_library.php:46 +#: ../../enterprise/include/functions_ui.php:102 +#: ../../extensions/quick_shell.php:149 +#: ../../godmode/modules/manage_network_components_form_wmi.php:47 +#: ../../godmode/agentes/module_manager_editor_wmi.php:103 +#: ../../godmode/massive/massive_edit_modules.php:850 +#: ../../include/class/CredentialStore.class.php:937 +#: ../../include/class/AgentWizard.class.php:678 +msgid "Username" +msgstr "Имя пользователя" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:777 +#: ../../godmode/agentes/module_manager_editor_common.php:685 +#: ../../godmode/massive/massive_edit_modules.php:856 +msgid "Export target" +msgstr "Контрольные цифры по экспорту" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../godmode/massive/massive_edit_modules.php:942 +msgid "Active Counters" +msgstr "Активные счетчики" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 +#: ../../godmode/massive/massive_edit_modules.php:943 +msgid "Inactive Counters" +msgstr "Неактивные счетчики" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:912 +#: ../../godmode/massive/massive_edit_modules.php:1010 +msgid "Policy linking status" +msgstr "Политика соединения статуса" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:912 +#: ../../godmode/massive/massive_edit_modules.php:1010 +msgid "This field only has sense in modules adopted by a policy." +msgstr "Это поле имеет смысл только в модулях принятой политики." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:913 +#: ../../godmode/massive/massive_edit_modules.php:1011 +msgid "Linked" +msgstr "Связано" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:913 +#: ../../godmode/agentes/module_manager.php:980 +#: ../../godmode/agentes/module_manager.php:983 +#: ../../godmode/massive/massive_edit_modules.php:1011 +#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095 +msgid "Unlinked" +msgstr "Разъединено" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:922 +#: ../../godmode/modules/manage_network_components_form_common.php:298 +#: ../../godmode/agentes/module_manager_editor_common.php:718 +#: ../../godmode/massive/massive_edit_modules.php:1020 +msgid "Discard unknown events" +msgstr "Скинуть неизвестные события" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:951 +#: ../../godmode/massive/massive_edit_modules.php:1049 +msgid "The module still store data but the alerts and events will be stop" msgstr "" +"Модуль по-прежнему хранит данные, но оповещения и события будут остановлены" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:151 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 +#: ../../godmode/agentes/module_manager_editor_common.php:1089 +#: ../../godmode/massive/massive_edit_modules.php:1066 +msgid "Timeout" +msgstr "Время ожидания истекло" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:975 +#: ../../godmode/massive/massive_edit_modules.php:1075 +msgid "Seconds that agent will wait for the execution of the module." +msgstr "Секунды,которые агент будет ожидать для выполнения модуля." + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:985 +#: ../../enterprise/godmode/setup/setup_history.php:171 +#: ../../enterprise/godmode/servers/manage_export_form.php:121 +#: ../../enterprise/include/class/Azure.cloud.php:813 +#: ../../enterprise/include/class/VMware.app.php:618 +#: ../../enterprise/include/class/Aws.S3.php:574 +#: ../../enterprise/include/class/Aws.cloud.php:549 +#: ../../extensions/quick_shell.php:156 +#: ../../godmode/modules/manage_network_components_form_network.php:53 +#: ../../godmode/agentes/module_manager_editor_network.php:126 +#: ../../godmode/massive/massive_edit_modules.php:1089 +#: ../../godmode/servers/modificar_server.php:82 +#: ../../include/functions_config.php:1479 +#: ../../include/class/AgentWizard.class.php:635 +#: ../../include/functions_snmp_browser.php:714 +msgid "Port" +msgstr "Порт" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:992 +#: ../../godmode/modules/manage_network_components_form_network.php:209 +#: ../../godmode/agentes/module_manager_editor_network.php:281 +#: ../../godmode/massive/massive_edit_modules.php:1092 +msgid "TCP send" +msgstr "передача TCP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:995 +#: ../../godmode/modules/manage_network_components_form_network.php:216 +#: ../../godmode/agentes/module_manager_editor_network.php:295 +#: ../../godmode/massive/massive_edit_modules.php:1095 +msgid "TCP receive" +msgstr "получение TCP" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:998 +#: ../../godmode/modules/manage_network_components_form_wmi.php:31 +#: ../../godmode/agentes/module_manager_editor_wmi.php:133 +#: ../../godmode/massive/massive_edit_modules.php:1098 +msgid "WMI query" +msgstr "Запрос WMI" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1001 +#: ../../godmode/modules/manage_network_components_form_wmi.php:33 +#: ../../godmode/modules/manage_network_components_form_wizard.php:668 +#: ../../godmode/agentes/module_manager_editor_wmi.php:151 +#: ../../godmode/massive/massive_edit_modules.php:1101 +msgid "Key string" +msgstr "Ключевая строка" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004 +#: ../../godmode/modules/manage_network_components_form_wmi.php:39 +#: ../../godmode/agentes/module_manager_editor_wmi.php:164 +#: ../../godmode/massive/massive_edit_modules.php:1104 +msgid "Field number" +msgstr "Номер поля" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1007 +#: ../../extensions/plugin_registration.php:406 +#: ../../godmode/modules/manage_network_components_form_plugin.php:35 +#: ../../godmode/agentes/module_manager_editor_plugin.php:49 +#: ../../godmode/massive/massive_edit_plugins.php:339 +#: ../../godmode/massive/massive_edit_modules.php:1107 +msgid "Plugin" +msgstr "Плагин" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1025 +#: ../../godmode/modules/manage_network_components_form_network.php:223 +#: ../../godmode/agentes/module_manager_editor_network.php:433 +#: ../../godmode/massive/massive_edit_plugins.php:475 +#: ../../godmode/massive/massive_edit_modules.php:1125 +#: ../../godmode/alerts/configure_alert_command.php:210 +#: ../../godmode/alerts/alert_actions.php:266 +#: ../../godmode/alerts/alert_actions.php:321 +#: ../../godmode/alerts/configure_alert_action.php:228 +#: ../../godmode/events/event_responses.editor.php:155 +#: ../../godmode/events/event_responses.editor.php:162 +#: ../../godmode/servers/plugin.php:431 ../../godmode/servers/plugin.php:436 +#: ../../godmode/servers/plugin.php:1009 +#: ../../include/class/ManageNetScanScripts.class.php:434 +#: ../../include/class/ExternalTools.class.php:335 +msgid "Command" +msgstr "Команда" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1042 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../godmode/modules/manage_network_components_form_network.php:242 +#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/massive/massive_edit_modules.php:1142 +msgid "Credential identifier" +msgstr "Идентификатор учетных данных" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 +#: ../../godmode/modules/manage_network_components_form_network.php:258 +#: ../../godmode/agentes/module_manager_editor_network.php:470 +#: ../../godmode/massive/massive_edit_modules.php:1157 +msgid "Inherited" +msgstr "Унаследованный" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1058 +#: ../../godmode/modules/manage_network_components_form_network.php:259 +#: ../../godmode/massive/massive_edit_modules.php:1158 +msgid "Linux" +msgstr "Linux" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059 +#: ../../godmode/modules/manage_network_components_form_network.php:260 +#: ../../godmode/massive/massive_edit_modules.php:1159 +msgid "Windows" +msgstr "Windows" + +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1062 +#: ../../godmode/modules/manage_network_components_form_network.php:263 +#: ../../godmode/massive/massive_edit_modules.php:1162 +msgid "Target OS" +msgstr "Цель ОС" + +#: ../../enterprise/godmode/massive/massive_delete_services.php:50 +#, php-format +msgid "Failed to delete: %s" +msgstr "Не удалось удалить: %s" + +#: ../../enterprise/godmode/admin_access_logs.php:49 +msgid "Show extended info" +msgstr "Показать расширенную информацию" + +#: ../../enterprise/godmode/admin_access_logs.php:69 +msgid "" +"The security check cannot be performed. There are no data in " +"tsession_extended to check the hash." +msgstr "" +"Проверка безопасности не может быть выполнена. В tsession_extended нет " +"данных для проверки хэша." + +#: ../../enterprise/godmode/admin_access_logs.php:77 +msgid "Security check is ok." +msgstr "Проверка безопасности в порядке." + +#: ../../enterprise/godmode/admin_access_logs.php:82 +msgid "Security check is fail." +msgstr "Проверка безопасности не в порядке." + +#: ../../enterprise/godmode/admin_access_logs.php:188 +msgid "Extended info:" +msgstr "Расширенная информация:" + +#: ../../enterprise/godmode/admin_access_logs.php:188 +msgid "Changes:" +msgstr "Изменения:" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:50 +#: ../../enterprise/godmode/alerts/alert_events.php:47 +#: ../../enterprise/godmode/alerts/alert_events_list.php:59 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:79 +msgid "List event alerts" +msgstr "Список событий оповещений" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:55 +#: ../../enterprise/godmode/alerts/alert_events.php:52 +#: ../../enterprise/godmode/alerts/alert_events_list.php:63 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:84 +msgid "Builder event alert" +msgstr "Разработчик событий оповещений" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:59 +#: ../../enterprise/godmode/alerts/alert_events.php:60 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:88 +msgid "List event rules" +msgstr "Список правил событий" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 +msgid "Configure event rule" +msgstr "Настройка правил события" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 +msgid "User comment" +msgstr "комментарий пользователя" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 +msgid "This field will be processed with regexp" +msgstr "Это поле будет обрабатываться с регулярным выражением" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 +#: ../../operation/events/sound_events.php:183 +msgid "Event" +msgstr "Событие" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 +msgid "Window" +msgstr "Окно" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:155 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1470 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1020 +#: ../../include/functions_reporting_html.php:1026 +#: ../../include/functions_reporting_html.php:1250 +#: ../../include/functions_reporting_html.php:2036 +#: ../../operation/snmpconsole/snmp_view.php:867 +msgid "Count" +msgstr "Подсчет" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 +#: ../../include/class/Tree.class.php:722 +#: ../../include/class/Tree.class.php:724 +msgid "Module alerts" +msgstr "Модуль оповещений" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:171 +msgid "Recursion:" +msgstr "Рекурсия:" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:177 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:404 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:325 +#: ../../godmode/reporting/create_container.php:566 +#: ../../godmode/reporting/create_container.php:629 +#: ../../mobile/operation/modules.php:176 +#: ../../mobile/operation/modules.php:177 +#: ../../mobile/operation/modules.php:289 +#: ../../mobile/operation/modules.php:290 +#: ../../operation/agentes/group_view.php:291 +msgid "Tag" +msgstr "Метка" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:175 +msgid "Group acl" +msgstr "ACL группы" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:214 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:417 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2348 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2211 +msgid "Condition" +msgstr "Условие" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:255 +msgid "Alert groups" +msgstr "Группы оповещения" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:269 +#: ../../enterprise/godmode/alerts/alert_events.php:563 +#: ../../godmode/snmpconsole/snmp_alert.php:1144 +#: ../../godmode/alerts/configure_alert_template.php:787 +msgid "Disable event" +msgstr "Отключить событие" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:277 +#: ../../godmode/snmpconsole/snmp_alert.php:83 +msgid "Update alert" +msgstr "Обновить оповещения" + +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:281 +#: ../../godmode/alerts/alert_list.builder.php:203 +#: ../../include/class/AgentsAlerts.class.php:389 +msgid "Add alert" +msgstr "Добавить оповещение" + +#: ../../enterprise/godmode/alerts/alert_events.php:84 +msgid "Configure event alert" +msgstr "Настройка событий оповещения" + +#: ../../enterprise/godmode/alerts/alert_events.php:142 +#: ../../enterprise/godmode/alerts/alert_events.php:146 +#: ../../godmode/alerts/configure_alert_template.php:209 +#: ../../godmode/alerts/configure_alert_template.php:213 +msgid "Conditions" +msgstr "Условия" + +#: ../../enterprise/godmode/alerts/alert_events.php:163 +#: ../../enterprise/godmode/alerts/alert_events.php:167 +#: ../../godmode/alerts/configure_alert_template.php:230 +#: ../../godmode/alerts/configure_alert_template.php:234 +msgid "Advanced fields" +msgstr "Расширенные поля" + +#: ../../enterprise/godmode/alerts/alert_events.php:396 +msgid "Could not be created, please fill alert name" +msgstr "Не может быть создано, пожалуйста, заполните имя оповещения" + +#: ../../enterprise/godmode/alerts/alert_events.php:487 +#: ../../godmode/alerts/configure_alert_template.php:605 +msgid "Days of week" +msgstr "Дни недели" + +#: ../../enterprise/godmode/alerts/alert_events.php:488 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:947 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2080 +#: ../../godmode/agentes/planned_downtime.editor.php:650 +#: ../../godmode/alerts/configure_alert_template.php:606 +#: ../../godmode/alerts/alert_special_days.php:376 +#: ../../godmode/alerts/alert_view.php:216 ../../include/functions.php:1076 +#: ../../include/functions_reporting.php:13040 +msgid "Mon" +msgstr "Пн" + +#: ../../enterprise/godmode/alerts/alert_events.php:490 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:948 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2081 +#: ../../godmode/agentes/planned_downtime.editor.php:651 +#: ../../godmode/alerts/configure_alert_template.php:614 +#: ../../godmode/alerts/alert_special_days.php:377 +#: ../../godmode/alerts/alert_view.php:217 ../../include/functions.php:1080 +#: ../../include/functions_reporting.php:13045 +msgid "Tue" +msgstr "Вт" + +#: ../../enterprise/godmode/alerts/alert_events.php:492 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:949 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2082 +#: ../../godmode/agentes/planned_downtime.editor.php:652 +#: ../../godmode/alerts/configure_alert_template.php:622 +#: ../../godmode/alerts/alert_special_days.php:378 +#: ../../godmode/alerts/alert_view.php:218 ../../include/functions.php:1084 +#: ../../include/functions_reporting.php:13050 +msgid "Wed" +msgstr "Ср" + +#: ../../enterprise/godmode/alerts/alert_events.php:494 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:950 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2083 +#: ../../godmode/agentes/planned_downtime.editor.php:653 +#: ../../godmode/alerts/configure_alert_template.php:630 +#: ../../godmode/alerts/alert_special_days.php:379 +#: ../../godmode/alerts/alert_view.php:219 ../../include/functions.php:1088 +#: ../../include/functions_reporting.php:13055 +msgid "Thu" +msgstr "Чт" + +#: ../../enterprise/godmode/alerts/alert_events.php:496 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:951 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2084 +#: ../../godmode/agentes/planned_downtime.editor.php:654 +#: ../../godmode/alerts/configure_alert_template.php:638 +#: ../../godmode/alerts/alert_special_days.php:380 +#: ../../godmode/alerts/alert_view.php:220 ../../include/functions.php:1092 +#: ../../include/functions_reporting.php:13060 +msgid "Fri" +msgstr "Пт" + +#: ../../enterprise/godmode/alerts/alert_events.php:498 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:952 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2085 +#: ../../godmode/agentes/planned_downtime.editor.php:655 +#: ../../godmode/alerts/configure_alert_template.php:646 +#: ../../godmode/alerts/alert_special_days.php:381 +#: ../../godmode/alerts/alert_view.php:221 ../../include/functions.php:1096 +#: ../../include/functions_reporting.php:13065 +msgid "Sat" +msgstr "Сб" + +#: ../../enterprise/godmode/alerts/alert_events.php:500 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:953 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2086 +#: ../../godmode/agentes/planned_downtime.editor.php:656 +#: ../../godmode/alerts/configure_alert_template.php:654 +#: ../../godmode/alerts/alert_special_days.php:375 +#: ../../godmode/alerts/alert_view.php:222 ../../include/functions.php:1100 +#: ../../include/functions_reporting.php:13070 +msgid "Sun" +msgstr "Sun" + +#: ../../enterprise/godmode/alerts/alert_events.php:503 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1800 +#: ../../godmode/alerts/configure_alert_template.php:672 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1233 +#: ../../operation/events/events.php:1275 +msgid "Time from" +msgstr "Время с" + +#: ../../enterprise/godmode/alerts/alert_events.php:512 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1818 +#: ../../godmode/alerts/configure_alert_template.php:692 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1251 +#: ../../operation/events/events.php:1326 +msgid "Time to" +msgstr "Время по" + +#: ../../enterprise/godmode/alerts/alert_events.php:551 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1063 +msgid "Rule evaluation mode" +msgstr "Правила оценки режима" + +#: ../../enterprise/godmode/alerts/alert_events.php:566 +msgid "Group by" +msgstr "Группировать по" + +#: ../../enterprise/godmode/alerts/alert_events.php:572 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1944 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2762 +#: ../../godmode/alerts/alert_commands.php:96 +#: ../../godmode/alerts/alert_commands.php:101 +#: ../../godmode/alerts/alert_commands.php:117 +#: ../../godmode/alerts/alert_commands.php:123 +#: ../../godmode/alerts/configure_alert_template.php:967 +#: ../../godmode/alerts/alert_view.php:471 +#: ../../godmode/alerts/alert_view.php:552 +#, php-format +msgid "Field %s" +msgstr "Поле %s" + +#: ../../enterprise/godmode/alerts/alert_events.php:645 +#: ../../godmode/alerts/configure_alert_action.php:150 +#: ../../godmode/alerts/alert_list.builder.php:135 +#: ../../include/class/AgentsAlerts.class.php:325 +msgid "Create Action" +msgstr "Создать действие" + +#: ../../enterprise/godmode/alerts/alert_events.php:650 +msgid "Please Read" +msgstr "Пожалуйста, Прочитайте" + +#: ../../enterprise/godmode/alerts/alert_events.php:650 +msgid "" +"Since the alert can have multiple actions. You can edit them from the alert " +"list of events." +msgstr "" +"Поскольку оповещение может содержать несколько действий. Вы можете " +"редактировать их из списка оповещений событий." + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 +msgid "Inventory alert filters" +msgstr "Фильтры предупреждения об инвентаризации" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220 +msgid "Alert name" +msgstr "Имя предупреждения" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:221 +#: ../../enterprise/operation/agentes/policy_view.php:248 +#: ../../godmode/snmpconsole/snmp_alert.php:1339 +#: ../../godmode/alerts/alert_view.php:76 +#: ../../include/functions_reporting_html.php:4674 +#: ../../include/ajax/alert_list.ajax.php:281 +#: ../../include/ajax/alert_list.ajax.php:306 +#: ../../include/functions_treeview.php:455 +#: ../../include/class/AgentsAlerts.class.php:910 +#: ../../operation/agentes/alerts_status.php:540 +#: ../../operation/agentes/alerts_status.php:575 +#: ../../operation/agentes/alerts_status.php:610 +#: ../../operation/agentes/alerts_status.php:642 +msgid "Last fired" +msgstr "Последний запуск" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261 +#: ../../enterprise/godmode/alerts/alert_events_list.php:713 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3256 +#: ../../enterprise/operation/agentes/policy_view.php:335 +#: ../../godmode/alerts/alert_list.list.php:553 +#: ../../godmode/alerts/alert_view.php:85 ../../mobile/operation/alerts.php:308 +#: ../../include/functions_ui.php:1232 +#: ../../include/class/AgentsAlerts.class.php:957 +#: ../../include/functions_reporting.php:11313 +msgid "Alert disabled" +msgstr "Оповещение отключено" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319 +#: ../../godmode/alerts/alert_list.list.php:664 +msgid "Delete action" +msgstr "Удалить действие" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407 +msgid "Enable alert" +msgstr "Включить предупреждение" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404 +msgid "Disable alert" +msgstr "Выключить предупреждение" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +msgid "Delete alert" +msgstr "Удалить оповещение" + +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427 +msgid "There are no defined inventory alerts" +msgstr "Нет определенных предупреждений об инвентаризации" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:382 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 +#: ../../godmode/servers/modificar_server.php:157 +#: ../../godmode/servers/modificar_server.php:168 +msgid "Successfully action" +msgstr "Удачное действие" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:382 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 +msgid "Error processing action" +msgstr "Ошибка обработки действий" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:396 +#: ../../operation/agentes/alerts_status.functions.php:50 +msgid "Alert(s) validated" +msgstr "Оповещение(я) подтверждены" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:396 +msgid "Error validating alert(s)" +msgstr "Ошибка подтверждения оповещения(й)" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:502 +msgid "Ac." +msgstr "Ac." + +#: ../../enterprise/godmode/alerts/alert_events_list.php:623 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3043 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3424 +msgid "No associated actions" +msgstr "Никаких сопутствующих действий" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:652 +#: ../../enterprise/godmode/alerts/alert_events_list.php:697 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3410 +#: ../../godmode/alerts/alert_list.list.php:642 +#: ../../godmode/alerts/alert_list.list.php:768 +#: ../../godmode/alerts/configure_alert_action.php:265 +#: ../../godmode/alerts/alert_view.php:393 +#: ../../godmode/alerts/alert_list.builder.php:172 +#: ../../include/functions_reporting_html.php:2933 +#: ../../include/functions_reporting_html.php:4673 +#: ../../include/ajax/alert_list.ajax.php:521 +#: ../../include/class/AgentsAlerts.class.php:378 +msgid "Threshold" +msgstr "Порог" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:710 +#: ../../enterprise/operation/agentes/policy_view.php:332 +#: ../../godmode/alerts/alert_list.list.php:550 +#: ../../godmode/alerts/alert_view.php:82 ../../mobile/operation/alerts.php:305 +#: ../../include/functions_ui.php:1229 +#: ../../include/class/AgentsAlerts.class.php:954 +msgid "time(s)" +msgstr "раз(а)" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:716 +#: ../../enterprise/operation/agentes/policy_view.php:338 +#: ../../godmode/alerts/alert_list.list.php:556 +#: ../../godmode/alerts/alert_view.php:88 ../../mobile/operation/alerts.php:311 +#: ../../include/functions_agents.php:2735 +#: ../../include/functions_agents.php:2746 ../../include/functions_ui.php:1235 +#: ../../include/class/AgentsAlerts.class.php:960 +#: ../../include/functions_reporting.php:11227 +#: ../../operation/snmpconsole/snmp_view.php:1022 +msgid "Alert not fired" +msgstr "Оповещение не запущено" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:727 +msgid "View associated rules" +msgstr "Посмотреть похожие правила" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:743 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3148 +msgid "There are no defined events alerts" +msgstr "Не существует определенных предупреждений о событиях" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 +msgid "Event rules" +msgstr "Правила события" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:103 +msgid "" +"This view will be removed in a future version. Please use \"Alert " +"correlation\" instead." +msgstr "" +"Этот вид будет удален в будущей версии. Вместо него используйте \"Корреляция " +"предупреждений\"." + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:225 +msgid "Error creating rule" +msgstr "Ошибка при создании правил" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:229 +msgid "Successfully created rule" +msgstr "Правила созданы успешно" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:244 +msgid "Error updating rule" +msgstr "Ошибка приобновлении правил" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:247 +msgid "Successfully updating rule" +msgstr "Успешное обновление правила" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:257 +msgid "Error updating rule operators" +msgstr "Ошибка при обновлении правил операторов" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:259 +msgid "Successfully update rule operators" +msgstr "Успешное обновление правил операртора" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 +msgid "(Agent)" +msgstr "(Агент)" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:405 +msgid "Operator" +msgstr "Оператор" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:499 +msgid "Logic expression for these rules:" +msgstr "Логическое выражение для этих правил:" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:507 +msgid "Update operators" +msgstr "Обновить операторов" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:512 +msgid "There are no defined alert event rules" +msgstr "Не существует определенных предупреждений о правилах событий" + +#: ../../enterprise/godmode/alerts/alert_inventory.php:67 +msgid "Inventory alert list" +msgstr "Список предупреждений об инвентаризации" + +#: ../../enterprise/godmode/alerts/alert_inventory.php:71 +msgid "Inventory alert builder" +msgstr "Создатель оповещений инвентаризации" + +#: ../../enterprise/godmode/services/services.service.php:106 +msgid "Service already exists." +msgstr "Сервис уже существует." + +#: ../../enterprise/godmode/services/services.service.php:196 +msgid "Error creating service: " +msgstr "Ошибка при создании сервиса: " + +#: ../../enterprise/godmode/services/services.service.php:205 +#: ../../enterprise/godmode/services/services.service.php:309 +msgid "New Service" +msgstr "Новый сервис" + +#: ../../enterprise/godmode/services/services.service.php:211 +msgid "Service created successfully" +msgstr "Сервис успешно создан" + +#: ../../enterprise/godmode/services/services.service.php:278 +#: ../../enterprise/include/functions_services.php:636 +msgid "Error updating service: " +msgstr "Ошибка обновления службы: " + +#: ../../enterprise/godmode/services/services.service.php:289 +msgid "Service updated successfully" +msgstr "Сервис успешно обновлен" + +#: ../../enterprise/godmode/services/services.service.php:302 +#: ../../enterprise/godmode/services/services.service.php:344 +#: ../../enterprise/operation/services/services.service.php:55 +#: ../../enterprise/operation/services/services.service_map.php:44 +#: ../../include/ajax/update_manager.ajax.php:757 +msgid "Not found" +msgstr "Не найдено" + +#: ../../enterprise/godmode/services/services.service.php:359 +msgid "Dynamic elements are not affected by cascade protection" +msgstr "Динамические элементы не подвержены влиянию каскадной защиты" + +#: ../../enterprise/godmode/services/services.service.php:385 +#: ../../enterprise/godmode/services/services.service.php:422 +#: ../../enterprise/godmode/services/services.elements.php:710 +#: ../../enterprise/operation/services/services.service.php:80 +#: ../../enterprise/operation/services/services.service_map.php:71 +#: ../../enterprise/operation/services/services.treeview_services.php:63 +#: ../../enterprise/operation/services/services.list.php:65 +#: ../../enterprise/operation/services/services.table_services.php:40 +msgid "Services list" +msgstr "Список сервисов" + +#: ../../enterprise/godmode/services/services.service.php:396 +msgid "Services table view" +msgstr "Вид сервиса в таблицах" + +#: ../../enterprise/godmode/services/services.service.php:407 +msgid "Services tree view" +msgstr "Вид сервиса дерево" + +#: ../../enterprise/godmode/services/services.service.php:433 +#: ../../enterprise/godmode/services/services.elements.php:721 +#: ../../enterprise/operation/services/services.service.php:95 +#: ../../enterprise/operation/services/services.service_map.php:86 +msgid "Config Service" +msgstr "Сервис конфигурации" + +#: ../../enterprise/godmode/services/services.service.php:444 +#: ../../enterprise/godmode/services/services.elements.php:732 +#: ../../enterprise/operation/services/services.service.php:106 +#: ../../enterprise/operation/services/services.service_map.php:97 +msgid "Config Elements" +msgstr "Конфигурация Элементов" + +#: ../../enterprise/godmode/services/services.service.php:455 +#: ../../enterprise/godmode/services/services.elements.php:744 +#: ../../enterprise/operation/services/services.service.php:121 +#: ../../enterprise/operation/services/services.service_map.php:112 +msgid "View Service" +msgstr "Просмотр сервиса" + +#: ../../enterprise/godmode/services/services.service.php:466 +#: ../../enterprise/godmode/services/services.elements.php:756 +#: ../../enterprise/operation/services/services.service.php:133 +#: ../../enterprise/operation/services/services.service_map.php:124 +#: ../../include/lib/Dashboard/Widgets/service_map.php:449 +msgid "Service map" +msgstr "Карта сервиса" + +#: ../../enterprise/godmode/services/services.service.php:516 +msgid "No Services or concrete action" +msgstr "Нет сервисов или конкретных действий" + +#: ../../enterprise/godmode/services/services.service.php:567 +msgid "Server assigned" +msgstr "Сервер назначен" + +#: ../../enterprise/godmode/services/services.service.php:568 +msgid "Selected Prediction server will be assigned to evaluate the service." +msgstr "Выбранный сервер прогнозирования будет назначен для оценки услуги." + +#: ../../enterprise/godmode/services/services.service.php:589 +msgid "Evaluation interval" +msgstr "Интервал оценки" + +#: ../../enterprise/godmode/services/services.service.php:747 +msgid "General Data" +msgstr "Общие данные" + +#: ../../enterprise/godmode/services/services.service.php:793 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:127 +#: ../../enterprise/include/functions_reporting_csv.php:1379 +#: ../../include/functions_reports.php:688 +#: ../../include/functions_reporting.php:897 +msgid "S.L.A." +msgstr "Соглашения об уровне обслуживания (SLA)" + +#: ../../enterprise/godmode/services/services.service.php:802 +msgid "" +"Here are described the alert templates, which will use their default " +"actions.\n" +"\t\tYou can modify the default behaviour editing alerts in the agent who " +"stores data and alert definitions about the service and the SLA status." +msgstr "" +"Здесь описаны шаблоны оповещений, которые будут использовать свои действия " +"по умолчанию.\n" +"\t\tВы можете изменить поведение по умолчанию, редактируя предупреждения в " +"агенте, который хранит данные и определения предупреждений об услуге и " +"статусе SLA." + +#: ../../enterprise/godmode/services/services.service.php:946 +msgid "" +"This change in the service configuration will delete the history of the " +"service modules. Do you wish to continue?" +msgstr "" +"Это изменение в конфигурации сервиса удалит историю модулей сервиса. Вы " +"хотите продолжить?" + +#: ../../enterprise/godmode/services/services.service.php:948 +msgid "" +"This change in the service configuration will prevent the SLA modules from " +"being created. Do you wish to continue?" +msgstr "" +"Это изменение в конфигурации услуги не позволит создать модули SLA. Вы " +"хотите продолжить?" + +#: ../../enterprise/godmode/services/services.elements.php:72 +msgid "Invalid service" +msgstr "Недопустимый сервис" + +#: ../../enterprise/godmode/services/services.elements.php:99 +#: ../../enterprise/include/functions_reporting.php:2386 +#: ../../enterprise/include/functions_reporting.php:3340 +#: ../../enterprise/include/functions_reporting.php:4317 +#: ../../include/functions_maps.php:50 +#: ../../include/functions_reporting.php:1007 +#: ../../include/functions_reporting.php:7954 +#: ../../operation/agentes/pandora_networkmap.php:776 +msgid "Dynamic" +msgstr "Динамический" + +#: ../../enterprise/godmode/services/services.elements.php:220 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:114 +msgid "Custom field name" +msgstr "Имя пользовательского поля" + +#: ../../enterprise/godmode/services/services.elements.php:232 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:116 +msgid "Custom field value" +msgstr "Значение пользовательского поля" + +#: ../../enterprise/godmode/services/services.elements.php:250 +msgid "Add custom field match" +msgstr "Добавить соответствие пользовательского поля" + +#: ../../enterprise/godmode/services/services.elements.php:256 +msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." +msgstr "" +"И 'имя', и 'значение' должны быть определены для фильтрации. В противном " +"случае действия игнорируются." + +#: ../../enterprise/godmode/services/services.elements.php:261 +msgid "MySQL Regular expressions case insensitive." +msgstr "Регулярные выражения MySQL не чувствительны к регистру" + +#: ../../enterprise/godmode/services/services.elements.php:267 +msgid "Matching objects type" +msgstr "Тип совпадающих объектов" + +#: ../../enterprise/godmode/services/services.elements.php:282 +msgid "Filter by group" +msgstr "Фильтр по группам" + +#: ../../enterprise/godmode/services/services.elements.php:294 +msgid "Use regular expresions selectors" +msgstr "Используйте селекторы с регулярными выражениями" + +#: ../../enterprise/godmode/services/services.elements.php:302 +msgid "Having agent name" +msgstr "Наличие имени агента" + +#: ../../enterprise/godmode/services/services.elements.php:310 +msgid "Having module name" +msgstr "Наличие имени модуля" + +#: ../../enterprise/godmode/services/services.elements.php:320 +msgid "Having custom fields" +msgstr "Наличие пользовательских полей" + +#: ../../enterprise/godmode/services/services.elements.php:331 +msgid "Apply rules on this server" +msgstr "Применить правила на этом сервере" + +#: ../../enterprise/godmode/services/services.elements.php:350 +msgid "Weights" +msgstr "Веса" + +#: ../../enterprise/godmode/services/services.elements.php:355 +msgid "In smart mode weights are automatically calculated." +msgstr "В интеллектуальном режиме веса рассчитываются автоматически." + +#: ../../enterprise/godmode/services/services.elements.php:453 +#: ../../enterprise/godmode/services/services.elements.php:461 +#: ../../enterprise/godmode/services/services.elements.php:468 +msgid "Selected agent not found." +msgstr "Выбранный агент не найден." + +#: ../../enterprise/godmode/services/services.elements.php:474 +#: ../../enterprise/godmode/services/services.elements.php:485 +#, php-format +msgid "Selected module not found in %s." +msgstr "Выбранный модуль не найден в %s." + +#: ../../enterprise/godmode/services/services.elements.php:494 +msgid "Selected service not found." +msgstr "Выбранный сервис не найден." + +#: ../../enterprise/godmode/services/services.elements.php:508 +#, php-format +msgid "Failed adding service child: %s" +msgstr "Не удалось добавить дочерний сервис: %s" + +#: ../../enterprise/godmode/services/services.elements.php:547 +#, php-format +msgid "Selected rules are not valid: %s." +msgstr "Выбранные правила не действительны: %s." + +#: ../../enterprise/godmode/services/services.elements.php:555 +msgid "Invalid element type." +msgstr "Недопустимый тип элемента." + +#: ../../enterprise/godmode/services/services.elements.php:581 +msgid "Element registered successfully" +msgstr "Элемент успешно зарегистрирован" + +#: ../../enterprise/godmode/services/services.elements.php:654 +#, php-format +msgid "Error deleting element: %s" +msgstr "Ошибка при удалении элемента: %s" + +#: ../../enterprise/godmode/services/services.elements.php:767 +#: ../../operation/search_maps.php:29 +msgid "Elements" +msgstr "Элементы" + +#: ../../enterprise/godmode/services/services.elements.php:784 +#: ../../enterprise/include/functions_services.php:1828 +msgid "Edit service elements" +msgstr "Редактировать элементы сервиса" + +#: ../../enterprise/godmode/services/services.elements.php:818 +#: ../../enterprise/godmode/services/services.elements.php:829 +#: ../../enterprise/include/functions_visual_map.php:677 +#: ../../enterprise/include/functions_HA_cluster.php:535 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1611 +#: ../../enterprise/include/class/AgentRepository.class.php:825 +#: ../../enterprise/include/class/Omnishell.class.php:1083 +#: ../../enterprise/include/class/LogSource.class.php:761 +#: ../../enterprise/include/class/WebServerModuleDebug.class.php:359 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1005 +#: ../../include/ajax/snmp_browser.ajax.php:260 +#: ../../include/functions_ui.php:287 +#: ../../include/class/ConfigPEN.class.php:737 +#: ../../include/class/HelpFeedBack.class.php:359 +#: ../../include/class/Diagnostics.class.php:2081 +#: ../../include/class/CredentialStore.class.php:1165 +#: ../../include/class/ModuleTemplates.class.php:1414 +#: ../../include/class/AgentWizard.class.php:5620 +#: ../../operation/visual_console/view.php:676 +msgid "Success" +msgstr "Успешно" + +#: ../../enterprise/godmode/services/services.elements.php:820 +msgid "Add element" +msgstr "Добавить элемент" + +#: ../../enterprise/godmode/services/services.elements.php:831 +msgid "Edit element" +msgstr "Редактировать элемент" + +#: ../../enterprise/godmode/setup/setup_history.php:81 +msgid "Method does not exist" +msgstr "Метод не существует" + +#: ../../enterprise/godmode/setup/setup_history.php:156 +#: ../../include/functions_config.php:1475 +msgid "Host" +msgstr "Хост" + +#: ../../enterprise/godmode/setup/setup_history.php:201 +#: ../../include/functions_config.php:1496 +msgid "Database user" +msgstr "Пользователь базы данных" + +#: ../../enterprise/godmode/setup/setup_history.php:216 +#: ../../include/functions_config.php:1500 +msgid "Database password" +msgstr "Пароль базы данных" + +#: ../../enterprise/godmode/setup/setup_history.php:220 +msgid "Configure connection target" +msgstr "Настройка цели подключения" + +#: ../../enterprise/godmode/setup/setup_history.php:234 +msgid "Active to historical settings" +msgstr "Активность к историческим настройкам" + +#: ../../enterprise/godmode/setup/setup_history.php:238 +#, php-format +msgid "" +"Data will be available in active database as time as days you specify here. " +"Older information will be sent to historical database. Note data will be " +"purged from active database after %d days." +msgstr "" +"Данные будут доступны в активной базе данных столько дней, сколько вы " +"укажете здесь. Более старая информация будет отправлена в историческую базу " +"данных. Данные будут удалены из активной базы данных через %d дней." + +#: ../../enterprise/godmode/setup/setup_history.php:244 +msgid "Data days old to keep in active database" +msgstr "" +"Данные возрастом в несколько дней для сохранения в активной базе данных" + +#: ../../enterprise/godmode/setup/setup_history.php:259 +msgid "" +"Number of rows to be sent to historical database each 'delay' seconds. If " +"you experience issues running pandora_db, try decreasing this value." +msgstr "" +"Количество строк, которые будут отправляться в историческую базу данных " +"каждые 'задержка' секунд. Если у вас возникают проблемы при работе " +"pandora_db, попробуйте уменьшить это значение." + +#: ../../enterprise/godmode/setup/setup_history.php:263 +msgid "Transference block size (Step)" +msgstr "Размер блока переноса (Шаг)" + +#: ../../enterprise/godmode/setup/setup_history.php:268 +msgid "Delay between transferences (seconds)" +msgstr "Задержка между передачами (секунды)" + +#: ../../enterprise/godmode/setup/setup_history.php:273 +msgid "Historical data settings" +msgstr "Настройки исторических данных" + +#: ../../enterprise/godmode/setup/setup_history.php:275 +msgid "Maximum historical data age (days)" +msgstr "Максимальный возраст исторических данных (дней)" + +#: ../../enterprise/godmode/setup/setup_history.php:280 +msgid "Maximum historical string data age (days)" +msgstr "Максимальный возраст данных исторической строки (дней)" + +#: ../../enterprise/godmode/setup/setup_history.php:285 +msgid "" +"Data older than 'days' is compacted in order to improve disk utilization." +msgstr "" +"Данные старше 'дней' уплотняются, чтобы улучшить использование диска." + +#: ../../enterprise/godmode/setup/setup_history.php:290 +msgid "" +"Automatically create partitions on specific database IDB files " +"(tagente_datos, tagente_datos_string, tevento). Monthly partitions." +msgstr "" +"Автоматическое создание разделения по определенным файлам IDB базы данных " +"(tagente_datos, tagente_datos_string, tevento). Ежемесячные разделы." + +#: ../../enterprise/godmode/setup/setup_history.php:294 +msgid "Automatic partition of big tables." +msgstr "Автоматическое разбиение больших таблиц." + +#: ../../enterprise/godmode/setup/setup_history.php:305 +msgid "Historical events settings" +msgstr "Настройки исторических событий" + +#: ../../enterprise/godmode/setup/setup_history.php:316 +#, php-format +msgid "" +"Events will remain in active database a maximum of specified days, then they " +"will be transferred to historical database. Note events will be purged from " +"active database after %d days." +msgstr "" +"События будут находиться в активной базе данных максимум указанное " +"количество дней, затем они будут перенесены в историческую базу данных. " +"События будут удалены из активной базы данных через %d дней." + +#: ../../enterprise/godmode/setup/setup_history.php:322 +msgid "Events days old to keep in active database" +msgstr "" +"События возрастом в несколько дней для сохранения в активной базе данных" + +#: ../../enterprise/godmode/setup/setup_history.php:337 +msgid "Events will be purged from historical database after specified days." +msgstr "" +"События будут удалены из исторической базы данных по истечении указанных " +"дней." + +#: ../../enterprise/godmode/setup/setup_history.php:341 +msgid "Maximum historical events age (days)" +msgstr "Максимальный возраст исторических событий (дни)" + +#: ../../enterprise/godmode/setup/setup_history.php:358 +msgid "Enable historical events" +msgstr "Включить исторические события" + +#: ../../enterprise/godmode/setup/setup_history.php:370 +msgid "Customize settings" +msgstr "Настроить параметры" + +#: ../../enterprise/godmode/setup/setup_history.php:382 +msgid "Enable historical database" +msgstr "Включить историческую базу данных" + +#: ../../enterprise/godmode/setup/setup_history.php:404 +msgid "History database connection is available." +msgstr "Доступно подключение к исторической базе данных." + +#: ../../enterprise/godmode/setup/setup_history.php:411 +#, php-format +msgid "History database connection failed: %s" +msgstr "Не удалось подключение к исторической базе данных: %s" + +#: ../../enterprise/godmode/setup/setup_history.php:427 +msgid "History database schema is installed." +msgstr "Установлена схема исторической базы данных." + +#: ../../enterprise/godmode/setup/setup_history.php:436 +#, php-format +msgid "Database is not installed: %s" +msgstr "База данных не установлена: %s" + +#: ../../enterprise/godmode/setup/setup_history.php:441 +msgid "Install database schema" +msgstr "Установите схему базы данных" + +#: ../../enterprise/godmode/setup/setup_history.php:442 +msgid "This action will install the schema into the target, are you sure?" +msgstr "Это действие установит схему в цель, вы уверены?" + +#: ../../enterprise/godmode/setup/setup_history.php:464 +msgid "History database schema is up to date with active database." +msgstr "Схема исторической базы данных обновлена с активной базой данных." + +#: ../../enterprise/godmode/setup/setup_history.php:473 +#, php-format +msgid "Database is not updated: %s" +msgstr "База данных не обновлена: %s" + +#: ../../enterprise/godmode/setup/setup_history.php:488 +msgid "Current schema: " +msgstr "Текущая схема: " + +#: ../../enterprise/godmode/setup/setup_history.php:495 +msgid "Upgrade database schema" +msgstr "Обновление схемы базы данных" + +#: ../../enterprise/godmode/setup/setup_history.php:496 +msgid "" +"This action will schedule the installation or upgrade of database schema " +"into the target, are you sure?" +msgstr "" +"Это действие запланирует установку или обновление схемы базы данных на " +"целевой объект, вы уверены?" + +#: ../../enterprise/godmode/setup/setup_history.php:510 +#: ../../godmode/setup/performance.php:656 +msgid "Database maintenance status" +msgstr "Статус обслуживания базы данных" + +#: ../../enterprise/godmode/setup/setup_history.php:529 +msgid "" +"By enabling historical database, target connection will be tested. If " +"needed, database schema will be applied on your selected target, do you want " +"to proceed?" +msgstr "" +"При включении исторической базы данных будет протестировано целевое " +"соединение. При необходимости схема базы данных будет применена к выбранной " +"цели, хотите ли вы продолжить?" + +#: ../../enterprise/godmode/setup/setup_history.php:530 +msgid "" +"Changing historical database target, schema will be recreated in new one, " +"but old data will remain in previous node, unlinked from this console and " +"not maintained, do you want to proceed?" +msgstr "" +"Изменение цели исторической базы данных, схема будет воссоздана заново, но " +"старые данные останутся в предыдущем узле, не связанные с этой консолью и не " +"поддерживаемые, хотите ли вы продолжить?" + +#: ../../enterprise/godmode/setup/setup_history.php:532 +#, php-format +msgid "" +"Disabling historical database, you will not keep any data older than %d " +"days. Are you sure?" +msgstr "" +"Отключив историческую базу данных, вы не будете хранить данные старше %d " +"дней. Вы уверены?" + +#: ../../enterprise/godmode/setup/setup_history.php:536 +#, php-format +msgid "" +"Historical database allows you to keep data older than %d days. This action " +"will produce no changes. Historical database will remain disabled." +msgstr "" +"Историческая база данных позволяет хранить данные старше %d дней. Это " +"действие не приведет ни к каким изменениям. Историческая база данных " +"останется отключенной." + +#: ../../enterprise/godmode/setup/setup_history.php:541 +msgid "" +"By changing historical database target, the new connection will be tested. " +"If needed, database schema will be applied on your selected target. " +"Information stored in previous configuration will be IGNORED, do you want to " +"proceed?" +msgstr "" +"При изменении цели исторической базы данных новое соединение будет " +"протестировано. При необходимости схема базы данных будет применена к " +"выбранной цели. Информация, сохраненная в предыдущей конфигурации, будет " +"ИГНОРИРОВАНА, хотите ли вы продолжить?" + +#: ../../enterprise/godmode/setup/setup_history.php:544 +msgid "Please ensure all fields matches your needs." +msgstr "" +"Пожалуйста, убедитесь, что все поля соответствуют вашим потребностям." + +#: ../../enterprise/godmode/setup/setup_history.php:678 +msgid "Update scheduled." +msgstr "Обновление запланировано." + +#: ../../enterprise/godmode/setup/setup.php:47 +#: ../../include/functions_config.php:377 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "Переслать SNMP прерывания к агенту (если есть)" + +#: ../../enterprise/godmode/setup/setup.php:48 +msgid "Yes and change status" +msgstr "Да и изменить статус" + +#: ../../enterprise/godmode/setup/setup.php:56 +msgid "Yes without changing status" +msgstr "Да, без изменения статуса" + +#: ../../enterprise/godmode/setup/setup.php:77 +#: ../../include/functions_config.php:381 +msgid "Use Enterprise ACL System" +msgstr "Использовать систему предприятия ACL" + +#: ../../enterprise/godmode/setup/setup.php:104 +#: ../../include/functions_config.php:393 +msgid "Events replication" +msgstr "События репликации" + +#: ../../enterprise/godmode/setup/setup.php:116 +#: ../../include/functions_config.php:398 +msgid "Replication interval" +msgstr "Интервал репликации" + +#: ../../enterprise/godmode/setup/setup.php:124 +msgid "Seconds" +msgstr "Секунды" + +#: ../../enterprise/godmode/setup/setup.php:130 +#: ../../include/functions_config.php:402 +msgid "Replication limit" +msgstr "Предел репликации" + +#: ../../enterprise/godmode/setup/setup.php:144 +msgid "Last replication at" +msgstr "Последняя репликация в" + +#: ../../enterprise/godmode/setup/setup.php:146 +msgid "No replication yet" +msgstr "Пока нет репликации" + +#: ../../enterprise/godmode/setup/setup.php:157 +#: ../../include/functions_config.php:406 +msgid "Replication mode" +msgstr "Репликация режима" + +#: ../../enterprise/godmode/setup/setup.php:160 +msgid "Only validated events" +msgstr "Только утвержденные события" + +#: ../../enterprise/godmode/setup/setup.php:161 +#: ../../godmode/events/event_edit_filter.php:430 +#: ../../operation/events/events_list.php:971 +#: ../../operation/events/events.php:1031 +msgid "All events" +msgstr "Все события" + +#: ../../enterprise/godmode/setup/setup.php:175 +msgid "Metaconsole DB engine" +msgstr "Metaconsole DB engine" + +#: ../../enterprise/godmode/setup/setup.php:178 +#: ../../enterprise/include/class/MySQL.app.php:420 +msgid "MySQL" +msgstr "MySQL" + +#: ../../enterprise/godmode/setup/setup.php:193 +msgid "Metaconsole DB host" +msgstr "Metaconsole DB хост" + +#: ../../enterprise/godmode/setup/setup.php:207 +msgid "Metaconsole DB name" +msgstr "Metaconsole DB имя" + +#: ../../enterprise/godmode/setup/setup.php:221 +msgid "Metaconsole DB user" +msgstr "Metaconsole DB пользователь" + +#: ../../enterprise/godmode/setup/setup.php:235 +msgid "Metaconsole DB password" +msgstr "Metaconsole DB пароль" + +#: ../../enterprise/godmode/setup/setup.php:264 +#: ../../include/functions_config.php:410 +msgid "Show events list in local console (read only)" +msgstr "Показать список событий в местной консоли (читать только)" + +#: ../../enterprise/godmode/setup/setup.php:275 +msgid "Events Configuration Information" +msgstr "Информация о конфигурации событий" + +#: ../../enterprise/godmode/setup/setup.php:277 +msgid "" +" If you are replicating events, events validated or deleted on the " +"metaconsole WILL NOT be deleted or validated here. This option is just to " +"allow local pandora users to see events, but not to operate with them. " +"Operation, when event replication is enabled, should be done only in " +"metaconsole" +msgstr "" +" Если вы реплицируете события, события, подтвержденные или удаленные на " +"метаконсоли, НЕ БУДУТ удалены или подтверждены здесь. Эта опция просто " +"позволяет локальным пользователям pandora видеть события, но не работать с " +"ними. Операции, когда репликация событий включена, должны выполняться только " +"в метаконсоли" + +#: ../../enterprise/godmode/setup/setup.php:282 +#: ../../include/functions_config.php:468 +msgid "Inventory changes blacklist" +msgstr "Черный список изменений инвентаризации" + +#: ../../enterprise/godmode/setup/setup.php:345 +msgid "Out of black list" +msgstr "Вне черного списка" + +#: ../../enterprise/godmode/setup/setup.php:347 +msgid "In black list" +msgstr "В черном списке" + +#: ../../enterprise/godmode/setup/setup.php:352 +msgid "Push selected modules into blacklist" +msgstr "Вставьте выбранные модули в черный список" + +#: ../../enterprise/godmode/setup/setup.php:354 +msgid "Pop selected modules out of blacklist" +msgstr "Поп выбранных модулей из черного списка" + +#: ../../enterprise/godmode/setup/setup.php:366 +#: ../../include/functions_config.php:443 +msgid "Activate Log Collector" +msgstr "Активировать сборщика журнала" + +#: ../../enterprise/godmode/setup/setup.php:390 +msgid "Disable newsletter" +msgstr "Отключить рассылку новостей" + +#: ../../enterprise/godmode/setup/setup.php:401 +msgid "Critical threshold for occupied addresses" +msgstr "Критический порог для занятых адресов" + +#: ../../enterprise/godmode/setup/setup.php:413 +msgid "Warning threshold for occupied addresses" +msgstr "Порог предостережения для занятых адресов" + +#: ../../enterprise/godmode/setup/setup.php:425 +#: ../../include/functions_config.php:463 +msgid "SAP/R3 Plugin Licence" +msgstr "Лицензия на плагин SAP/R3" + +#: ../../enterprise/godmode/setup/setup.php:441 +msgid "Enterprise options" +msgstr "Параметры предприятия" + +#: ../../enterprise/godmode/setup/setup.php:601 +#, php-format +msgid "" +"Password related configuration only applies when local %s authentication is " +"selected." +msgstr "" +"Конфигурация, связанная с паролем, применяется только при выборе локальной " +"аутентификации %s." + +#: ../../enterprise/godmode/setup/setup.php:610 +msgid "Enterprise password policy" +msgstr "Политика паролей предприятия" + +#: ../../enterprise/godmode/setup/setup_skins.php:35 +#: ../../enterprise/godmode/setup/edit_skin.php:41 +msgid "Skins configuration" +msgstr "Скины конфигурации" + +#: ../../enterprise/godmode/setup/setup_skins.php:74 +msgid "Error deleting skin" +msgstr "Ошибка при удалении скина" + +#: ../../enterprise/godmode/setup/setup_skins.php:76 +msgid "Successfully deleted skin" +msgstr "Скин успешно удален" + +#: ../../enterprise/godmode/setup/setup_skins.php:121 +msgid "Skin name" +msgstr "Имя скина" + +#: ../../enterprise/godmode/setup/setup_skins.php:122 +#: ../../enterprise/godmode/setup/edit_skin.php:238 +msgid "Relative path" +msgstr "Относительный путь" + +#: ../../enterprise/godmode/setup/setup_skins.php:149 +msgid "There are no defined skins" +msgstr "Скины не определены" + +#: ../../enterprise/godmode/setup/setup_skins.php:155 +msgid "Create skin" +msgstr "Создать скин" + +#: ../../enterprise/godmode/setup/setup_module_library.php:65 +#: ../../enterprise/godmode/wizards/Cloud.class.php:373 +#: ../../godmode/module_library/module_library_view.php:145 +msgid "Invalid username or password" +msgstr "Недопустимое имя пользователя или пароль" + +#: ../../enterprise/godmode/setup/setup_module_library.php:66 +#: ../../godmode/module_library/module_library_view.php:144 +msgid "Problem with authentication. Check your internet connection" +msgstr "Проблема с аутентификацией. Проверьте подключение к интернету" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:28 +msgid "Metaconsole setup" +msgstr "Установка Мета консоли" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:192 +msgid "Pandora FMS Metaconsole item edition" +msgstr "Редактирование элементов Мета консоли Pandora FMS" + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 +msgid "" +"Token previously configured on the destination Pandora console in order to " +"use delegated authentification." +msgstr "" +"Маркер ранее настроенный на консоли Pandora предназначенной для " +"использования делегированной аутентификации." + +#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 +msgid "Console URLxxxxxx" +msgstr "Консоль URLxxxxxx" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:34 +msgid "ElasticSearch IP" +msgstr "ElasticSearch IP" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:34 +msgid "IP of ElasticSearch server" +msgstr "IP-адрес сервера ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:36 +msgid "ElasticSearch Port" +msgstr "ElasticSearch Порт" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:36 +msgid "Port of ElasticSearch server" +msgstr "Порт сервера ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:41 +#: ../../include/functions_config.php:1457 +msgid "Days to purge old information" +msgstr "Дни для очистки старой информации" + +#: ../../enterprise/godmode/setup/setup_log_collector.php:45 +msgid "ElasticSearch Status" +msgstr "Состояние ElasticSearch" + +#: ../../enterprise/godmode/setup/setup_auth.php:31 +msgid "Active directory" +msgstr "Активный каталог" + +#: ../../enterprise/godmode/setup/setup_auth.php:32 +msgid "SAML" +msgstr "SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:84 +msgid "Force automatically create profile user" +msgstr "Принудить автоматическое создание профиля пользователя" + +#: ../../enterprise/godmode/setup/setup_auth.php:89 +msgid "Local command" +msgstr "Локальная команда" + +#: ../../enterprise/godmode/setup/setup_auth.php:92 +msgid "PHP function" +msgstr "Функция PHP" + +#: ../../enterprise/godmode/setup/setup_auth.php:96 +#: ../../enterprise/include/functions_tasklist.php:227 +#: ../../enterprise/include/functions_tasklist.php:282 +#: ../../enterprise/operation/reporting/custom_reporting.php:20 +#: ../../godmode/tag/tag.php:241 ../../godmode/tag/edit_tag.php:220 +#: ../../include/functions_cron.php:511 ../../include/functions_cron.php:566 +#: ../../include/functions_update_manager.php:793 +#: ../../operation/search_users.php:36 +msgid "Email" +msgstr "Электронная почта" + +#: ../../enterprise/godmode/setup/setup_auth.php:170 +#: ../../enterprise/godmode/setup/setup_auth.php:454 +#: ../../enterprise/godmode/setup/setup_auth.php:1230 +msgid "Profiles selected" +msgstr "Выбранные профили" + +#: ../../enterprise/godmode/setup/setup_auth.php:171 +#: ../../enterprise/godmode/setup/setup_auth.php:455 +#: ../../enterprise/godmode/setup/setup_auth.php:1231 +msgid "Groups selected" +msgstr "Выбранные группы" + +#: ../../enterprise/godmode/setup/setup_auth.php:173 +#: ../../enterprise/godmode/setup/setup_auth.php:230 +#: ../../include/functions_profile.php:216 +msgid "No hierarchy" +msgstr "Отсутствие иерархии" + +#: ../../enterprise/godmode/setup/setup_auth.php:174 +#: ../../enterprise/godmode/setup/setup_auth.php:231 +msgid "LDAP Attributes" +msgstr "Атрибуты LDAP" + +#: ../../enterprise/godmode/setup/setup_auth.php:175 +#: ../../enterprise/godmode/setup/setup_auth.php:232 +#: ../../enterprise/godmode/setup/setup_auth.php:458 +#: ../../enterprise/godmode/setup/setup_auth.php:510 +#: ../../enterprise/godmode/setup/setup_auth.php:1234 +#: ../../enterprise/godmode/setup/setup_auth.php:1288 +#: ../../godmode/setup/snmp_wizard.php:44 +msgid "OP" +msgstr "ОП" + +#: ../../enterprise/godmode/setup/setup_auth.php:240 +#: ../../enterprise/godmode/setup/setup_auth.php:517 +#: ../../enterprise/godmode/setup/setup_auth.php:1295 +msgid "Select profile" +msgstr "Выбрать профиль" + +#: ../../enterprise/godmode/setup/setup_auth.php:285 +#: ../../enterprise/godmode/setup/setup_auth.php:555 +#: ../../enterprise/godmode/setup/setup_auth.php:1338 +msgid "Add new permissions" +msgstr "Добавить новые права доступа" + +#: ../../enterprise/godmode/setup/setup_auth.php:383 +#: ../../enterprise/godmode/setup/setup_auth.php:1159 +msgid "New users will be able to log in to the nodes." +msgstr "Новые пользователи смогут войти в узлы." + +#: ../../enterprise/godmode/setup/setup_auth.php:457 +#: ../../enterprise/godmode/setup/setup_auth.php:509 +#: ../../enterprise/godmode/setup/setup_auth.php:1233 +#: ../../enterprise/godmode/setup/setup_auth.php:1287 +msgid "AD Groups" +msgstr "Группы AD" + +#: ../../enterprise/godmode/setup/setup_auth.php:723 +#: ../../enterprise/godmode/setup/setup_auth.php:839 +msgid "You must select a profile from the list of profiles." +msgstr "Вы должны выбрать профиль из списка профилей." + +#: ../../enterprise/godmode/setup/setup_auth.php:728 +#: ../../enterprise/godmode/setup/setup_auth.php:844 +msgid "You must select a group from the list of groups." +msgstr "Вы должны выбрать группу из списка групп." + +#: ../../enterprise/godmode/setup/setup_auth.php:1000 +#: ../../include/functions_config.php:644 +msgid "MySQL host" +msgstr "MySQL хост" + +#: ../../enterprise/godmode/setup/setup_auth.php:1063 +msgid "SimpleSAML path" +msgstr "Путь SimpleSAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1064 +msgid "Directory where your 'simplesamlphp' folder is located." +msgstr "Каталог, в котором находится ваша папка 'simplesamlphp'." + +#: ../../enterprise/godmode/setup/setup_auth.php:1070 +msgid "SAML source" +msgstr "Источник SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1071 +msgid "Authsource name, e.g. 'example-userpass'" +msgstr "Имя источника авторизации, например, 'example-userpass'" + +#: ../../enterprise/godmode/setup/setup_auth.php:1078 +msgid "SAML user id attribute" +msgstr "Атрибут id пользователя SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1083 +msgid "SAML mail attribute" +msgstr "Атрибут почты SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1084 +msgid "" +"SAML field where search for the user email (while autocreate remote users is " +"enabled)" +msgstr "" +"Поле SAML для поиска электронной почты пользователя (при включенном " +"автосоздании удаленных пользователей)" + +#: ../../enterprise/godmode/setup/setup_auth.php:1091 +msgid "SAML group name attribute" +msgstr "Атрибут имени группы SAML" + +#: ../../enterprise/godmode/setup/setup_auth.php:1092 +msgid "" +"SAML field where search for the group name (while autocreate remote users is " +"enabled)" +msgstr "" +"Поле SAML, в котором выполняется поиск имени группы (при включенном " +"автосоздании удаленных пользователей)" + +#: ../../enterprise/godmode/setup/setup_auth.php:1099 +msgid "Simple attribute / Multivalue attribute" +msgstr "Простой атрибут / Многозначный атрибут" + +#: ../../enterprise/godmode/setup/setup_auth.php:1104 +msgid "SAML profiles and tag attribute" +msgstr "Профили SAML и атрибут тега" + +#: ../../enterprise/godmode/setup/setup_auth.php:1109 +msgid "Profile attribute" +msgstr "Атрибут профиля" + +#: ../../enterprise/godmode/setup/setup_auth.php:1114 +msgid "Tag attribute" +msgstr "Атрибут тега" + +#: ../../enterprise/godmode/setup/setup_auth.php:1119 +msgid "SAML profile and tags prefix" +msgstr "Префикс профиля и тегов SAML" + +#: ../../enterprise/godmode/setup/setup_acl.php:43 +msgid "Enterprise ACL setup" +msgstr "Настройки предприятия ACL" + +#: ../../enterprise/godmode/setup/setup_acl.php:295 +msgid "This record already exists in the database" +msgstr "Эта запись уже существует в базе данных" + +#: ../../enterprise/godmode/setup/setup_acl.php:339 +#: ../../enterprise/godmode/setup/setup_acl.php:414 +msgid "Add new ACL element to profile" +msgstr "Добавить новый ACL элемент к профилю" + +#: ../../enterprise/godmode/setup/setup_acl.php:344 +#: ../../enterprise/godmode/setup/setup_acl.php:459 +msgid "Section" +msgstr "Раздел" + +#: ../../enterprise/godmode/setup/setup_acl.php:351 +#: ../../enterprise/godmode/setup/setup_acl.php:561 +msgid "Mobile" +msgstr "Мобильный" + +#: ../../enterprise/godmode/setup/setup_acl.php:355 +#: ../../enterprise/godmode/setup/setup_acl.php:557 +msgid "Head search" +msgstr "Поиск заголовка" + +#: ../../enterprise/godmode/setup/setup_acl.php:372 +#: ../../enterprise/godmode/setup/setup_acl.php:460 +msgid "Section 2" +msgstr "Раздел 2" + +#: ../../enterprise/godmode/setup/setup_acl.php:389 +#: ../../enterprise/godmode/setup/setup_acl.php:461 +msgid "Section 3" +msgstr "Раздел 3" + +#: ../../enterprise/godmode/setup/setup_acl.php:413 +msgid "Hidden" +msgstr "Скрытое" + +#: ../../enterprise/godmode/setup/setup_acl.php:419 +msgid "Page" +msgstr "Страница" + +#: ../../enterprise/godmode/setup/setup_acl.php:438 +msgid "Filter by profile" +msgstr "Фильтр по профилю" + +#: ../../enterprise/godmode/setup/setup_acl.php:458 +#: ../../godmode/users/configure_profile.php:231 +#: ../../godmode/massive/massive_delete_profiles.php:120 +#: ../../godmode/massive/massive_add_profiles.php:116 +#: ../../include/functions_profile.php:213 +#: ../../operation/users/user_edit.php:778 +msgid "Profile name" +msgstr "Имя профиля" + +#: ../../enterprise/godmode/setup/setup_acl.php:616 +#: ../../enterprise/godmode/setup/setup_acl.php:626 +msgid "Invalid" +msgstr "Ошибка" + +#: ../../enterprise/godmode/setup/setup_acl.php:658 +#: ../../enterprise/godmode/reporting/visual_console_template.php:293 +#: ../../enterprise/operation/agentes/wux_console_view.php:574 +#: ../../include/ajax/visual_console_builder.ajax.php:343 +#: ../../include/functions_visual_map.php:2833 +msgid "No data to show" +msgstr "Нет данных для показа" + +#: ../../enterprise/godmode/setup/edit_skin.php:44 +msgid "Successfully updated skin" +msgstr "Скин успешно обновлен" + +#: ../../enterprise/godmode/setup/edit_skin.php:46 +#: ../../enterprise/godmode/setup/edit_skin.php:64 +msgid "Error updating skin" +msgstr "Ошибка при обновлении скина" + +#: ../../enterprise/godmode/setup/edit_skin.php:194 +msgid "Error creating skin" +msgstr "Ошибка при обновлении скина" + +#: ../../enterprise/godmode/setup/edit_skin.php:198 +msgid "Successfully created skin" +msgstr "Скин успешно создан" + +#: ../../enterprise/godmode/setup/edit_skin.php:239 +msgid "" +"Zip file with skin subdirectory. The name of the zip file only can have " +"alphanumeric characters." +msgstr "" +"Заархивированный файл со скином подкаталога. Название архива может иметь " +"только буквы и цифры." + +#: ../../enterprise/godmode/setup/edit_skin.php:264 +msgid "Group/s" +msgstr "Группа/ы" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:142 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:64 msgid "Cleanup sucessfully" msgstr "Очистка успешна" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:154 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:145 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:67 msgid "Cleanup error" msgstr "Ошибка очистки" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:190 +msgid "No item could be applied to report." +msgstr "Ни один элемент не может быть применен к отчету." + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:193 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:146 msgid "Sucessfully applied" msgstr "Успешно применено" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:193 msgid "reports" msgstr "отчеты" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:193 msgid "items" msgstr "элементы" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:148 msgid "Could not be applied" msgstr "Не может быть применено" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:202 -#: ../../godmode/massive/massive_operations.php:215 +#: ../../godmode/massive/massive_operations.php:332 msgid "" "In order to perform massive operations, PHP needs a correct configuration in " "timeout parameters. Please, open your PHP configuration file (php.ini) for " @@ -15794,80 +18621,112 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:216 msgid "Create template report wizard" -msgstr "" +msgstr "Помощник создания шаблона отчета" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:256 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:142 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:163 msgid "Clean up template" msgstr "Очистить шаблон" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:263 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:268 msgid "Create report per agent" msgstr "Создание отчета агента" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:272 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:277 +#: ../../enterprise/include/functions_cron.php:224 +#: ../../enterprise/include/functions_tasklist.php:281 +#: ../../enterprise/include/functions_reporting_csv.php:2076 +#: ../../enterprise/include/functions_reporting_csv.php:2080 +#: ../../godmode/reporting/reporting_builder.php:828 +#: ../../include/functions_cron.php:565 ../../operation/search_reports.php:34 +#: ../../operation/reporting/custom_reporting.php:34 +msgid "Report name" +msgstr "Название отчёта" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:277 msgid "" "Left in blank if you want to use default name: Template name - agents (num " "agents) - Date" msgstr "" +"Оставьте пустым, если хотите использовать имя по умолчанию: Имя шаблона - " +"агенты (кол-во агентов) - Дата" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:278 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:283 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:226 msgid "Target group" -msgstr "" +msgstr "Целевая группа" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:305 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:322 msgid "Filter by" -msgstr "" +msgstr "Фильтровать по" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:368 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398 msgid "Filter tag" -msgstr "" +msgstr "Фильтр по тегу" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:380 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:386 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:452 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:173 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:179 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:162 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:167 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:194 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:775 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:777 +#: ../../include/functions_snmp_browser.php:1505 +#: ../../include/functions_snmp_browser.php:1507 msgid "Select all" msgstr "Выбрать все" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:381 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:451 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:173 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:271 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:194 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:775 msgid "Agents available" msgstr "Свободные агенты" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:387 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:454 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:179 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:277 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:777 msgid "Agents to apply" msgstr "Агенты для применения" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:408 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:294 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:225 msgid "Add agents to template" msgstr "Добавить агенты к шаблону" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:208 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:296 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:229 msgid "Undo agents to template" msgstr "Отменить агенты шаблона" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:429 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:227 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:314 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:247 msgid "Apply template" msgstr "Применить шаблон" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:753 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:781 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:389 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:421 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:826 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:857 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:651 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:409 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:441 msgid "Please set template distinct than " msgstr "Пожалуйста, примените шаблон, отличный чем " -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:776 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:416 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:625 +msgid "Please set agent distinct than " +msgstr "Пожалуйста, установите агента, отличного от " + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:852 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:646 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:436 msgid "" "This will be delete all reports created in previous template applications. " "Do you want to continue?" @@ -15875,227 +18734,587 @@ msgstr "" "Все отчеты, созданные в предыдущих приложениях шаблона будут удалены. Вы " "хотите продолжить?" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:115 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:138 -#: ../../operation/reporting/reporting_viewer.php:86 -#: ../../godmode/reporting/reporting_builder.php:1829 -msgid "List items" -msgstr "Список элементов" +#: ../../enterprise/godmode/reporting/aws_view.php:53 +msgid "Instance" +msgstr "Экземпляр" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:130 -msgid "List templates" -msgstr "Список шаблонов" +#: ../../enterprise/godmode/reporting/aws_view.php:54 +#: ../../include/class/Diagnostics.class.php:716 +msgid "CPU" +msgstr "CPU" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:254 -#: ../../enterprise/godmode/policies/policies.php:180 -#: ../../include/functions_agents.php:676 -#: ../../godmode/alerts/alert_actions.php:140 -#: ../../godmode/reporting/map_builder.php:183 -#: ../../godmode/reporting/map_builder.php:192 -msgid "Successfully copied" -msgstr "Успешно скопировано" +#: ../../enterprise/godmode/reporting/aws_view.php:55 +msgid "IO read" +msgstr "Чтение IO" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:255 -#: ../../enterprise/godmode/policies/policies.php:181 -#: ../../godmode/alerts/alert_actions.php:141 -msgid "Could not be copied" -msgstr "Не может быть скопировано" +#: ../../enterprise/godmode/reporting/aws_view.php:56 +msgid "IO write" +msgstr "Запись IO" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:288 -#: ../../operation/search_reports.php:40 -#: ../../operation/reporting/custom_reporting.php:40 -#: ../../godmode/reporting/reporting_builder.php:537 -msgid "HTML" -msgstr "HTML" +#: ../../enterprise/godmode/reporting/aws_view.php:57 +msgid "Disk read" +msgstr "Чтение диска" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 -#: ../../operation/search_reports.php:41 -#: ../../operation/reporting/custom_reporting.php:41 -#: ../../godmode/reporting/reporting_builder.php:538 -msgid "XML" -msgstr "XML" +#: ../../enterprise/godmode/reporting/aws_view.php:58 +msgid "Disk write" +msgstr "Запись диска" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:335 -#: ../../godmode/reporting/reporting_builder.php:607 -msgid "HTML view" -msgstr "HTML просмотр" +#: ../../enterprise/godmode/reporting/aws_view.php:59 +msgid "Network in" +msgstr "Сетевой вход" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:337 -#: ../../godmode/reporting/reporting_builder.php:608 -msgid "Export to XML" -msgstr "Экспорт в XML" +#: ../../enterprise/godmode/reporting/aws_view.php:60 +msgid "Network out" +msgstr "Сетевой выход" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:375 -msgid "You haven't created templates yet." +#: ../../enterprise/godmode/reporting/aws_view.php:106 +#: ../../enterprise/godmode/reporting/aws_view.php:133 +#: ../../enterprise/operation/menu.php:45 +msgid "AWS View" +msgstr "Вид AWS" + +#: ../../enterprise/godmode/reporting/aws_view.php:128 +msgid "Failed to retrieve AWS information using selected account." msgstr "" +"Не удалось получить информацию AWS с помощью выбранной учетной записи." -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:386 -msgid "Generate a dynamic report\"" +#: ../../enterprise/godmode/reporting/aws_view.php:141 +msgid "AWS credentials not validated." +msgstr "Учетные данные AWS не подтверждены." + +#: ../../enterprise/godmode/reporting/aws_view.php:145 +msgid "Discovery Cloud: AWS" +msgstr "Discovery Cloud: AWS" + +#: ../../enterprise/godmode/reporting/aws_view.php:150 +msgid "Please, select an account: " +msgstr "Пожалуйста, выберите аккаунт: " + +#: ../../enterprise/godmode/reporting/aws_view.php:159 +msgid "CREATE CLOUD MONITORING DISCOVERY TASK" +msgstr "СОЗДАНИЕ ЗАДАЧИ DISCOVERY МОНИТОРИНГА В ОБЛАКЕ" + +#: ../../enterprise/godmode/reporting/aws_view.php:162 +msgid "" +"Within this view you will find information collected using Discovery Cloud " +"AWS task. You will be able to see the most relevant information about your " +"infrastructure, such as the current cost of your contracted services, the " +"number of instances per region or resource usage metrics. In order to " +"collect this information you must create a Cloud Monitoring Discovery task." msgstr "" +"В этом виде вы найдете информацию, собранную с помощью задачи Discovery " +"Cloud AWS. Вы сможете увидеть наиболее актуальную информацию о вашей " +"инфраструктуре, например, текущую стоимость сервисов по контракту, " +"количество экземпляров на регион или метрики использования ресурсов. Для " +"сбора этой информации необходимо создать задачу Cloud Monitoring Discovery." -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:438 -#: ../../include/ajax/module.php:147 -#: ../../operation/agentes/datos_agente.php:189 -msgid "Timestamp from:" -msgstr "Ограничение времени от:" +#: ../../enterprise/godmode/reporting/aws_view.php:165 +msgid "Press the create button to begin." +msgstr "Нажмите кнопку создания, чтобы начать." -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:444 -#: ../../include/ajax/module.php:155 -#: ../../operation/agentes/datos_agente.php:195 -msgid "Timestamp to:" -msgstr "Ограничение времени до:" +#: ../../enterprise/godmode/reporting/aws_view.php:194 +msgid "Instance table" +msgstr "Таблица экземпляров" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:463 -msgid "Add agents" +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 +#: ../../enterprise/godmode/reporting/visual_console_template.php:63 +#: ../../godmode/reporting/map_builder.php:61 +#: ../../godmode/reporting/visual_console_favorite.php:53 +msgid "Visual Console List" +msgstr "Список визуальных консолей" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74 +#: ../../enterprise/godmode/reporting/visual_console_template.php:75 +#: ../../godmode/reporting/map_builder.php:73 +#: ../../godmode/reporting/visual_console_favorite.php:65 +#: ../../godmode/reporting/visual_console_favorite.php:99 +msgid "Visual Favourite Console" +msgstr "Избранная визуальная консоль" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87 +#: ../../enterprise/godmode/reporting/visual_console_template.php:88 +#: ../../godmode/reporting/map_builder.php:86 +#: ../../godmode/reporting/visual_console_favorite.php:78 +msgid "Visual Console Template" +msgstr "Шаблон визуальной консоли" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99 +#: ../../enterprise/godmode/reporting/visual_console_template.php:100 +#: ../../godmode/reporting/map_builder.php:98 +#: ../../godmode/reporting/visual_console_favorite.php:90 +msgid "Visual Console Template Wizard" +msgstr "Мастер шаблонов визуальной консоли" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:190 +msgid "Visual console name" +msgstr "Имя визуальной консоли" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:190 +msgid "" +"You can use macro _agentalias_ here. Left in blank if you want to use " +"default name: Template name - agent alias" msgstr "" +"Здесь можно использовать макрос _agentalias_. Оставляется пустым, если вы " +"хотите использовать имя по умолчанию: Имя шаблона - алиас агента" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:466 -msgid "Undo agents" +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109 +#: ../../enterprise/godmode/reporting/mysql_builder.php:192 +#: ../../enterprise/include/ajax/transactional.ajax.php:83 +#: ../../extensions/insert_data.php:205 ../../godmode/setup/gis_step_2.php:476 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/reporting/visual_console_builder.data.php:226 +#: ../../godmode/reporting/reporting_builder.main.php:45 +#: ../../operation/agentes/graphs.php:342 +msgid "Save" +msgstr "Сохранить" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:184 +msgid "Edit template" +msgstr "Редактировать шаблон" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:846 +msgid "" +"Case insensitive regular expression for agent alias. For example: Network.* " +"will match with the following agent alias: network_agent1, NetworK CHECKS" msgstr "" +"Нечувствительное к регистру регулярное выражение для алиас агента. Например: " +"Network.* будет соответствовать следующему псевдониму агента: " +"network_agent1, NetworK CHECKS" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:474 -msgid "Generate" -msgstr "" +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222 +#: ../../godmode/reporting/reporting_builder.main.php:226 +msgid "Generate cover page in PDF render" +msgstr "Создать титульную страницу в PDF рендере" -#: ../../enterprise/godmode/reporting/mysql_builder.php:28 -#: ../../enterprise/godmode/reporting/mysql_builder.php:122 -msgid "Custom Mysql template builder" -msgstr "Пользовательские Mysql шаблоны разработчика" +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230 +#: ../../godmode/reporting/reporting_builder.main.php:234 +msgid "Generate index in PDF render" +msgstr "Создать индекс в PDF рендере" -#: ../../enterprise/godmode/reporting/mysql_builder.php:59 -msgid "Create custom SQL" -msgstr "Создать пользовательский SQL" +#: ../../enterprise/godmode/reporting/graph_template_list.php:38 +#: ../../enterprise/godmode/reporting/graph_template_list.php:57 +#: ../../enterprise/godmode/reporting/graph_template_list.php:71 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:83 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:97 +#: ../../godmode/reporting/graph_builder.php:292 +#: ../../godmode/reporting/graph_container.php:61 +#: ../../godmode/reporting/graphs.php:51 ../../godmode/reporting/graphs.php:65 +#: ../../operation/reporting/graph_viewer.php:161 +#: ../../operation/reporting/graph_viewer.php:193 +msgid "Graph list" +msgstr "Графический список" -#: ../../enterprise/godmode/reporting/mysql_builder.php:70 -msgid ": Create new custom" -msgstr ": Cоздать нового пользавателя" +#: ../../enterprise/godmode/reporting/graph_template_list.php:95 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:111 +#: ../../godmode/reporting/create_container.php:188 +#: ../../godmode/reporting/graph_container.php:85 +#: ../../godmode/reporting/graph_container.php:91 +msgid "Graph container" +msgstr "Вместитель графиков" -#: ../../enterprise/godmode/reporting/mysql_builder.php:90 -msgid "Create new custom" -msgstr "" +#: ../../enterprise/godmode/reporting/graph_template_list.php:102 +msgid "Graph template management" +msgstr "Управление шаблоном графика" -#: ../../enterprise/godmode/reporting/mysql_builder.php:125 -msgid "Successfully operation" -msgstr "Успешная операция" +#: ../../enterprise/godmode/reporting/graph_template_list.php:169 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:440 +#: ../../godmode/alerts/alert_list.list.php:55 +msgid "Template name" +msgstr "Название шаблона" -#: ../../enterprise/godmode/reporting/mysql_builder.php:125 -msgid "Could not be operation" -msgstr "Не могут быть операции" +#: ../../enterprise/godmode/reporting/graph_template_list.php:218 +msgid "There are no defined graph templates" +msgstr "Здесь нет определенных шаблонов графика" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:44 -#: ../../include/functions_reports.php:587 +#: ../../enterprise/godmode/reporting/graph_template_list.php:223 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:157 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:610 +#: ../../enterprise/godmode/reporting/visual_console_template.php:242 +msgid "Create template" +msgstr "Создать шаблон" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:43 +msgid "Not created. Blank name" +msgstr "Не создано. Пустое имя" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:78 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:49 +msgid "Graph template editor" +msgstr "Радактор шаблона графика" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:123 +#: ../../godmode/modules/manage_nc_groups.php:94 +#: ../../godmode/netflow/nf_edit_form.php:118 +#: ../../godmode/events/event_edit_filter.php:199 +msgid "Not updated. Blank name" +msgstr "Не обновлено. Имя не заполненно" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:141 +msgid "Template updated successfully" +msgstr "Шаблон обновлен успешно" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:142 +#: ../../include/class/ModuleTemplates.class.php:355 +msgid "Error updating template" +msgstr "Ошибка при обновлении шаблона" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:176 +#: ../../godmode/setup/gis_step_2.php:354 +#: ../../godmode/reporting/visual_console_builder.wizard.php:180 +#: ../../godmode/events/event_responses.editor.php:137 +#: ../../include/functions_visual_map_editor.php:97 +#: ../../include/functions_visual_map_editor.php:668 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:469 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:920 +msgid "Width" +msgstr "Ширина" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:180 +#: ../../godmode/setup/gis_step_2.php:354 +#: ../../godmode/reporting/visual_console_builder.wizard.php:181 +#: ../../godmode/events/event_responses.editor.php:139 +#: ../../include/functions_visual_map_editor.php:673 +msgid "Height" +msgstr "Высота" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:185 +#: ../../godmode/setup/performance.php:526 +#: ../../godmode/reporting/create_container.php:346 +#: ../../include/functions.php:2700 ../../include/functions.php:3365 +#: ../../include/ajax/module.php:200 ../../include/ajax/graph.ajax.php:146 +#: ../../operation/gis_maps/render_view.php:143 +msgid "1 hour" +msgstr "1 час" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:186 +#: ../../operation/gis_maps/render_view.php:144 +msgid "2 hours" +msgstr "2 часа" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:187 +msgid "3 hours" +msgstr "3 часа" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:188 +#: ../../include/ajax/module.php:201 +msgid "6 hours" +msgstr "6 часов" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:189 +#: ../../godmode/setup/performance.php:527 ../../include/ajax/module.php:202 +msgid "12 hours" +msgstr "12 часов" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:190 +#: ../../godmode/reporting/create_container.php:350 +#: ../../include/functions.php:2703 ../../include/ajax/module.php:203 +#: ../../include/ajax/graph.ajax.php:150 +msgid "1 day" +msgstr "1 день" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 +#: ../../godmode/setup/performance.php:529 +msgid "2 days" +msgstr "2 дня" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 +msgid "4 days" +msgstr "4 дня" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:193 +#: ../../godmode/setup/performance.php:531 +msgid "Last week" +msgstr "Прошлая неделя" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:194 +#: ../../godmode/reporting/create_container.php:354 +#: ../../include/functions.php:2705 ../../include/ajax/module.php:205 +#: ../../include/ajax/graph.ajax.php:154 +msgid "15 days" +msgstr "15 дней" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:195 +#: ../../godmode/setup/performance.php:533 +msgid "Last month" +msgstr "Прошлый месяц" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 +msgid "2 months" +msgstr "2 месяца" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:197 +#: ../../include/ajax/module.php:208 +msgid "6 months" +msgstr "6 месяцев" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:198 +#: ../../include/functions.php:2709 ../../include/ajax/module.php:209 +msgid "1 year" +msgstr "1 год" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1660 +#: ../../enterprise/include/functions_reporting_csv.php:460 +#: ../../enterprise/include/functions_reporting_csv.php:463 +#: ../../enterprise/include/functions_reporting_csv.php:743 +#: ../../enterprise/include/functions_reporting_csv.php:826 +#: ../../enterprise/include/functions_reporting_csv.php:858 +#: ../../enterprise/include/functions_reporting_csv.php:918 +#: ../../enterprise/include/functions_reporting_csv.php:1082 +#: ../../enterprise/include/functions_reporting_csv.php:1113 +#: ../../enterprise/include/functions_reporting_csv.php:1168 +#: ../../enterprise/include/functions_reporting_csv.php:1272 +#: ../../enterprise/include/functions_reporting_csv.php:1327 +#: ../../enterprise/include/functions_reporting_csv.php:1393 +#: ../../enterprise/include/functions_reporting_csv.php:1779 +#: ../../godmode/agentes/module_manager_editor_prediction.php:159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1086 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../godmode/reporting/visual_console_builder.wizard.php:262 +#: ../../godmode/reporting/graph_builder.main.php:196 +#: ../../include/functions_visual_map_editor.php:788 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:393 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:631 +msgid "Period" +msgstr "Период" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:207 +msgid "Stacked" +msgstr "Вложенные" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:214 +#: ../../godmode/reporting/graph_builder.main.php:215 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:316 +#: ../../operation/reporting/graph_viewer.php:316 +msgid "Stacked area" +msgstr "Область накопления" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:216 +#: ../../godmode/reporting/graph_builder.main.php:217 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:318 +#: ../../operation/reporting/graph_viewer.php:318 +msgid "Stacked line" +msgstr "График накопления" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 +#: ../../include/functions_reports.php:803 msgid "Top n" msgstr "Верх n" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:49 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:164 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:41 -#: ../../godmode/reporting/reporting_builder.item_editor.php:41 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 +#: ../../enterprise/include/functions_reporting_csv.php:812 +#: ../../include/functions_reports.php:782 +#: ../../include/functions_reporting.php:2539 +msgid "Exception" +msgstr "Исключение" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:55 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 +#: ../../godmode/reporting/reporting_builder.item_editor.php:56 msgid "Only table" msgstr "Только таблица" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:50 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:165 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:42 -#: ../../godmode/reporting/reporting_builder.item_editor.php:42 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:56 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 +#: ../../godmode/reporting/reporting_builder.item_editor.php:57 msgid "Table & Graph" msgstr "Таблица & график" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:43 -#: ../../godmode/reporting/reporting_builder.item_editor.php:43 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:58 msgid "Only graph" msgstr "Только график" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:101 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:85 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:164 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 +#: ../../enterprise/include/functions_reporting.php:78 +msgid "Global" +msgstr "Общий" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:276 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:205 msgid "Elements to apply" msgstr "Элементы для применения" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:149 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1188 -#: ../../godmode/reporting/reporting_builder.item_editor.php:668 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:192 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1637 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1063 +#: ../../include/functions_reports.php:755 msgid "Last value" -msgstr "" +msgstr "Последнее значение" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:151 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:606 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1189 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2940 -#: ../../godmode/reporting/reporting_builder.item_editor.php:669 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2738 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:797 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1639 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4677 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1065 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5964 msgid "" "Warning: period 0 reports cannot be used to show information back in time. " "Information contained in this kind of reports will be always reporting the " "most recent information" msgstr "" +"Внимание: отчеты периода 0 не могут быть использованы для отображения " +"информации в прошлом. Информация, содержащаяся в такого рода отчетах, всегда " +"будет сообщать о самой последней информации" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:189 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:208 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 +#: ../../godmode/reporting/graph_builder.graph_editor.php:349 +#: ../../godmode/reporting/visual_console_builder.wizard.php:428 +msgid "" +"If you select several agents, only the common modules will be displayed" +msgstr "" +"Если вы выбрали несколько агентов, будут отображаться только общие модули" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:250 +#: ../../enterprise/include/functions_reporting_csv.php:942 +#: ../../include/functions_reporting_html.php:4209 msgid "Sum" msgstr "Итого" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:264 -#: ../../include/functions_reporting.php:4234 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:262 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:392 +#: ../../include/functions_reporting.php:8771 msgid "Rate" msgstr "Тариф" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:210 -#: ../../operation/events/events.build_table.php:662 -#: ../../operation/agentes/networkmap_list.php:257 -#: ../../godmode/snmpconsole/snmp_alert.php:1213 -#: ../../godmode/agentes/agent_manager.php:210 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:298 +#: ../../enterprise/include/class/Omnishell.class.php:520 +#: ../../godmode/agentes/agent_manager.php:307 +#: ../../godmode/snmpconsole/snmp_alert.php:1524 +#: ../../include/class/ModuleTemplates.class.php:967 +#: ../../operation/events/events.php:1633 msgid "Delete selected" msgstr "Удалить выбранное" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1496 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1105 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:313 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2174 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2029 msgid "Group by agent" msgstr "Группа по агенту" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:279 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1546 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1172 -msgid "Condition" -msgstr "Условие" +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:325 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2190 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2630 +msgid "Show in the same row" +msgstr "Показать в одном ряду" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:282 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1552 -#: ../../include/functions_reporting.php:1617 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1177 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:326 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2192 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2632 +msgid "Show one module per row with all its operations" +msgstr "Показать один модуль в строке со всеми его операциями" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:338 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2210 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2754 +#: ../../enterprise/operation/log/log_viewer.php:486 +#: ../../godmode/netflow/nf_item_list.php:182 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2043 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2653 +#: ../../include/lib/Dashboard/Widgets/top_n.php:266 +msgid "Order" +msgstr "Порядок" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:343 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:304 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:61 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2213 +#: ../../enterprise/operation/log/log_viewer.php:483 +#: ../../godmode/reporting/reporting_builder.item_editor.php:62 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2046 +#: ../../include/lib/Dashboard/Widgets/top_n.php:261 +msgid "Ascending" +msgstr "По возрастанию" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:345 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:311 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:62 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2220 +#: ../../enterprise/operation/log/log_viewer.php:482 +#: ../../godmode/reporting/reporting_builder.item_editor.php:63 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2053 +#: ../../include/lib/Dashboard/Widgets/top_n.php:260 +msgid "Descending" +msgstr "По убыванию" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:347 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:318 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2227 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2060 +#: ../../include/lib/Dashboard/Widgets/top_n.php:262 +msgid "By agent name" +msgstr "По имени агента" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2072 +#: ../../include/lib/Dashboard/Widgets/top_n.php:248 +msgid "Quantity (n)" +msgstr "Количество (н)" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:367 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2102 +#: ../../include/lib/Dashboard/Widgets/top_n.php:285 +#: ../../operation/agentes/ver_agente.php:1529 +msgid "Display" +msgstr "Отображать" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:422 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2351 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2215 +#: ../../include/functions_reporting.php:2561 msgid "Everything" msgstr "все" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:284 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1554 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:424 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2358 msgid ">=" msgstr ">=" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:286 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1556 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:426 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2365 msgid "<" msgstr "<" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:296 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1567 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1207 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2379 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2223 +#: ../../include/functions_reporting_html.php:2806 +msgid "Not OK" +msgstr "Не ОК" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:347 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2391 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2235 msgid "Show graph" msgstr "Показать график" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:304 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1587 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1228 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:450 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2496 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2337 msgid "Show resume" msgstr "Показать анкету" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:304 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1587 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1228 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:450 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2497 msgid "" "Show a resume table with max, min, average of total modules on the report " "bottom" @@ -16103,155 +19322,716 @@ msgstr "" "Показать анкету-таблицу с максимальным, минимальным и среднем числом от " "общего числа модулей по нижнему отчету" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:49 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:73 -msgid "Graph template editor" -msgstr "Радактор шаблона графика" +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:465 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:784 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:367 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3156 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3008 +msgid "Show item in landscape format (only PDF)" +msgstr "Показать элемент в альбомном формате (только PDF)" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:147 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:205 -#: ../../godmode/reporting/graph_builder.graph_editor.php:84 -#: ../../godmode/reporting/graph_builder.graph_editor.php:152 -msgid "Weight" -msgstr "вес" +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:481 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:800 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:381 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3165 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3017 +msgid "Page break at the end of the item (only PDF)" +msgstr "Разрыв страницы в конце элемента (только PDF)" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:149 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1829 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1893 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1986 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2060 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2330 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2425 -msgid "Exact match" -msgstr "Полное соответствие" +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:117 +msgid "Wizard template" +msgstr "Шаблон Wizard" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:165 -msgid "Decrease Weight" -msgstr "Уменьшить значение" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:90 +msgid "Advance Reporting" +msgstr "Расширенная отчетность" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:168 -msgid "Increase Weight" -msgstr "Повысить значение" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:106 +msgid "Page orientation" +msgstr "Ориентация страницы" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:189 -#: ../../include/functions_visual_map_editor.php:428 -#: ../../include/functions_visual_map_editor.php:436 -msgid "Cancel" -msgstr "Отменить" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 +#: ../../include/functions_visual_map_editor.php:843 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464 +msgid "Vertical" +msgstr "Вертикальная" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:181 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:123 +#: ../../include/functions_visual_map_editor.php:844 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463 +msgid "Horizontal" +msgstr "Горизонтальная" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:112 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:121 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1617 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258 +#: ../../godmode/reporting/reporting_builder.list_items.php:424 +#: ../../godmode/reporting/create_container.php:364 +#: ../../godmode/reporting/create_container.php:473 +#: ../../godmode/reporting/create_container.php:527 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1040 +msgid "Time lapse" +msgstr "Временной интервал" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:299 msgid "Order:" -msgstr "" +msgstr "Порядок:" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:201 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:335 msgid "" "Show a resume table with max, min, average of total modules on the report " "bottom:" msgstr "" +"Показать итоговую таблицу с максимальным, минимальным, средним значением " +"общего количества модулей в нижней части отчета:" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:216 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:355 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2476 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2317 msgid "Show address instead module name" -msgstr "" +msgstr "Показывать адрес вместо имени модуля" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:217 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1575 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1216 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:356 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2477 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2318 msgid "Show the main address of agent." -msgstr "" +msgstr "Показать основной адрес агента." -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:230 -#: ../../mobile/operation/module_graph.php:420 -#: ../../operation/agentes/stat_win.php:367 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1150 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:374 +#: ../../godmode/reporting/graphs.php:103 ../../operation/menu.php:325 +msgid "Custom graphs" +msgstr "Пользовательские графики" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2100 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1923 +#: ../../include/functions_reports.php:797 +msgid "SQL query" +msgstr "Запрос SQL" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:449 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:288 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2820 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2709 +msgid "Failover mode" +msgstr "Режим обхода отказа" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:450 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:289 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2821 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2710 +msgid "" +"SLA calculation must be performed taking into account the failover modules " +"assigned to the primary module" +msgstr "" +"Расчет SLA должен выполняться с учетом модулей обхода отказа, назначенных " +"основному модулю" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:467 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:306 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2840 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2729 +msgid "Failover type" +msgstr "Тип обхода отказа" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:472 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2845 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2734 +msgid "Failover normal" +msgstr "Нормальный обход отказа" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:484 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:323 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2746 +msgid "Failover simple" +msgstr "Простой обход отказа" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:524 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2284 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2133 +msgid "Graph render" +msgstr "Рендеринг графика" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:530 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2290 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2139 +msgid "Avg, max & min" +msgstr "Средн, макс и мин" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:531 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2291 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2140 +msgid "Max only" +msgstr "Только макс" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:532 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2292 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2141 +msgid "Min only" +msgstr "Только мин" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:533 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2293 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2142 +msgid "Avg only" +msgstr "Только среднее" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:544 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2176 +#: ../../mobile/operation/module_graph.php:434 +#: ../../operation/agentes/stat_win.php:349 msgid "Time compare (Overlapped)" msgstr "Время сравнения (Перекрывающееся)" -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:68 -msgid "Advance Reporting" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:560 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2306 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2156 +msgid "Full resolution graph (TIP)" +msgstr "График с полным разрешением (TIP)" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:561 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2307 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2157 +#: ../../operation/agentes/stat_win.php:377 +#: ../../operation/agentes/interface_traffic_graph_win.php:236 +msgid "" +"TIP mode charts do not support average - maximum - minimum series, you can " +"only enable TIP or average, maximum or minimum series" msgstr "" +"Графики в режиме TIP не поддерживают среднюю - максимальную - минимальную " +"серии, вы можете включить только TIP или среднюю, максимальную или " +"минимальную серии." -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:131 -msgid "Available" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:577 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2317 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2191 +#: ../../godmode/reporting/graph_builder.main.php:245 +#: ../../include/functions.php:4114 ../../include/functions.php:4122 +msgid "Percentil" +msgstr "Процент" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:578 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2318 +msgid "" +"If this option was checked, only adding in elements that type of modules " +"support this option." msgstr "" +"Если эта опция отмечена, она возможна только при добавлении модулей данного " +"типа." -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:133 -#: ../../include/functions_graph.php:737 ../../include/functions_graph.php:738 -#: ../../include/functions_graph.php:739 ../../include/functions_graph.php:742 -#: ../../include/graphs/export_data.php:76 -msgid "Selected" -msgstr "" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:592 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2591 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2434 +msgid "Show Summary group" +msgstr "Показать обзор группы" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:140 -msgid "Push the selected services into the list" -msgstr "" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:656 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2660 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2503 +msgid "Event Status" +msgstr "Статус события" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:145 -msgid "Remove the services from the list" -msgstr "" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:682 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2687 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2547 +#: ../../operation/agentes/tactical.php:228 +msgid "Event graphs" +msgstr "Графики событий" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:199 -msgid "Icon preview" -msgstr "" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:686 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2691 +msgid "By agent" +msgstr "По агенту" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:256 -msgid "Are you sure? All the visual map services will be recreated" -msgstr "" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:696 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2701 +msgid "By user validator" +msgstr "По пользовательскому утверждению" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275 -msgid "The services list is empty" -msgstr "" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:706 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2711 +msgid "By criticity" +msgstr "По критичности" -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:97 -msgid "Wizard template" -msgstr "Шаблон Wizard" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:716 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721 +msgid "Validated vs unvalidated" +msgstr "Утвержденные против неутвержденных" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1115 -#: ../../godmode/reporting/reporting_builder.php:1878 -msgid "Successfull action" -msgstr "Успешное действие" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1115 -#: ../../godmode/servers/modificar_server.php:73 -#: ../../godmode/servers/modificar_server.php:85 -#: ../../godmode/reporting/reporting_builder.php:1878 -msgid "Unsuccessfull action" -msgstr "Неудачное действие" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1136 -#: ../../godmode/reporting/reporting_builder.item_editor.php:584 -msgid "Item Editor" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1223 -#: ../../godmode/reporting/reporting_builder.item_editor.php:714 -msgid "Projection period" -msgstr "Прогнозируемый период" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1237 -#: ../../godmode/reporting/reporting_builder.item_editor.php:724 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:735 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1698 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1124 msgid "Data range" msgstr "Диапазон данных" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:216 -#: ../../godmode/reporting/reporting_builder.item_editor.php:735 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:760 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1679 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1105 +msgid "Projection period" +msgstr "Прогнозируемый период" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:771 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2064 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1950 +msgid "Serialized header" +msgstr "Сериализованный заголовок" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:771 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2065 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1951 +msgid "The separator character is |" +msgstr "Разделительный знак - |" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:775 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2132 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1987 +msgid "Field separator" +msgstr "Разделительное поле" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:775 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2133 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1988 +msgid "Separator for different fields in the serialized text chain" +msgstr "Разделитель для различных полей в последовательном цепочке текста" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:779 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2153 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2008 +msgid "Line separator" +msgstr "Разделительная линия" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:779 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2154 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2009 +msgid "" +"Separator in different lines (composed by fields) of the serialized text " +"chain" +msgstr "" +"Разделитель различных линий (состоящих из полей) в последовательную цепочку " +"текста" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3140 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2897 +msgid "Uncompress module" +msgstr "Распаковать модуль" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:818 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2898 +msgid "Use uncompressed module data." +msgstr "Используйте несжатые данные модуля." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:881 +#: ../../enterprise/include/functions_massive.php:54 +#: ../../godmode/massive/massive_delete_action_alerts.php:163 +#: ../../godmode/massive/massive_add_action_alerts.php:157 +#: ../../godmode/massive/massive_edit_modules.php:1910 +#: ../../godmode/reporting/visual_console_builder.php:582 +#: ../../include/functions_visual_map.php:2674 +msgid "No modules selected" +msgstr "Не выбраны модули" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:104 +#: ../../enterprise/include/functions_reporting.php:67 +msgid "Wizard SLA" +msgstr "Мастер SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:128 +#: ../../enterprise/include/functions_reporting.php:2222 +#: ../../include/functions_reports.php:693 +msgid "Monthly S.L.A." +msgstr "Ежемесячный S.L.A." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:129 +#: ../../enterprise/include/functions_reporting.php:3184 +#: ../../include/functions_reports.php:697 +msgid "Weekly S.L.A." +msgstr "Еженедельный S.L.A." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:130 +msgid "hourly S.L.A." +msgstr "Ежечасный S.L.A." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:131 +msgid "Availability Graph S.L.A." +msgstr "График доступности S.L.A." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:134 +#: ../../enterprise/include/functions_reporting.php:5372 +#: ../../include/functions_reports.php:707 +msgid "Services S.L.A." +msgstr "Сервисы S.L.A." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:254 +msgid "SLA min value" +msgstr "SLA мин значение" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:254 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:260 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:266 +msgid "Enter possible range of values in SLA." +msgstr "Введите возможный диапазон значений в SLA." + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:255 +msgid "SLA min Value" +msgstr "SLA мин Значение" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:260 +msgid "SLA max value" +msgstr "SLA макс значение" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:261 +msgid "SLA max Value" +msgstr "SLA макс Значение" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:266 +msgid "SLA Limit %" +msgstr "SLA Лимит %" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:267 +msgid "SLA Limit Value" +msgstr "SLA Лимит Значений" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:272 +msgid "Dynamic SLA" +msgstr "Динамический SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:279 +msgid "Inverse SLA" +msgstr "Инверсный SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2654 +msgid "SLA items sorted by fulfillment value" +msgstr "SLA элементы сортируются по выполнению значения" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:341 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1711 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1137 msgid "Only display wrong SLAs" msgstr "Отображать только неправильные SLAs" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1260 -#: ../../godmode/reporting/reporting_builder.item_editor.php:744 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:353 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2873 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2762 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1358 +#: ../../include/functions_reporting_html.php:4038 +#: ../../include/functions_reporting_html.php:4316 +#: ../../include/functions_reporting_html.php:4453 +#: ../../include/functions_netflow.php:1028 +#: ../../include/lib/Dashboard/Widgets/tactical.php:286 +msgid "Summary" +msgstr "Сводка" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:420 +msgid "Please introduce a SLA max value higher than the SLA min value" +msgstr "" +"Пожалуйста, введите максимальное значение SLA выше, чем минимальное значение " +"SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:544 +msgid "Dynamic SLA can not be Inverse" +msgstr "Динамический SLA не может быть инверсным" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:549 +msgid "Check Dynamic SLA or introduce a max and min SLA value" +msgstr "" +"Проверка динамического SLA или введение максимального и минимального " +"значения SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:553 +msgid "SLA Limit value is needed" +msgstr "Необходимо предельное значение SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:142 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:209 +#: ../../enterprise/include/functions_reporting.php:7593 +#: ../../enterprise/include/functions_reporting.php:7659 +#: ../../godmode/reporting/reporting_builder.php:3198 +#: ../../operation/reporting/reporting_viewer.php:115 +msgid "Item editor" +msgstr "Элемент редактирования" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:153 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:196 +#: ../../godmode/reporting/reporting_builder.php:3194 +#: ../../operation/reporting/reporting_viewer.php:106 +msgid "List items" +msgstr "Список элементов" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:172 +msgid "List templates" +msgstr "Список шаблонов" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:444 +#: ../../godmode/reporting/reporting_builder.php:830 +#: ../../operation/search_reports.php:36 +#: ../../operation/reporting/custom_reporting.php:36 +msgid "HTML" +msgstr "HTML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:445 +#: ../../godmode/reporting/reporting_builder.php:831 +#: ../../operation/search_reports.php:37 +#: ../../operation/reporting/custom_reporting.php:37 +msgid "XML" +msgstr "XML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:446 +#: ../../enterprise/operation/reporting/custom_reporting.php:14 +msgid "PDF" +msgstr "PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:447 +#: ../../enterprise/operation/reporting/custom_reporting.php:16 +msgid "JSON" +msgstr "JSON" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:448 +#: ../../enterprise/operation/reporting/custom_reporting.php:18 +#: ../../extensions/insert_data.php:196 +#: ../../operation/agentes/exportdata.php:378 +msgid "CSV" +msgstr "CSV" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505 +#: ../../godmode/reporting/reporting_builder.php:971 +msgid "HTML view" +msgstr "HTML просмотр" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:513 +#: ../../godmode/reporting/reporting_builder.php:981 +msgid "Export to XML" +msgstr "Экспорт в XML" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:521 +#: ../../enterprise/operation/reporting/custom_reporting.php:64 +#: ../../include/class/Diagnostics.class.php:142 +msgid "Export to PDF" +msgstr "Экспорт в PDF" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:529 +#: ../../enterprise/operation/reporting/custom_reporting.php:72 +msgid "Export to JSON" +msgstr "Экспорт в JSON" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:604 +msgid "You haven't created templates yet." +msgstr "Вы еще не создали шаблоны." + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:624 +msgid "Generate a dynamic report" +msgstr "Создание динамического отчета" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:702 +msgid "Period " +msgstr "Период " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:708 +msgid "Set start and end date" +msgstr "Установите дату начала и окончания" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:721 +#: ../../include/ajax/module.php:250 +#: ../../operation/agentes/datos_agente.php:198 +#: ../../operation/events/events_list.php:869 +msgid "Timestamp from:" +msgstr "Ограничение времени от:" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:739 +#: ../../include/ajax/module.php:270 +#: ../../operation/agentes/datos_agente.php:204 +#: ../../operation/events/events_list.php:872 +msgid "Timestamp to:" +msgstr "Ограничение времени до:" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:758 +msgid "Monthly SLA period" +msgstr "Ежемесячный период SLA" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:758 +msgid "This field only applies in case of Monthly SLA item." +msgstr "Это поле применяется только в случае элемента Ежемесячный SLA." + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:800 +#: ../../enterprise/include/class/Omnishell.class.php:867 +msgid "Add agents" +msgstr "Добавить агентов" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:808 +msgid "Undo agents" +msgstr "Отмена агентов" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:845 +msgid "RegEx agent filter" +msgstr "Фильтр агента RegEx" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:861 +msgid "Generate" +msgstr "Генерировать" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1250 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272 +msgid "Please set agent or agent regex distinct than " +msgstr "Пожалуйста, установите агента или regex агента , отличный от " + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1280 +msgid "No agent matches regular expression " +msgstr "Ни один агент не соответствует регулярному выражению " + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:154 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:208 +#: ../../godmode/reporting/graph_builder.graph_editor.php:215 +#: ../../godmode/reporting/graph_builder.graph_editor.php:387 +#: ../../include/functions.php:3979 +msgid "Weight" +msgstr "вес" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:156 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:210 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3238 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3313 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3469 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3540 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3974 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4119 +#: ../../enterprise/operation/log/log_viewer.php:463 +msgid "Exact match" +msgstr "Полное соответствие" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 +msgid "Decrease Weight" +msgstr "Уменьшить значение" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 +msgid "Increase Weight" +msgstr "Повысить значение" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:131 +#: ../../enterprise/godmode/reporting/visual_console_template.php:145 +msgid "visual console has not been selected" +msgstr "визуальная консоль не выбрана" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:137 +msgid "Error. Error created template" +msgstr "Ошибка. Ошибка при создании шаблона" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:139 +msgid "Successfully created template" +msgstr "Успешно создан шаблон" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:151 +msgid "Error. Error delete template" +msgstr "Ошибка. Ошибка при удалении шаблона" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:153 +msgid "Successfully delete template" +msgstr "Успешное удаление шаблона" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:175 +msgid "Create From" +msgstr "Создать из" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:186 +msgid "There is not any visual console created. Please, create one firstly." +msgstr "" +"Не создано ни одной визуальной консоли. Пожалуйста, сначала создайте ее." + +#: ../../enterprise/godmode/reporting/visual_console_template.php:248 +msgid "Create New Template" +msgstr "Создать новый шаблон" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:53 +#: ../../enterprise/godmode/reporting/mysql_builder.php:161 +msgid "Custom Mysql template builder" +msgstr "Пользовательские Mysql шаблоны разработчика" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:87 +msgid "Create custom SQL" +msgstr "Создать пользовательский SQL" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:98 +msgid ": Create new custom" +msgstr ": Cоздать нового пользавателя" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:116 +msgid "Create new custom" +msgstr "Создать новую персонализацию" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:157 +msgid "List of custom MySQL templates" +msgstr "Список пользовательских шаблонов MySQL" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:164 +msgid "Successfully operation" +msgstr "Успешная операция" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:164 +msgid "Could not be operation" +msgstr "Не могут быть операции" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:166 +msgid "Without changes" +msgstr "Без изменений" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:166 +#: ../../operation/users/user_edit.php:212 +msgid "No changes have been made" +msgstr "Никаких изменений не было сделано" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:184 +#: ../../enterprise/include/functions_reporting_csv.php:996 +#: ../../include/functions_reporting.php:5988 +msgid "SQL" +msgstr "SQL" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1526 +#: ../../godmode/reporting/reporting_builder.php:3285 +msgid "Successfull action" +msgstr "Успешное действие" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1527 +#: ../../godmode/servers/modificar_server.php:155 +#: ../../godmode/servers/modificar_server.php:166 +msgid "Unsuccessfull action" +msgstr "Неудачное действие" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1544 +#: ../../godmode/reporting/reporting_builder.item_editor.php:845 +msgid "Item Editor" +msgstr "Редактор элементов" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1725 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1151 +msgid "Current month" +msgstr "Текущий месяц" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1735 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1167 msgid "Working time" msgstr "Рабочее время" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1336 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1338 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1079 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1836 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1269 +msgid "Show 24x7 item" +msgstr "Показывать элементы 24/7" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1866 msgid "Select server" msgstr "Выбрать сервер" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1395 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1880 +#: ../../godmode/reporting/reporting_builder.item_editor.php:167 +msgid "Local metaconsole" +msgstr "Локальная метаконсоль" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1927 +#: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" "Case insensitive regular expression for agent name. For example: Network.* " "will match with the following agent names: network_agent1, NetworK CHECKS" @@ -16260,9 +20040,9 @@ msgstr "" "Network.* будет соответствовать следующим именам агента: network_agent1, " "NetworK ПРОВЕРКИ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1409 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1939 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2110 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1951 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3366 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3598 msgid "" "Case insensitive regular expression or string for module name. For example: " "if you use this field with \"Module exact match\" enabled then this field " @@ -16276,166 +20056,220 @@ msgstr "" "модуля, если вы не можете использовать регулярные выражения. Пример: " ".*usage.* будет соответствовать: cpu_usage, vram usage in matchine 1." -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1422 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1973 msgid "Module exact match" msgstr "Модуль точного совпадения" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1422 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1876 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1941 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2039 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2114 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1974 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3298 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3374 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3522 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3605 msgid "Check it if you want to match module name literally" msgstr "" "Проверьте это, если вы хотите, чтобы имя модуля состветствовало буквально" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1462 -msgid "Query SQL" -msgstr "Таблица SQL" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1989 +msgid "Hide items without data" +msgstr "Скрыть элементы без данных" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1467 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1088 -msgid "Serialized header" -msgstr "Сериализованный заголовок" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1990 +msgid "Check it if you want not show items without data" +msgstr "Установите флажок, если вы хотите не показывать элементы без данных" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1467 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1088 -msgid "The separator character is |" -msgstr "Разделительный знак - |" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2003 +#: ../../godmode/reporting/create_container.php:480 +#: ../../godmode/reporting/create_container.php:624 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1791 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.elements.php:524 +#: ../../include/functions_visual_map_editor.php:397 +#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:617 +#: ../../include/functions_reports.php:558 +#: ../../include/functions_reports.php:645 +#: ../../include/functions_reports.php:651 +#: ../../include/functions_reporting.php:8868 +msgid "Custom graph" +msgstr "Пользовательский график" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1472 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1058 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2047 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1938 +msgid "Max items" +msgstr "Макс кол-во элементов" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2080 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1903 msgid "Custom SQL template" msgstr "Пользовательский SQL шаблон" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1477 -msgid "SQL preview" -msgstr "Просмотр SQL" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2101 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1924 +msgid "The entities of the fields that contain them must be included." +msgstr "Сущности полей, которые их содержат, должны быть включены." -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1488 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1097 -msgid "Field separator" -msgstr "Разделительное поле" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2115 +#: ../../enterprise/include/functions_reporting_csv.php:2267 +#: ../../enterprise/include/functions_reporting_csv.php:2281 +#: ../../extensions/api_checker.php:222 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1970 +#: ../../godmode/events/event_responses.editor.php:154 +#: ../../godmode/events/event_responses.editor.php:162 +#: ../../operation/gis_maps/ajax.php:316 +msgid "URL" +msgstr "Ссылка (URL)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1488 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1097 -msgid "Separator for different fields in the serialized text chain" -msgstr "Разделитель для различных полей в последовательном цепочке текста" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2126 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1981 +msgid "Protocol must be specified in URL (e.g.: \"https://\")" +msgstr "Протокол должен быть указан в URL (например: \"https://\")." -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1492 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1101 -msgid "Line separator" -msgstr "Разделительная линия" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2271 +#: ../../enterprise/include/functions_reporting_csv.php:942 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2119 +#: ../../include/functions_reporting_html.php:4206 +#: ../../include/functions_reporting.php:1477 +msgid "Avg" +msgstr "Средн." -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1492 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1101 -msgid "" -"Separator in different lines (composed by fields) of the serialized text " -"chain" -msgstr "" -"Разделитель различных линий (состоящих из полей) в последовательную цепочку " -"текста" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2405 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2249 +msgid "Select fields to show" +msgstr "Выберите поля для показа" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1538 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1159 -msgid "Only average" -msgstr "" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2413 +#: ../../enterprise/include/functions_reporting_csv.php:471 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2257 +#: ../../include/functions_reporting_html.php:3375 +msgid "Total time" +msgstr "Общее время" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1574 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 -msgid "Show address instead module name." -msgstr "" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2421 +#: ../../enterprise/include/functions_reporting_csv.php:475 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2265 +#: ../../include/functions_reporting_html.php:3381 +msgid "Time failed" +msgstr "Время: Неудача" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1596 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1237 -msgid "Event filter" -msgstr "Фильтр событий" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2429 +#: ../../enterprise/include/functions_reporting_csv.php:479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2273 +msgid "Time in OK status" +msgstr "Время: статус ОК" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1599 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1240 -msgid "No Validated" -msgstr "Не утверждено" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2437 +#: ../../enterprise/include/functions_reporting_csv.php:483 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2281 +msgid "Time in unknown status" +msgstr "Время: неизвестный статус" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1601 -#: ../../include/functions_graph.php:2607 -#: ../../include/functions_events.php:880 -#: ../../include/functions_events.php:1716 -#: ../../include/functions_events.php:1722 -#: ../../include/functions_events.php:1726 -#: ../../include/functions_events.php:1731 -#: ../../include/functions_events.php:2918 -#: ../../include/functions_events.php:2926 -#: ../../operation/snmpconsole/snmp_view.php:398 -#: ../../operation/snmpconsole/snmp_view.php:562 -#: ../../operation/snmpconsole/snmp_view.php:813 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1242 -msgid "Validated" -msgstr "Проверено" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449 +#: ../../enterprise/include/functions_reporting_csv.php:487 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2293 +msgid "Time of not initialized module" +msgstr "Время не инициализированного модуля" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1612 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1253 -msgid "Event graphs" -msgstr "Графики событий" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2461 +#: ../../enterprise/include/functions_reporting_csv.php:491 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2305 +msgid "Time of downtime" +msgstr "Время остановки" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1615 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1257 -msgid "By agent" -msgstr "По агенту" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2515 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2357 +msgid "<p class= \"mrgn_lft_15px\">Select fields to show</p>" +msgstr "<p class=\"mrgn_lft_15px\">Выберите поля для показа</p>" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1617 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1263 -msgid "By user validator" -msgstr "По пользовательскому утверждению" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2523 +#: ../../enterprise/include/functions_reporting_csv.php:499 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2365 +#: ../../include/functions_reporting_html.php:3461 +msgid "Total checks" +msgstr "Общие проверки" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1619 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1269 -msgid "By criticity" -msgstr "По критичности" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2531 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2373 +#: ../../include/functions_reporting_html.php:3467 +msgid "Checks failed" +msgstr "Проверки не удались" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1621 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1275 -msgid "Validated vs unvalidated" -msgstr "Утвержденные против неутвержденных" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2539 +#: ../../enterprise/include/functions_reporting_csv.php:507 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2381 +msgid "Checks in OK status" +msgstr "Проверки в статусе ОК" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1628 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1283 -msgid "Show in two columns" -msgstr "Показать в двух колонках" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2551 +#: ../../enterprise/include/functions_reporting_csv.php:511 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2393 +msgid "Unknown checks" +msgstr "Неизвестные проверки" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1634 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1289 -msgid "SLA items sorted by fulfillment value" -msgstr "SLA элементы сортируются по выполнению значения" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2563 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2405 +msgid "<p class=\"mrgn_lft_15px\">Select fields to show</p>" +msgstr "<p class=\"mrgn_lft_15px\">Выберите поля для показа</p>" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1639 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1294 -msgid "Show in landscape" -msgstr "Показать в ландшафте" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2571 +#: ../../enterprise/include/functions_reporting_csv.php:619 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2413 +#: ../../include/functions_reporting_html.php:3754 +msgid "Agent max value" +msgstr "Макс значение агента" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1652 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2579 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2421 +msgid "Agent min values" +msgstr "Мин значения агента" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2735 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2611 +msgid "Height (dynamic graphs)" +msgstr "Высота (динамические графики)" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2595 +msgid "Query History Database" +msgstr "Запросы исторической базы данных" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2787 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2676 +msgid "Priority mode" +msgstr "Режим приоритета" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2792 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2681 +msgid "Priority ok mode" +msgstr "Режим приоритета ОК" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2804 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2693 +msgid "Priority unknown mode" +msgstr "Неизвестный режим приоритета" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2894 msgid "Modules to match" msgstr "Модули для сравнения" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1654 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2896 msgid "Select the modules to match when create a report for agents" msgstr "Выберите модули для сравнения при создании отчета для агентов" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1735 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 msgid "Modules to match (Free text)" msgstr "Модули для сравнения (Свободный текст)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1737 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2998 msgid "Free text to filter the modules of agents when apply this template." msgstr "" "Свободный текст для фильтрации модулей агентов, когда применяется этот " "шаблон." -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1751 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3015 msgid "Create a graph for each agent" msgstr "Создайте график для этого агента" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1753 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3017 msgid "" "If it is checked, the regexp or name of modules match only each to each to " "agent, instead create a big graph with all modules from all agents." @@ -16444,48 +20278,82 @@ msgstr "" "только друг другу с агентом, вместо создания большого графика со всеми " "модулями из всех агентов." -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1791 -#: ../../godmode/netflow/nf_item_list.php:260 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1322 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3044 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2801 +msgid "Calculate for custom intervals" +msgstr "Расчет для пользовательских интервалов" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3056 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2813 +msgid "Time lapse intervals" +msgstr "Интервалы между промежутками времени" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3058 +msgid "" +"Lapses of time in which the period is divided to make more precise " +"calculations" +msgstr "" +"Промежутки времени, на которые делится период, для того, чтобы сделать " +"расчеты более точными" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3103 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2858 +msgid "Table only" +msgstr "Только таблица" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3113 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2869 +msgid "Graph only" +msgstr "Только график" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3123 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2880 +msgid "Graph and table" +msgstr "График и таблица" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3185 +#: ../../godmode/netflow/nf_item_list.php:291 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3032 msgid "Create item" msgstr "Создать элемент" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1796 -#: ../../include/functions_visual_map_editor.php:587 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1325 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3194 +#: ../../extensions/agents_modules.php:422 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3039 +#: ../../include/functions_visual_map_editor.php:1421 msgid "Update item" msgstr "Обновить элемент" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1830 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1356 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3243 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3126 msgid "SLA Min. (value)" msgstr "SLA Мин. (значение)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1831 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1357 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3248 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3131 msgid "SLA Max. (value)" msgstr "SLA Макс. (значение)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1832 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1358 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3253 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3136 msgid "SLA Limit (%)" msgstr "SLA ограничения (%)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1841 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3270 msgid "Please save the SLA template for start to add items in this list." msgstr "" "Пожалуйста, сохраните SLA шаблон для начала добавления элементов в этот " "список." -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1890 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2057 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2333 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2428 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3311 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3538 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3983 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4128 msgid "Not literally" msgstr "Не буквально" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1934 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2104 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3357 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3589 msgid "" "Case insensitive regular expression for agent name. For example: Network* " "will match with the following agent names: network_agent1, NetworK CHECKS" @@ -16493,1780 +20361,9252 @@ msgstr "" "Без учета регистра регулярное выражение для имени агента. Например: Network* " "будет совпадать со следующими именами агента: network_agent1, NetworK CHECKS" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2001 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3373 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3604 +msgid "Literal module name forced" +msgstr "Принудительная работа дословного имени модуля" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3664 +#: ../../godmode/reporting/create_container.php:418 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1489 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3350 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3479 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3751 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3785 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3839 +#: ../../include/functions_html.php:4926 +msgid "Select an Agent first" +msgstr "Выбрать Первого Агента" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3494 msgid "Please save the template to start adding items into the list." msgstr "" "Пожалуйста, сохраните шаблон, чтобы начать добавление элементов в список." -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198 -msgid "SLA min value" -msgstr "SLA мин значение" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4009 +msgid "Name and SLA limit should not be empty" +msgstr "Имя и предел SLA не должны быть пустыми" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:199 -msgid "SLA min Value" -msgstr "SLA мин Значение" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:87 +#: ../../godmode/modules/module_list.php:57 +#: ../../godmode/groups/configure_group.php:139 +#: ../../godmode/groups/group_list.php:796 +#: ../../godmode/setup/os.builder.php:37 +#: ../../godmode/reporting/visual_console_builder.elements.php:283 +#: ../../include/functions_visual_map_editor.php:68 +#: ../../include/functions_visual_map_editor.php:1395 +#: ../../include/functions_visual_map.php:4245 +#: ../../include/rest-api/models/VisualConsole/Item.php:2095 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:384 +#: ../../include/lib/Dashboard/Widgets/module_status.php:374 +#: ../../operation/visual_console/view.php:317 +msgid "Icon" +msgstr "Значок" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:202 -msgid "SLA max value" -msgstr "SLA макс значение" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:123 +#: ../../enterprise/include/functions_ipam.php:1430 +msgid "Available" +msgstr "Доступно" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:203 -msgid "SLA max Value" -msgstr "SLA макс Значение" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:125 +#: ../../include/graphs/export_data.php:101 +msgid "Selected" +msgstr "Выбрано" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:206 -msgid "SLA Limit %" -msgstr "SLA Лимит %" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:135 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 +msgid "Push the selected services into the list" +msgstr "Вставьте выбранные услуги в список" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 -msgid "SLA Limit Value" -msgstr "SLA Лимит Значений" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:146 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:147 +msgid "Remove the services from the list" +msgstr "Удалите сервисы из списка" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:120 -#: ../../godmode/events/event_edit_filter.php:151 -#: ../../godmode/netflow/nf_edit_form.php:110 -#: ../../godmode/modules/manage_nc_groups.php:83 -msgid "Not updated. Blank name" -msgstr "Не обновлено. Имя не заполненно" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:203 +msgid "Icon preview" +msgstr "Предварительный просмотр иконок" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:136 -msgid "Template updated successfully" -msgstr "Шаблон обновлен успешно" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:269 +msgid "The services list is empty" +msgstr "Список сервисов пуст" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:137 -msgid "Error updating template" -msgstr "Ошибка при обновлении шаблона" +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 +msgid "Advance Options" +msgstr "Дополнительные опции" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:172 -#: ../../include/functions_visual_map_editor.php:84 -#: ../../include/functions_visual_map_editor.php:353 -#: ../../godmode/events/event_responses.editor.php:104 -#: ../../godmode/setup/gis_step_2.php:257 -#: ../../godmode/reporting/graph_builder.main.php:125 -#: ../../godmode/reporting/visual_console_builder.wizard.php:134 -msgid "Width" -msgstr "Ширина" +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:378 +#: ../../godmode/reporting/reporting_builder.list_items.php:397 +#: ../../godmode/reporting/reporting_builder.list_items.php:416 +msgid "Ascendent" +msgstr "Восходящий" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:176 -#: ../../godmode/events/event_responses.editor.php:106 -#: ../../godmode/setup/gis_step_2.php:259 -#: ../../godmode/reporting/graph_builder.main.php:129 -#: ../../godmode/reporting/visual_console_builder.wizard.php:137 -msgid "Height" -msgstr "Высота" +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +#: ../../godmode/reporting/reporting_builder.list_items.php:404 +#: ../../godmode/reporting/reporting_builder.list_items.php:420 +msgid "Descent" +msgstr "Нисходящий" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:183 -msgid "3 hours" -msgstr "3 часа" +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259 +#: ../../godmode/reporting/reporting_builder.list_items.php:425 +msgid "Name or Description" +msgstr "Имя или Описание" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:188 -msgid "4 days" -msgstr "4 дня" +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312 +#: ../../godmode/netflow/nf_item_list.php:237 +#: ../../godmode/netflow/nf_item_list.php:239 +msgid "Move to up" +msgstr "Переместить вверх" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:189 -#: ../../include/functions_netflow.php:1057 -#: ../../godmode/setup/performance.php:90 -msgid "Last week" -msgstr "Прошлая неделя" +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325 +#: ../../godmode/netflow/nf_item_list.php:235 +#: ../../godmode/netflow/nf_item_list.php:240 +msgid "Move to down" +msgstr "Переместить вниз" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 -#: ../../include/functions_netflow.php:1058 -#: ../../godmode/setup/performance.php:92 -msgid "Last month" -msgstr "Прошлый месяц" +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 +#: ../../godmode/reporting/reporting_builder.list_items.php:445 +#: ../../include/functions_graph.php:1505 +msgid "No items." +msgstr "Нет элементов." -#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 -#: ../../include/functions_netflow.php:1059 -msgid "2 months" -msgstr "2 месяца" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:420 +#: ../../enterprise/include/class/VMware.app.php:242 +#: ../../enterprise/include/class/DB2.app.php:187 +#: ../../enterprise/include/class/SAP.app.php:175 +#: ../../enterprise/include/class/Aws.cloud.php:900 +#: ../../enterprise/include/class/MySQL.app.php:196 +#: ../../enterprise/include/class/Google.cloud.php:423 +#: ../../enterprise/include/class/Oracle.app.php:188 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:187 +#: ../../godmode/wizards/HostDevices.class.php:412 +#: ../../include/class/CustomNetScan.class.php:158 +msgid "You have no access to edit this task." +msgstr "У вас нет доступа к редактированию этого задания." -#: ../../enterprise/godmode/reporting/graph_template_editor.php:193 -#: ../../include/functions_netflow.php:1061 ../../include/ajax/module.php:127 -msgid "6 months" -msgstr "6 месяцев" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:178 +msgid "Command Mysqldump not found." +msgstr "Команда Mysqldump не найдена." -#: ../../enterprise/godmode/reporting/graph_template_editor.php:194 -#: ../../include/functions.php:1994 ../../include/ajax/module.php:128 -msgid "1 year" -msgstr "1 год" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:224 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:237 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:286 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:305 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:385 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:402 +msgid "Failed to create task" +msgstr "Не удалось создать задание" -#: ../../enterprise/godmode/policies/policy_linking.php:26 -msgid "Linking modules" -msgstr "Соединение модулей" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:292 +msgid "No template selected" +msgstr "Не выбран шаблон" -#: ../../enterprise/godmode/policies/policy_linking.php:32 -#: ../../enterprise/godmode/policies/policies.php:191 -#: ../../enterprise/godmode/policies/policy_collections.php:37 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:53 -#: ../../enterprise/godmode/policies/policy_agents.php:80 -#: ../../enterprise/godmode/policies/policy_modules.php:420 -#: ../../enterprise/godmode/policies/policy_alerts.php:60 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:52 -#: ../../godmode/agentes/module_manager_editor.php:340 -msgid "This policy is applying and cannot be modified" -msgstr "Эта установка применяется и не может быть изменена" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:411 +msgid "I do not know what you want to do" +msgstr "Я не знаю, что вы хотите сделать" -#: ../../enterprise/godmode/policies/policy_linking.php:53 -msgid "Error: Update linking modules to policy" -msgstr "Ошибка: Обновление модулей соединения с политикой" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:428 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:607 +msgid "You have no access to manage console tasks." +msgstr "У вас нет доступа к управлению задачами консоли." -#: ../../enterprise/godmode/policies/policy_linking.php:56 -msgid "Success: Update linking modules to policy" -msgstr "Успех: Обновление модулей соединения с политикой" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:442 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:513 +msgid "Create new console task" +msgstr "Создание новой задачи консоли" -#: ../../enterprise/godmode/policies/policy_linking.php:66 -msgid "Free text for filter (*)" -msgstr "Свободный текст для фильтра (*)" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:465 +#: ../../enterprise/include/class/Azure.cloud.php:689 +#: ../../enterprise/include/class/VMware.app.php:441 +#: ../../enterprise/include/class/Omnishell.class.php:630 +#: ../../enterprise/include/class/Omnishell.class.php:980 +#: ../../enterprise/include/class/Omnishell.class.php:1349 +#: ../../enterprise/include/class/DB2.app.php:354 +#: ../../enterprise/include/class/SAP.app.php:401 +#: ../../enterprise/include/class/Aws.cloud.php:1119 +#: ../../enterprise/include/class/MySQL.app.php:371 +#: ../../enterprise/include/class/Google.cloud.php:686 +#: ../../enterprise/include/class/Oracle.app.php:355 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:350 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:274 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:328 +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:749 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349 +#: ../../godmode/modules/manage_network_components_form.php:360 +#: ../../godmode/wizards/HostDevices.class.php:648 +#: ../../godmode/wizards/HostDevices.class.php:747 +#: ../../godmode/wizards/Wizard.main.php:416 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:176 +#: ../../include/class/CustomNetScan.class.php:314 +#: ../../include/class/CustomNetScan.class.php:422 +#: ../../include/class/HTML.class.php:419 +msgid "Go back" +msgstr "Вернуться назад" -#: ../../enterprise/godmode/policies/policy_linking.php:67 -msgid "Free text for filter" -msgstr "Свободный текст для фильтра" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:485 +msgid "Updating console task" +msgstr "Обновление задачи консоли" -#: ../../enterprise/godmode/policies/policy_linking.php:110 -msgid "List of modules unlinked" -msgstr "Список несвязанных модулей" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:510 +#: ../../godmode/menu.php:33 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 +msgid "Task list" +msgstr "Список задач" -#: ../../enterprise/godmode/policies/policy_linking.php:137 -#: ../../godmode/setup/links.php:109 -msgid "Link" -msgstr "Ссылка" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:515 +msgid "Update console task" +msgstr "Обновить задачу консоли" -#: ../../enterprise/godmode/policies/policy_linking.php:143 -msgid "There are no defined modules unlinked" -msgstr "" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:643 +msgid "Next Execution" +msgstr "Следующее осуществление" -#: ../../enterprise/godmode/policies/policies.php:114 -msgid "Policy name already exists" -msgstr "" +#: ../../enterprise/godmode/wizards/Cloud.class.php:182 +#: ../../enterprise/godmode/wizards/Applications.class.php:156 +#: ../../enterprise/include/class/Azure.cloud.php:190 +#: ../../enterprise/include/class/DeploymentCenter.class.php:590 +#: ../../enterprise/include/class/Aws.cloud.php:152 +#: ../../enterprise/include/class/Google.cloud.php:184 +#: ../../godmode/menu.php:62 ../../godmode/wizards/HostDevices.class.php:190 +#: ../../godmode/servers/discovery.php:59 +msgid "Discovery" +msgstr "Discovery" -#: ../../enterprise/godmode/policies/policies.php:170 -msgid "Policies Management" -msgstr "Политика Управления" - -#: ../../enterprise/godmode/policies/policies.php:186 -msgid "All policy agents added to delete queue" -msgstr "Все агенты политики добавлены к удаленной очереди" - -#: ../../enterprise/godmode/policies/policies.php:187 -msgid "Policy agents cannot be added to the delete queue" -msgstr "Агенты политики не могут быть добавлены к удаленной очереди" - -#: ../../enterprise/godmode/policies/policies.php:233 -#: ../../operation/agentes/estado_agente.php:171 -#: ../../godmode/agentes/modificar_agente.php:155 -msgid "Recursion" -msgstr "Рекурсия" - -#: ../../enterprise/godmode/policies/policies.php:237 -msgid "a" -msgstr "a" - -#: ../../enterprise/godmode/policies/policies.php:310 -msgid "Policy updated" -msgstr "Политика обновлена" - -#: ../../enterprise/godmode/policies/policies.php:314 -msgid "Pending update policy only database" -msgstr "Режим ожидания принципов обновления только в базе данных" - -#: ../../enterprise/godmode/policies/policies.php:318 -msgid "Pending update policy" -msgstr "Режим ожидания принципов обновления" - -#: ../../enterprise/godmode/policies/policies.php:395 -msgid "A policy with agents cannot be deleted. Purge it first" -msgstr "Политика с агентами не может быть удалена. Очистить ее первой" - -#: ../../enterprise/godmode/policies/policies.php:401 -msgid "Deleting all policy agents" -msgstr "Удаление всех агентов политики" - -#: ../../enterprise/godmode/policies/policies.php:404 -msgid "All the policy agents will be deleted" -msgstr "Все агенты политики будут удалены" - -#: ../../enterprise/godmode/policies/policies.php:408 -msgid "Delete all agents" -msgstr "Удалить все агенты политики" - -#: ../../enterprise/godmode/policies/configure_policy.php:43 -msgid "Add policy" -msgstr "Добавить политику" - -#: ../../enterprise/godmode/policies/policy_collections.php:68 +#: ../../enterprise/godmode/wizards/Cloud.class.php:210 +#: ../../enterprise/godmode/wizards/Applications.class.php:185 msgid "" -"Successfully added to delete the collection. Will be deleted in the next " -"policy application." +"All company names used here are for identification purposes only. Use of " +"these names, logos, and brands does not imply endorsement." msgstr "" -"Успешно добавлено к удаленной коллекции. Будут удалены из следующего " -"приложения политики." +"Все названия компаний, используемые здесь, предназначены только для " +"идентификации. Использование этих названий, логотипов и брендов не " +"подразумевает их покровительство." -#: ../../enterprise/godmode/policies/policy_collections.php:73 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:100 -#: ../../enterprise/godmode/policies/policy_plugins.php:42 -#: ../../enterprise/godmode/policies/policy_agents.php:95 -#: ../../enterprise/godmode/policies/policy_modules.php:924 -#: ../../enterprise/godmode/policies/policy_alerts.php:169 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:100 -msgid "Successfully reverted deletion" -msgstr "Успешное восстановление удаленного" +#: ../../enterprise/godmode/wizards/Cloud.class.php:240 +#: ../../enterprise/godmode/wizards/Cloud.class.php:248 +#, php-format +msgid "%s credentials" +msgstr "%s учетные данные" -#: ../../enterprise/godmode/policies/policy_collections.php:74 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:103 -#: ../../enterprise/godmode/policies/policy_plugins.php:43 -#: ../../enterprise/godmode/policies/policy_agents.php:96 -#: ../../enterprise/godmode/policies/policy_modules.php:925 -#: ../../enterprise/godmode/policies/policy_alerts.php:170 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:101 -msgid "Could not be reverted" -msgstr "Не может быть востановлено" +#: ../../enterprise/godmode/wizards/Cloud.class.php:276 +msgid "Manage accounts" +msgstr "Управление аккаунтами" -#: ../../enterprise/godmode/policies/policy_queue.php:101 -msgid "Operations successfully deleted from the queue" -msgstr "Операции успешно удалены из очереди" +#: ../../enterprise/godmode/wizards/Cloud.class.php:288 +msgid "Cloud tool full path" +msgstr "Полный путь к облачному инструменту" -#: ../../enterprise/godmode/policies/policy_queue.php:102 -msgid "Operations cannot be deleted from the queue" -msgstr "Операции не могут быть удалены из очереди" +#: ../../enterprise/godmode/wizards/Cloud.class.php:296 +msgid "Account" +msgstr "Аккаунт" -#: ../../enterprise/godmode/policies/policy_queue.php:160 -msgid "Update pending" -msgstr "Обновить режим ожидания" +#: ../../enterprise/godmode/wizards/Cloud.class.php:357 +msgid "Select a set of credentials from the list" +msgstr "Выберите набор учетных данных из списка" -#: ../../enterprise/godmode/policies/policy_queue.php:162 -msgid "Update pending agents" -msgstr "Обновить агенты в режиме ожидания" +#: ../../enterprise/godmode/wizards/Cloud.class.php:370 +#, php-format +msgid "Path %s is not executable." +msgstr "Путь %s не является исполняемым." -#: ../../enterprise/godmode/policies/policy_queue.php:176 -#: ../../enterprise/godmode/policies/policy_agents.php:428 -msgid "Add to apply queue" -msgstr "Добавить к примененной очереди" +#: ../../enterprise/godmode/wizards/Cloud.class.php:415 +msgid "Account disconnected" +msgstr "Аккаунт отключен" -#: ../../enterprise/godmode/policies/policy_queue.php:180 -msgid "Add to apply queue only for database" -msgstr "Добавить применение очереди только для базы данных" +#: ../../enterprise/godmode/wizards/Cloud.class.php:417 +msgid "Failed disconnecting account" +msgstr "Не удалось отключить аккаунт" -#: ../../enterprise/godmode/policies/policy_queue.php:186 -msgid "Link pending modules" -msgstr "Ссылка модулей ожидания" +#: ../../enterprise/godmode/wizards/Cloud.class.php:495 +msgid "Credentials successfully updated" +msgstr "Учетные данные успешно обновлены" -#: ../../enterprise/godmode/policies/policy_queue.php:192 -msgid "Will be linked in the next policy application" -msgstr "Будет связано в следующем приложении политики" +#: ../../enterprise/godmode/wizards/Cloud.class.php:497 +msgid "Failed updating credentials process" +msgstr "Не удалось обновить учетные данные" -#: ../../enterprise/godmode/policies/policy_queue.php:195 -msgid "Unlink pending modules" -msgstr "Несвязанные модули ожидания" +#: ../../enterprise/godmode/servers/HA_cluster.php:52 +msgid "View nodes" +msgstr "Просмотр узлов" -#: ../../enterprise/godmode/policies/policy_queue.php:201 -msgid "Will be unlinked in the next policy application" -msgstr "Будет несвязано в следующем приложении политики" +#: ../../enterprise/godmode/servers/HA_cluster.php:73 +msgid "Manage Pandora DB HA" +msgstr "Управление Pandora DB HA" -#: ../../enterprise/godmode/policies/policy_queue.php:206 -msgid "Delete pending" -msgstr "Удалить ожидание" - -#: ../../enterprise/godmode/policies/policy_queue.php:208 -msgid "Delete pending agents" -msgstr "Удалить агенты режима ожидания" - -#: ../../enterprise/godmode/policies/policy_queue.php:214 -#: ../../enterprise/godmode/policies/policy_queue.php:223 -#: ../../enterprise/godmode/policies/policy_queue.php:232 -#: ../../enterprise/godmode/policies/policy_queue.php:241 -#: ../../enterprise/godmode/policies/policy_queue.php:250 -#: ../../enterprise/godmode/policies/policy_queue.php:259 -#: ../../enterprise/godmode/policies/policy_queue.php:268 -msgid "Will be deleted in the next policy application" -msgstr "Будет удалено в следующем приложении политики" - -#: ../../enterprise/godmode/policies/policy_queue.php:217 -msgid "Delete pending modules" -msgstr "Удалить модули ожидания" - -#: ../../enterprise/godmode/policies/policy_queue.php:226 -msgid "Delete pending inventory modules" -msgstr "Удалять модулей инвентаризации режима ожидания" - -#: ../../enterprise/godmode/policies/policy_queue.php:235 -msgid "Delete pending alerts" -msgstr "Удалить оповещения режима ожидания" - -#: ../../enterprise/godmode/policies/policy_queue.php:244 -msgid "Delete pending external alerts" -msgstr "Удалить внешние оповещения режима ожидания" - -#: ../../enterprise/godmode/policies/policy_queue.php:253 -msgid "Delete pending file collections" -msgstr "Удалить коллекции файлов режима ожидания" - -#: ../../enterprise/godmode/policies/policy_queue.php:262 -msgid "Delete pending plugins" -msgstr "Удалить плагины режима ожидания" - -#: ../../enterprise/godmode/policies/policy_queue.php:274 -msgid "Advices" -msgstr "Советы" - -#: ../../enterprise/godmode/policies/policy_queue.php:277 -msgid "Queue summary" -msgstr "Очередь резюме" - -#: ../../enterprise/godmode/policies/policy_queue.php:277 -#: ../../enterprise/godmode/policies/policy_queue.php:364 -#: ../../operation/snmpconsole/snmp_view.php:444 -#: ../../operation/agentes/alerts_status.php:390 -#: ../../operation/agentes/graphs.php:173 -#: ../../godmode/users/user_list.php:249 -#: ../../godmode/snmpconsole/snmp_alert.php:913 -#: ../../godmode/alerts/alert_list.list.php:156 -msgid "Toggle filter(s)" -msgstr "Переключить фильтр(ы)" - -#: ../../enterprise/godmode/policies/policy_queue.php:364 -msgid "Queue filter" -msgstr "Фильтр очереди" - -#: ../../enterprise/godmode/policies/policy_queue.php:459 -msgid "Empty queue" -msgstr "Пустая очередь" - -#: ../../enterprise/godmode/policies/policy_queue.php:476 -msgid "This operation could take a long time" -msgstr "Эта операция может занять много времени" - -#: ../../enterprise/godmode/policies/policy_queue.php:493 -msgid "Delete all" -msgstr "Удалить всё" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:65 -msgid "Module is not selected" -msgstr "Модуль не выбран" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:93 -#: ../../enterprise/godmode/policies/policy_modules.php:905 -#: ../../enterprise/godmode/policies/policy_modules.php:919 +#: ../../enterprise/godmode/servers/HA_cluster.php:111 msgid "" -"Successfully added to delete pending modules. Will be deleted in the next " -"policy application." +"Make the cluster forget failed operations from history of\n" +" the resource and re-detect its current state. This can be\n" +" useful to purge knowledge of past failures that have since\n" +" been resolved. If a resource id is not specified then all\n" +" resources / stonith devices will be cleaned up. If a node\n" +" is not specified then resources / stonith devices on all\n" +" nodes will be cleaned up" msgstr "" -"Успешно добавлено к удаленным модулям в режиме ожидания. Будут удалены в " -"следующем приложении политики." +"Заставить кластер удалить неудачные операции из истории\n" +" ресурса и заново определить его текущее состояние. Это может быть\n" +" полезным для очистки знаний о прошлых сбоях, которые с тех пор\n" +" были устранены. Если идентификатор ресурса не указан, то все\n" +" ресурсы / устройства stonith будут очищены. Если узел\n" +" не указан, то ресурсы / устройства stonith на всех\n" +" узлах будут очищены" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:186 +#: ../../enterprise/godmode/servers/HA_cluster.php:137 +msgid "Node label" +msgstr "Этикетка узла" + +#: ../../enterprise/godmode/servers/HA_cluster.php:138 +#: ../../enterprise/include/functions_reporting_csv.php:2206 +#: ../../operation/tree.php:206 +msgid "Agent status" +msgstr "Статус агента" + +#: ../../enterprise/godmode/servers/HA_cluster.php:139 +msgid "DB Repl." +msgstr "Репликация Базы Данных" + +#: ../../enterprise/godmode/servers/HA_cluster.php:140 +msgid "DB Status" +msgstr "Статус Базы Данных" + +#: ../../enterprise/godmode/servers/HA_cluster.php:142 +#: ../../extensions/quick_shell.php:170 +#: ../../godmode/agentes/module_manager_editor_network.php:471 +msgid "SSH" +msgstr "Программы SSH" + +#: ../../enterprise/godmode/servers/HA_cluster.php:143 +msgid "DB Role" +msgstr "Роль Базы Данных" + +#: ../../enterprise/godmode/servers/HA_cluster.php:144 +msgid "Cluster Role" +msgstr "Роль Кластера" + +#: ../../enterprise/godmode/servers/HA_cluster.php:146 +msgid "Seconds behind master" +msgstr "Несколько секунд после мастера" + +#: ../../enterprise/godmode/servers/HA_cluster.php:147 +msgid "Virtual IP" +msgstr "Виртуальный IP" + +#: ../../enterprise/godmode/servers/HA_cluster.php:148 +msgid "SQL version" +msgstr "Версия SQL" + +#: ../../enterprise/godmode/servers/HA_cluster.php:149 +msgid "DB version" +msgstr "Версия БД" + +#: ../../enterprise/godmode/servers/HA_cluster.php:151 +msgid "Pending action" +msgstr "Ожидаемое действие" + +#: ../../enterprise/godmode/servers/HA_cluster.php:276 +msgid "Show/ edit node" +msgstr "Показать/редактировать узел" + +#: ../../enterprise/godmode/servers/HA_cluster.php:292 +msgid "Put node into standby status" +msgstr "Перевести узел в статус ожидания" + +#: ../../enterprise/godmode/servers/HA_cluster.php:307 +msgid "Force node resync" +msgstr "Принудительная ресинхронизация узлов" + +#: ../../enterprise/godmode/servers/HA_cluster.php:334 +msgid "Put node into online status" +msgstr "Перевести узел в статус онлайн" + +#: ../../enterprise/godmode/servers/HA_cluster.php:348 +msgid "Show cluster details" +msgstr "Показать подробную информацию о кластере" + +#: ../../enterprise/godmode/servers/HA_cluster.php:366 +msgid "Remove node from this list" +msgstr "Удалить узел из этого списка" + +#: ../../enterprise/godmode/servers/HA_cluster.php:402 +msgid "Register node" +msgstr "Зарегистрировать узел" + +#: ../../enterprise/godmode/servers/HA_cluster.php:440 +msgid "" +"Target node will be erased from this list but not removed from cluster. Do " +"you want to continue?" +msgstr "" +"Целевой узел будет удален из этого списка, но не удален из кластера. Вы " +"хотите продолжить?" + +#: ../../enterprise/godmode/servers/manage_export.php:69 +msgid "Error updating export target" +msgstr "Ошибка при обновлении экспорта задания" + +#: ../../enterprise/godmode/servers/manage_export.php:71 +msgid "Successfully updated export target" +msgstr "Успешно обновлен экспорт задания" + +#: ../../enterprise/godmode/servers/manage_export.php:82 +msgid "Error deleting export target" +msgstr "Ошибка при удалении экспорта задания" + +#: ../../enterprise/godmode/servers/manage_export.php:84 +msgid "" +"Successfully deleted export target. All the linked modules will be " +"automatically unattached" +msgstr "" +"Успешно удалена цель экспорта. Все связанные модули будут автоматически " +"отсоединены" + +#: ../../enterprise/godmode/servers/manage_export.php:107 +msgid "" +"Can't be created export target: User and password must be filled with FTP " +"mode" +msgstr "" +"экспорта задания не может быть создан: пользователь и пароль должны быть " +"заполнены в режиме FTP" + +#: ../../enterprise/godmode/servers/manage_export.php:126 +msgid "There are no defined export targets" +msgstr "Цели экспорта не определены" + +#: ../../enterprise/godmode/servers/manage_export.php:138 +#: ../../enterprise/godmode/servers/manage_export_form.php:91 +msgid "Preffix" +msgstr "Preffix" + +#: ../../enterprise/godmode/servers/manage_export.php:140 +#: ../../enterprise/godmode/servers/manage_export_form.php:99 +#: ../../enterprise/include/functions_ipam.php:1872 +#: ../../enterprise/tools/ipam/ipam_network.php:355 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:274 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254 +#: ../../enterprise/tools/ipam/ipam_excel.php:115 +#: ../../enterprise/tools/ipam/ipam_ajax.php:214 +#: ../../enterprise/tools/ipam/ipam_calculator.php:62 +#: ../../godmode/setup/setup_general.php:647 +#: ../../operation/agentes/ver_agente.php:1109 +msgid "Address" +msgstr "Адрес" + +#: ../../enterprise/godmode/servers/manage_export.php:141 +#: ../../enterprise/godmode/servers/manage_export_form.php:103 +msgid "Transfer mode" +msgstr "Режим передачи" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:35 +msgid "Credential Boxes List" +msgstr "Список ячеек для учетных данных" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:42 +msgid "Credential Boxes" +msgstr "Ячейки для учетных данных" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 +#: ../../enterprise/include/ajax/servers.ajax.php:99 +#: ../../enterprise/include/ajax/servers.ajax.php:157 +#: ../../enterprise/include/ajax/servers.ajax.php:283 +#: ../../enterprise/include/functions_ipam.php:1208 +msgid "Subnet" +msgstr "Подсеть" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293 +#: ../../enterprise/godmode/servers/list_satellite.php:68 +#: ../../enterprise/include/ajax/servers.ajax.php:139 +msgid "No Data" +msgstr "Нет Данных" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:144 +msgid "Error: The conf file of server is not readble." +msgstr "Ошибка: Файл конфигурации сервера не доступен для чтения." + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:148 +msgid "Error: The conf file of server is not writable." +msgstr "Ошибка: Файл конфигурации сервера не доступен для записи." + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:335 +msgid "Delete remote conf server files" +msgstr "Удаление файлов конфигурации удаленного сервера" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:336 +msgid "" +"Delete this conf file implies that server will send back local config to " +"console" +msgstr "" +"Удаление этого файла конфигурации подразумевает, что сервер будет отправлять " +"локальную конфигурацию обратно на консоль" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:373 +#: ../../include/functions_servers.php:561 +#: ../../include/functions_servers.php:1271 +msgid "Data server" +msgstr "Данные сервера" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:388 +#: ../../include/functions_servers.php:574 +#: ../../include/functions_servers.php:1274 +#: ../../include/class/AgentWizard.class.php:1320 +msgid "Network server" +msgstr "Сетевой сервер" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:403 +#: ../../enterprise/include/class/Azure.cloud.php:781 +#: ../../enterprise/include/class/VMware.app.php:579 +#: ../../enterprise/include/class/DB2.app.php:448 +#: ../../enterprise/include/class/Aws.S3.php:412 +#: ../../enterprise/include/class/SAP.app.php:481 +#: ../../enterprise/include/class/Aws.cloud.php:515 +#: ../../enterprise/include/class/Aws.cloud.php:1205 +#: ../../enterprise/include/class/MySQL.app.php:453 +#: ../../enterprise/include/class/Google.cloud.php:769 +#: ../../enterprise/include/class/Oracle.app.php:449 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:444 +#: ../../enterprise/tools/ipam/ipam_editor.php:137 +#: ../../godmode/wizards/HostDevices.class.php:848 +#: ../../include/functions_servers.php:600 +#: ../../include/functions_servers.php:1307 +#: ../../include/class/CustomNetScan.class.php:479 +#: ../../general/first_task/recon_view.php:22 +msgid "Discovery server" +msgstr "Сервер Discovery" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:418 +#: ../../include/functions_servers.php:613 +#: ../../include/functions_servers.php:1286 +#: ../../include/class/AgentWizard.class.php:1301 +msgid "Plugin server" +msgstr "Плагин сервера" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:433 +#: ../../include/functions_menu.php:547 ../../operation/menu.php:119 +msgid "SNMP console" +msgstr "Консоль SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:448 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:833 +#: ../../include/functions_servers.php:626 +msgid "Prediction server" +msgstr "Сервер прогнозирования" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:463 +#: ../../include/functions_servers.php:639 +#: ../../include/functions_servers.php:1292 +#: ../../include/class/AgentWizard.class.php:1311 +msgid "WMI server" +msgstr "WMI сервер" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:479 +#: ../../include/functions_servers.php:678 +#: ../../include/functions_servers.php:1295 +msgid "Web server" +msgstr "Веб сервер" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:494 +#: ../../include/functions_servers.php:665 +#: ../../include/functions_servers.php:1301 +msgid "Inventory server" +msgstr "Сервер инвентаризации" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:509 +#: ../../enterprise/godmode/servers/manage_export_form.php:79 +#: ../../include/functions_servers.php:652 +#: ../../include/functions_servers.php:1298 +msgid "Export server" +msgstr "Экспорт сервера" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:524 +#: ../../include/functions_servers.php:691 +#: ../../include/functions_servers.php:1304 +msgid "Event server" +msgstr "Событие сервера" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:539 +msgid "ICMP server" +msgstr "ICMP-сервер" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:554 +#: ../../include/functions_servers.php:1277 +msgid "SNMP server" +msgstr "SNMP-сервер" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:569 +#: ../../include/functions_servers.php:1313 +msgid "WUX server" +msgstr "WUX-сервер" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:599 +msgid "Network timeout" +msgstr "Время ожидания сети" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:623 +msgid " Seconds" +msgstr " Секунды" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:615 +msgid "Plugin timeout" +msgstr "Время ожидания плагина" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:631 +msgid "SNMP console threads" +msgstr "Консольные потоки SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 +msgid "Network threads" +msgstr "Сетевые потоки" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:663 +msgid "Plugin threads" +msgstr "Потоки плагина" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:679 +msgid "Recon threads" +msgstr "Потоки Recon" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:695 +msgid "Dataserver threads" +msgstr "Потоки Сервера данных" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:711 +msgid "Web threads" +msgstr "Веб-Потоки" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:727 +msgid "SNMP threads" +msgstr "Потоки SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:743 +msgid "ICMP threads" +msgstr "Потоки ICMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:773 +msgid "Autocreate group" +msgstr "Автосоздание группы" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:789 +msgid "Autocreate group force" +msgstr "Принудить автосоздание группы" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:804 +msgid "Autocreate" +msgstr "Автосоздание" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:822 +msgid "Server features" +msgstr "Особенности сервера" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:829 +msgid "Optimization settings" +msgstr "Настройки оптимизации" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:836 +msgid "Other server settings" +msgstr "Другие настройки сервера" + +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 +msgid "Add Credential Box" +msgstr "Добавить ячейку для учетных данных" + +#: ../../enterprise/godmode/servers/manage_export_form.php:125 +msgid "Target directory" +msgstr "Каталог заданий" + +#: ../../enterprise/godmode/servers/manage_export_form.php:129 +#: ../../enterprise/include/class/Azure.cloud.php:823 +#: ../../enterprise/include/class/VMware.app.php:629 +#: ../../enterprise/include/class/Aws.S3.php:584 +#: ../../enterprise/include/class/Aws.cloud.php:559 +msgid "Extra options" +msgstr "Дополнительные параметры" + +#: ../../enterprise/godmode/servers/list_satellite.php:27 +msgid "Satellite Server" +msgstr "Satellite сервер" + +#: ../../enterprise/include/functions_cron.php:174 +#: ../../enterprise/include/functions_cron.php:244 +#: ../../enterprise/include/functions_cron.php:314 +#: ../../enterprise/include/functions_cron.php:358 +msgid "Report to build" +msgstr "Отчет для разработки" + +#: ../../enterprise/include/functions_cron.php:182 +#: ../../enterprise/include/functions_cron.php:228 +#: ../../enterprise/operation/reporting/custom_reporting.php:124 +msgid "Send to emails (separated by comma)" +msgstr "Отправить на электронную почту (через запятую)" + +#: ../../enterprise/include/functions_cron.php:186 +#: ../../enterprise/include/functions_cron.php:232 +#: ../../enterprise/operation/reporting/custom_reporting.php:132 +#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246 +#: ../../operation/messages/message_list.php:184 +#: ../../operation/messages/message_edit.php:313 +msgid "Subject" +msgstr "Тема" + +#: ../../enterprise/include/functions_cron.php:190 +#: ../../enterprise/include/functions_cron.php:236 +#: ../../enterprise/operation/reporting/custom_reporting.php:150 +#: ../../operation/messages/message_edit.php:323 +msgid "Message" +msgstr "Сообщение" + +#: ../../enterprise/include/functions_cron.php:195 +#: ../../enterprise/include/functions_cron.php:263 +msgid "Report Type" +msgstr "Тип отчета" + +#: ../../enterprise/include/functions_cron.php:202 +#: ../../enterprise/include/functions_cron.php:336 +msgid "Template to build" +msgstr "Шаблон для создания" + +#: ../../enterprise/include/functions_cron.php:220 +#: ../../enterprise/include/functions_tasklist.php:280 +#: ../../include/functions_cron.php:564 +msgid "Report per agent" +msgstr "Отчет по каждому агенту" + +#: ../../enterprise/include/functions_cron.php:252 +#: ../../enterprise/include/functions_cron.php:274 +#: ../../enterprise/include/functions_cron.php:359 +msgid "Save to disk into path" +msgstr "Сохранить на диск в пути" + +#: ../../enterprise/include/functions_cron.php:253 +msgid "The apache user should have read-write access on this folder. Ex: " +msgstr "" +"Пользователь apache должен иметь доступ на чтение-запись к этой папке. Ex: " + +#: ../../enterprise/include/functions_cron.php:259 +msgid "File name prefix" +msgstr "Префикс имени файла" + +#: ../../enterprise/include/functions_cron.php:282 +#: ../../enterprise/include/functions_tasklist.php:312 +#: ../../include/functions_cron.php:595 +msgid "Custom script" +msgstr "Пользовательский скрипт" + +#: ../../enterprise/include/functions_cron.php:289 +#: ../../enterprise/include/functions_cron.php:315 +#: ../../enterprise/include/functions_cron.php:337 +msgid "Send to email" +msgstr "Отправить письмо по электронной почте" + +#: ../../enterprise/include/functions_cron.php:298 +msgid "Function name" +msgstr "Название функции" + +#: ../../enterprise/include/functions_cron.php:316 +msgid "Send custom report by email" +msgstr "Отправить пользовательский отчет по электронной почте" + +#: ../../enterprise/include/functions_cron.php:338 +msgid "Send custom report (from template) by email" +msgstr "Отправка пользовательского отчета (из шаблона) по электронной почте" + +#: ../../enterprise/include/functions_cron.php:360 +msgid "Save custom report to disk" +msgstr "Сохранить пользовательский отчет на диск" + +#: ../../enterprise/include/functions_cron.php:380 +msgid "Backup Pandora database" +msgstr "База данных резервных копий Pandora" + +#: ../../enterprise/include/functions_cron.php:400 +msgid "Execute custom script" +msgstr "Выполнение пользовательского сценария" + +#: ../../enterprise/include/functions_cron.php:482 +msgid "Not scheduled" +msgstr "Не запланировано" + +#: ../../enterprise/include/functions_cron.php:483 +#: ../../include/functions_netflow.php:1592 +msgid "Hourly" +msgstr "Ежечасно" + +#: ../../enterprise/include/functions_cron.php:484 +#: ../../godmode/agentes/module_manager_editor_prediction.php:163 +#: ../../include/functions_netflow.php:1593 +msgid "Daily" +msgstr "Ежедневно" + +#: ../../enterprise/include/functions_cron.php:485 +#: ../../godmode/agentes/module_manager_editor_prediction.php:161 +#: ../../godmode/agentes/planned_downtime.editor.php:631 +msgid "Weekly" +msgstr "Еженедельно" + +#: ../../enterprise/include/functions_cron.php:486 +#: ../../godmode/agentes/module_manager_editor_prediction.php:162 +#: ../../godmode/agentes/planned_downtime.editor.php:632 +msgid "Monthly" +msgstr "Ежемесячно" + +#: ../../enterprise/include/functions_cron.php:487 +msgid "Yearly" +msgstr "Ежегодно" + +#: ../../enterprise/include/functions_cron.php:779 +#: ../../enterprise/include/functions_cron.php:803 +#: ../../enterprise/operation/reporting/custom_reporting.php:144 +#: ../../enterprise/operation/reporting/custom_reporting.php:158 +msgid "This is an optional field" +msgstr "Это необязательное поле" + +#: ../../enterprise/include/functions_cron.php:1212 +#: ../../enterprise/include/functions_tasklist.php:224 +#: ../../enterprise/include/functions_tasklist.php:351 +#: ../../extensions/resource_exportation.php:427 +#: ../../include/functions_cron.php:508 ../../include/functions_cron.php:632 +#: ../../include/functions_cron.php:666 +#: ../../include/lib/Dashboard/Widgets/reports.php:307 +#: ../../include/lib/Dashboard/Widgets/reports.php:352 +msgid "Report" +msgstr "Отчёт" + +#: ../../enterprise/include/functions_cron.php:1218 +#: ../../enterprise/include/functions_cron.php:1398 +#: ../../enterprise/include/functions_cron.php:1648 +msgid "Greetings" +msgstr "Доброго времени суток" + +#: ../../enterprise/include/functions_cron.php:1220 +#: ../../enterprise/include/functions_cron.php:1400 +msgid "Attached to this email there's a PDF file of the" +msgstr "В приложении к этому письму Вы найдете PDF-файл" + +#: ../../enterprise/include/functions_cron.php:1221 +#: ../../enterprise/include/functions_cron.php:1401 +msgid "report" +msgstr "отчет" + +#: ../../enterprise/include/functions_cron.php:1224 +#: ../../enterprise/include/functions_cron.php:1404 +#: ../../enterprise/include/functions_cron.php:1652 +#: ../../mobile/include/functions_web.php:84 +#: ../../mobile/include/ui.class.php:321 +msgid "Generated at" +msgstr "Сформировано на" + +#: ../../enterprise/include/functions_cron.php:1226 +#: ../../enterprise/include/functions_cron.php:1406 +#: ../../enterprise/include/functions_cron.php:1654 +msgid "Thanks for your time." +msgstr "Спасибо за Ваше время" + +#: ../../enterprise/include/functions_cron.php:1228 +#: ../../enterprise/include/functions_cron.php:1408 +#: ../../enterprise/include/functions_cron.php:1656 +msgid "Best regards, Pandora FMS" +msgstr "С уважением, Pandora FMS" + +#: ../../enterprise/include/functions_cron.php:1230 +#: ../../enterprise/include/functions_cron.php:1410 +#: ../../enterprise/include/functions_cron.php:1658 +msgid "" +"This is an automatically generated email from Pandora FMS, please do not " +"reply." +msgstr "" +"Это автоматически сгенерированное письмо от Pandora FMS, пожалуйста, не " +"отвечайте на него." + +#: ../../enterprise/include/functions_cron.php:1650 +msgid "Attached to this email there's a CSV file of the logs" +msgstr "В приложении к этому письму находится CSV-файл журналов" + +#: ../../enterprise/include/functions_cron.php:1660 +msgid "logs csv" +msgstr "Журналы csv" + +#: ../../enterprise/include/functions_cron.php:2050 +#: ../../enterprise/include/functions_cron.php:2060 +#: ../../enterprise/include/functions_cron.php:2069 +msgid "Error while executing task: " +msgstr "Ошибка при выполнении задания: " + +#: ../../enterprise/include/functions_tasklist.php:53 +#: ../../include/class/ConsoleSupervisor.php:2339 +msgid "DiscoveryConsoleTasks is not running properly" +msgstr "DiscoveryConsoleTasks не выполняется должным образом" + +#: ../../enterprise/include/functions_tasklist.php:55 +msgid "" +"Discovery relies on a proper setup of cron, the time-based scheduling service" +msgstr "" +"Обнаружение зависит от правильной настройки cron, службы планирования на " +"основе времени" + +#: ../../enterprise/include/functions_tasklist.php:56 +#: ../../include/class/ConsoleSupervisor.php:2342 +msgid "Please, add the following line to your crontab file:" +msgstr "Пожалуйста, добавьте следующую строку в ваш файл crontab:" + +#: ../../enterprise/include/functions_tasklist.php:71 +#: ../../include/class/ConsoleSupervisor.php:2355 +msgid "Last execution" +msgstr "Последнее выполнение" + +#: ../../enterprise/include/functions_tasklist.php:74 +msgid "Please check process is no locked." +msgstr "Пожалуйста, проверьте, не заблокирован ли процесс." + +#: ../../enterprise/include/functions_tasklist.php:158 +#: ../../enterprise/include/functions_tasklist.php:532 +msgid "There are no console task defined yet." +msgstr "Консольная задача еще не определена." + +#: ../../enterprise/include/functions_tasklist.php:171 +#: ../../include/functions_cron.php:458 +msgid "Last run" +msgstr "Последний прогон" + +#: ../../enterprise/include/functions_tasklist.php:201 +#: ../../enterprise/include/functions_tasklist.php:247 +#: ../../enterprise/include/functions_tasklist.php:297 +#: ../../enterprise/include/functions_tasklist.php:327 +#: ../../enterprise/include/functions_tasklist.php:370 +#: ../../enterprise/include/functions_tasklist.php:397 +#: ../../enterprise/include/functions_tasklist.php:422 +#: ../../include/functions_cron.php:482 ../../include/functions_cron.php:523 +#: ../../include/functions_cron.php:577 ../../include/functions_cron.php:606 +#: ../../include/functions_cron.php:645 ../../include/functions_cron.php:681 +#: ../../include/functions_cron.php:708 +msgid "Force run" +msgstr "Принудительное выполнение" + +#: ../../enterprise/include/functions_tasklist.php:226 +#: ../../enterprise/include/functions_tasklist.php:354 +#: ../../enterprise/include/functions_reporting_csv.php:895 +#: ../../enterprise/include/functions_reporting_csv.php:1082 +#: ../../enterprise/include/functions_reporting_csv.php:1113 +#: ../../enterprise/include/functions_reporting_csv.php:1168 +#: ../../enterprise/include/functions_reporting_csv.php:1223 +#: ../../enterprise/include/functions_reporting_csv.php:1272 +#: ../../enterprise/include/functions_reporting_csv.php:1327 +#: ../../enterprise/operation/reporting/custom_reporting.php:109 +#: ../../include/functions_cron.php:510 ../../include/functions_cron.php:669 +msgid "Report type" +msgstr "Тип отчета" + +#: ../../enterprise/include/functions_tasklist.php:450 +#: ../../enterprise/include/functions_ipam.php:1912 +#: ../../enterprise/include/functions_ipam.php:1913 +#: ../../enterprise/include/functions_ipam.php:1914 +#: ../../enterprise/tools/ipam/ipam_list.php:196 +#: ../../enterprise/tools/ipam/ipam_ajax.php:349 +#: ../../godmode/db/db_main.php:189 +#: ../../godmode/snmpconsole/snmp_alert.php:1389 +#: ../../include/functions_cron.php:734 +#: ../../include/functions_treeview.php:667 ../../include/functions_ui.php:538 +#: ../../operation/agentes/estado_generalagente.php:355 +#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 +#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 +msgid "Never" +msgstr "Никогда" + +#: ../../enterprise/include/functions_tasklist.php:537 +msgid "Console Tasks" +msgstr "Задачи консоли" + +#: ../../enterprise/include/functions_networkmap.php:934 +msgid "Map not found." +msgstr "Карта не найдена." + +#: ../../enterprise/include/functions_hostdevices.php:45 +msgid "Remote commands enabled" +msgstr "Удаленные команды включены" + +#: ../../enterprise/include/ajax/transactional.ajax.php:174 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:191 +msgid "The phase does not have a defined script" +msgstr "Фаза не имеет определенного сценария" + +#: ../../enterprise/include/ajax/transactional.ajax.php:211 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:247 +msgid "Edit Data" +msgstr "Редактировать данные" + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:88 +msgid "avg" +msgstr "средн." + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:89 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3513 +msgid "max" +msgstr "макс." + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:90 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3514 +msgid "min" +msgstr "мин." + +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:91 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3515 +msgid "sum" +msgstr "итог" + +#: ../../enterprise/include/ajax/ipam.ajax.php:242 +msgid "Current Networks" +msgstr "Текущие сети" + +#: ../../enterprise/include/ajax/ipam.ajax.php:296 +msgid "Please, create networks to assign to " +msgstr "Пожалуйста, создайте сети, чтобы приписать их к " + +#: ../../enterprise/include/ajax/ipam.ajax.php:296 +msgid "all networks selected" +msgstr "все выбранные сети" + +#: ../../enterprise/include/ajax/ipam.ajax.php:299 +msgid "Please, create networks to assign to" +msgstr "Пожалуйста, создайте сети, чтобы приписать их к" + +#: ../../enterprise/include/ajax/ipam.ajax.php:328 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:264 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:38 +msgid "Supernet" +msgstr "Супер-сеть" + +#: ../../enterprise/include/ajax/ipam.ajax.php:329 +#: ../../enterprise/include/ajax/ipam.ajax.php:349 +#: ../../enterprise/include/functions_ipam.php:1816 +#: ../../enterprise/tools/ipam/ipam_list.php:138 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:62 +#: ../../enterprise/tools/ipam/ipam_calculator.php:185 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:39 +#: ../../enterprise/tools/ipam/ipam_supernet_network.php:63 +#: ../../enterprise/tools/ipam/ipam_editor.php:96 +#: ../../godmode/wizards/HostDevices.class.php:916 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:548 +#: ../../include/functions_ui.php:859 ../../operation/menu.php:72 +#: ../../operation/servers/recon_view.php:100 +msgid "Network" +msgstr "Сеть" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:77 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:215 +msgid "Group name" +msgstr "Название группы" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:102 +msgid "OS name" +msgstr "Имя ОС" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 +msgid "IP Network range" +msgstr "Диапазон IP-сети" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:129 +msgid "Script" +msgstr "Скрипт" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:131 +msgid "Arguments" +msgstr "Аргументы" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:137 +msgid "Unknown form" +msgstr "Неизвестная форма" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:218 +#: ../../include/functions_treeview.php:790 +#: ../../operation/agentes/agent_fields.php:44 +#: ../../operation/agentes/estado_generalagente.php:532 +msgid "Custom field" +msgstr "Пользовательское поле" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:219 +msgid "IP range" +msgstr "Диапазон IP" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:220 +msgid "Script output (> 0)" +msgstr "Вывод скрипта (> 0)" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:417 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 +#: ../../godmode/snmpconsole/snmp_alert.php:1102 +#: ../../godmode/snmpconsole/snmp_alert.php:1321 +msgid "Alert action" +msgstr "Действие оповещания" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:532 +#: ../../godmode/alerts/configure_alert_template.php:796 +#: ../../godmode/alerts/alert_list.builder.php:116 +#: ../../include/class/AgentsAlerts.class.php:297 +msgid "Default action" +msgstr "Действие по умолчанию" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:437 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:546 +msgid "Script path" +msgstr "Путь скрипта" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:441 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:550 +msgid "Script argument" +msgstr "Аргумент скрипта" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:449 +#: ../../godmode/alerts/alert_list.list.php:679 +#: ../../godmode/alerts/alert_list.list.php:1143 +msgid "Update action" +msgstr "Действие обновления" + +#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 +msgid "Global time: " +msgstr "Глобальное время: " + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:51 +#: ../../enterprise/include/functions_reporting_csv.php:398 +#: ../../enterprise/include/functions_reporting_csv.php:420 +#: ../../enterprise/include/functions_reporting_csv.php:451 +#: ../../enterprise/include/functions_reporting_csv.php:653 +#: ../../enterprise/include/functions_reporting_csv.php:667 +#: ../../enterprise/include/functions_reporting_csv.php:681 +#: ../../enterprise/include/functions_reporting_csv.php:701 +#: ../../enterprise/include/functions_reporting_csv.php:730 +#: ../../enterprise/include/functions_reporting_csv.php:769 +#: ../../enterprise/include/functions_reporting_csv.php:813 +#: ../../enterprise/include/functions_reporting_csv.php:845 +#: ../../enterprise/include/functions_reporting_csv.php:882 +#: ../../enterprise/include/functions_reporting_csv.php:905 +#: ../../enterprise/include/functions_reporting_csv.php:1042 +#: ../../enterprise/include/functions_reporting_csv.php:1069 +#: ../../enterprise/include/functions_reporting_csv.php:1100 +#: ../../enterprise/include/functions_reporting_csv.php:1155 +#: ../../enterprise/include/functions_reporting_csv.php:1210 +#: ../../enterprise/include/functions_reporting_csv.php:1259 +#: ../../enterprise/include/functions_reporting_csv.php:1314 +#: ../../enterprise/include/functions_reporting_csv.php:1343 +#: ../../enterprise/include/functions_reporting_csv.php:1380 +#: ../../enterprise/include/functions_reporting_csv.php:1506 +#: ../../enterprise/include/functions_reporting_csv.php:1622 +#: ../../enterprise/include/functions_reporting_csv.php:1766 +#: ../../enterprise/include/functions_reporting_csv.php:1822 +#: ../../enterprise/include/functions_reporting_csv.php:1890 +#: ../../enterprise/include/functions_reporting_csv.php:2034 +#: ../../enterprise/include/functions_reporting_csv.php:2126 +#: ../../enterprise/include/functions_reporting_csv.php:2157 +#: ../../enterprise/include/functions_reporting_csv.php:2193 +#: ../../enterprise/include/functions_reporting_csv.php:2246 +#: ../../enterprise/include/functions_reporting_csv.php:2268 +#: ../../enterprise/include/functions_reporting_csv.php:2309 +#: ../../enterprise/include/functions_reporting_csv.php:2363 +#: ../../enterprise/include/functions_reporting_csv.php:2392 +#: ../../enterprise/include/functions_reporting_csv.php:2460 +#: ../../godmode/setup/setup_integria.php:322 +#: ../../godmode/setup/setup_integria.php:445 +#: ../../include/lib/Dashboard/Widget.php:537 +#: ../../operation/agentes/estado_generalagente.php:636 +#: ../../operation/incidents/integriaims_export_csv.php:89 +#: ../../operation/incidents/configure_integriaims_incident.php:194 +msgid "Title" +msgstr "Заголовок" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:61 +msgid "Capture regexp" +msgstr "Захват regexp" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:81 +#: ../../enterprise/include/functions_reporting_pdf.php:505 +#: ../../enterprise/include/functions_reporting_pdf.php:561 +#: ../../include/functions_reporting_html.php:3076 +#: ../../include/functions_reporting_html.php:3144 +msgid "Average" +msgstr "Среднее" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:171 +msgid "Empty ip or port" +msgstr "Пустой ip или порт" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:188 +msgid "Curl Error: " +msgstr "Ошибка Curl: " + +#: ../../enterprise/include/process_reset_pass.php:47 +#: ../../enterprise/include/reset_pass.php:48 ../../general/login_page.php:135 +#: ../../general/login_page.php:138 ../../general/login_page.php:154 +msgid "Docs" +msgstr "Документы" + +#: ../../enterprise/include/process_reset_pass.php:152 +#: ../../enterprise/include/process_reset_pass.php:155 +#: ../../enterprise/include/reset_pass.php:130 +#: ../../enterprise/include/reset_pass.php:133 +#: ../../include/functions_config.php:2319 +msgid "ONE TOOL TO MONITOR THEM ALL" +msgstr "ОДИН ИНСТРУМЕНТ ДЛЯ ИХ МОНИТОРИНГА" + +#: ../../enterprise/include/functions_log.php:279 +#: ../../enterprise/include/functions_log.php:282 +msgid "Lines" +msgstr "Строки" + +#: ../../enterprise/include/functions_inventory.php:66 +#: ../../enterprise/include/functions_inventory.php:774 +msgid "No changes found" +msgstr "Изменения не найдены" + +#: ../../enterprise/include/functions_inventory.php:165 +msgid "Get CSV file" +msgstr "Получить CSV файл" + +#: ../../enterprise/include/functions_inventory.php:252 +#: ../../enterprise/operation/services/services.treeview_services.php:269 +#: ../../godmode/groups/group_list.php:967 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:639 +#: ../../operation/tree.php:385 ../../operation/network/network_report.php:313 +msgid "No data found" +msgstr "Данные не найдены" + +#: ../../enterprise/include/functions_inventory.php:791 +#: ../../enterprise/include/functions_inventory.php:854 +#: ../../include/functions_reporting_html.php:1464 +msgid "Added" +msgstr "Добавлено" + +#: ../../enterprise/include/functions_inventory.php:797 +#: ../../enterprise/include/functions_inventory.php:862 +#: ../../include/functions_reporting_html.php:1475 +#: ../../include/functions_filemanager.php:364 +#: ../../include/functions_filemanager.php:381 +msgid "Deleted" +msgstr "Удалено" + +#: ../../enterprise/include/functions_transactional.php:588 +msgid "Error in dependencies field" +msgstr "Ошибка в поле зависимостей" + +#: ../../enterprise/include/functions_transactional.php:597 +msgid "Error in enables field" +msgstr "Ошибка в поле активации" + +#: ../../enterprise/include/auth/saml.php:120 +#, php-format +msgid "Pandora FMS SAML authentication error: %s" +msgstr "Pandora FMS Ошибка SAML-аутентификации: %s" + +#: ../../enterprise/include/auth/saml.php:185 +msgid "Force log out" +msgstr "Принудить выход из системы" + +#: ../../enterprise/include/functions_collection.php:47 +#, php-format +msgid "Fail create the directory: %s" +msgstr "Сбой создания папки: %s" + +#: ../../enterprise/include/functions_collection.php:73 +msgid "No files in collection" +msgstr "Нет файлов в сборнике" + +#: ../../enterprise/include/functions_collection.php:81 +msgid "File of collection is bigger than the limit (" +msgstr "Файл сборника больше чем лимит (" + +#: ../../enterprise/include/functions_ui.php:79 msgid "Select inventory module" msgstr "Выбрать модуль инвентаризации" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:235 -msgid "There are no defined inventory modules" -msgstr "" +#: ../../enterprise/include/functions_ui.php:96 +msgid "Use custom fields" +msgstr "Используйте пользовательские поля" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:264 -#: ../../enterprise/godmode/policies/policy_agents.php:445 -#: ../../enterprise/godmode/policies/policy_modules.php:1080 -#: ../../enterprise/godmode/policies/policy_alerts.php:417 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:252 -msgid "Undo deletion" -msgstr "Отменить удаление" +#: ../../enterprise/include/functions_ui.php:179 +msgid "Field name" +msgstr "Название поля" -#: ../../enterprise/godmode/policies/policy_plugins.php:33 -msgid "" -"Successfully added to delete pending plugins. Will be deleted in the next " -"policy application." -msgstr "" -"Успешно добавлено к удаленным плагинам в режиме ожидания. Будут удалены из " -"следующего приложения политики." +#: ../../enterprise/include/functions_ui.php:179 +msgid "It's a password" +msgstr "Это пароль" -#: ../../enterprise/godmode/policies/policy_plugins.php:34 -msgid "Cannot be added to delete pending plugins." -msgstr "Не может быть добавлено к удаленным плагинам в режиме ожидания." +#: ../../enterprise/include/functions_ui.php:179 +msgid "Add field" +msgstr "Добавить поле" -#: ../../enterprise/godmode/policies/policy_plugins.php:111 -msgid "There are no defined plugins" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:90 -msgid "" -"Successfully added to delete pending agents. Will be deleted in the next " -"policy application." -msgstr "" -"Успешно добавлены к удаленным агентам в режиме ожидания. Будут удалены из " -"следующего приложения политики." - -#: ../../enterprise/godmode/policies/policy_agents.php:121 -msgid "Successfully added to delete queue" -msgstr "Успешно добавлено к удаленной очереди" - -#: ../../enterprise/godmode/policies/policy_agents.php:122 -msgid "Could not be added to delete queue" -msgstr "Не может быть добавлено к удаленной очереди" - -#: ../../enterprise/godmode/policies/policy_agents.php:157 -msgid "Successfully deleted from delete pending agents" -msgstr "Успешно удалены из удаленных агентов в режиме ожидания" - -#: ../../enterprise/godmode/policies/policy_agents.php:158 -msgid "Could not be deleted from delete pending agents" -msgstr "Не может быть удалено из удаленных агентов в режиме ожидания" - -#: ../../enterprise/godmode/policies/policy_agents.php:260 -msgid "Agents in Policy" -msgstr "Агенты в Полтике" - -#: ../../enterprise/godmode/policies/policy_agents.php:297 -msgid "Add agents to policy" -msgstr "Добавить агенты к политике" - -#: ../../enterprise/godmode/policies/policy_agents.php:303 -msgid "Delete agents from policy" -msgstr "Удалить агенты из политики" - -#: ../../enterprise/godmode/policies/policy_agents.php:339 -msgid "Applied" -msgstr "Применено" - -#: ../../enterprise/godmode/policies/policy_agents.php:340 -msgid "Not applied" -msgstr "Не применено" - -#: ../../enterprise/godmode/policies/policy_agents.php:349 -#: ../../operation/agentes/estado_generalagente.php:293 -#: ../../godmode/agentes/agent_manager.php:317 -#: ../../godmode/agentes/configurar_agente.php:416 -#: ../../godmode/agentes/configurar_agente.php:526 -#: ../../godmode/servers/servers.build_table.php:160 -#: ../../godmode/massive/massive_edit_agents.php:349 -msgid "Remote configuration" -msgstr "Удаленная конфигурация" - -#: ../../enterprise/godmode/policies/policy_agents.php:351 -msgid "Unlinked modules" -msgstr "Несвязаные модули" - -#: ../../enterprise/godmode/policies/policy_agents.php:351 -msgid "U." -msgstr "U." - -#: ../../enterprise/godmode/policies/policy_agents.php:354 -msgid "Add to delete queue" -msgstr "Добавить к удаленной очереди" - -#: ../../enterprise/godmode/policies/policy_agents.php:354 -#: ../../godmode/agentes/module_manager.php:528 -msgid "D." -msgstr "D." - -#: ../../enterprise/godmode/policies/policy_agents.php:399 -#: ../../godmode/agentes/agent_manager.php:188 -msgid "This agent can be remotely configured" -msgstr "Этот агент может быть сконфигурирован дистанционно" - -#: ../../enterprise/godmode/policies/policy_agents.php:404 -msgid "This agent can not be remotely configured" -msgstr "Этот агент не может быть сконфигурирован дистанционно" - -#: ../../enterprise/godmode/policies/policy_agents.php:463 -msgid "Need apply" -msgstr "Нужно применить" - -#: ../../enterprise/godmode/policies/policy_agents.php:471 -msgid "Applying policy" -msgstr "Принципы применения" - -#: ../../enterprise/godmode/policies/policy_agents.php:477 -msgid "Deleting from policy" -msgstr "Удаление из политики" - -#: ../../enterprise/godmode/policies/policy_agents.php:491 -#: ../../include/functions_visual_map.php:1203 -#: ../../include/functions_visual_map.php:1428 -#: ../../godmode/massive/massive_delete_agents.php:33 -#: ../../godmode/massive/massive_delete_alerts.php:83 -#: ../../godmode/massive/massive_delete_modules.php:61 -#: ../../godmode/massive/massive_add_alerts.php:73 -#: ../../godmode/massive/massive_add_tags.php:33 -#: ../../godmode/massive/massive_edit_agents.php:90 -#: ../../godmode/massive/massive_delete_tags.php:97 -#: ../../godmode/massive/massive_add_action_alerts.php:60 -msgid "No agents selected" -msgstr "Не выбраны агенты" - -#: ../../enterprise/godmode/policies/policy_modules.php:22 -#: ../../enterprise/godmode/policies/policy_modules.php:1200 -#: ../../godmode/agentes/module_manager_editor_common.php:386 -msgid "Not needed" -msgstr "Не требуется" - -#: ../../enterprise/godmode/policies/policy_modules.php:213 -msgid "" -"If you change this description, you must change into the text of Data " -"configuration." -msgstr "" -"Если вы измените это описание, вы должны изменить текст данных конфигурации." - -#: ../../enterprise/godmode/policies/policy_modules.php:286 -msgid "Module macros" -msgstr "Модуль макросов" - -#: ../../enterprise/godmode/policies/policy_modules.php:382 -msgid "Could not be added module(s). You must select a policy" -msgstr "Не удалось добавить модули). Вы должны выбрать политику" - -#: ../../enterprise/godmode/policies/policy_modules.php:410 +#: ../../enterprise/include/functions_reporting_pdf.php:65 +#: ../../include/class/Diagnostics.class.php:2124 +#: ../../include/class/Diagnostics.class.php:2242 #, php-format -msgid "Successfully added module(s) (%s/%s) to policy %s" -msgstr "Успешно добавлену модуль(и) (%s/%s) к политике %s" +msgid "Automated %s report for user defined report" +msgstr "Автоматизированный отчет %s для отчета, определенного пользователем" -#: ../../enterprise/godmode/policies/policy_modules.php:412 +#: ../../enterprise/include/functions_reporting_pdf.php:489 +#: ../../enterprise/include/functions_reporting_pdf.php:521 +#: ../../enterprise/include/functions_reporting_pdf.php:547 +#: ../../enterprise/include/functions_reporting_pdf.php:572 +#: ../../enterprise/include/functions_reporting_pdf.php:575 +#: ../../enterprise/include/functions_reporting_pdf.php:582 +#: ../../enterprise/include/functions_reporting_csv.php:1188 +#: ../../include/functions_reporting_html.php:3059 +#: ../../include/functions_reporting_html.php:3088 +#: ../../include/functions_reporting_html.php:3129 +#: ../../include/functions_reporting_html.php:3152 +#: ../../include/functions_reporting_html.php:3155 +#: ../../include/functions_reporting_html.php:3162 +#: ../../include/functions_reporting.php:5797 +#: ../../include/functions_reporting.php:5820 +#: ../../include/functions_reporting.php:5835 +#: ../../include/functions_reporting.php:5851 +#: ../../include/functions_reporting.php:5866 +msgid "Maximun" +msgstr "Максимум" + +#: ../../enterprise/include/functions_reporting_pdf.php:497 +#: ../../enterprise/include/functions_reporting_pdf.php:554 +#: ../../include/functions_reporting_html.php:3067 +#: ../../include/functions_reporting_html.php:3136 +msgid "Minimun" +msgstr "Минимум" + +#: ../../enterprise/include/functions_reporting_pdf.php:546 +#: ../../enterprise/include/functions_reporting_pdf.php:553 +#: ../../enterprise/include/functions_reporting_pdf.php:560 +#: ../../enterprise/include/functions_reporting_pdf.php:574 +#: ../../enterprise/include/functions_reporting_pdf.php:579 +#: ../../enterprise/include/functions_reporting_csv.php:1133 +#: ../../enterprise/include/functions_reporting_csv.php:1188 +#: ../../enterprise/include/functions_reporting_csv.php:1292 +#: ../../include/functions_reporting_html.php:3128 +#: ../../include/functions_reporting_html.php:3135 +#: ../../include/functions_reporting_html.php:3143 +#: ../../include/functions_reporting_html.php:3154 +#: ../../include/functions_reporting_html.php:3159 +#: ../../include/functions_reporting.php:5815 +msgid "Lapse" +msgstr "Задержка" + +#: ../../enterprise/include/functions_reporting_pdf.php:876 +#: ../../include/functions_reporting_html.php:1698 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:478 #, php-format -msgid "Could not be added module(s) (%s/%s) to policy %s" -msgstr "Не удается добавить модуль(и) (%s/%s) к политике %s" +msgid "%s in %s : NORMAL" +msgstr "%s в %s : НОРМАЛЬНЫЙ" -#: ../../enterprise/godmode/policies/policy_modules.php:654 -msgid "Could not be added module." -msgstr "Модуль не может быть добавлен." - -#: ../../enterprise/godmode/policies/policy_modules.php:875 -msgid "" -"The module type in Data configuration is empty, take from combo box of form." -msgstr "" -"Тип модуля в данных конфигурации пуст, возьмите из выпадающего списка на " -"форме." - -#: ../../enterprise/godmode/policies/policy_modules.php:878 -msgid "" -"The module name in Data configuration is empty, take from text field of form." -msgstr "" -"Имя модуля в конфигурации данных пусто, возьмите из текстового поля формы." - -#: ../../enterprise/godmode/policies/policy_modules.php:909 -msgid "Could not be added to deleted all modules." -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:966 -#: ../../godmode/agentes/configurar_agente.php:1414 +#: ../../enterprise/include/functions_reporting_pdf.php:893 +#: ../../include/functions_reporting_html.php:1715 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:494 #, php-format -msgid "copy of %s" -msgstr "копия %s" +msgid "%s in %s : CRITICAL" +msgstr "%s в %s : КРИТИЧЕСКИЙ" -#: ../../enterprise/godmode/policies/policy_modules.php:978 -#: ../../godmode/agentes/configurar_agente.php:1424 +#: ../../enterprise/include/functions_reporting_pdf.php:910 +#: ../../include/functions_reporting_html.php:1732 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:510 #, php-format -msgid "copy of %s (%d)" -msgstr "копия %s (%d)" +msgid "%s in %s : WARNING" +msgstr "%s в %s : ВНИМАНИЕ" -#: ../../enterprise/godmode/policies/policy_modules.php:995 -msgid "Successfully duplicate the module." +#: ../../enterprise/include/functions_reporting_pdf.php:927 +#: ../../include/functions_reporting_html.php:1749 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:526 +#, php-format +msgid "%s in %s : UNKNOWN" +msgstr "%s в %s : НЕИЗВЕСТНЫЙ" + +#: ../../enterprise/include/functions_reporting_pdf.php:944 +#: ../../include/functions_reporting_html.php:1785 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:542 +#, php-format +msgid "%s in %s : Not initialize" +msgstr "%s в %s : Не инициализируется" + +#: ../../enterprise/include/functions_reporting_pdf.php:961 +#: ../../include/functions_reporting_html.php:1768 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:559 +#, php-format +msgid "%s in %s : ALERTS FIRED" +msgstr "%s в %s : ПРЕДУПРЕЖДЕНИЯ ВЫПОЛНЕНЫ" + +#: ../../enterprise/include/functions_reporting_pdf.php:1580 +#: ../../enterprise/include/functions_reporting_csv.php:2078 +#: ../../enterprise/include/functions_reporting_csv.php:2082 +#: ../../include/functions_reporting_html.php:138 +msgid "Generated" +msgstr "Сгенерировано" + +#: ../../enterprise/include/functions_reporting_pdf.php:1584 +#: ../../include/functions_reporting_html.php:141 +msgid "Report date" +msgstr "Дата отчета" + +#: ../../enterprise/include/functions_reporting_pdf.php:1603 +#: ../../include/functions_reporting_html.php:150 +#: ../../operation/reporting/reporting_viewer.php:255 +msgid "Items period before" +msgstr "Элементы периода до" + +#: ../../enterprise/include/functions_reporting_pdf.php:1633 +msgid "Contents" +msgstr "Содержание" + +#: ../../enterprise/include/functions_reporting_pdf.php:1779 +#: ../../enterprise/include/functions_reporting_csv.php:864 +#: ../../enterprise/include/functions_reporting_csv.php:1223 +#: ../../godmode/agentes/planned_downtime.list.php:148 +#: ../../include/functions_reporting_html.php:3245 +#: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 +#: ../../include/rest-api/index.php:326 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:459 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:519 +#: ../../operation/agentes/gis_view.php:218 +msgid "To" +msgstr "Кому" + +#: ../../enterprise/include/functions_reporting_pdf.php:1783 +#: ../../include/functions_reporting_html.php:90 +#: ../../include/functions_reporting_html.php:4996 +#: ../../include/functions_treeview.php:319 +msgid "Last data" +msgstr "Последние данные" + +#: ../../enterprise/include/functions_visual_map.php:203 +#: ../../enterprise/include/functions_visual_map.php:268 +msgid "Crit:" +msgstr "Крит:" + +#: ../../enterprise/include/functions_visual_map.php:207 +#: ../../enterprise/include/functions_visual_map.php:272 +msgid "Warn:" +msgstr "Пред:" + +#: ../../enterprise/include/functions_visual_map.php:211 +#: ../../enterprise/include/functions_visual_map.php:276 +msgid "Ok:" +msgstr "Ок:" + +#: ../../enterprise/include/functions_visual_map.php:672 +msgid "None of the services was added" +msgstr "Ни одна из услуг не была добавлена" + +#: ../../enterprise/include/functions_visual_map.php:674 +#, php-format +msgid "%d services couldn't be added" +msgstr "%d сервисов не удалось добавить" + +#: ../../enterprise/include/functions_visual_map.php:680 +msgid "There was an error retrieving the visual map information" +msgstr "произошла ошибка при извлечении информации о визуальной карте" + +#: ../../enterprise/include/functions_visual_map.php:683 +msgid "No services selected" +msgstr "Сервисы не выбраны" + +#: ../../enterprise/include/functions_backup.php:197 +msgid "No description" +msgstr "Без описания" + +#: ../../enterprise/include/functions_backup.php:323 +msgid "Restoring a backup" +msgstr "Восстановление из резервной копии" + +#: ../../enterprise/include/functions_backup.php:325 +#, php-format +msgid "Restoring a %s database backup must be done manually." msgstr "" +"Восстановление резервной копии базы данных %s должно выполняться вручную." -#: ../../enterprise/godmode/policies/policy_modules.php:1048 -msgid "Local component" -msgstr "Местные компоненты" - -#: ../../enterprise/godmode/policies/policy_modules.php:1057 -#: ../../enterprise/godmode/policies/policy_modules.php:1058 -#: ../../godmode/agentes/module_manager.php:690 -msgid "Enable module" -msgstr "Включить модуль" - -#: ../../enterprise/godmode/policies/policy_modules.php:1063 -#: ../../enterprise/godmode/policies/policy_modules.php:1064 -#: ../../godmode/agentes/module_manager.php:695 -msgid "Disable module" -msgstr "Отключить модуль" - -#: ../../enterprise/godmode/policies/policy_modules.php:1114 -msgid "There are no defined modules" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:1131 -#: ../../godmode/massive/massive_copy_modules.php:136 -msgid "Copy modules" -msgstr "Копировать модули" - -#: ../../enterprise/godmode/policies/policy_modules.php:1132 -msgid "Copy selected modules to policy: " -msgstr "Копировать выбранные модули к политике: " - -#: ../../enterprise/godmode/policies/policy_modules.php:1172 -#: ../../godmode/agentes/module_manager_editor.php:515 -msgid "No module name provided" -msgstr "Имя модуля не предоставлено" - -#: ../../enterprise/godmode/policies/policy_modules.php:1173 -#: ../../godmode/agentes/module_manager_editor.php:516 -msgid "No target IP provided" -msgstr "Целевой IP не предоставлен" - -#: ../../enterprise/godmode/policies/policy_modules.php:1174 -#: ../../godmode/agentes/module_manager_editor.php:517 -msgid "No SNMP OID provided" -msgstr "SNMP OID не предоставлен" - -#: ../../enterprise/godmode/policies/policy_modules.php:1267 -msgid "Variable" -msgstr "Переменная" - -#: ../../enterprise/godmode/policies/policy_modules.php:1307 -msgid "Are you sure to copy modules into policy?\\n" -msgstr "Вы уверены, что хотите копировать модули в политике?\\n" - -#: ../../enterprise/godmode/policies/policy_modules.php:1327 -msgid "Please select any module to copy" -msgstr "Пожалуйста, выберите любой модуль для копирования" - -#: ../../enterprise/godmode/policies/policy_alerts.php:148 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:73 -msgid "Created successfuly" -msgstr "Создано успешно" - -#: ../../enterprise/godmode/policies/policy_alerts.php:164 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:95 +#: ../../enterprise/include/functions_backup.php:326 msgid "" -"Successfully added to delete pending alerts. Will be deleted in the next " -"policy application." +"It's a complex operation that needs human intervation to avoid system " +"failures and data loosing" msgstr "" -"Успешно добавлено к удаленным оповещениям в режиме ожидания. Будут удалены " -"из следующего приложения политики." +"Это комплекс операция, который требует вмешательства человека, чтобы " +"избежать сбоев системы и потери данных" -#: ../../enterprise/godmode/policies/policy_alerts.php:188 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:120 -msgid "Added action successfuly" -msgstr "Действие добавлено успешно" - -#: ../../enterprise/godmode/policies/policy_alerts.php:206 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:140 -msgid "Deleted action successfuly" -msgstr "Действие удалено успешно" - -#: ../../enterprise/godmode/policies/policy_alerts.php:511 -msgid "Policy module" -msgstr "Модуль политики" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 -msgid "Duplicated alert" -msgstr "Дублированные оповещения" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:170 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:299 -msgid "Modules in policy agents" -msgstr "Модули в политике агентов" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:315 -msgid "Alert Template" -msgstr "Шаблон Оповещения" - -#: ../../enterprise/load_enterprise.php:315 -msgid "Invalid licence." +#: ../../enterprise/include/functions_backup.php:327 +msgid "To restore the selected backup, please follow these steps" msgstr "" +"Для восстановления выбранной резервной копии, выполните следующие действия" -#: ../../enterprise/load_enterprise.php:316 -msgid "Please contact Artica at info@artica.es for a valid licence." +#: ../../enterprise/include/functions_backup.php:333 +msgid "Open a root shell in your system located at " +msgstr "Откройте командный интерфейс в вашей системе, который находится в " + +#: ../../enterprise/include/functions_backup.php:337 +msgid "Connect to MySQL database using the following command" +msgstr "Подключение к базе данных MySQL с помощью следующей команды" + +#: ../../enterprise/include/functions_backup.php:344 +msgid "Create a new database" +msgstr "Создать новую базу данных" + +#: ../../enterprise/include/functions_backup.php:361 +msgid "Restore the backup" +msgstr "Восстановление резервной копии" + +#: ../../enterprise/include/functions_backup.php:369 +msgid "Modify console configuration to use this new database" msgstr "" +"Измененить конфигурацию консоли, чтобы использовать эту новую базу данных" -#: ../../enterprise/load_enterprise.php:318 -msgid "Or disable Pandora FMS enterprise" -msgstr "Или отключить предприятие Pandora FMS" +#: ../../enterprise/include/functions_backup.php:370 +msgid "Open configuration file" +msgstr "Открыть файл конфигурации" -#: ../../enterprise/load_enterprise.php:405 -#: ../../enterprise/load_enterprise.php:619 -msgid "Request new licence" +#: ../../enterprise/include/functions_backup.php:374 +#: ../../enterprise/include/functions_backup.php:386 +msgid "Find" +msgstr "Найти" + +#: ../../enterprise/include/functions_backup.php:376 +#: ../../enterprise/include/functions_backup.php:389 +msgid "and replace with" +msgstr "и заменить на" + +#: ../../enterprise/include/functions_backup.php:383 +msgid "Modify servers configuration to use this new database" msgstr "" +"Изменить конфигурацию сервера для использования этой новой базы данных" -#: ../../enterprise/load_enterprise.php:480 +#: ../../enterprise/include/functions_backup.php:384 +msgid "Find servers configuration file and replace the following lines" +msgstr "Найти серверы файла конфигурации и заменить следующие строки" + +#: ../../enterprise/include/functions_backup.php:396 +msgid "Restart the servers and login again into the console" +msgstr "Перезагрузить серверы и войти снова в консоль" + +#: ../../enterprise/include/functions_snmp.php:65 +msgid "Trap status agent recovered" +msgstr "Агент статуса ловушки восстановлен" + +#: ../../enterprise/include/functions_alert_event.php:1133 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:903 +msgid "Module alert" +msgstr "Модуль оповещений" + +#: ../../enterprise/include/functions_setup.php:79 +#: ../../enterprise/include/functions_setup.php:125 +msgid "Log collector" +msgstr "Журнал коллектора" + +#: ../../enterprise/include/functions_setup.php:151 +msgid "Metaconsole link status" +msgstr "Статус ссылки метаконсоли" + +#: ../../enterprise/include/functions_setup.php:183 +msgid "DB connection" +msgstr "Подключение к БД" + +#: ../../enterprise/include/functions_setup.php:205 +msgid "This console is joining a metaconsole." +msgstr "Эта консоль присоединяется к метаконсоли." + +#: ../../enterprise/include/functions_setup.php:213 +msgid "This console is not joining any metaconsole." +msgstr "Эта консоль не присоединяется ни к одной метаконсоли." + +#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:235 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:151 +#: ../../include/functions_visual_map_editor.php:250 +#: ../../include/rest-api/models/VisualConsole/Items/Icon.php:174 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:332 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:521 +#: ../../include/functions_filemanager.php:660 +msgid "Image" +msgstr "Изображение" + +#: ../../enterprise/include/functions_reporting_csv.php:393 +msgid "Event report agent" +msgstr "Агент Отчета событий" + +#: ../../enterprise/include/functions_reporting_csv.php:395 +msgid "Event report group" +msgstr "Группа отчета событий" + +#: ../../enterprise/include/functions_reporting_csv.php:419 +msgid "Event report module" +msgstr "Модуль отчета событий" + +#: ../../enterprise/include/functions_reporting_csv.php:450 +#: ../../enterprise/include/functions_reporting.php:1185 +#: ../../include/functions_reports.php:811 +#: ../../include/functions_reporting.php:7169 +#: ../../include/functions_reporting.php:7545 +msgid "Availability" +msgstr "Доступность" + +#: ../../enterprise/include/functions_reporting_csv.php:494 +#: ../../enterprise/include/functions_reporting_csv.php:1327 +msgid "% OK" +msgstr "% OK" + +#: ../../enterprise/include/functions_reporting_csv.php:503 +#: ../../include/functions_reporting_html.php:593 +msgid "Checks Failed" +msgstr "Проверки не удались" + +#: ../../enterprise/include/functions_reporting_csv.php:620 +msgid "Maximum value" +msgstr "Максимальное значение" + +#: ../../enterprise/include/functions_reporting_csv.php:624 +#: ../../include/functions_reporting_html.php:3756 +msgid "Agent min value" +msgstr "Мин значение агента" + +#: ../../enterprise/include/functions_reporting_csv.php:625 +msgid "Minimum value" +msgstr "Минимальное значение" + +#: ../../enterprise/include/functions_reporting_csv.php:628 +msgid "Average value" +msgstr "Среднее значение" + +#: ../../enterprise/include/functions_reporting_csv.php:652 +#: ../../include/functions_reporting.php:2265 +msgid "Inventory Changes" +msgstr "Изменения в инвентаризации" + +#: ../../enterprise/include/functions_reporting_csv.php:680 +#: ../../include/functions_reports.php:714 +msgid "Prediction date" +msgstr "Прогнозирование даты" + +#: ../../enterprise/include/functions_reporting_csv.php:700 +#: ../../include/functions_reporting.php:5270 +msgid "Projection Graph" +msgstr "Проекционный график" + +#: ../../enterprise/include/functions_reporting_csv.php:729 +msgid "Serialized data " +msgstr "Сериализованные данные " + +#: ../../enterprise/include/functions_reporting_csv.php:768 +msgid "Last Value " +msgstr "Последнее значение " + +#: ../../enterprise/include/functions_reporting_csv.php:844 +#: ../../include/functions_reporting.php:1481 +#: ../../operation/snmpconsole/snmp_statistics.php:159 +#: ../../operation/snmpconsole/snmp_statistics.php:227 +#, php-format +msgid "Top %d" +msgstr "Наивысшее %d" + +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../include/functions_reporting.php:3026 +msgid "Group Report" +msgstr "Отчет группы" + +#: ../../enterprise/include/functions_reporting_csv.php:895 +#: ../../enterprise/operation/services/services.treeview_services.php:277 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:975 +#: ../../mobile/operation/groups.php:137 +#: ../../include/functions_reporting_html.php:5076 +#: ../../include/class/Diagnostics.class.php:543 +#: ../../include/functions_reporting.php:10494 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:642 +#: ../../operation/tree.php:393 +msgid "Total agents" +msgstr "Общее количество агентов" + +#: ../../enterprise/include/functions_reporting_csv.php:895 +msgid "Uknown agents" +msgstr "Неизвестные агенты" + +#: ../../enterprise/include/functions_reporting_csv.php:895 +#: ../../enterprise/operation/services/services.treeview_services.php:278 +#: ../../godmode/groups/group_list.php:976 +#: ../../godmode/module_library/module_library_view.php:141 +#: ../../include/class/Diagnostics.class.php:547 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:643 +#: ../../operation/tree.php:394 +msgid "Total modules" +msgstr "Общее число модулей" + +#: ../../enterprise/include/functions_reporting_csv.php:895 +#: ../../include/functions_reporting.php:10337 +msgid "Defined alerts" +msgstr "Определенные оповещения" + +#: ../../enterprise/include/functions_reporting_csv.php:895 +#: ../../enterprise/operation/services/services.treeview_services.php:282 +#: ../../enterprise/operation/services/services.treeview_services.php:283 +#: ../../enterprise/operation/services/services.treeview_services.php:284 +#: ../../godmode/groups/group_list.php:980 +#: ../../godmode/groups/group_list.php:981 +#: ../../godmode/groups/group_list.php:982 +#: ../../include/functions_graph.php:2581 +#: ../../include/functions_reporting.php:10355 +#: ../../include/functions_reporting.php:10378 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:647 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:649 +#: ../../operation/tree.php:398 ../../operation/tree.php:399 +#: ../../operation/tree.php:400 +msgid "Fired alerts" +msgstr "Запущенные оповещения" + +#: ../../enterprise/include/functions_reporting_csv.php:895 +msgid "Last 8 hours events" +msgstr "События последних 8 часов" + +#: ../../enterprise/include/functions_reporting_csv.php:898 +#: ../../include/functions_reports.php:770 +#: ../../include/functions_reports.php:776 +msgid "Group report" +msgstr "Отчет группы" + +#: ../../enterprise/include/functions_reporting_csv.php:1009 +#: ../../enterprise/include/functions_ipam.php:1876 +#: ../../enterprise/tools/ipam/ipam_network.php:363 +#: ../../enterprise/tools/ipam/ipam_network.php:632 +#: ../../enterprise/tools/ipam/ipam_ajax.php:148 +#: ../../enterprise/tools/ipam/ipam_ajax.php:326 +#: ../../enterprise/tools/ipam/ipam_massive.php:83 +#: ../../godmode/users/configure_user.php:1010 +#: ../../godmode/admin_access_logs.php:213 +#: ../../mobile/operation/events.php:561 +#: ../../include/functions_reporting_html.php:5195 +#: ../../include/functions.php:3053 ../../include/ajax/events.php:1369 +#: ../../operation/users/user_edit.php:620 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:461 +#: ../../general/logon_ok.php:249 +msgid "Comments" +msgstr "Комментарии" + +#: ../../enterprise/include/functions_reporting_csv.php:1013 +msgid "Illegal query or any other error" +msgstr "Неавторизованный запрос или любая другая ошибка" + +#: ../../enterprise/include/functions_reporting_csv.php:1035 +#: ../../include/functions_reports.php:657 +msgid "SQL vertical bar graph" +msgstr "SQL вертикальная панель графика" + +#: ../../enterprise/include/functions_reporting_csv.php:1037 +msgid "SQL horizontal bar graph" +msgstr "Горизонтальная гистограмма SQL" + +#: ../../enterprise/include/functions_reporting_csv.php:1039 +#: ../../include/functions_reports.php:661 +msgid "SQL pie graph" +msgstr "SQL секторный график" + +#: ../../enterprise/include/functions_reporting_csv.php:1068 +#: ../../enterprise/include/functions_reporting_csv.php:1086 +#: ../../enterprise/include/functions_reporting_csv.php:1088 +#: ../../include/functions_reports.php:743 +#: ../../include/functions_reporting.php:5576 +#: ../../include/functions_reporting.php:8758 +msgid "Summatory" +msgstr "Сумма" + +#: ../../enterprise/include/functions_reporting_csv.php:1118 +#: ../../enterprise/include/functions_reporting_csv.php:1120 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1128 +msgid "Minimum Value" +msgstr "Минимальное значение" + +#: ../../enterprise/include/functions_reporting_csv.php:1133 +#: ../../include/functions_reporting.php:8762 +msgid "Minimum" +msgstr "Минимум" + +#: ../../enterprise/include/functions_reporting_csv.php:1173 +#: ../../enterprise/include/functions_reporting_csv.php:1175 +#: ../../enterprise/include/functions_reporting_csv.php:1181 +#: ../../enterprise/include/functions_reporting_csv.php:1183 +msgid "Maximun Value" +msgstr "Максимальное значение" + +#: ../../enterprise/include/functions_reporting_csv.php:1209 +#: ../../enterprise/include/functions_reporting_csv.php:1223 +#: ../../enterprise/include/functions_reporting_csv.php:1227 +#: ../../enterprise/include/functions_reporting_csv.php:1238 +#: ../../include/functions_reporting_html.php:3248 +#: ../../include/functions_reports.php:751 +#: ../../include/functions_reporting.php:8283 +msgid "Increment" +msgstr "Увеличить" + +#: ../../enterprise/include/functions_reporting_csv.php:1223 +#: ../../include/functions_reporting_html.php:3246 +msgid "From data" +msgstr "Из данных" + +#: ../../enterprise/include/functions_reporting_csv.php:1223 +#: ../../include/functions_reporting_html.php:3247 +msgid "To data" +msgstr "В данные" + +#: ../../enterprise/include/functions_reporting_csv.php:1229 +#: ../../enterprise/include/functions_reporting_csv.php:1240 +#: ../../include/functions_reporting_html.php:3275 +msgid "Negative increase: " +msgstr "Отрицательный прирост: " + +#: ../../enterprise/include/functions_reporting_csv.php:1231 +#: ../../enterprise/include/functions_reporting_csv.php:1242 +#: ../../include/functions_reporting_html.php:3277 +msgid "Positive increase: " +msgstr "Положительный прирост: " + +#: ../../enterprise/include/functions_reporting_csv.php:1233 +#: ../../enterprise/include/functions_reporting_csv.php:1244 +#: ../../include/functions_reporting_html.php:3279 +msgid "Neutral increase: " +msgstr "Нейтральный прирост: " + +#: ../../enterprise/include/functions_reporting_csv.php:1258 +#: ../../enterprise/include/functions_reporting_csv.php:1277 +#: ../../enterprise/include/functions_reporting_csv.php:1279 +#: ../../enterprise/include/functions_reporting_csv.php:1285 +#: ../../enterprise/include/functions_reporting_csv.php:1287 +#: ../../include/functions_reporting.php:5581 +msgid "AVG. Value" +msgstr "СРД. значение" + +#: ../../enterprise/include/functions_reporting_csv.php:1292 +msgid "AVG" +msgstr "СРД" + +#: ../../enterprise/include/functions_reporting_csv.php:1313 +#: ../../enterprise/include/functions_reporting_csv.php:1331 +#: ../../enterprise/include/functions_reporting_csv.php:1333 +#: ../../include/functions_reporting.php:4937 +msgid "Monitor Report" +msgstr "Отчёт монитора" + +#: ../../enterprise/include/functions_reporting_csv.php:1327 +msgid "% Wrong" +msgstr "% Неверно" + +#: ../../enterprise/include/functions_reporting_csv.php:1342 +msgid "Simple Graph" +msgstr "Простой график" + +#: ../../enterprise/include/functions_reporting_csv.php:1402 +#: ../../enterprise/include/functions_reporting_csv.php:1448 +#: ../../enterprise/include/functions_reporting_csv.php:1521 +#: ../../enterprise/include/functions_reporting_csv.php:1640 +#: ../../enterprise/include/functions_reporting_csv.php:1908 +msgid "SLA Max" +msgstr "SLA Max" + +#: ../../enterprise/include/functions_reporting_csv.php:1403 +#: ../../enterprise/include/functions_reporting_csv.php:1449 +#: ../../enterprise/include/functions_reporting_csv.php:1522 +#: ../../enterprise/include/functions_reporting_csv.php:1641 +#: ../../enterprise/include/functions_reporting_csv.php:1909 +msgid "SLA Min" +msgstr "SLA Min" + +#: ../../enterprise/include/functions_reporting_csv.php:1404 +#: ../../enterprise/include/functions_reporting_csv.php:1450 +#: ../../enterprise/include/functions_reporting_csv.php:1523 +#: ../../enterprise/include/functions_reporting_csv.php:1642 +#: ../../enterprise/include/functions_reporting_csv.php:1910 +#: ../../enterprise/include/functions_reporting.php:1813 +#: ../../enterprise/include/functions_reporting.php:2747 +#: ../../enterprise/include/functions_reporting.php:3744 +#: ../../enterprise/include/functions_reporting.php:5860 +#: ../../include/functions_reporting_html.php:525 +msgid "SLA Limit" +msgstr "Разрешение SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1405 +#: ../../enterprise/include/functions_reporting_csv.php:1451 +msgid "Time Total " +msgstr "Общее время " + +#: ../../enterprise/include/functions_reporting_csv.php:1406 +#: ../../enterprise/include/functions_reporting_csv.php:1452 +msgid "Time OK " +msgstr "Время ОК " + +#: ../../enterprise/include/functions_reporting_csv.php:1407 +#: ../../enterprise/include/functions_reporting_csv.php:1453 +msgid "Time Error " +msgstr "Ошибка время " + +#: ../../enterprise/include/functions_reporting_csv.php:1408 +#: ../../enterprise/include/functions_reporting_csv.php:1454 +msgid "Time Unknown " +msgstr "Время неизвестно " + +#: ../../enterprise/include/functions_reporting_csv.php:1409 +#: ../../enterprise/include/functions_reporting_csv.php:1455 +msgid "Time Not Init " +msgstr "Время не инициализировано " + +#: ../../enterprise/include/functions_reporting_csv.php:1410 +#: ../../enterprise/include/functions_reporting_csv.php:1456 +msgid "Time Downtime " +msgstr "Время остановки " + +#: ../../enterprise/include/functions_reporting_csv.php:1411 +#: ../../enterprise/include/functions_reporting_csv.php:1457 +msgid "Checks Total " +msgstr "Общие проверки " + +#: ../../enterprise/include/functions_reporting_csv.php:1412 +#: ../../enterprise/include/functions_reporting_csv.php:1458 +msgid "Checks OK " +msgstr "Проверки ОК " + +#: ../../enterprise/include/functions_reporting_csv.php:1413 +#: ../../enterprise/include/functions_reporting_csv.php:1459 +msgid "Checks Error " +msgstr "Ошибка проверки " + +#: ../../enterprise/include/functions_reporting_csv.php:1414 +#: ../../enterprise/include/functions_reporting_csv.php:1460 +msgid "Checks Unknown " +msgstr "Проверки неизвестно " + +#: ../../enterprise/include/functions_reporting_csv.php:1415 +#: ../../enterprise/include/functions_reporting_csv.php:1461 +msgid "Checks Not Init " +msgstr "Проверки не инициализированы " + +#: ../../enterprise/include/functions_reporting_csv.php:1416 +#: ../../enterprise/include/functions_reporting_csv.php:1462 +msgid "SLA " +msgstr "SLA " + +#: ../../enterprise/include/functions_reporting_csv.php:1417 +#: ../../enterprise/include/functions_reporting_csv.php:1463 +msgid "Status " +msgstr "Статус " + +#: ../../enterprise/include/functions_reporting_csv.php:1439 +#: ../../enterprise/include/functions_reporting_csv.php:1485 +#: ../../enterprise/include/functions_reporting_csv.php:1803 +#: ../../enterprise/include/functions_reporting.php:1833 +#: ../../enterprise/include/functions_reporting.php:1874 +#: ../../enterprise/include/functions_reporting.php:2772 +#: ../../enterprise/include/functions_reporting.php:2831 +#: ../../enterprise/include/functions_reporting.php:3770 +#: ../../enterprise/include/functions_reporting.php:3829 +#: ../../enterprise/include/functions_reporting.php:5884 +#: ../../include/functions_reporting_html.php:642 +#: ../../include/functions_config.php:1215 +#: ../../include/functions_config.php:3043 +msgid "Fail" +msgstr "Сбой" + +#: ../../enterprise/include/functions_reporting_csv.php:1509 +#: ../../enterprise/include/functions_reporting_csv.php:1625 +#: ../../enterprise/include/functions_reporting_csv.php:1825 +#: ../../enterprise/include/functions_reporting_csv.php:1893 +msgid "Subtitle" +msgstr "Подзаголовок" + +#: ../../enterprise/include/functions_reporting_csv.php:1524 +#: ../../enterprise/include/functions_reporting_csv.php:1656 +#: ../../enterprise/include/functions_reporting_csv.php:1924 +msgid "Time Total Month" +msgstr "Общее Время Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1525 +#: ../../enterprise/include/functions_reporting_csv.php:1657 +#: ../../enterprise/include/functions_reporting_csv.php:1925 +msgid "Time OK Month" +msgstr "Время ОК Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1526 +#: ../../enterprise/include/functions_reporting_csv.php:1658 +#: ../../enterprise/include/functions_reporting_csv.php:1926 +msgid "Time Error Month" +msgstr "Время ошибок Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1527 +#: ../../enterprise/include/functions_reporting_csv.php:1659 +#: ../../enterprise/include/functions_reporting_csv.php:1927 +msgid "Time Unknown Month" +msgstr "Время неизвестно Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1528 +#: ../../enterprise/include/functions_reporting_csv.php:1660 +#: ../../enterprise/include/functions_reporting_csv.php:1928 +msgid "Time Downtime Month" +msgstr "Время остановки Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1529 +#: ../../enterprise/include/functions_reporting_csv.php:1661 +#: ../../enterprise/include/functions_reporting_csv.php:1929 +msgid "Time Not Init Month" +msgstr "Время не инициализировано Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1530 +#: ../../enterprise/include/functions_reporting_csv.php:1662 +#: ../../enterprise/include/functions_reporting_csv.php:1930 +msgid "Checks Total Month" +msgstr "Общие проверки Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1531 +#: ../../enterprise/include/functions_reporting_csv.php:1663 +#: ../../enterprise/include/functions_reporting_csv.php:1931 +msgid "Checks OK Month" +msgstr "Проверки ОК Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1532 +#: ../../enterprise/include/functions_reporting_csv.php:1664 +#: ../../enterprise/include/functions_reporting_csv.php:1932 +msgid "Checks Error Month" +msgstr "Ошибки проверок Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1533 +#: ../../enterprise/include/functions_reporting_csv.php:1665 +#: ../../enterprise/include/functions_reporting_csv.php:1933 +msgid "Checks Unknown Month" +msgstr "Неизвестные проверки Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1534 +#: ../../enterprise/include/functions_reporting_csv.php:1666 +#: ../../enterprise/include/functions_reporting_csv.php:1934 +msgid "Checks Not Init Month" +msgstr "Не инициализированные проверки Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1535 +#: ../../enterprise/include/functions_reporting_csv.php:1667 +#: ../../enterprise/include/functions_reporting_csv.php:1935 +msgid "SLA Month" +msgstr "SLA Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1536 +#: ../../enterprise/include/functions_reporting_csv.php:1668 +#: ../../enterprise/include/functions_reporting_csv.php:1936 +msgid "Status Month" +msgstr "Статус Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1558 +#: ../../enterprise/include/functions_reporting.php:1982 +msgid "Day" +msgstr "День" + +#: ../../enterprise/include/functions_reporting_csv.php:1559 +#: ../../enterprise/include/functions_reporting_csv.php:1714 +msgid "Time Total Day" +msgstr "Общее время День" + +#: ../../enterprise/include/functions_reporting_csv.php:1560 +#: ../../enterprise/include/functions_reporting_csv.php:1715 +msgid "Time OK Day" +msgstr "Время ОК День" + +#: ../../enterprise/include/functions_reporting_csv.php:1561 +#: ../../enterprise/include/functions_reporting_csv.php:1716 +msgid "Time Error Day" +msgstr "Время ошибок День" + +#: ../../enterprise/include/functions_reporting_csv.php:1562 +#: ../../enterprise/include/functions_reporting_csv.php:1717 +msgid "Time Unknown Day" +msgstr "Время неизвестно День" + +#: ../../enterprise/include/functions_reporting_csv.php:1563 +#: ../../enterprise/include/functions_reporting_csv.php:1718 +msgid "Time Not Init Day" +msgstr "Время не инициализировано День" + +#: ../../enterprise/include/functions_reporting_csv.php:1564 +#: ../../enterprise/include/functions_reporting_csv.php:1719 +msgid "Time Downtime Day" +msgstr "Время остановки День" + +#: ../../enterprise/include/functions_reporting_csv.php:1565 +#: ../../enterprise/include/functions_reporting_csv.php:1720 +msgid "Time Out Day" +msgstr "Время истекло День" + +#: ../../enterprise/include/functions_reporting_csv.php:1566 +#: ../../enterprise/include/functions_reporting_csv.php:1721 +msgid "Checks Total Day" +msgstr "Общая проверка День" + +#: ../../enterprise/include/functions_reporting_csv.php:1567 +#: ../../enterprise/include/functions_reporting_csv.php:1722 +msgid "Checks OK Day" +msgstr "Проверки ОК День" + +#: ../../enterprise/include/functions_reporting_csv.php:1568 +#: ../../enterprise/include/functions_reporting_csv.php:1723 +msgid "Checks Error Day" +msgstr "Проверки ошибки День" + +#: ../../enterprise/include/functions_reporting_csv.php:1569 +#: ../../enterprise/include/functions_reporting_csv.php:1724 +msgid "Checks Unknown Day" +msgstr "Проверки неизвестно День" + +#: ../../enterprise/include/functions_reporting_csv.php:1570 +#: ../../enterprise/include/functions_reporting_csv.php:1725 +msgid "Checks Not Init Day" +msgstr "Проверки не инициализированы День" + +#: ../../enterprise/include/functions_reporting_csv.php:1571 +#: ../../enterprise/include/functions_reporting_csv.php:1726 +msgid "SLA Day" +msgstr "SLA День" + +#: ../../enterprise/include/functions_reporting_csv.php:1572 +#: ../../enterprise/include/functions_reporting_csv.php:1727 +msgid "SLA Fixed Day" +msgstr "SLA фикс День" + +#: ../../enterprise/include/functions_reporting_csv.php:1573 +#: ../../enterprise/include/functions_reporting_csv.php:1728 +msgid "Date From Day" +msgstr "Дата от Дня" + +#: ../../enterprise/include/functions_reporting_csv.php:1574 +#: ../../enterprise/include/functions_reporting_csv.php:1729 +msgid "Date To Day" +msgstr "Дата ко Дню" + +#: ../../enterprise/include/functions_reporting_csv.php:1575 +#: ../../enterprise/include/functions_reporting_csv.php:1730 +msgid "Status Day" +msgstr "Статус День" + +#: ../../enterprise/include/functions_reporting_csv.php:1635 +#: ../../enterprise/include/functions_reporting_csv.php:1903 +#: ../../include/functions_html.php:2046 +msgid "Month" +msgstr "Месяц" + +#: ../../enterprise/include/functions_reporting_csv.php:1636 +#: ../../enterprise/include/functions_reporting_csv.php:1904 +msgid "Month Number" +msgstr "Номер Месяца" + +#: ../../enterprise/include/functions_reporting_csv.php:1637 +#: ../../enterprise/include/functions_reporting_csv.php:1905 +msgid "Year" +msgstr "Год" + +#: ../../enterprise/include/functions_reporting_csv.php:1687 +msgid "Time Total week" +msgstr "Общее Время неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1688 +msgid "Time OK week" +msgstr "Время ОК неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1689 +msgid "Time Error week" +msgstr "Время Ошибки неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1690 +msgid "Time Unknown week" +msgstr "Время Неизвестно неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1691 +msgid "Time Downtime week" +msgstr "Время остановки неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1692 +msgid "Time Not Init week" +msgstr "Время Не инициализировано неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1693 +msgid "Checks Total week" +msgstr "Проверки Общие неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1694 +msgid "Checks OK week" +msgstr "Проверки ОК неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1695 +msgid "Checks Error week" +msgstr "Проверки Ошибка неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1696 +msgid "Checks Unknown week" +msgstr "Проверки Неизвестно неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1697 +msgid "Status week" +msgstr "Статус неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1713 +msgid "Day Week" +msgstr "День неделя" + +#: ../../enterprise/include/functions_reporting_csv.php:1765 +msgid "S.L.A. Services" +msgstr "Сервисы S.L.A." + +#: ../../enterprise/include/functions_reporting_csv.php:1783 +msgid "Lost sercice " +msgstr "Потерян сервис " + +#: ../../enterprise/include/functions_reporting_csv.php:1784 +msgid "Service " +msgstr "Сервис " + +#: ../../enterprise/include/functions_reporting_csv.php:1785 +msgid "Limit " +msgstr "Предел " + +#: ../../enterprise/include/functions_reporting_csv.php:1786 +msgid "SLA Compilance " +msgstr "Составление SLA " + +#: ../../enterprise/include/functions_reporting_csv.php:1787 +msgid "Unknown " +msgstr "Неизвестно " + +#: ../../enterprise/include/functions_reporting_csv.php:1788 +msgid "Ok " +msgstr "ОК " + +#: ../../enterprise/include/functions_reporting_csv.php:1789 +msgid "Fail " +msgstr "Не удалось " + +#: ../../enterprise/include/functions_reporting_csv.php:1790 +msgid "Result " +msgstr "Результат " + +#: ../../enterprise/include/functions_reporting_csv.php:1835 +msgid "SLA max" +msgstr "SLA max" + +#: ../../enterprise/include/functions_reporting_csv.php:1836 +msgid "SLA min" +msgstr "SLA min" + +#: ../../enterprise/include/functions_reporting_csv.php:1837 +msgid "SLA limit" +msgstr "Предел SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1838 +#: ../../enterprise/include/functions_reporting.php:4829 +#: ../../include/functions_reporting_html.php:559 +msgid "Time Total" +msgstr "Общее Время" + +#: ../../enterprise/include/functions_reporting_csv.php:1839 +#: ../../enterprise/include/functions_reporting.php:4832 +#: ../../include/functions_reporting_html.php:561 +#: ../../include/functions_reporting_html.php:3387 +msgid "Time OK" +msgstr "Время ОК" + +#: ../../enterprise/include/functions_reporting_csv.php:1840 +msgid "Time Error" +msgstr "Время Ошибка" + +#: ../../enterprise/include/functions_reporting_csv.php:1841 +#: ../../enterprise/include/functions_reporting.php:4833 +#: ../../include/functions_reporting_html.php:562 +#: ../../include/functions_reporting_html.php:3393 +msgid "Time Unknown" +msgstr "Время Неизвестно" + +#: ../../enterprise/include/functions_reporting_csv.php:1842 +#: ../../enterprise/include/functions_reporting.php:4834 +#: ../../include/functions_reporting_html.php:563 +msgid "Time Not Init" +msgstr "Время не инициализировано" + +#: ../../enterprise/include/functions_reporting_csv.php:1843 +#: ../../include/functions_reporting_html.php:3405 +msgid "Time Downtime" +msgstr "Время Простоя" + +#: ../../enterprise/include/functions_reporting_csv.php:1844 +#: ../../enterprise/include/functions_reporting.php:4924 +#: ../../include/functions_reporting_html.php:592 +msgid "Checks Total" +msgstr "Общие Проверки" + +#: ../../enterprise/include/functions_reporting_csv.php:1845 +#: ../../enterprise/include/functions_reporting.php:4927 +#: ../../include/functions_reporting_html.php:594 +#: ../../include/functions_reporting_html.php:3473 +msgid "Checks OK" +msgstr "Проверки ОК" + +#: ../../enterprise/include/functions_reporting_csv.php:1846 +msgid "Checks Error" +msgstr "Проверки Ошибка" + +#: ../../enterprise/include/functions_reporting_csv.php:1847 +#: ../../enterprise/include/functions_reporting.php:4928 +#: ../../include/functions_reporting_html.php:595 +msgid "Checks Unknown" +msgstr "Проверки Неизвестно" + +#: ../../enterprise/include/functions_reporting_csv.php:1848 +#: ../../enterprise/include/functions_reporting.php:4929 +msgid "Checks Not Init" +msgstr "Проверки Не инициализированы" + +#: ../../enterprise/include/functions_reporting_csv.php:1849 +#: ../../enterprise/operation/services/services.service.php:199 +#: ../../enterprise/operation/services/services.list.php:515 +#: ../../include/functions_reports.php:687 +#: ../../include/functions_reports.php:692 +#: ../../include/functions_reports.php:696 +#: ../../include/functions_reports.php:700 +#: ../../include/functions_reports.php:706 +msgid "SLA" +msgstr "соглашениe об уровне обслуживания (SLA)" + +#: ../../enterprise/include/functions_reporting_csv.php:1850 +msgid "SLA Fixed" +msgstr "SLA фикс" + +#: ../../enterprise/include/functions_reporting_csv.php:1955 +msgid "Time Total day" +msgstr "Общее время День" + +#: ../../enterprise/include/functions_reporting_csv.php:1956 +msgid "Time OK day" +msgstr "Время ОК День" + +#: ../../enterprise/include/functions_reporting_csv.php:1957 +msgid "Time Error day" +msgstr "Время Ошибка День" + +#: ../../enterprise/include/functions_reporting_csv.php:1958 +msgid "Time Unknown day" +msgstr "Время Неизвестно День" + +#: ../../enterprise/include/functions_reporting_csv.php:1959 +msgid "Time Downtime day" +msgstr "Время Простоя День" + +#: ../../enterprise/include/functions_reporting_csv.php:1960 +msgid "Time Not Init day" +msgstr "Время Не инициализировано День" + +#: ../../enterprise/include/functions_reporting_csv.php:1961 +msgid "Checks Total day" +msgstr "Проверки Общие День" + +#: ../../enterprise/include/functions_reporting_csv.php:1962 +msgid "Checks OK day" +msgstr "Проверки ОК День" + +#: ../../enterprise/include/functions_reporting_csv.php:1963 +msgid "Checks Error day" +msgstr "Проверки Ошибка День" + +#: ../../enterprise/include/functions_reporting_csv.php:1964 +msgid "Checks Unknown day" +msgstr "Проверки Неизвестно День" + +#: ../../enterprise/include/functions_reporting_csv.php:1965 +msgid "Status day" +msgstr "Статус День" + +#: ../../enterprise/include/functions_reporting_csv.php:1981 +#: ../../enterprise/include/functions_events.php:230 +msgid "Hours" +msgstr "Часов" + +#: ../../enterprise/include/functions_reporting_csv.php:1982 +msgid "Time Total hours" +msgstr "Общее время часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1983 +msgid "Time OK hours" +msgstr "Время ОК часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1984 +msgid "Time Error hours" +msgstr "Время Ошибка часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1985 +msgid "Time Unknown hours" +msgstr "Время Неизвестно часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1986 +msgid "Time Not Init hours" +msgstr "Время Не инициализировано часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1987 +msgid "Time Downtime hours" +msgstr "Время остановки часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1988 +msgid "Time Out hours" +msgstr "Время истекло часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1989 +msgid "Checks Total hours" +msgstr "Проверки Общие часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1990 +msgid "Checks OK hours" +msgstr "Проверки ОК часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1991 +msgid "Checks Error hours" +msgstr "Проверки Ошибка часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1992 +msgid "Checks Unknown hours" +msgstr "Проверки Неизвестно часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1993 +msgid "Checks Not Init hours" +msgstr "Проверки Не инициализированы часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1994 +msgid "SLA hours" +msgstr "SLA часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1995 +msgid "SLA Fixed hours" +msgstr "SLA фикс часы" + +#: ../../enterprise/include/functions_reporting_csv.php:1996 +msgid "Date From hours" +msgstr "Дата от часа" + +#: ../../enterprise/include/functions_reporting_csv.php:1997 +msgid "Date To hours" +msgstr "Дата до часа" + +#: ../../enterprise/include/functions_reporting_csv.php:1998 +msgid "Status hours" +msgstr "Статус часы" + +#: ../../enterprise/include/functions_reporting_csv.php:2125 +msgid "Simple Baseline Graph" +msgstr "Простой базовый график" + +#: ../../enterprise/include/functions_reporting_csv.php:2156 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:562 +msgid "Custom Graph" +msgstr "Пользовательский график" + +#: ../../enterprise/include/functions_reporting_csv.php:2301 +#: ../../include/functions_reporting.php:4645 +msgid "Alert Report Module" +msgstr "Модуль отчетов о предупреждениях" + +#: ../../enterprise/include/functions_reporting_csv.php:2303 +#: ../../include/functions_reporting.php:4478 +msgid "Alert Report Agent" +msgstr "Агент отчетов о предупреждениях" + +#: ../../enterprise/include/functions_reporting_csv.php:2305 +#: ../../include/functions_reporting.php:4298 +msgid "Alert Report Group" +msgstr "Группа отчетов о предупреждениях" + +#: ../../enterprise/include/functions_reporting_csv.php:2323 +msgid "Actions Triggered" +msgstr "Действия запущены" + +#: ../../enterprise/include/functions_reporting_csv.php:2323 +msgid "Template Triggered" +msgstr "Шаблон запущен" + +#: ../../enterprise/include/functions_reporting_csv.php:2360 +msgid "Event Report Log" +msgstr "Журнал отчетов о событиях" + +#: ../../enterprise/include/functions_reporting_csv.php:2389 +#: ../../include/functions_reports.php:896 +#: ../../include/functions_reports.php:897 +#: ../../include/functions_reporting.php:3843 +msgid "Permissions report" +msgstr "Отчет о разрешениях" + +#: ../../enterprise/include/functions_reporting_csv.php:2407 +#: ../../enterprise/include/functions_reporting_csv.php:2417 +#: ../../godmode/users/user_list.php:412 +#: ../../godmode/users/configure_user.php:820 +#: ../../godmode/users/configure_user.php:836 +#: ../../include/functions_reporting_html.php:4485 +#: ../../include/functions_reporting_html.php:5683 +#: ../../include/functions_reporting_html.php:5706 +#: ../../operation/search_users.php:34 ../../operation/users/user_edit.php:259 +#: ../../operation/snmpconsole/snmp_view.php:878 +msgid "User ID" +msgstr "Идентификатор пользователя" + +#: ../../enterprise/include/functions_reporting_csv.php:2407 +#: ../../enterprise/include/functions_reporting_csv.php:2417 +#: ../../include/functions_reporting_html.php:5684 +#: ../../include/functions_reporting_html.php:5707 +msgid "Full name" +msgstr "Полное имя" + +#: ../../enterprise/include/functions_reporting_csv.php:2407 +#: ../../enterprise/include/functions_reporting_csv.php:2417 +#: ../../include/functions_reporting_html.php:5685 +#: ../../include/functions_reporting_html.php:5708 +msgid "Permissions" +msgstr "Разрешения" + +#: ../../enterprise/include/functions_reporting_csv.php:2453 +#: ../../include/functions_reporting.php:5076 +msgid "Netflow Area" +msgstr "Область Netflow" + +#: ../../enterprise/include/functions_reporting_csv.php:2455 +#: ../../include/functions_reporting.php:5084 +msgid "Netflow Data" +msgstr "Данные Netflow" + +#: ../../enterprise/include/functions_reporting_csv.php:2457 +#: ../../include/functions_reporting.php:5080 +msgid "Netflow Summary" +msgstr "Краткие сведения Netflow" + +#: ../../enterprise/include/functions_aws.php:381 +msgid "$" +msgstr "$" + +#: ../../enterprise/include/functions_aws.php:491 +msgid "Current deployments" +msgstr "Текущие процессы" + +#: ../../enterprise/include/functions_aws.php:525 +msgid "Cost analysis" +msgstr "Анализ затрат" + +#: ../../enterprise/include/functions_aws.php:528 +msgid "Current cost estimation" +msgstr "Текущая оценка затрат" + +#: ../../enterprise/include/functions_aws.php:530 +msgid "Previous period cost" +msgstr "Затраты предыдущего периода" + +#: ../../enterprise/include/functions_aws.php:589 +msgid "Reservation status" +msgstr "Статус резервирования" + +#: ../../enterprise/include/functions_HA_cluster.php:46 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1787 +#: ../../godmode/servers/plugin.php:1089 +msgid "Deploy" +msgstr "Развернуть" + +#: ../../enterprise/include/functions_HA_cluster.php:49 +msgid "Recover" +msgstr "Восстановить" + +#: ../../enterprise/include/functions_HA_cluster.php:52 +msgid "Promote" +msgstr "Повысить" + +#: ../../enterprise/include/functions_HA_cluster.php:55 +msgid "Demote" +msgstr "Понизить" + +#: ../../enterprise/include/functions_HA_cluster.php:64 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1844 +msgid "Cleanup" +msgstr "Зачистить" + +#: ../../enterprise/include/functions_HA_cluster.php:67 +msgid "Resync" +msgstr "Синхронизировать" + +#: ../../enterprise/include/functions_HA_cluster.php:261 +msgid "Public Key Authentication Failed" +msgstr "Аутентификация с общим ключом не удалась" + +#: ../../enterprise/include/functions_HA_cluster.php:268 +msgid "Connection failed" +msgstr "Не удалось подключение" + +#: ../../enterprise/include/functions_HA_cluster.php:491 +msgid "Register" +msgstr "Регистрация" + +#: ../../enterprise/include/functions_HA_cluster.php:493 +msgid "Register new node" +msgstr "Зарегистрировать новый узел" + +#: ../../enterprise/include/functions_HA_cluster.php:496 +#: ../../include/class/NetworkMap.class.php:2983 +msgid "Update node" +msgstr "Обновить узел" + +#: ../../enterprise/include/class/Azure.cloud.php:148 +#: ../../enterprise/include/class/Aws.cloud.php:107 +#: ../../enterprise/include/class/Google.cloud.php:142 +msgid "Cloud message" +msgstr "Облачное сообщение" + +#: ../../enterprise/include/class/Azure.cloud.php:153 +#: ../../include/class/CredentialStore.class.php:927 +msgid "Azure" +msgstr "Azure" + +#: ../../enterprise/include/class/Azure.cloud.php:248 +#: ../../enterprise/include/class/Google.cloud.php:242 +msgid "Task details" +msgstr "Детали задачи" + +#: ../../enterprise/include/class/Azure.cloud.php:249 +#: ../../enterprise/include/class/Google.cloud.php:243 +msgid "Instance explorer" +msgstr "Проводник экземпляров" + +#: ../../enterprise/include/class/Azure.cloud.php:250 +#: ../../enterprise/include/class/Google.cloud.php:244 +msgid "Metrics" +msgstr "Метрики" + +#: ../../enterprise/include/class/Azure.cloud.php:307 +msgid "Microsoft Compute" +msgstr "Microsoft Compute" + +#: ../../enterprise/include/class/Azure.cloud.php:355 +#: ../../enterprise/include/class/Aws.cloud.php:1485 +#: ../../enterprise/include/class/Google.cloud.php:349 +#, php-format +msgid "%s not found or not executable" +msgstr "%s не найден или не исполняется" + +#: ../../enterprise/include/class/Azure.cloud.php:468 +#: ../../enterprise/include/class/Google.cloud.php:470 +msgid "Group not found." +msgstr "Группа не найдена." + +#: ../../enterprise/include/class/Azure.cloud.php:598 +#: ../../enterprise/include/class/Azure.cloud.php:646 +#: ../../enterprise/include/class/Google.cloud.php:597 +#: ../../enterprise/include/class/Google.cloud.php:643 +msgid "Unauthorized access" +msgstr "Неавторизированный доступ" + +#: ../../enterprise/include/class/Azure.cloud.php:771 +#: ../../enterprise/include/class/VMware.app.php:569 +#: ../../enterprise/include/class/DB2.app.php:437 +#: ../../enterprise/include/class/Aws.S3.php:401 +#: ../../enterprise/include/class/SAP.app.php:469 +#: ../../enterprise/include/class/Aws.cloud.php:1194 +#: ../../enterprise/include/class/MySQL.app.php:442 +#: ../../enterprise/include/class/Google.cloud.php:759 +#: ../../enterprise/include/class/Oracle.app.php:438 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:433 +#: ../../godmode/wizards/HostDevices.class.php:838 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:539 +#: ../../include/class/CustomNetScan.class.php:446 +#: ../../operation/servers/recon_view.php:94 +msgid "Task name" +msgstr "Название задачи" + +#: ../../enterprise/include/class/Azure.cloud.php:797 +#: ../../enterprise/include/class/VMware.app.php:600 +#: ../../enterprise/include/class/Aws.S3.php:559 +#: ../../enterprise/include/class/Aws.cloud.php:533 +msgid "Tentacle options" +msgstr "Опции Tentacle" + +#: ../../enterprise/include/class/Azure.cloud.php:872 +#: ../../enterprise/include/class/Aws.cloud.php:735 +#: ../../enterprise/include/class/Aws.cloud.php:1267 +#: ../../enterprise/include/class/Google.cloud.php:822 +msgid "No instances found." +msgstr "Не найдено ни одного экземпляра." + +#: ../../enterprise/include/class/Azure.cloud.php:909 +#: ../../enterprise/include/class/Google.cloud.php:865 +msgid "Select target virtual machines" +msgstr "Выберите целевые виртуальные машины" + +#: ../../enterprise/include/class/Azure.cloud.php:928 +#: ../../enterprise/include/class/Aws.cloud.php:664 +msgid "Scan and general monitoring." +msgstr "Сканирование и общий мониторинг." + +#: ../../enterprise/include/class/Azure.cloud.php:941 +#: ../../enterprise/include/class/Aws.cloud.php:681 +msgid "Cpu performance summary" +msgstr "Краткий отчет производительности Cpu" + +#: ../../enterprise/include/class/Azure.cloud.php:949 +#: ../../enterprise/include/class/Aws.cloud.php:691 +#: ../../enterprise/include/class/Google.cloud.php:911 +msgid "IOPS performance summary" +msgstr "Краткий отчет производительности IOPS" + +#: ../../enterprise/include/class/Azure.cloud.php:957 +#: ../../enterprise/include/class/Aws.cloud.php:701 +#: ../../enterprise/include/class/Google.cloud.php:919 +msgid "Disk performance summary" +msgstr "Краткий отчет производительности Диска" + +#: ../../enterprise/include/class/Azure.cloud.php:965 +#: ../../enterprise/include/class/Aws.cloud.php:711 +#: ../../enterprise/include/class/Google.cloud.php:927 +msgid "Network performance summary" +msgstr "Краткий отчет производительности Сети" + +#: ../../enterprise/include/class/Azure.cloud.php:990 +#: ../../enterprise/include/class/VMware.app.php:994 +#: ../../enterprise/include/class/DB2.app.php:868 +#: ../../enterprise/include/class/Aws.S3.php:658 +#: ../../enterprise/include/class/SAP.app.php:921 +#: ../../enterprise/include/class/Aws.cloud.php:1583 +#: ../../enterprise/include/class/MySQL.app.php:944 +#: ../../enterprise/include/class/Google.cloud.php:952 +#: ../../enterprise/include/class/Oracle.app.php:971 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:815 +#: ../../godmode/wizards/HostDevices.class.php:1589 +#: ../../include/class/CustomNetScan.class.php:758 +msgid "Task configured." +msgstr "Задание настроено." + +#: ../../enterprise/include/class/Azure.cloud.php:994 +#: ../../enterprise/include/class/VMware.app.php:998 +#: ../../enterprise/include/class/DB2.app.php:872 +#: ../../enterprise/include/class/SAP.app.php:925 +#: ../../enterprise/include/class/MySQL.app.php:948 +#: ../../enterprise/include/class/Google.cloud.php:956 +#: ../../enterprise/include/class/Oracle.app.php:975 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:819 +#: ../../godmode/wizards/HostDevices.class.php:1593 +#: ../../include/class/CustomNetScan.class.php:762 +msgid "Wizard failed. Cannot configure task." +msgstr "Сбой помощника. Невозможно настроить задачу." + +#: ../../enterprise/include/class/SSH.class.php:184 +msgid "Failed to connect" +msgstr "Не удалось установить соединение" + +#: ../../enterprise/include/class/SSH.class.php:236 +#, php-format +msgid "Unable to open public key file %s" +msgstr "Невозможно открыть файл общего ключа %s" + +#: ../../enterprise/include/class/SSH.class.php:255 +msgid "Failed to login to target" +msgstr "Не удалось войти в систему" + +#: ../../enterprise/include/class/VMware.app.php:218 +msgid "" +"This VMware configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" +"Эта конфигурация VMware уже была определена. Пожалуйста, отредактируйте ее " +"или создайте новую." + +#: ../../enterprise/include/class/VMware.app.php:252 +#: ../../enterprise/include/class/DB2.app.php:197 +#: ../../enterprise/include/class/Aws.S3.php:183 +#: ../../enterprise/include/class/SAP.app.php:185 +#: ../../enterprise/include/class/Aws.cloud.php:910 +#: ../../enterprise/include/class/MySQL.app.php:206 +#: ../../enterprise/include/class/Oracle.app.php:198 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:197 +#: ../../godmode/wizards/HostDevices.class.php:422 +#: ../../include/class/CustomNetScan.class.php:168 +msgid "You must provide a task name." +msgstr "Вы должны указать имя задачи." + +#: ../../enterprise/include/class/VMware.app.php:257 +#: ../../enterprise/include/class/DB2.app.php:202 +#: ../../enterprise/include/class/Aws.S3.php:188 +#: ../../enterprise/include/class/SAP.app.php:190 +#: ../../enterprise/include/class/Aws.cloud.php:915 +#: ../../enterprise/include/class/MySQL.app.php:211 +#: ../../enterprise/include/class/Oracle.app.php:203 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:202 +#: ../../godmode/wizards/HostDevices.class.php:427 +#: ../../include/class/CustomNetScan.class.php:173 +msgid "You must select a Discovery Server." +msgstr "Вы должны выбрать сервер Discovery." + +#: ../../enterprise/include/class/VMware.app.php:262 +msgid "You must provide a valid V-Center IP or FQDN." +msgstr "Вы должны указать действительный IP-адрес V-Center или FQDN." + +#: ../../enterprise/include/class/VMware.app.php:267 +#: ../../enterprise/include/class/DB2.app.php:212 +#: ../../enterprise/include/class/Aws.S3.php:193 +#: ../../enterprise/include/class/SAP.app.php:200 +#: ../../enterprise/include/class/Aws.cloud.php:920 +#: ../../enterprise/include/class/MySQL.app.php:226 +#: ../../enterprise/include/class/Oracle.app.php:213 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:212 +#: ../../godmode/wizards/HostDevices.class.php:438 +#: ../../include/class/CustomNetScan.class.php:178 +msgid "You must select a valid group." +msgstr "Вы должны выбрать действительную группу." + +#: ../../enterprise/include/class/VMware.app.php:279 +msgid "Discovery.Application.VMware" +msgstr "Discovery.Application.VMware" + +#: ../../enterprise/include/class/VMware.app.php:298 +msgid "Please select a valid group" +msgstr "Пожалуйста, выберите действительную группу" + +#: ../../enterprise/include/class/VMware.app.php:357 +msgid "Failed to find discovery VMware task." +msgstr "Не удалось найти задачу discovery VMware." + +#: ../../enterprise/include/class/VMware.app.php:372 +msgid "Threads must be equal or greater than 1." +msgstr "Потоки должны быть равны или больше 1." + +#: ../../enterprise/include/class/VMware.app.php:472 +#: ../../enterprise/include/class/DB2.app.php:386 +#: ../../enterprise/include/class/SAP.app.php:336 +#: ../../enterprise/include/class/MySQL.app.php:403 +#: ../../enterprise/include/class/Oracle.app.php:387 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:382 +msgid "Application" +msgstr "Приложение" + +#: ../../enterprise/include/class/VMware.app.php:522 +#: ../../enterprise/include/class/DB2.app.php:569 +#: ../../enterprise/include/class/SAP.app.php:444 +#: ../../enterprise/include/class/MySQL.app.php:591 +#: ../../enterprise/include/class/Oracle.app.php:570 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:564 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1195 +#: ../../godmode/setup/setup_integria.php:624 +#: ../../godmode/wizards/HostDevices.class.php:772 +#: ../../include/class/CustomNetScan.class.php:553 +msgid "Update and continue" +msgstr "Обновить и продолжить" + +#: ../../enterprise/include/class/VMware.app.php:533 +#: ../../enterprise/include/class/Aws.S3.php:554 +#: ../../enterprise/include/class/Aws.cloud.php:493 +msgid "" +"This kind of task uses multipurpose plugins in order to generate monitoring " +"data, configure your desired tentacle target." +msgstr "" +"В этом задании используются многоцелевые плагины для генерации данных " +"мониторинга, настройки желаемой цели tentacle." + +#: ../../enterprise/include/class/VMware.app.php:580 +#: ../../enterprise/include/class/DB2.app.php:449 +#: ../../enterprise/include/class/Aws.S3.php:413 +#: ../../enterprise/include/class/SAP.app.php:482 +#: ../../enterprise/include/class/Aws.cloud.php:1206 +#: ../../enterprise/include/class/MySQL.app.php:454 +#: ../../enterprise/include/class/Oracle.app.php:450 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:445 +#: ../../godmode/wizards/HostDevices.class.php:849 +#: ../../include/class/CustomNetScan.class.php:480 +msgid "" +"You must select a Discovery Server to run the Task, otherwise the Recon Task " +"will never run" +msgstr "" +"Вы должны выбрать сервер обнаружения для запуска задачи, иначе задача Recon " +"не будет запущена." + +#: ../../enterprise/include/class/VMware.app.php:642 +msgid "Datacenter user" +msgstr "Пользователь центра обработки данных" + +#: ../../enterprise/include/class/VMware.app.php:654 +#: ../../enterprise/include/class/DB2.app.php:537 +#: ../../enterprise/include/class/Aws.S3.php:507 +#: ../../enterprise/include/class/SAP.app.php:514 +#: ../../enterprise/include/class/Aws.cloud.php:1312 +#: ../../enterprise/include/class/MySQL.app.php:559 +#: ../../enterprise/include/class/Oracle.app.php:538 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:532 +#: ../../godmode/wizards/HostDevices.class.php:799 +#: ../../include/class/CustomNetScan.class.php:521 +msgid "Manual interval means that it will be executed only On-demand" +msgstr "Интервал в ручную означает, что он будет выполнен только по запросу" + +#: ../../enterprise/include/class/VMware.app.php:661 +#: ../../enterprise/include/class/VMware.app.php:873 +#: ../../enterprise/include/class/DB2.app.php:544 +#: ../../enterprise/include/class/Aws.S3.php:514 +#: ../../enterprise/include/class/SAP.app.php:521 +#: ../../enterprise/include/class/Aws.cloud.php:1319 +#: ../../enterprise/include/class/MySQL.app.php:566 +#: ../../enterprise/include/class/Oracle.app.php:545 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:539 +#: ../../godmode/wizards/HostDevices.class.php:806 +#: ../../include/functions_reporting_html.php:1995 +#: ../../include/class/CustomNetScan.class.php:528 +msgid "Defined" +msgstr "Определено" + +#: ../../enterprise/include/class/VMware.app.php:679 +#: ../../enterprise/include/class/DB2.app.php:561 +#: ../../enterprise/include/class/Aws.S3.php:531 +#: ../../enterprise/include/class/SAPView.class.php:243 +#: ../../enterprise/include/class/SAPView.class.php:280 +#: ../../enterprise/include/class/SAP.app.php:540 +#: ../../enterprise/include/class/Aws.cloud.php:1336 +#: ../../enterprise/include/class/MySQL.app.php:583 +#: ../../enterprise/include/class/Oracle.app.php:562 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:556 +msgid "The minimum recomended interval is 5 minutes" +msgstr "Минимальный рекомендуемый интервал составляет 5 минут" + +#: ../../enterprise/include/class/VMware.app.php:693 +msgid "V-Center IP" +msgstr "V-Center IP" + +#: ../../enterprise/include/class/VMware.app.php:704 +msgid "Datacenter name" +msgstr "Имя центра обработки данных" + +#: ../../enterprise/include/class/VMware.app.php:705 +msgid "" +"This name must match with the name wich appears when you log in you VMware " +"manager" +msgstr "" +"Это имя должно совпадать с именем, которое отображается при входе в систему " +"VMware manager." + +#: ../../enterprise/include/class/VMware.app.php:735 +msgid "Encrypt passwords" +msgstr "Шифровать пароли" + +#: ../../enterprise/include/class/VMware.app.php:749 +#: ../../enterprise/include/class/DB2.app.php:470 +#: ../../enterprise/include/class/Aws.S3.php:435 +#: ../../enterprise/include/class/SAP.app.php:641 +#: ../../enterprise/include/class/Aws.cloud.php:1227 +#: ../../enterprise/include/class/MySQL.app.php:475 +#: ../../enterprise/include/class/Oracle.app.php:471 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:466 +msgid "This group will be used also to classify discovered agents" +msgstr "" +"Эта группа будет использоваться также для классификации обнаруженных агентов" + +#: ../../enterprise/include/class/VMware.app.php:856 +msgid "Max threads" +msgstr "Макс. число потоков" + +#: ../../enterprise/include/class/VMware.app.php:865 +msgid "Re-scan interval" +msgstr "Повторное сканирование интервала" + +#: ../../enterprise/include/class/VMware.app.php:866 +msgid "Enables re-scan entities process every interval defined." +msgstr "" +"Включает процесс повторного сканирования объектов через заданный интервал " +"времени." + +#: ../../enterprise/include/class/VMware.app.php:899 +msgid "Retry send" +msgstr "Повторная отправка" + +#: ../../enterprise/include/class/VMware.app.php:909 +msgid "Event mode" +msgstr "Режим события" + +#: ../../enterprise/include/class/VMware.app.php:909 +msgid "Only for VCenter." +msgstr "Только для VCenter." + +#: ../../enterprise/include/class/VMware.app.php:919 +msgid "Virtual network monitoring" +msgstr "Мониторинг виртуальной сети" + +#: ../../enterprise/include/class/VMware.app.php:944 +msgid "Extra settings" +msgstr "Дополнительные настройки" + +#: ../../enterprise/include/class/VMware.app.php:945 +msgid "This RAW block will be directly added to config file." +msgstr "Этот блок RAW будет непосредственно добавлен в файл конфигурации." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:235 +msgid "IP address is required" +msgstr "Необходим IP-адрес" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:245 +#: ../../enterprise/include/class/AgentRepository.class.php:413 +msgid "Target OS is required" +msgstr "Требуется целевая ОС" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:247 +#: ../../enterprise/include/class/AgentRepository.class.php:415 +msgid "Target architecture is required" +msgstr "Требуется целевая архитектура" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:249 +msgid "Credentials to use are required" +msgstr "Для использования необходимо указать учетные данные" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:251 +msgid "Desired agent version is required" +msgstr "Необходима требуемая версия агента" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:262 +msgid "Target already defined." +msgstr "Цель уже определена." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:288 +msgid "Target successfully added" +msgstr "Цель успешно добавлена" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:309 +msgid "Target successfully updated" +msgstr "Цель успешно обновлена" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:335 +#: ../../enterprise/include/class/AgentRepository.class.php:574 +msgid "Target successfully deleted" +msgstr "Цель успешно удалена" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:352 +msgid "You should specify a Discovery server" +msgstr "Вы должны указать сервер Discovery" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:354 +msgid "You must select some targets to deploy" +msgstr "Вы должны выбрать некоторые цели для развертывания" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:384 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 +msgid "Failed to schedule" +msgstr "Не удалось запланировать" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:399 +msgid "Deploy scheduled" +msgstr "Развертывание запланировано" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:425 +msgid "CSV file is needed" +msgstr "Необходим файл CSV" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:480 #, php-format msgid "" -"<strong style=\"font-size: 11pt\">License out of limits</strong> <br><br> " -"This license allows %d agents and you have %d agents configured." +"Credential identifier %s does not exist, please, add it to your repository " +"%s " msgstr "" -"<strong style=\"font-size: 11pt\"> Лицензия выходит за допустимые пределы " -"</strong> <br><br> Эта лицензия разрешает %d агентов и у вас есть %d агенты " -"конфирурации.\r\n" -"." +"Идентификатор учетных данных %s не существует, пожалуйста, добавьте его в " +"свое хранилище %s " -#: ../../enterprise/load_enterprise.php:485 +#: ../../enterprise/include/class/DeploymentCenter.class.php:488 +#, php-format +msgid "OS %s does not math any existing, please, add it to OS list %s" +msgstr "" +"ОС %s не соответствует ни одной существующей, пожалуйста, добавьте ее в " +"список ОС %s" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:496 #, php-format msgid "" -"<strong style=\"font-size: 11pt\">License out of limits</strong> <br><br> " -"This license allows %d modules and you have %d modules configured." +"Sofware agent version with id %s does not exist, please, add it to your " +"repository %s " msgstr "" +"Версия агента Sofware с id %s не существует, пожалуйста, добавьте ее в свой " +"репозиторий %s " -#: ../../enterprise/load_enterprise.php:492 -msgid "" -"<strong style=\"font-size: 11pt\">This license has expired.</strong> " -"<br><br>You can not get updates until you renew the license." +#: ../../enterprise/include/class/DeploymentCenter.class.php:518 +msgid "No target could be added. " +msgstr "Никакой цели добавить нельзя. " + +#: ../../enterprise/include/class/DeploymentCenter.class.php:594 +#: ../../enterprise/include/class/CSVImportAgents.class.php:98 +#: ../../godmode/wizards/HostDevices.class.php:196 +#: ../../include/class/ManageNetScanScripts.class.php:104 +#: ../../include/class/CustomNetScan.class.php:352 +msgid "Host & Devices" +msgstr "Хост и Устройства" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:621 +msgid "Deployment center" +msgstr "Центр развертывания" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:637 +msgid "There are no targets defined yet, please add some." +msgstr "Цели еще не определены, пожалуйста, добавьте их." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:644 +#, php-format +msgid "Please set %s to make software available for targets." msgstr "" -"<strong style=\"font-size: 11pt\"> срок действия лицензии истек. </strong> " -"<br><br> Вы не можете получать обновления, до тех пор вы не продлили " -"лицензию." +"Пожалуйста, установите %s, чтобы сделать программное обеспечение доступным " +"для целей." -#: ../../enterprise/load_enterprise.php:503 -msgid "" -"To continue using Pandora FMS, please disable enterprise by renaming the " -"Enterprise directory in the console.<br><br>Or contact Artica at " -"info@artica.es for a valid license:" -msgstr "" -"Чтобы продолжить работу с Pandora FMS, пожалуйста, отключите предприятия " -"путем переименования каталога предприятия в консоли. <br><br>Или свяжитесь с " -"Artica на info@artica.es для действующей лицензии:" - -#: ../../enterprise/load_enterprise.php:507 -msgid "Please contact Artica at info@artica.es to renew the license." -msgstr "" -"Пожалуйста, свяжитесь с Artica на info@artica.es чтобы продлить лицензию." - -#: ../../enterprise/load_enterprise.php:616 -msgid "Renew" -msgstr "продлить срок действия" - -#: ../../enterprise/load_enterprise.php:702 -msgid "Activate license" -msgstr "" - -#: ../../enterprise/load_enterprise.php:703 -msgid "Your <b>request key</b> is:" -msgstr "" - -#: ../../enterprise/load_enterprise.php:705 +#: ../../enterprise/include/class/DeploymentCenter.class.php:656 #, php-format msgid "" -"You can activate it manually <a href=\"%s\" target=\"_blank\">here</a> or " -"automatically filling the form below:" +"There are no software agents in your repository yet, please add some %s." msgstr "" +"В вашем репозитории еще нет программных агентов, пожалуйста, добавьте " +"несколько %s." -#: ../../enterprise/load_enterprise.php:710 -msgid "Auth Key:" -msgstr "" +#: ../../enterprise/include/class/DeploymentCenter.class.php:675 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1751 +msgid "Scan for targets" +msgstr "Сканирование для поиска целей" -#: ../../enterprise/load_enterprise.php:717 -#: ../../enterprise/load_enterprise.php:733 -msgid "Online validation" -msgstr "" +#: ../../enterprise/include/class/DeploymentCenter.class.php:684 +msgid "Add target" +msgstr "Добавить цель" -#: ../../enterprise/load_enterprise.php:726 -msgid "ERROR:" -msgstr "" +#: ../../enterprise/include/class/DeploymentCenter.class.php:693 +msgid "Load targets" +msgstr "Загрузить цели" -#: ../../enterprise/load_enterprise.php:726 -msgid "When connecting to Artica server." -msgstr "" +#: ../../enterprise/include/class/DeploymentCenter.class.php:757 +#: ../../enterprise/include/class/DeploymentCenter.class.php:825 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1301 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/AgentRepository.class.php:348 +#: ../../enterprise/include/class/AgentRepository.class.php:614 +#: ../../enterprise/include/class/AgentRepository.class.php:664 +msgid "Architecture" +msgstr "Архитектура" -#: ../../mobile/index.php:206 ../../mobile/operation/groups.php:52 -#: ../../mobile/operation/agent.php:59 -#: ../../mobile/operation/networkmaps.php:100 -#: ../../mobile/operation/module_graph.php:270 -#: ../../mobile/operation/modules.php:174 -#: ../../mobile/operation/tactical.php:69 -#: ../../mobile/operation/networkmap.php:79 -#: ../../mobile/operation/alerts.php:142 -#: ../../mobile/operation/visualmap.php:66 -#: ../../mobile/operation/events.php:426 -#: ../../mobile/operation/visualmaps.php:84 -#: ../../mobile/operation/agents.php:146 +#: ../../enterprise/include/class/DeploymentCenter.class.php:758 +msgid "Key identifier" +msgstr "Идентификатор ключа" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:759 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1222 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1359 +msgid "Target server IP" +msgstr "IP-адрес целевого сервера" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:760 +msgid "Agent version installed" +msgstr "Установленная версия агента" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:761 +msgid "Agent version desired" +msgstr "Необходимая версия агента" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:762 +msgid "Installation date" +msgstr "Дата установки" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:763 +msgid "Last error" +msgstr "Последняя ошибка" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:811 +msgid "Server IP" +msgstr "IP-адрес сервера" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:836 +msgid "State" +msgstr "Состояние" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:868 +msgid "Deploy agent to targets" +msgstr "Развертывание агента к цели" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:956 +#: ../../enterprise/include/class/AgentRepository.class.php:259 +msgid "Deploying" +msgstr "Развертывание" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1042 +msgid "You must define a network." +msgstr "Вы должны определить сеть." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1044 +msgid "You must select at least one credential to test." +msgstr "Вы должны выбрать хотя бы один элемнт для проверки." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1046 +msgid "You must select a Discovery server." +msgstr "Вы должны выбрать сервер Discovery." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1048 +msgid "Please select a desired software agent version." +msgstr "Пожалуйста, выберите нужную версию программного агента." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1050 +msgid "Please specify a server IP." +msgstr "Пожалуйста, укажите IP-адрес сервера." + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1070 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1103 +msgid "Discovery task list" +msgstr "Список задач Discovery" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1069 +#, php-format +msgid "This network is already being scanned. See progress at %s" +msgstr "Эта сеть уже сканируется. Посмотрите прогресс в %s" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1102 +#, php-format +msgid "Network scheduled to be scanned. You can see progress at %s" +msgstr "Запланировано сканирование сети. Вы можете увидеть прогресс в %s" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1135 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1265 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1268 +#: ../../enterprise/include/class/SAP.app.php:601 +#: ../../enterprise/include/class/SAP.app.php:604 +#: ../../godmode/wizards/HostDevices.class.php:1434 +#: ../../godmode/wizards/HostDevices.class.php:1437 +msgid "No credentials available" +msgstr "Нет доступных учетных данных" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1136 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1266 +#: ../../enterprise/include/class/SAP.app.php:602 +#: ../../godmode/agentes/module_manager_editor_network.php:467 +#: ../../godmode/wizards/HostDevices.class.php:1435 +msgid "Manage credentials" +msgstr "Управление учетными данными" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1150 +msgid "Network/mask" +msgstr "Сеть/маска" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1159 +msgid "Scan from" +msgstr "Сканирование из" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1178 +#: ../../godmode/wizards/HostDevices.class.php:1447 +msgid "Credentials to try with" +msgstr "Учетные данные для попытки" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1212 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1349 +msgid "Desired agent version" +msgstr "Желаемая версия агента" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +msgid "Target agent version" +msgstr "Версия целевого агента" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +msgid "Target server ip" +msgstr "ip целевого сервера" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1416 +msgid "CSV file" +msgstr "CSV файл" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1476 +msgid "Select desired targets to be deployed" +msgstr "Выберите нужные цели для развертывания" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1479 +msgid "Deploy from" +msgstr "Развертывание из" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1494 +msgid "Available targets" +msgstr "Доступные цели" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1670 +msgid "Add new target" +msgstr "Добавить новую цель" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1673 +msgid "Update target" +msgstr "Обновление цели" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1719 +msgid "Import targets from CSV" +msgstr "Импорт целей из CSV" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1752 +#: ../../godmode/modules/manage_network_components_form_wizard.php:620 +msgid "Scan" +msgstr "Сканировать" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1786 +msgid "Select targets" +msgstr "Выберите цели" + +#: ../../enterprise/include/class/DatabaseHA.class.php:136 +#: ../../enterprise/include/class/DatabaseHA.class.php:240 +#: ../../enterprise/include/class/DatabaseHA.class.php:422 +#: ../../enterprise/include/class/DatabaseHA.class.php:432 +#: ../../enterprise/include/class/DatabaseHA.class.php:524 +#: ../../enterprise/include/class/DatabaseHA.class.php:533 +#: ../../enterprise/include/class/DatabaseHA.class.php:650 +#: ../../enterprise/include/class/DatabaseHA.class.php:659 +msgid "Error, please refresh page" +msgstr "Ошибка, пожалуйста, обновите страницу" + +#: ../../enterprise/include/class/DatabaseHA.class.php:141 +msgid "Action already scheduled" +msgstr "Действия уже запланированы" + +#: ../../enterprise/include/class/DatabaseHA.class.php:147 +msgid "Unavailable action" +msgstr "Недоступное действие" + +#: ../../enterprise/include/class/DatabaseHA.class.php:159 msgid "" -"Access to this page is restricted to authorized users only, please contact " -"system administrator if you need assistance. <br><br>Please know that all " -"attempts to access this page are recorded in security logs of Pandora System " -"Database" +"A node is already being synchronized, please wait until process finish." msgstr "" -"Доступ на данную страницу доступен только авторизированным пользователям, " -"если вам нужна помощь пожалуйста свяжитесь с системным администратором. " -"Помните что все попытки доступа на страницу записываются в логи безопасности " -"Pandora." +"Узел уже синхронизируется, пожалуйста, дождитесь завершения процесса." -#: ../../mobile/include/user.class.php:153 -#: ../../mobile/include/user.class.php:171 -#: ../../mobile/include/user.class.php:178 -msgid "Double authentication failed" +#: ../../enterprise/include/class/DatabaseHA.class.php:171 +msgid "Please verify resync configuration is set before use this feature." +msgstr "" +"Перед использованием этой функции убедитесь, что конфигурация повторной " +"синхронизации установлена." + +#: ../../enterprise/include/class/DatabaseHA.class.php:189 +msgid "Successfully scheduled" +msgstr "Успешное планирование" + +#: ../../enterprise/include/class/DatabaseHA.class.php:204 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3288 +#: ../../enterprise/tools/ipam/ipam_network.php:362 +#: ../../enterprise/tools/ipam/ipam_ajax.php:274 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +#: ../../godmode/modules/manage_network_components_form_wizard.php:243 +#: ../../godmode/groups/group_list.php:846 +#: ../../godmode/agentes/module_manager_editor_common.php:1015 +#: ../../godmode/agentes/module_manager_editor_common.php:1025 +#: ../../godmode/massive/massive_edit_agents.php:754 +#: ../../godmode/alerts/configure_alert_template.php:939 +#: ../../include/functions_visual_map_editor.php:825 +#: ../../include/functions_reporting_html.php:2895 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:391 +msgid "Enabled" +msgstr "Включено" + +#: ../../enterprise/include/class/DatabaseHA.class.php:213 +#: ../../enterprise/include/class/Omnishell.class.php:363 +#: ../../enterprise/include/class/Omnishell.class.php:1087 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1786 +#: ../../operation/servers/recon_view.php:142 +msgid "Pending" +msgstr "Ожидание" + +#: ../../enterprise/include/class/DatabaseHA.class.php:219 +msgid "Uninitialized" +msgstr "Не инициализирован" + +#: ../../enterprise/include/class/DatabaseHA.class.php:475 +#: ../../enterprise/include/class/DatabaseHA.class.php:574 +#: ../../enterprise/include/class/DatabaseHA.class.php:1244 +msgid "This is not a cluster node" +msgstr "Это не узел кластера" + +#: ../../enterprise/include/class/DatabaseHA.class.php:479 +#: ../../enterprise/include/class/DatabaseHA.class.php:1248 +msgid "Failed to retrieve master position" +msgstr "Не удалось получить положение ведущего" + +#: ../../enterprise/include/class/DatabaseHA.class.php:493 +#: ../../enterprise/include/class/DatabaseHA.class.php:1261 +msgid "Failed to retrieve slave information" +msgstr "Не удалось получить информацию о ведомом" + +#: ../../enterprise/include/class/DatabaseHA.class.php:610 +msgid "Master" +msgstr "Мастер панели" + +#: ../../enterprise/include/class/DatabaseHA.class.php:613 +msgid "Slave" +msgstr "Ведомый" + +#: ../../enterprise/include/class/DatabaseHA.class.php:795 +msgid "Failed to update" +msgstr "Неудача при обновлении" + +#: ../../enterprise/include/class/DatabaseHA.class.php:822 +#: ../../enterprise/include/class/DatabaseHA.class.php:999 +msgid "DB Replication user" +msgstr "Пользователь репликации БД" + +#: ../../enterprise/include/class/DatabaseHA.class.php:823 +msgid "User configured for Master to Slaves replication" +msgstr "Пользователь настроен для репликации ведущего и ведомых устройств" + +#: ../../enterprise/include/class/DatabaseHA.class.php:832 +#: ../../enterprise/include/class/DatabaseHA.class.php:1008 +msgid "DB Replication user password" +msgstr "Пароль пользователя Репликации БД" + +#: ../../enterprise/include/class/DatabaseHA.class.php:833 +msgid "User password" +msgstr "Пароль пользователя" + +#: ../../enterprise/include/class/DatabaseHA.class.php:842 +msgid "Resync data dir" +msgstr "Повторная синхронизация каталога данных" + +#: ../../enterprise/include/class/DatabaseHA.class.php:843 +msgid "Directory where mysql files are stored (must be common to all nodes)" +msgstr "" +"Каталог, в котором хранятся файлы mysql (должен быть общим для всех узлов)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:852 +msgid "Resync tmp directory" +msgstr "Повторная синзхронизация каталога tmp" + +#: ../../enterprise/include/class/DatabaseHA.class.php:853 +msgid "" +"Temporary working directory where to store the backups that will be used to " +"re-synchronize a slave node" +msgstr "" +"Временный рабочий каталог, в котором хранятся резервные копии, используемые " +"для повторной синхронизации ведомого узла" + +#: ../../enterprise/include/class/DatabaseHA.class.php:862 +msgid "Resync MySQL user" +msgstr "Повторная синзхронизация пользователя MySQL" + +#: ../../enterprise/include/class/DatabaseHA.class.php:863 +msgid "" +"User of the system that owns the MySQL files, necessary for the adjustment " +"of permissions (by default mysql)" +msgstr "" +"Пользователь системы, владеющий файлами MySQL, необходимо для настройки прав " +"доступа (по умолчанию mysql)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:872 +msgid "Resync MySQL group" +msgstr "Повторная синзхронизация MySQL группы" + +#: ../../enterprise/include/class/DatabaseHA.class.php:873 +msgid "" +"System group that owns the MySQL files, needed for permissions setting " +"(default mysql)" +msgstr "" +"Системная группа, которой принадлежат файлы MySQL, необходимо для установки " +"разрешений (по умолчанию mysql)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:933 +msgid "IP or FQDN" +msgstr "IP или FQDN" + +#: ../../enterprise/include/class/DatabaseHA.class.php:934 +msgid "" +"This action only registers an already configured node. This action does not " +"configure any resource." +msgstr "" +"Это действие только регистрирует уже настроенный узел. Это действие не " +"конфигурирует какой-либо ресурс." + +#: ../../enterprise/include/class/DatabaseHA.class.php:944 +msgid "Cluster node label (pcs)" +msgstr "Этикетка узла кластера (шт.)" + +#: ../../enterprise/include/class/DatabaseHA.class.php:960 +msgid "SSH user" +msgstr "Пользователь SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:968 +msgid "SSH port" +msgstr "Порт SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:976 +msgid "SSH key" +msgstr "Ключ SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:984 +msgid "SSH public key" +msgstr "Общий ключ SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1036 +msgid "Missed parameters" +msgstr "Пропущенные параметры" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1083 +msgid "You must specify a host" +msgstr "Вы должны указать хост" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1085 +msgid "DB port must be a positive integer" +msgstr "Порт БД должен быть целым положительным числом" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1087 +msgid "SSH port must be a positive integer" +msgstr "Порт SSH должен быть целым положительным числом" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1089 +msgid "You must specify a SSH user" +msgstr "Вы должны указать пользователя SSH" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1091 +msgid "You must specify a replication DB user" +msgstr "Вы должны указать пользователя БД репликации" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1093 +msgid "You must specify a replication DB pass" +msgstr "Вы должны указать передачу БД репликации" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1095 +msgid "You must specify a public key path" +msgstr "Вы должны указать путь к общему ключу" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1097 +msgid "You must specify a private path" +msgstr "Вы должны указать персональный путь" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1147 +msgid "Successfully " +msgstr "Успешно " + +#: ../../enterprise/include/class/AgentRepository.class.php:368 +msgid "Installation file" +msgstr "Установочный файл" + +#: ../../enterprise/include/class/AgentRepository.class.php:407 +msgid "Agent version is required" +msgstr "Требуется версия агента" + +#: ../../enterprise/include/class/AgentRepository.class.php:422 +msgid "Cannot create target dir [" +msgstr "Невозможно создать целевой dir [" + +#: ../../enterprise/include/class/AgentRepository.class.php:443 +#, php-format +msgid "Invalid installation file for %s" +msgstr "Неверный файл установки для %s" + +#: ../../enterprise/include/class/AgentRepository.class.php:471 +msgid "Installation files not modified" +msgstr "Установочные файлы не изменены" + +#: ../../enterprise/include/class/AgentRepository.class.php:492 +msgid "Installation files updated" +msgstr "Установочные файлы обновлены" + +#: ../../enterprise/include/class/AgentRepository.class.php:499 +msgid "You must provide installation files to create a new entry." +msgstr "" +"Для создания новой записи необходимо предоставить установочные файлы." + +#: ../../enterprise/include/class/AgentRepository.class.php:519 +msgid "This agent has been already defined." +msgstr "Этот агент уже определен." + +#: ../../enterprise/include/class/AgentRepository.class.php:537 +msgid "Agent successfully registered and uploaded" +msgstr "Агент успешно зарегистрирован и загружен" + +#: ../../enterprise/include/class/AgentRepository.class.php:616 +msgid "Uploaded by" +msgstr "Загружено" + +#: ../../enterprise/include/class/AgentRepository.class.php:617 +msgid "Upload date" +msgstr "Дата загрузки" + +#: ../../enterprise/include/class/AgentRepository.class.php:696 +msgid "Add new software" +msgstr "Добавить новый software" + +#: ../../enterprise/include/class/AgentRepository.class.php:883 +msgid "Add new Software agent" +msgstr "Добавить нового агента Software" + +#: ../../enterprise/include/class/AgentRepository.class.php:886 +msgid "Update Software agent" +msgstr "Обновить нового агента Software" + +#: ../../enterprise/include/class/Omnishell.class.php:214 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:400 +msgid "Please follow the wizard." +msgstr "Пожалуйста, следуйте указаниям помощника." + +#: ../../enterprise/include/class/Omnishell.class.php:226 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:413 +msgid "You have no acess to edit this command." +msgstr "У вас нет доступа к редактированию этой команды." + +#: ../../enterprise/include/class/Omnishell.class.php:261 +msgid "Failed to save command." +msgstr "Не удалось сохранить команду." + +#: ../../enterprise/include/class/Omnishell.class.php:272 +msgid "Command not found." +msgstr "Команда не найдена." + +#: ../../enterprise/include/class/Omnishell.class.php:319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:701 +#: ../../include/class/HelpFeedBack.class.php:99 +msgid "Page not found" +msgstr "Страница не найдена" + +#: ../../enterprise/include/class/Omnishell.class.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:610 +msgid "You must install php-yaml in order to use this feature." +msgstr "Для использования этой функции необходимо установить php-yaml." + +#: ../../enterprise/include/class/Omnishell.class.php:364 +msgid "Not Started" +msgstr "Не начато" + +#: ../../enterprise/include/class/Omnishell.class.php:398 +#: ../../include/class/CredentialStore.class.php:783 +#: ../../include/class/CredentialStore.class.php:891 +msgid "Identifier" +msgstr "Идентификатор" + +#: ../../enterprise/include/class/Omnishell.class.php:442 +msgid "Commands status" +msgstr "Статус команд" + +#: ../../enterprise/include/class/Omnishell.class.php:487 +msgid "Create command" +msgstr "Создать команду" + +#: ../../enterprise/include/class/Omnishell.class.php:506 +msgid "Selected command definitions will be erased" +msgstr "Выбранные определения команд будут удалены" + +#: ../../enterprise/include/class/Omnishell.class.php:688 +msgid "Time out" +msgstr "Время истекло" + +#: ../../enterprise/include/class/Omnishell.class.php:697 +msgid "Retries " +msgstr "Повторные попытки " + +#: ../../enterprise/include/class/Omnishell.class.php:708 +msgid "Preconditions " +msgstr "Предусловия " + +#: ../../enterprise/include/class/Omnishell.class.php:709 +msgid "" +"All commands defined line per line must success to execute main commands" +msgstr "" +"Все команды, определенные построчно, должны сменять друг друга для " +"выполнения основных команд" + +#: ../../enterprise/include/class/Omnishell.class.php:721 +msgid "Execute commands " +msgstr "Выполнить команды " + +#: ../../enterprise/include/class/Omnishell.class.php:722 +msgid "Define as many lines as commands you want to execute" +msgstr "Определите столько строк, сколько команд вы хотите выполнить" + +#: ../../enterprise/include/class/Omnishell.class.php:734 +msgid "Postconditions " +msgstr "Постусловия " + +#: ../../enterprise/include/class/Omnishell.class.php:735 +msgid "" +"All commands defined line per line must success to consider command success" +msgstr "" +"Все команды, определенные построчно, должны быть успешными, чтобы считать " +"команду успешной" + +#: ../../enterprise/include/class/Omnishell.class.php:835 +#: ../../godmode/agentes/planned_downtime.editor.php:787 +msgid "Available agents" +msgstr "Свободные агенты" + +#: ../../enterprise/include/class/Omnishell.class.php:880 +msgid "Remove agents" +msgstr "Удалить агентов" + +#: ../../enterprise/include/class/Omnishell.class.php:1157 +msgid "Selected command definition will be erased" +msgstr "Выбранное определение команды будет стерто" + +#: ../../enterprise/include/class/Omnishell.class.php:1243 +msgid "Command viewer" +msgstr "Средство просмотра команд" + +#: ../../enterprise/include/class/Omnishell.class.php:1251 +msgid "Detailed view" +msgstr "Детализированный вид" + +#: ../../enterprise/include/class/Omnishell.class.php:1392 +msgid "Not an array of ids" +msgstr "Нет множества id" + +#: ../../enterprise/include/class/Omnishell.class.php:1450 +msgid "There are no targets for this remote command" +msgstr "Для этой удаленной команды нет целей" + +#: ../../enterprise/include/class/Omnishell.class.php:1457 +msgid "Command does not exist" +msgstr "Команда не существует" + +#: ../../enterprise/include/class/Omnishell.class.php:1556 +msgid "timed out" +msgstr "время истекло" + +#: ../../enterprise/include/class/Omnishell.class.php:1559 +msgid "failed" +msgstr "не удалось" + +#: ../../enterprise/include/class/Omnishell.class.php:1575 +msgid "Waiting results..." +msgstr "Ожидание результатов..." + +#: ../../enterprise/include/class/Omnishell.class.php:1594 +msgid "RCMD does not exist" +msgstr "RCMD не существует" + +#: ../../enterprise/include/class/LogSource.class.php:427 +msgid "Source is required" +msgstr "Требуется источник" + +#: ../../enterprise/include/class/LogSource.class.php:534 +msgid "id cannot be empty" +msgstr "id не может быть пустым" + +#: ../../enterprise/include/class/LogSource.class.php:539 +#: ../../include/class/CredentialStore.class.php:727 +msgid "Not allowed" +msgstr "Не разрешено" + +#: ../../enterprise/include/class/LogSource.class.php:583 +#: ../../include/class/CredentialStore.class.php:766 +msgid "How to configure encryption." +msgstr "Как настроить шифрование." + +#: ../../enterprise/include/class/LogSource.class.php:582 +#, php-format +msgid "Log monitoring is disabled. %s" +msgstr "Мониторинг журналов отключен. %s" + +#: ../../enterprise/include/class/LogSource.class.php:652 +#: ../../enterprise/include/class/LogSource.class.php:819 +msgid "Add log source" +msgstr "Добавить источник журнала" + +#: ../../enterprise/include/class/LogSource.class.php:687 +msgid "Source name" +msgstr "Имя источника" + +#: ../../enterprise/include/class/LogSource.class.php:823 +msgid "Update log source" +msgstr "Обновить источник журнала" + +#: ../../enterprise/include/class/DB2.app.php:165 +msgid "" +"This DB2 configuration has been already defined. Please edit it or create a " +"new one." +msgstr "" +"Эта конфигурация DB2 уже была определена. Пожалуйста, отредактируйте ее или " +"создайте новую." + +#: ../../enterprise/include/class/DB2.app.php:207 +msgid "You must provide a valid DB2 server IP or FQDN." +msgstr "Вы должны указать действительный IP-адрес сервера DB2 или FQDN." + +#: ../../enterprise/include/class/DB2.app.php:219 +msgid "Discovery.Application.DB2" +msgstr "Discovery.Application.DB2" + +#: ../../enterprise/include/class/DB2.app.php:270 +msgid "Failed to find discovery DB2 task." +msgstr "Не удалось найти задачу discovery DB2." + +#: ../../enterprise/include/class/DB2.app.php:486 +msgid "DB2 target strings" +msgstr "Целевые строки DB2" + +#: ../../enterprise/include/class/DB2.app.php:487 +msgid "" +"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as " +"you need." +msgstr "" +"SERVER:PORT/DATABASE, через запятую или построчно, столько целей, сколько " +"вам нужно." + +#: ../../enterprise/include/class/DB2.app.php:487 +#: ../../enterprise/include/class/Oracle.app.php:488 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:482 +msgid "Use # symbol to comment a line." +msgstr "Используйте символ #, чтобы комментировать строку." + +#: ../../enterprise/include/class/DB2.app.php:634 +#: ../../enterprise/include/class/MySQL.app.php:656 +#: ../../enterprise/include/class/Oracle.app.php:635 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:629 +msgid "Target agent" +msgstr "Целевой агент" + +#: ../../enterprise/include/class/DB2.app.php:635 +#: ../../enterprise/include/class/Oracle.app.php:636 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:630 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use target as name." +msgstr "" +"Определяет цель агента, где эта задача будет хранить обнаруженные данные. " +"Если вы определили несколько целей, укажите здесь список имен через запятую " +"или оставьте пустым, чтобы использовать цель в качестве имени." + +#: ../../enterprise/include/class/DB2.app.php:654 +#: ../../enterprise/include/class/MySQL.app.php:676 +#: ../../enterprise/include/class/Oracle.app.php:655 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:649 +msgid "Custom module prefix" +msgstr "Префикс пользовательского модуля" + +#: ../../enterprise/include/class/DB2.app.php:655 +#: ../../enterprise/include/class/MySQL.app.php:677 +#: ../../enterprise/include/class/Oracle.app.php:656 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:650 +msgid "" +"Defines a custom prefix to be concatenated before module names generated by " +"this task." +msgstr "" +"Определяет пользовательский префикс, который будет конкатенироваться перед " +"именами модулей, генерируемых этой задачей." + +#: ../../enterprise/include/class/DB2.app.php:673 +msgid "Get database summary" +msgstr "Получить краткий отчет базы данных" + +#: ../../enterprise/include/class/DB2.app.php:689 +msgid "Check transactional log utilization" +msgstr "Проверить использование журнала транзакций" + +#: ../../enterprise/include/class/DB2.app.php:705 +msgid "Get number of connections" +msgstr "Получить количество соединений" + +#: ../../enterprise/include/class/DB2.app.php:721 +msgid "Check DB size" +msgstr "Проверка размера БД" + +#: ../../enterprise/include/class/DB2.app.php:737 +#: ../../enterprise/include/class/MySQL.app.php:821 +#: ../../enterprise/include/class/Oracle.app.php:754 +msgid "Retrieve cache statistics" +msgstr "Получение статистики кэша" + +#: ../../enterprise/include/class/DB2.app.php:753 +#: ../../enterprise/include/class/MySQL.app.php:837 +#: ../../enterprise/include/class/Oracle.app.php:770 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:716 +msgid "Execute custom queries" +msgstr "Выполнение пользовательских запросов" + +#: ../../enterprise/include/class/DB2.app.php:821 +#: ../../enterprise/include/class/MySQL.app.php:889 +#: ../../enterprise/include/class/Oracle.app.php:924 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:768 +msgid "Custom queries" +msgstr "Пользовательские запросы" + +#: ../../enterprise/include/class/DB2.app.php:822 +#: ../../enterprise/include/class/MySQL.app.php:890 +#: ../../enterprise/include/class/Oracle.app.php:925 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:769 +msgid "Define here your custom queries." +msgstr "Определите здесь ваши пользовательские запросы." + +#: ../../enterprise/include/class/Aws.S3.php:60 +msgid "Aws S3" +msgstr "Aws S3" + +#: ../../enterprise/include/class/Aws.S3.php:166 +#: ../../enterprise/include/class/Aws.cloud.php:879 +#: ../../include/class/CustomNetScan.class.php:134 +msgid "" +"This task has been already defined. Please edit it or create a new one." +msgstr "" +"Эта задача уже была определена. Пожалуйста, отредактируйте ее или создайте " +"новую." + +#: ../../enterprise/include/class/Aws.S3.php:214 +msgid "You must select something." +msgstr "Вы должны что-то выбрать." + +#: ../../enterprise/include/class/Aws.S3.php:236 +msgid "Discovery.Cloud.AWS.S3" +msgstr "Discovery.Cloud.AWS.S3" + +#: ../../enterprise/include/class/Aws.S3.php:294 +msgid "Unknown task" +msgstr "Неизвестная задача" + +#: ../../enterprise/include/class/Aws.S3.php:313 +msgid "Unknown section." +msgstr "Неизвестный раздел." + +#: ../../enterprise/include/class/Aws.S3.php:339 +msgid "S3" +msgstr "S3" + +#: ../../enterprise/include/class/Aws.S3.php:344 +msgid "Bucket monitoring" +msgstr "Мониторинг бакетов" + +#: ../../enterprise/include/class/Aws.S3.php:454 +msgid "No buckets found." +msgstr "Бакеты не найдены." + +#: ../../enterprise/include/class/Aws.S3.php:598 +msgid "Select Buckets to be monitored" +msgstr "Выберите бакеты для мониторинга" + +#: ../../enterprise/include/class/Aws.S3.php:633 +msgid "Monitor bucket size" +msgstr "Мониторинг размера бакета" + +#: ../../enterprise/include/class/Aws.S3.php:643 +msgid "Monitor bucket total items" +msgstr "Мониторинг общего количества элементов бакета" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:121 +msgid "The CSV file must have the fields in the following order:" +msgstr "В CSV-файле поля должны располагаться в следующем порядке:" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:122 +msgid "Agent alias, IP address, OS id, Interval, Group id, Description" +msgstr "" +"Алиас агента, IP-адрес, идентификатор ОС, интервал, идентификатор группы, " +"описание" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:177 +msgid "Alias as name" +msgstr "Имя алиас" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:242 +msgid "No data or wrong separator" +msgstr "Отсутствие данных или неправильный сепаратор" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:248 +#, php-format +msgid "Agent %s duplicated." +msgstr "Агент %s продублирован." + +#: ../../enterprise/include/class/CSVImportAgents.class.php:255 +#, php-format +msgid "Id group %s doesn't exist in %s" +msgstr "Id группы %s не существует в %s" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:263 +msgid "General failure." +msgstr "Общий сбой." + +#: ../../enterprise/include/class/CSVImportAgents.class.php:284 +msgid "No input file detected" +msgstr "Входной файл не обнаружен" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:373 +msgid "Agent processed successfully" +msgstr "Агент успешно обработан" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:379 +msgid "Some errors while processing CSV." +msgstr "Некоторые ошибки при обработке CSV." + +#: ../../enterprise/include/class/CSVImportAgents.class.php:382 +msgid "All agents processed correctly" +msgstr "Все агенты обработаны правильно" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:389 +#, php-format +msgid "Line %s" +msgstr "Линия %s" + +#: ../../enterprise/include/class/SAPView.class.php:145 +#: ../../enterprise/include/class/SAPView.class.php:181 +msgid "SAP View" +msgstr "Вид SAP" + +#: ../../enterprise/include/class/SAPView.class.php:156 +msgid "SAP data not found." +msgstr "Данные SAP не найдены." + +#: ../../enterprise/include/class/SAPView.class.php:242 +msgid "Refresh Every" +msgstr "Обновить Каждый" + +#: ../../enterprise/include/class/SAPView.class.php:279 +msgid "Graph Interval" +msgstr "Интервал графика" + +#: ../../enterprise/include/class/SAPView.class.php:610 +msgid "" +"SAP view offers you to see the most important modules Discovery Server is " +"usually configured to retry. You have not configured a Discovery SAP R3 task " +"yet, please visit" +msgstr "" +"Вид SAP предлагает вам увидеть наиболее важные модули, которые обычно " +"Discovery Server настроен повторять. Вы еще не настроили задачу Discovery " +"SAP R3, пожалуйста, посетите страницу" + +#: ../../enterprise/include/class/SAPView.class.php:610 +msgid "to start monitoring your SAP infrastructure." +msgstr "чтобы начать мониторинг инфраструктуры SAP." + +#: ../../enterprise/include/class/SAPView.class.php:617 +msgid "Discover SAP" +msgstr "Откройте для себя SAP" + +#: ../../enterprise/include/class/SAP.app.php:154 +msgid "" +"This SAP configuration has been already defined. Please edit it or create a " +"new one." +msgstr "" +"Эта конфигурация SAP уже определена. Пожалуйста, отредактируйте ее или " +"создайте новую." + +#: ../../enterprise/include/class/SAP.app.php:195 +msgid "You must specify at last one SAP hostname." +msgstr "Вы должны указать как минимум одно имя хоста SAP." + +#: ../../enterprise/include/class/SAP.app.php:206 +msgid "Discovery.Application.SAP" +msgstr "Discovery.Application.SAP" + +#: ../../enterprise/include/class/SAP.app.php:262 +msgid "Failed to find discovery SAP task." +msgstr "Не удалось найти задачу discovery SAP." + +#: ../../enterprise/include/class/SAP.app.php:286 +msgid "Select at least a module." +msgstr "Выберите хотя бы один модуль." + +#: ../../enterprise/include/class/SAP.app.php:354 +msgid "SAP R3" +msgstr "SAP R3" + +#: ../../enterprise/include/class/SAP.app.php:547 +msgid "SAP Hostname" +msgstr "Имя хоста SAP" + +#: ../../enterprise/include/class/SAP.app.php:571 +msgid "SAP Client" +msgstr "Клиент SAP" + +#: ../../enterprise/include/class/SAP.app.php:584 +msgid "SAP System Number" +msgstr "Номер Системы SAP" + +#: ../../enterprise/include/class/SAP.app.php:614 +#: ../../enterprise/include/class/SAP.app.php:628 +msgid "SAP Credentials" +msgstr "Учетные данные SAP" + +#: ../../enterprise/include/class/SAP.app.php:614 +#: ../../enterprise/include/class/SAP.app.php:628 +msgid "Optional" +msgstr "Дополнительно" + +#: ../../enterprise/include/class/SAP.app.php:724 +#: ../../include/functions_agents.php:3789 +msgid "SAP Login OK" +msgstr "Вход в систему SAP OK" + +#: ../../enterprise/include/class/SAP.app.php:725 +#: ../../include/functions_agents.php:3790 +msgid "SAP Dumps" +msgstr "Дампы SAP" + +#: ../../enterprise/include/class/SAP.app.php:726 +#: ../../include/functions_agents.php:3791 +msgid "SAP lock entry list" +msgstr "Список ввода блокировки SAP" + +#: ../../enterprise/include/class/SAP.app.php:727 +#: ../../include/functions_agents.php:3792 +msgid "SAP canceled Jobs" +msgstr "Отмененные задания SAP" + +#: ../../enterprise/include/class/SAP.app.php:728 +#: ../../include/functions_agents.php:3793 +msgid "SAP Batch inputs erroneous" +msgstr "Ошибочный пакетный ввод SAP" + +#: ../../enterprise/include/class/SAP.app.php:729 +#: ../../include/functions_agents.php:3794 +msgid "SAP IDOC erroneous" +msgstr "Ошибочный SAP IDOC" + +#: ../../enterprise/include/class/SAP.app.php:730 +#: ../../include/functions_agents.php:3795 +msgid "SAP IDOC OK" +msgstr "SAP IDOC ОК" + +#: ../../enterprise/include/class/SAP.app.php:731 +#: ../../include/functions_agents.php:3796 +msgid "SAP WP without active restart" +msgstr "SAP WP без активного перезапуска" + +#: ../../enterprise/include/class/SAP.app.php:732 +#: ../../include/functions_agents.php:3797 +msgid "SAP WP stopped" +msgstr "SAP WP остановлено" + +#: ../../enterprise/include/class/SAP.app.php:733 +#: ../../include/functions_agents.php:3798 +msgid "Average time of SAPGUI response" +msgstr "Среднее время ответа SAPGUI" + +#: ../../enterprise/include/class/SAP.app.php:734 +#: ../../include/functions_agents.php:3800 +msgid "Dialog Logged users" +msgstr "Диалог Зарегистрированные пользователи" + +#: ../../enterprise/include/class/SAP.app.php:735 +#: ../../include/functions_agents.php:3801 +msgid "TRFC in error" +msgstr "TRFC в ошибке" + +#: ../../enterprise/include/class/SAP.app.php:736 +#: ../../include/functions_agents.php:3802 +msgid "QRFC in error SMQ2" +msgstr "QRFC in error SMQ2" + +#: ../../enterprise/include/class/SAP.app.php:737 +#: ../../include/functions_agents.php:3803 +msgid "Number of Update WPs in error" +msgstr "Количество ошибок в обновлении WPs" + +#: ../../enterprise/include/class/SAP.app.php:761 +#, php-format +msgid "" +"Module 180 must be customized before being used, please use advanced options " +"to define the module following the documentation:<br> %s" +msgstr "" +"Модуль 180 должен быть настроен перед использованием, пожалуйста, " +"используйте расширенные опции для определения модуля, следуя " +"документации:<br> %s" + +#: ../../enterprise/include/class/SAP.app.php:782 +msgid "Available modules" +msgstr "Доступные модули" + +#: ../../enterprise/include/class/SAP.app.php:818 +msgid "Add monitors" +msgstr "Добавить Приборы контроля" + +#: ../../enterprise/include/class/SAP.app.php:831 +msgid "Remove monitors" +msgstr "Удалить Приборы контроля" + +#: ../../enterprise/include/class/SAP.app.php:882 +msgid "Define your custom SAP modules." +msgstr "Определите ваши пользовательские модули SAP." + +#: ../../enterprise/include/class/SAP.app.php:881 +msgid "Advanced module configuration" +msgstr "Расширенная конфигурация модуля" + +#: ../../enterprise/include/class/SAP.app.php:891 +msgid "Custom module definitions" +msgstr "Определения пользовательских модулей" + +#: ../../enterprise/include/class/SAP.app.php:892 +msgid "" +"Each line is a module definition using following format: module name ; " +"module_type ; SAP check definition." +msgstr "" +"Каждая строка представляет собой определение модуля в следующем формате: имя " +"модуля ; тип_модуля ; определение проверки SAP." + +#: ../../enterprise/include/class/Aws.cloud.php:112 +#: ../../include/class/CredentialStore.class.php:926 +msgid "Aws" +msgstr "Aws" + +#: ../../enterprise/include/class/Aws.cloud.php:336 +msgid "Recon" +msgstr "Recon" + +#: ../../enterprise/include/class/Aws.cloud.php:337 +msgid "Costs" +msgstr "Затраты" + +#: ../../enterprise/include/class/Aws.cloud.php:339 +msgid "Instances" +msgstr "Экземпляры" + +#: ../../enterprise/include/class/Aws.cloud.php:434 +msgid "Amazon EC2" +msgstr "Amazon EC2" + +#: ../../enterprise/include/class/Aws.cloud.php:439 +msgid "Amazon RDS" +msgstr "Amazon RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:444 +msgid "S3 Buckets" +msgstr "S3 Бакеты" + +#: ../../enterprise/include/class/Aws.cloud.php:464 +#: ../../godmode/wizards/HostDevices.class.php:696 +msgid "NetScan" +msgstr "NetScan" + +#: ../../enterprise/include/class/Aws.cloud.php:503 +msgid "Discovery task name" +msgstr "Имя задачи Discovery" + +#: ../../enterprise/include/class/Aws.cloud.php:607 +msgid "Total cost" +msgstr "Общие затраты" + +#: ../../enterprise/include/class/Aws.cloud.php:624 +msgid "Cost by region" +msgstr "Затраты по региону" + +#: ../../enterprise/include/class/Aws.cloud.php:638 +msgid "Cost interval" +msgstr "Интервал затрат" + +#: ../../enterprise/include/class/Aws.cloud.php:766 +msgid "Select EC2 instances" +msgstr "Выберите экземпляры EC2" + +#: ../../enterprise/include/class/Aws.cloud.php:782 +msgid "Storage" +msgstr "Хранилище" + +#: ../../enterprise/include/class/Aws.cloud.php:792 +msgid "Elastic IP Adresses" +msgstr "Эластичные IP-адреса" + +#: ../../enterprise/include/class/Aws.cloud.php:975 +msgid "You must select at least one RDS instance." +msgstr "Вы должны выбрать хотя бы один экземпляр RDS." + +#: ../../enterprise/include/class/Aws.cloud.php:980 +msgid "" +"You cannot monitor RDS instances from different types. Please define several " +"tasks for several types." +msgstr "" +"Вы не можете проводить мониторинг экземпляров RDS разных типов. Пожалуйста, " +"определите несколько задач для нескольких типов." + +#: ../../enterprise/include/class/Aws.cloud.php:987 +msgid "Discovery.Cloud.AWS.RDS" +msgstr "Discovery.Cloud.AWS.RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1153 +msgid "RDS" +msgstr "RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1158 +msgid "DB monitoring" +msgstr "Мониторинг БД" + +#: ../../enterprise/include/class/Aws.cloud.php:1168 +msgid "AWS RDS" +msgstr "AWS RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1242 +msgid "Global DB User" +msgstr "Пользователь глобальной БД" + +#: ../../enterprise/include/class/Aws.cloud.php:1252 +msgid "Global DB password" +msgstr "Пароль глобальной БД" + +#: ../../enterprise/include/class/Aws.cloud.php:1342 +msgid "Select RDS instances" +msgstr "Выберите экземпляры RDS" + +#: ../../enterprise/include/class/Aws.cloud.php:1645 +msgid "Invalid group" +msgstr "Неверная группа" + +#: ../../enterprise/include/class/Aws.cloud.php:1703 +msgid "Cannot update the recon database" +msgstr "Невозможно обновить базу данных recon" + +#: ../../enterprise/include/class/Aws.cloud.php:1725 +msgid "Engine not supported" +msgstr "Двигатель не поддерживается" + +#: ../../enterprise/include/class/MySQL.app.php:173 +msgid "" +"This MySQL configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" +"Эта конфигурация MySQL уже была определена. Пожалуйста, отредактируйте ее " +"или создайте новую." + +#: ../../enterprise/include/class/MySQL.app.php:216 +msgid "You must provide a valid MySQL server IP or FQDN." +msgstr "Вы должны указать действительный IP или FQDN сервера MySQL." + +#: ../../enterprise/include/class/MySQL.app.php:221 +msgid "You must provide a valid port number." +msgstr "Вы должны указать действительный номер порта." + +#: ../../enterprise/include/class/MySQL.app.php:233 +msgid "Discovery.Application.MySQL" +msgstr "Discovery.Application.MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:285 +msgid "Failed to find discovery MySQL task." +msgstr "Не удалось найти задачу discovery MySQL." + +#: ../../enterprise/include/class/MySQL.app.php:491 +msgid "MySQL server IP" +msgstr "IP сервера MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:492 +msgid "Comma separated, as many targets as you need." +msgstr "Через запятую, столько целей, сколько вам нужно." + +#: ../../enterprise/include/class/MySQL.app.php:511 +msgid "MySQL server Port" +msgstr "Порт сервера MySQL" + +#: ../../enterprise/include/class/MySQL.app.php:657 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use server IP address/ FQDN." +msgstr "" +"Определяет целевого агента, в котором эта задача будет хранить обнаруженные " +"данные, если вы определили несколько целей, задайте здесь список имен через " +"запятую или оставьте пустым, чтобы использовать IP-адрес сервера/ FQDN." + +#: ../../enterprise/include/class/MySQL.app.php:698 +msgid "Scan databases" +msgstr "Сканирование баз данных" + +#: ../../enterprise/include/class/MySQL.app.php:714 +msgid "Create agent per database" +msgstr "Создание агента для базы данных" + +#: ../../enterprise/include/class/MySQL.app.php:735 +msgid "Custom database agent prefix" +msgstr "Пользовательский префикс агента базы данных" + +#: ../../enterprise/include/class/MySQL.app.php:736 +msgid "" +"Defines a custom prefix to be concatenated before database agent names " +"generated by this task." +msgstr "" +"Определяет пользовательский префикс, который будет конкатенироваться перед " +"именами агентов базы данных, генерируемых этой задачей." + +#: ../../enterprise/include/class/MySQL.app.php:757 +#: ../../enterprise/include/class/Oracle.app.php:674 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:668 +msgid "Check engine uptime" +msgstr "Проверить работоспособность двигателя" + +#: ../../enterprise/include/class/MySQL.app.php:773 +#: ../../enterprise/include/class/Oracle.app.php:690 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:684 +msgid "Retrieve query statistics" +msgstr "Получить статистику запросов" + +#: ../../enterprise/include/class/MySQL.app.php:789 +#: ../../enterprise/include/class/Oracle.app.php:706 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:700 +msgid "Analyze connections" +msgstr "Анализ соединений" + +#: ../../enterprise/include/class/MySQL.app.php:805 +msgid "Retrieve InnoDB statistics" +msgstr "Получение статистики InnoDB" + +#: ../../enterprise/include/class/Google.cloud.php:147 +#: ../../include/class/CredentialStore.class.php:929 +msgid "Google" +msgstr "Google" + +#: ../../enterprise/include/class/Google.cloud.php:301 +msgid "Compute Engine" +msgstr "Compute Engine" + +#: ../../enterprise/include/class/Google.cloud.php:877 +msgid "This options only applies to zone (region) agents." +msgstr "Эта опция применяется только к агентам зоны (региона)." + +#: ../../enterprise/include/class/Google.cloud.php:890 +msgid "Scan and general monitoring" +msgstr "Сканирование и общий мониторинг" + +#: ../../enterprise/include/class/Google.cloud.php:903 +msgid "CPU performance summary" +msgstr "Общий отчет о производительности CPU" + +#: ../../enterprise/include/class/Oracle.app.php:166 +msgid "" +"This Oracle configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" +"Эта конфигурация Oracle уже определена. Пожалуйста, отредактируйте ее или " +"создайте новую." + +#: ../../enterprise/include/class/Oracle.app.php:208 +msgid "You must provide a valid Oracle server IP or FQDN." +msgstr "Вы должны указать действительный IP-адрес сервера Oracle или FQDN." + +#: ../../enterprise/include/class/Oracle.app.php:220 +msgid "Discovery.Application.Oracle" +msgstr "Discovery.Application.Oracle" + +#: ../../enterprise/include/class/Oracle.app.php:271 +msgid "Failed to find discovery Oracle task." +msgstr "Не удалось найти задачу discovery Oracle." + +#: ../../enterprise/include/class/Oracle.app.php:487 +msgid "Oracle target strings" +msgstr "Целевые строки Oracle" + +#: ../../enterprise/include/class/Oracle.app.php:488 +msgid "" +"SERVER:PORT/SID, comma separated or line by line, as many targets as you " +"need." +msgstr "" +"SERVER:PORT/SID, через запятую или построчно, столько целей, сколько вам " +"нужно." + +#: ../../enterprise/include/class/Oracle.app.php:722 +msgid "Calculate fragmentation ratio" +msgstr "Рассчитать коэффициент фрагментации" + +#: ../../enterprise/include/class/Oracle.app.php:738 +msgid "Monitor tablespaces" +msgstr "Мониторинг табличных пространств" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:165 +msgid "" +"This Microsoft SQL Server configuration has been already defined. Please " +"edit it or create a new one." +msgstr "" +"Эта конфигурация Microsoft SQL Server уже определена. Пожалуйста, " +"отредактируйте ее или создайте новую." + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:207 +msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." +msgstr "" +"Вы должны указать действительный IP-адрес или FQDN сервера Microsoft SQL " +"Server." + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:271 +msgid "Failed to find discovery Microsoft SQL Server task." +msgstr "Не удалось найти задачу Сервера discovery Microsoft SQL ." + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:481 +msgid "Microsoft SQL Server targets" +msgstr "Цели Сервера Microsoft SQL" + +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:482 +msgid "" +"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as " +"you need." +msgstr "" +"SERVER:PORT\\INSTANCE, через запятую или построчно, столько целей, сколько " +"вам нужно." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:459 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:518 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:577 +msgid "Alert not found." +msgstr "Предупреждение не найдено." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:561 +msgid "Rules updated." +msgstr "Правила обновлены." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:564 +msgid "JSON decoding error. Please call support." +msgstr "" +"Ошибка декодирования JSON. Пожалуйста, обратитесь в службу поддержки." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:895 +msgid "Pass" +msgstr "Пропустить" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:896 +msgid "Drop" +msgstr "Бросить" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1918 +msgid "Load from template" +msgstr "Загрузка из шаблона" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:941 +msgid "Days a week" +msgstr "Дней в неделю" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:974 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2271 +#: ../../godmode/alerts/configure_alert_template.php:663 +#: ../../godmode/alerts/alert_view.php:310 +msgid "Use special days list" +msgstr "Использовать список особых дней" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:993 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1023 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3521 +msgid "from" +msgstr "из" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1020 +msgid "Execute alert" +msgstr "Выполнить предупреждение" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1043 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3539 +msgid "times in" +msgstr "раза в" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1053 +msgid "threshold" +msgstr "порог" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1063 +msgid "" +"Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." +msgstr "" +"Перейти - Все предупреждения оцениваются. Drop - Остановка при совпадении 1 " +"предупреждения." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1080 +msgid "Grouped by" +msgstr "Сгруппировано по" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1190 +msgid "" +"The templates shown are only for correlative alerts, event alert (legacy) " +"will be deprecated in the future" +msgstr "" +"Показанные шаблоны предназначены только для корреляционных предупреждений, " +"предупреждение о событиях (унаследованное) в будущем будет устаревшим." + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1200 +msgid "Available items" +msgstr "Доступные элементы" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1201 +msgid "Block" +msgstr "Блокировать" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1249 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:978 +msgid "Log content" +msgstr "Содержание журнала" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1254 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:981 +msgid "Log source" +msgstr "Источник журнала" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1259 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:984 +msgid "Log agent" +msgstr "Агент журнала" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1317 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:990 +msgid "Event content" +msgstr "Содержание события" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1322 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:987 +msgid "Event user comment" +msgstr "Комментарий пользователя события" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1327 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:993 +msgid "Event agent" +msgstr "Агент события" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1332 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:996 +msgid "Event module" +msgstr "Модуль события" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1337 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:999 +msgid "Event module alerts" +msgstr "Предупреждения модулей событий" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1342 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1002 +msgid "Event group" +msgstr "Группа события" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1348 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1005 +msgid "Event group Recursive" +msgstr "Рекурсивность группы событий" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1354 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1008 +msgid "Event severity" +msgstr "Степень серьезности события" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1359 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1011 +msgid "Event tag" +msgstr "Тег события" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1364 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1014 +msgid "Event user" +msgstr "Пользователь события" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1394 +msgid "Operators" +msgstr "Операторы" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1460 +msgid "Modifiers" +msgstr "Модификаторы" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1465 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1023 +msgid "Time window" +msgstr "Временное окно" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1551 +msgid "Rule definition" +msgstr "Определение правила" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1822 +msgid "Remove rule" +msgstr "Удалить правило" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1833 +msgid "Remove item" +msgstr "Удалить элемент" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1854 +#: ../../operation/agentes/estado_monitores.php:602 +msgid "Reset" +msgstr "Перезагрузить" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2014 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2016 +msgid "Triggering Condition" +msgstr "Условия срабатывания" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2280 +#: ../../godmode/alerts/alert_view.php:318 +msgid "Number of alerts" +msgstr "Количество предупреждений" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2368 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2630 +#: ../../godmode/alerts/configure_alert_action.php:286 +#: ../../godmode/alerts/alert_view.php:422 +msgid "Firing" +msgstr "Запуск" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2370 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2581 +#: ../../include/ajax/custom_fields.php:413 +#: ../../include/class/AgentWizard.class.php:1223 +msgid "Treshold" +msgstr "Порог" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2371 +msgid "Opions" +msgstr "Опции" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2482 +msgid "There are no defined actions for this alert" +msgstr "Для этого предупреждения нет определенных действий" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2553 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3518 +msgid "Number of alerts match" +msgstr "Количество совпадений предупреждений" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2631 +#: ../../godmode/alerts/alert_view.php:423 +msgid "Recovering" +msgstr "Восстановление" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2648 +msgid "" +"Select the desired action and mode to view the Triggering fields for this " +"action" +msgstr "" +"Выберите нужное действие и режим, чтобы просмотреть поля триггеров для этого " +"действия" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2665 +#: ../../godmode/alerts/alert_view.php:419 +msgid "Select the action" +msgstr "Выберите действие" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2723 +#: ../../godmode/alerts/configure_alert_template.php:957 +#: ../../godmode/alerts/alert_view.php:440 +#: ../../godmode/alerts/alert_view.php:534 +msgid "Firing fields" +msgstr "Поля срабатывания" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2725 +#: ../../godmode/alerts/alert_view.php:440 +msgid "" +"Fields passed to the command executed by this action when the alert is fired" +msgstr "" +"Поля передаются команде, выполняемой этим действием при возникновении " +"предупреждения" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2729 +#: ../../godmode/agentes/fields_manager.php:119 +#: ../../godmode/alerts/alert_view.php:442 +#: ../../godmode/alerts/alert_view.php:533 +#: ../../operation/agentes/custom_fields.php:65 +msgid "Field" +msgstr "Поле" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2731 +#: ../../godmode/alerts/alert_view.php:442 +#: ../../godmode/alerts/alert_view.php:533 +msgid "Fields configured on the command associated to the action" +msgstr "Поля, настроенные на команды, связанные с действием" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2734 +msgid "Alerts fields" +msgstr "Поля предупреждений" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2736 +msgid "Triggering fields configured in Alerts" +msgstr "Поля срабатывания, настроенные в Предупреждениях" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2739 +#: ../../godmode/alerts/alert_view.php:444 +msgid "Action fields" +msgstr "Поля действия" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2741 +#: ../../godmode/alerts/alert_view.php:444 +msgid "Triggering fields configured in action" +msgstr "Поля срабатывания настроены на действие" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2744 +#: ../../godmode/alerts/alert_view.php:446 +msgid "Executed on firing" +msgstr "Выполняется при срабатывании" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2746 +#: ../../godmode/alerts/alert_view.php:446 +#: ../../godmode/alerts/alert_view.php:534 +msgid "Fields used on execution when the alert is fired" +msgstr "Поля, используемые при выполнении, когда срабатывает предупреждение" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2794 +msgid "Correlated alerts" +msgstr "Коррелирующие предупреждения" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2817 +msgid "Alert succesfully deleted" +msgstr "Предупреждение успешно удалено" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2826 +msgid "Alerts validated" +msgstr "Предупреждения подтверждены" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2829 +msgid "Failed to process validation" +msgstr "Не удалось получить разрешение" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2975 +msgid "Matched" +msgstr "Совпадения" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2976 +#: ../../godmode/alerts/alert_list.list.php:131 +#: ../../mobile/operation/alerts.php:48 +#: ../../include/functions_reporting_html.php:1996 +#: ../../include/functions_reporting_html.php:2678 +#: ../../include/functions_reporting_html.php:2679 +#: ../../operation/agentes/alerts_status.functions.php:95 +#: ../../operation/snmpconsole/snmp_view.php:251 +#: ../../operation/snmpconsole/snmp_view.php:1261 +msgid "Fired" +msgstr "Запущено" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2998 +msgid "Sort elements" +msgstr "Сортировать элементы" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3077 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3093 +msgid "Add Actions" +msgstr "Добавить действия" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3283 +msgid "Are you sure you want to disable the alert" +msgstr "Вы уверены, что хотите отключить предупреждение?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3289 +msgid "Are you sure you want to enable the alert" +msgstr "Вы уверены, что хотите включить предупреждение?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3296 +msgid "Disabled Alert" +msgstr "Предупреждение Выключено" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3334 +#: ../../godmode/alerts/alert_list.list.php:138 +#: ../../mobile/operation/alerts.php:56 +#: ../../operation/agentes/alerts_status.functions.php:102 +msgid "Standby off" +msgstr "Режим ожидания выключен" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3335 +msgid "Are you sure you want to standby the alert" +msgstr "Вы уверены, что хотите перевести предупреждение в режим ожидания?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3340 +#: ../../enterprise/operation/agentes/policy_view.php:279 +#: ../../godmode/alerts/alert_list.list.php:137 +#: ../../mobile/operation/alerts.php:55 ../../include/functions_ui.php:1137 +#: ../../operation/agentes/alerts_status.functions.php:101 +msgid "Standby on" +msgstr "Режим ожидания включен" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3342 +msgid "Are you sure you want to activate the alert" +msgstr "Вы уверены, что хотите активировать предупреждение?" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3350 +msgid "Standby Alert" +msgstr "Перевести предупреждение в режим ожидания" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3422 +msgid "Delete Actions" +msgstr "Удалить Действия" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3598 +msgid "Successfully added action" +msgstr "Действие успешно добавлено" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3636 +msgid "Successfully delete action" +msgstr "Действие успешно удалено" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4030 +msgid "Choosetime" +msgstr "Выберите время" + +#: ../../enterprise/include/class/WebServerModuleDebug.class.php:143 +msgid "Performing query. Please wait." +msgstr "Выполнение запроса. Пожалуйста, подождите." + +#: ../../enterprise/include/class/WebServerModuleDebug.class.php:174 +msgid "No results" +msgstr "Нет результатов" + +#: ../../enterprise/include/class/WebServerModuleDebug.class.php:197 +msgid "Error performing execution" +msgstr "Ошибка при выполнении" + +#: ../../enterprise/include/class/WebServerModuleDebug.class.php:229 +msgid "Please, wait for a first execution of module" +msgstr "Пожалуйста, дождитесь первого выполнения модуля" + +#: ../../enterprise/include/functions_enterprise.php:324 +msgid "Tree view by tags" +msgstr "Просмотр в виде дерева по тегам" + +#: ../../enterprise/include/functions_enterprise.php:354 +msgid "" +"If the interval of days until events data purge is shorter than the events " +"data history storage interval, data will be lost. It is recommended that the " +"storage frequency is higher than the purge frequency." +msgstr "" +"Если интервал дней до очистки данных о событиях меньше, чем интервал " +"хранения истории данных о событиях, данные будут потеряны. Рекомендуется " +"установить частоту хранения ниже, чем частота очистки." + +#: ../../enterprise/include/functions_enterprise.php:356 +msgid "" +"Problems with event days purge and event days that pass data to history DB." +msgstr "" +"Проблемы с датой очистки событий и датой событий, которые передают данные в " +"историию БД." + +#: ../../enterprise/include/functions_enterprise.php:367 +msgid "" +"If days purge is less than history days pass to history db, you will have a " +"problems and you lost data. Recommended that days purge will more taller " +"than days to history DB" +msgstr "" +"Если дата очистки меньше даты переноса в историю, данные будут потеряны. Мы " +"рекомендуем установить дату очистки больше, чем дата передачи исторических " +"данных." + +#: ../../enterprise/include/functions_enterprise.php:369 +msgid "Problems with days purge and days that pass data to history DB" +msgstr "Проблемы с датой очистки и датой переноса информации в историю." + +#: ../../enterprise/include/functions_reporting.php:89 +msgid "Advance options" +msgstr "Дополнительные опции" + +#: ../../enterprise/include/functions_reporting.php:113 +msgid "Templates list" +msgstr "Список шаблонов" + +#: ../../enterprise/include/functions_reporting.php:148 +msgid "Templates Wizard" +msgstr "Мастер Шаблонов" + +#: ../../enterprise/include/functions_reporting.php:1190 +msgid "Availability item created from wizard." +msgstr "Доступен элемент созданный помощником." + +#: ../../enterprise/include/functions_reporting.php:1732 +#: ../../enterprise/include/functions_reporting.php:2674 +#: ../../enterprise/include/functions_reporting.php:3686 +#: ../../godmode/alerts/alert_special_days.php:396 +msgid "January" +msgstr "Январь" + +#: ../../enterprise/include/functions_reporting.php:1736 +#: ../../enterprise/include/functions_reporting.php:2678 +#: ../../enterprise/include/functions_reporting.php:3690 +#: ../../godmode/alerts/alert_special_days.php:400 +msgid "February" +msgstr "Февраль" + +#: ../../enterprise/include/functions_reporting.php:1740 +#: ../../enterprise/include/functions_reporting.php:2682 +#: ../../enterprise/include/functions_reporting.php:3694 +#: ../../godmode/alerts/alert_special_days.php:404 +msgid "March" +msgstr "Март" + +#: ../../enterprise/include/functions_reporting.php:1744 +#: ../../enterprise/include/functions_reporting.php:2686 +#: ../../enterprise/include/functions_reporting.php:3698 +#: ../../godmode/alerts/alert_special_days.php:408 +msgid "April" +msgstr "Апрель" + +#: ../../enterprise/include/functions_reporting.php:1748 +#: ../../enterprise/include/functions_reporting.php:2690 +#: ../../enterprise/include/functions_reporting.php:3702 +#: ../../godmode/alerts/alert_special_days.php:412 +msgid "May" +msgstr "Май" + +#: ../../enterprise/include/functions_reporting.php:1752 +#: ../../enterprise/include/functions_reporting.php:2694 +#: ../../enterprise/include/functions_reporting.php:3706 +#: ../../godmode/alerts/alert_special_days.php:416 +msgid "June" +msgstr "Июнь" + +#: ../../enterprise/include/functions_reporting.php:1756 +#: ../../enterprise/include/functions_reporting.php:2698 +#: ../../enterprise/include/functions_reporting.php:3710 +#: ../../godmode/alerts/alert_special_days.php:420 +msgid "July" +msgstr "Июль" + +#: ../../enterprise/include/functions_reporting.php:1760 +#: ../../enterprise/include/functions_reporting.php:2702 +#: ../../enterprise/include/functions_reporting.php:3714 +#: ../../godmode/alerts/alert_special_days.php:424 +msgid "August" +msgstr "Август" + +#: ../../enterprise/include/functions_reporting.php:1764 +#: ../../enterprise/include/functions_reporting.php:2706 +#: ../../enterprise/include/functions_reporting.php:3718 +#: ../../godmode/alerts/alert_special_days.php:428 +msgid "September" +msgstr "Сентябрь" + +#: ../../enterprise/include/functions_reporting.php:1768 +#: ../../enterprise/include/functions_reporting.php:2710 +#: ../../enterprise/include/functions_reporting.php:3722 +#: ../../godmode/alerts/alert_special_days.php:432 +msgid "October" +msgstr "Октябрь" + +#: ../../enterprise/include/functions_reporting.php:1772 +#: ../../enterprise/include/functions_reporting.php:2714 +#: ../../enterprise/include/functions_reporting.php:3726 +#: ../../godmode/alerts/alert_special_days.php:436 +msgid "November" +msgstr "Ноябрь" + +#: ../../enterprise/include/functions_reporting.php:1777 +#: ../../enterprise/include/functions_reporting.php:2719 +#: ../../enterprise/include/functions_reporting.php:3731 +#: ../../godmode/alerts/alert_special_days.php:440 +msgid "December" +msgstr "Декабрь" + +#: ../../enterprise/include/functions_reporting.php:1812 +#: ../../enterprise/include/functions_reporting.php:2746 +#: ../../enterprise/include/functions_reporting.php:3743 +#: ../../include/functions_reporting_html.php:524 +msgid "Max/Min Values" +msgstr "Макс/Мин значения" + +#: ../../enterprise/include/functions_reporting.php:1814 +#: ../../enterprise/include/functions_reporting.php:1983 +#: ../../enterprise/include/functions_reporting.php:2748 +#: ../../enterprise/include/functions_reporting.php:3745 +#: ../../enterprise/include/functions_reporting.php:5861 +#: ../../include/functions_reporting_html.php:526 +msgid "SLA Compliance" +msgstr "SLA Соответствие" + +#: ../../enterprise/include/functions_reporting.php:1854 +#: ../../enterprise/include/functions_reporting.php:2802 +#: ../../enterprise/include/functions_reporting.php:3061 +#: ../../enterprise/include/functions_reporting.php:3800 +#: ../../enterprise/include/functions_reporting.php:4064 +#: ../../enterprise/include/functions_reporting.php:4715 +#: ../../enterprise/include/functions_reporting.php:5931 +#: ../../include/functions_reporting_html.php:849 +#: ../../include/functions_reporting_html.php:4074 +msgid "Not Init" +msgstr "Не инициализировано" + +#: ../../enterprise/include/functions_reporting.php:1861 +#: ../../enterprise/include/functions_reporting.php:2812 +#: ../../enterprise/include/functions_reporting.php:3810 +msgid "Planned Downtimes" +msgstr "Запланированные Остановки" + +#: ../../enterprise/include/functions_reporting.php:1868 +msgid "Ignore time" +msgstr "Игнорируемое время" + +#: ../../enterprise/include/functions_reporting.php:1888 +msgid "SLA Compliance per days" +msgstr "Соблюдение SLA в днях" + +#: ../../enterprise/include/functions_reporting.php:1980 +msgid "Summary of SLA Failures" +msgstr "Краткий отчет неудач SLA" + +#: ../../enterprise/include/functions_reporting.php:2000 +#: ../../enterprise/include/functions_reporting.php:2001 +msgid "Out of SLA limits" +msgstr "Выход за пределы SLA" + +#: ../../enterprise/include/functions_reporting.php:2006 +#: ../../enterprise/include/functions_reporting.php:2007 +msgid "IN of SLA limits" +msgstr "Пределы IN в SLA" + +#: ../../enterprise/include/functions_reporting.php:2090 +#: ../../include/functions_reports.php:890 +msgid "Log report" +msgstr "Отчет по журналу" + +#: ../../enterprise/include/functions_reporting.php:2103 +#: ../../include/functions_reports.php:889 +msgid "Log" +msgstr "Журнал" + +#: ../../enterprise/include/functions_reporting.php:2344 +#: ../../enterprise/include/functions_reporting.php:3298 +#: ../../enterprise/include/functions_reporting.php:4275 +#: ../../include/functions_reporting.php:943 +#: ../../include/functions_reporting.php:7587 +msgid "There are no SLAs defined" +msgstr "Нет установленных SLA" + +#: ../../enterprise/include/functions_reporting.php:2397 +#: ../../enterprise/include/functions_reporting.php:3351 +#: ../../enterprise/include/functions_reporting.php:4328 +#: ../../include/functions_reporting.php:1018 +#: ../../include/functions_reporting.php:7965 +msgid "Inverse" +msgstr "Инверсия" + +#: ../../enterprise/include/functions_reporting.php:2822 +#: ../../enterprise/include/functions_reporting.php:3071 +#: ../../enterprise/include/functions_reporting.php:3820 +#: ../../godmode/agentes/planned_downtime.editor.php:67 +#: ../../include/functions_reporting_html.php:859 +#: ../../include/functions_reporting_html.php:4084 +#: ../../general/first_task/planned_downtime.php:22 +msgid "Planned Downtime" +msgstr "Запланированная остановка" + +#: ../../enterprise/include/functions_reporting.php:2860 +msgid "T. Total" +msgstr "Общее время" + +#: ../../enterprise/include/functions_reporting.php:2861 +#: ../../enterprise/include/functions_reporting.php:3847 +msgid "T. OK" +msgstr "Вр. ОК" + +#: ../../enterprise/include/functions_reporting.php:2862 +#: ../../enterprise/include/functions_reporting.php:3848 +msgid "T. Error" +msgstr "Вр. ошибка" + +#: ../../enterprise/include/functions_reporting.php:2863 +#: ../../enterprise/include/functions_reporting.php:3849 +msgid "T. Unknown" +msgstr "Вр. неизвестно" + +#: ../../enterprise/include/functions_reporting.php:2864 +#: ../../enterprise/include/functions_reporting.php:3850 +msgid "T. Not_init" +msgstr "Вр. не инициализировано" + +#: ../../enterprise/include/functions_reporting.php:2865 +#: ../../enterprise/include/functions_reporting.php:3851 +msgid "T. Downtime" +msgstr "Вр. остановка" + +#: ../../enterprise/include/functions_reporting.php:2866 +#: ../../enterprise/include/functions_reporting.php:3852 +msgid "SLA %" +msgstr "SLA %" + +#: ../../enterprise/include/functions_reporting.php:3056 +#: ../../enterprise/include/functions_reporting.php:4059 +#: ../../enterprise/include/functions_reporting.php:5926 +#: ../../enterprise/include/functions_services.php:1350 +#: ../../include/functions_reporting_html.php:844 +#: ../../include/functions_reporting_html.php:4069 +msgid "Unknow" +msgstr "Неизвестное" + +#: ../../enterprise/include/functions_reporting.php:3066 +#: ../../enterprise/include/functions_reporting.php:4069 +#: ../../enterprise/include/functions_reporting.php:5936 +#: ../../include/functions_reporting_html.php:854 +#: ../../include/functions_reporting_html.php:4079 +msgid "Downtimes" +msgstr "Остановки" + +#: ../../enterprise/include/functions_reporting.php:4074 +msgid "Ignore Planned Downtime" +msgstr "Игнорировать Запланированные остановки" + +#: ../../enterprise/include/functions_reporting.php:4164 +#: ../../include/functions_reports.php:701 +msgid "Hourly S.L.A." +msgstr "Ежечасный S.L.A." + +#: ../../enterprise/include/functions_reporting.php:4767 +msgid "Max/Min Critical" +msgstr "Критический Max/Min" + +#: ../../enterprise/include/functions_reporting.php:4768 +msgid "Max/Min Warning" +msgstr "Предостережение Max/Min" + +#: ../../enterprise/include/functions_reporting.php:4769 +msgid "Total checks ok/total" +msgstr "Всего проверок ок/всего" + +#: ../../enterprise/include/functions_reporting.php:4770 +msgid "% time ok" +msgstr "% время ок" + +#: ../../enterprise/include/functions_reporting.php:4788 +#: ../../include/functions_reporting_html.php:613 +#: ../../include/functions_reporting_html.php:652 +#: ../../include/functions_reporting_html.php:723 +#: ../../include/functions_reporting_html.php:801 +#: ../../include/functions_reporting_html.php:3548 +#: ../../include/functions_reporting_html.php:3681 +msgid "24 x 7" +msgstr "24 x 7" + +#: ../../enterprise/include/functions_reporting.php:4828 +#: ../../include/functions_reporting_html.php:558 +msgid "Global Time" +msgstr "Глобальное время" + +#: ../../enterprise/include/functions_reporting.php:4830 +msgid "Time Critical" +msgstr "Критическое время" + +#: ../../enterprise/include/functions_reporting.php:4831 +msgid "Time Warning" +msgstr "Время Предостережения об опасности" + +#: ../../enterprise/include/functions_reporting.php:4923 +#: ../../include/functions_reporting_html.php:591 +msgid "Checks Time" +msgstr "Время Проверок" + +#: ../../enterprise/include/functions_reporting.php:4925 +msgid "Checks Critical" +msgstr "Критические Проверки" + +#: ../../enterprise/include/functions_reporting.php:4926 +msgid "Checks Warning" +msgstr "Проверки Предостережений об опасности" + +#: ../../enterprise/include/functions_reporting.php:5009 +#: ../../include/functions_reporting_html.php:781 +#: ../../include/functions_reporting_html.php:3717 +#: ../../include/functions_reporting_html.php:4274 +#: ../../include/functions_reporting_html.php:4277 +#: ../../include/functions_reporting.php:1529 +#: ../../include/functions_reporting.php:2653 +msgid "There are no Agent/Modules defined" +msgstr "Здесь нет определенных Агентов/Модулей" + +#: ../../enterprise/include/functions_reporting.php:5388 +msgid "There are no SLAs defined." +msgstr "SLA не определены." + +#: ../../enterprise/include/functions_reporting.php:5529 +#: ../../enterprise/include/functions_services.php:1269 +#: ../../enterprise/include/functions_services.php:1271 +#: ../../enterprise/include/functions_services.php:1301 +#: ../../enterprise/include/functions_services.php:1302 +#: ../../enterprise/include/functions_services.php:1304 +#: ../../enterprise/include/functions_services.php:1355 +#: ../../enterprise/include/functions_services.php:1357 +msgid "Nonexistent" +msgstr "Не существует" + +#: ../../enterprise/include/functions_reporting.php:5941 +msgid "Scheduled shutdow" +msgstr "Плановое отключение" + +#: ../../enterprise/include/functions_reporting.php:6303 +#: ../../enterprise/include/functions_reporting.php:7044 +#, php-format +msgid "Graph agents(%s) - %s" +msgstr "График агентов(%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:6952 +#, php-format +msgid "Graph agent(%s) - %s" +msgstr "Графический агент(%s) - %s" + +#: ../../enterprise/include/functions_reporting.php:7398 +msgid "There is not data for the selected conditions" +msgstr "Нет данных для выбранных условий" + +#: ../../enterprise/include/functions_reporting.php:7588 +#: ../../enterprise/include/functions_reporting.php:7654 +msgid "Template editor" +msgstr "Редактор шаблонов" + +#: ../../enterprise/include/functions_reporting.php:7680 +msgid "Get PDF file" +msgstr "Получить PDF файл" + +#: ../../enterprise/include/functions_reporting.php:7741 +#: ../../include/functions_reports.php:640 +msgid "Simple baseline graph" +msgstr "Простой базовый график" + +#: ../../enterprise/include/functions_enterprise_api.php:1108 +msgid "Is not metaconsole" +msgstr "Не является метаконсолью" + +#: ../../enterprise/include/functions_enterprise_api.php:2569 +msgid "Error getting alert actions." +msgstr "Ошибка при получении предупреждающих действий." + +#: ../../enterprise/include/functions_enterprise_api.php:3530 +#: ../../enterprise/include/functions_enterprise_api.php:3584 +#, php-format +msgid "%d agents added to apply queue." +msgstr "%d агентов добавлены в очередь на применение." + +#: ../../enterprise/include/functions_enterprise_api.php:3553 +#: ../../enterprise/include/functions_policies.php:5087 +#, php-format +msgid "Successfully applied to node %s." +msgstr "Успешно применено к узлу %s." + +#: ../../enterprise/include/functions_enterprise_api.php:3555 +#: ../../enterprise/include/functions_policies.php:5089 +#, php-format +msgid "Successfully applied to nodes: %s." +msgstr "Успешно применено к узлам: %s." + +#: ../../enterprise/include/functions_enterprise_api.php:3594 +#, php-format +msgid "Id policy %d already pending to apply." +msgstr "Id политики %d уже ожидает применения." + +#: ../../enterprise/include/functions_enterprise_api.php:3596 +#, php-format +msgid "Id policy %d already pending to apply in Id agent %d." +msgstr "Id политика %d уже ожидает применения в Id агенте %d." + +#: ../../enterprise/include/functions_enterprise_api.php:4007 +#: ../../enterprise/include/functions_enterprise_api.php:4034 +msgid "" +"Error adding web analysis module to policy. Id_module_type is not correct " +"for web analysis modules." +msgstr "" +"Ошибка добавления модуля веб-анализа в политику. Id_module_type некорректен " +"для модулей веб-анализа." + +#: ../../enterprise/include/functions_enterprise_api.php:4016 +msgid "" +"Network Module could not be added to policy. Id_module_type is not correct " +"for network modules." +msgstr "" +"Не удалось добавить сетевой модуль в политику. Id_module_type неверен для " +"сетевых модулей." + +#: ../../enterprise/include/functions_enterprise_api.php:4025 +msgid "" +"Error adding web module to policy. Id_module_type is not correct for web " +"modules." +msgstr "" +"Ошибка добавления веб-модуля в политику. Id_module_type некорректен для веб-" +"модулей." + +#: ../../enterprise/include/functions_enterprise_api.php:4046 +msgid "" +"Error adding module to policy configuration_data is not a valid base64." +msgstr "" +"Ошибка добавления модуля в политику configuration_data не является " +"допустимым base64." + +#: ../../enterprise/include/functions_enterprise_api.php:6042 +#, php-format +msgid "Updated user %s " +msgstr "Обновлен пользователь %s " + +#: ../../enterprise/include/functions_enterprise_api.php:6053 +#, php-format +msgid "Created user %s " +msgstr "Создан пользователь %s " + +#: ../../enterprise/include/functions_enterprise_api.php:6254 +#, php-format +msgid "" +"There are groups that not exist in node. The followings elements " +"groups/profiles/user profiles were created/updated sucessfully (%d/%d/%d) " +msgstr "" +"Есть группы, которые не существуют в узле. Следующие элементы " +"групп/профилей/профилей пользователей были созданы/обновлены успешно " +"(%d/%d/%d) " + +#: ../../enterprise/include/functions_enterprise_api.php:6267 +#, php-format +msgid "" +"Error creating/updating the followings elements groups/profiles/user " +"profiles (%d/%d/%d) " +msgstr "" +"Ошибка создания/обновления следующих элементов групп/профилей/профилей " +"пользователей (%d/%d/%d) " + +#: ../../enterprise/include/functions_enterprise_api.php:6283 +#, php-format +msgid "" +"The followings elements groups/profiles/user profiles were created/updated " +"sucessfully (%d/%d/%d) " +msgstr "" +"Следующие элементы групп/профилей/профилей пользователей были " +"созданы/обновлены успешно (%d/%d/%d) " + +#: ../../enterprise/include/functions_enterprise_api.php:6505 +msgid "The agent could not be added to the policy." +msgstr "Агент не может быть добавлен в политику." + +#: ../../enterprise/include/functions_services.php:29 +msgid "There is no information about" +msgstr "Нет информации о" + +#: ../../enterprise/include/functions_services.php:34 +msgid "Service does not exist." +msgstr "Сервис не существует." + +#: ../../enterprise/include/functions_services.php:46 +msgid "module that stores the service" +msgstr "модуль, в котором хранится сервис" + +#: ../../enterprise/include/functions_services.php:58 +msgid "module that stores SLA service" +msgstr "модуль, в котором хранится сервис SLA" + +#: ../../enterprise/include/functions_services.php:71 +msgid "agent that stores the service" +msgstr "агент, в котором хранится сервис" + +#: ../../enterprise/include/functions_services.php:84 +msgid "agent that stores SLA service" +msgstr "агент, в котором хранится сервис SLA" + +#: ../../enterprise/include/functions_services.php:105 +msgid "alert critical SLA service" +msgstr "Предупреждение о критическом статусе сервиса SLA" + +#: ../../enterprise/include/functions_services.php:126 +msgid "alert warning service" +msgstr "Сервис предупреждений об опасности" + +#: ../../enterprise/include/functions_services.php:147 +msgid "alert critical service" +msgstr "Предупреждение о критическом статусе сервиса" + +#: ../../enterprise/include/functions_services.php:168 +msgid "alert unknown service" +msgstr "Предупреждение о неизвестном статусе сервиса" + +#: ../../enterprise/include/functions_services.php:440 +#, php-format +msgid "Module automatic create for the service %s" +msgstr "Модули автоматически создаются для сервиса %s" + +#: ../../enterprise/include/functions_services.php:1329 +msgid "Normal (Alert)" +msgstr "Нормальный (предупреждение)" + +#: ../../enterprise/include/functions_services.php:1333 +msgid "Critical (Alert)" +msgstr "Критическое (Оповещение)" + +#: ../../enterprise/include/functions_services.php:1341 +msgid "Warning (Alert)" +msgstr "Внимание (предупреждение)" + +#: ../../enterprise/include/functions_services.php:1479 +msgid "There are no service elements defined" +msgstr "Здесь нет определенных элементов сервиса" + +#: ../../enterprise/include/functions_services.php:1503 +msgid "Weight Critical" +msgstr "Плотность Критичесности" + +#: ../../enterprise/include/functions_services.php:1504 +msgid "Weight Warning" +msgstr "Вес опасности" + +#: ../../enterprise/include/functions_services.php:1505 +msgid "Weight Unknown" +msgstr "Плотность Неизвесности" + +#: ../../enterprise/include/functions_services.php:1506 +msgid "Weight Ok" +msgstr "Плотность Ок" + +#: ../../enterprise/include/functions_services.php:1530 +#: ../../enterprise/include/functions_services.php:1559 +#: ../../enterprise/include/functions_services.php:1611 +msgid "Nonexistent. This element should be deleted" +msgstr "Несуществующий. Этот элемент должен быть удален" + +#: ../../enterprise/include/functions_services.php:1640 +msgid "This element does not affect service weigth because is disabled." +msgstr "Этот элемент не влияет на вес сервиса, так как он отключен." + +#: ../../enterprise/include/functions_services.php:1655 +#, php-format +msgid "Dynamic element (%d) '%s' does not match any target" +msgstr "Динамический элемент (%d) '%s' не соответствует ни одной цели" + +#: ../../enterprise/include/functions_services.php:1664 +#, php-format +msgid "Dynamic element (%d) '%s' causes an error: %s" +msgstr "Динамический элемент (%d) '%s' вызывает ошибку: %s" + +#: ../../enterprise/include/functions_services.php:1676 +msgid "Dynamic element" +msgstr "Динамический элемент" + +#: ../../enterprise/include/functions_services.php:1682 +#, php-format +msgid "agents like \"%s\"" +msgstr "агенты типа \"%s\"" + +#: ../../enterprise/include/functions_services.php:1687 +#, php-format +msgid "modules like \"%s\"" +msgstr "модули типа \"%s\"" + +#: ../../enterprise/include/functions_services.php:1802 +msgid "NOT INITIALIZED" +msgstr "НЕ ИНИЦИАЛИЗИРОВАНО" + +#: ../../enterprise/include/functions_services.php:1836 +msgid "Delete service element" +msgstr "Удалить элемент сервиса" + +#: ../../enterprise/include/functions_services.php:1895 +msgid "FAIL" +msgstr "СБОЙ" + +#: ../../enterprise/include/functions_login.php:22 +msgid "You must change password:" +msgstr "Вы должны изменить пароль:" + +#: ../../enterprise/include/functions_login.php:38 +msgid "Password must be different from the 3 previous changes." +msgstr "Пароль должен отличаться от 3 предыдущих изменений." + +#: ../../enterprise/include/functions_login.php:50 +msgid "Old pass: " +msgstr "Старый пароль: " + +#: ../../enterprise/include/functions_login.php:53 +msgid "New pass: " +msgstr "Новый пароль: " + +#: ../../enterprise/include/functions_login.php:57 +msgid "Confirm: " +msgstr "Подтвердить: " + +#: ../../enterprise/include/functions_login.php:63 +msgid "Change" +msgstr "Изменить" + +#: ../../enterprise/include/functions_login.php:97 +msgid "Login blocked" +msgstr "Вход в систему заблокирован" + +#: ../../enterprise/include/functions_login.php:105 +msgid "User has been blocked. Try again in " +msgstr "Пользователь был заблокирован. Повторите попытку через " + +#: ../../enterprise/include/functions_login.php:105 +msgid " minutes" +msgstr " минут" + +#: ../../enterprise/include/functions_login.php:138 +msgid "Login successfully" +msgstr "Успешный вход в систему" + +#: ../../enterprise/include/functions_login.php:145 +msgid "Successfully" +msgstr "Успешно" + +#: ../../enterprise/include/functions_login.php:146 +msgid "User pass successfully updated" +msgstr "Пропуск пользователя успешно обновлен" + +#: ../../enterprise/include/functions_login.php:252 +msgid "Password must be different from the " +msgstr "Пароль должен быть отличным от " + +#: ../../enterprise/include/functions_login.php:252 +msgid " previous changes." +msgstr " предыдущих изменений." + +#: ../../enterprise/include/functions_login.php:265 +msgid "Password must be different" +msgstr "Пароль должен отличаться" + +#: ../../enterprise/include/functions_login.php:276 +msgid "Password too short" +msgstr "Пароль слишком короткий" + +#: ../../enterprise/include/functions_login.php:288 +msgid "Password must contain numbers" +msgstr "Пароль должен содержать цифры" + +#: ../../enterprise/include/functions_login.php:301 +msgid "Password must contain symbols" +msgstr "Пароль должен содержать символы" + +#: ../../enterprise/include/functions_login.php:324 +msgid "Invalid old password" +msgstr "Неверный старый пароль" + +#: ../../enterprise/include/functions_login.php:357 +msgid "Password confirm does not match" +msgstr "Подтвержденный пароль не совпадает" + +#: ../../enterprise/include/functions_login.php:364 +msgid "Password empty" +msgstr "пароль не занят" + +#: ../../enterprise/include/functions_login.php:481 +#: ../../godmode/users/configure_user.php:1779 +#: ../../godmode/users/configure_user.php:1849 +#: ../../godmode/users/configure_user.php:1922 +#: ../../include/ajax/double_auth.ajax.php:252 +#: ../../include/ajax/double_auth.ajax.php:350 +#: ../../include/ajax/double_auth.ajax.php:396 +#: ../../include/ajax/double_auth.ajax.php:512 +#: ../../operation/users/user_edit.php:1026 +#: ../../operation/users/user_edit.php:1092 +#: ../../operation/users/user_edit.php:1163 ../../general/register.php:231 +#: ../../general/logon_failed.php:18 +msgid "Authentication error" +msgstr "Ошибка аутентификации" + +#: ../../enterprise/include/functions_login.php:488 +#: ../../godmode/users/configure_user.php:1786 +#: ../../godmode/users/configure_user.php:1856 +#: ../../include/ajax/double_auth.ajax.php:259 +#: ../../include/ajax/double_auth.ajax.php:357 +#: ../../include/ajax/double_auth.ajax.php:403 +#: ../../include/ajax/double_auth.ajax.php:520 +#: ../../operation/users/user_edit.php:1033 +#: ../../operation/users/user_edit.php:1099 ../../general/register.php:238 +msgid "There was an error loading the data" +msgstr "Произошла ошибка при загрузке данных" + +#: ../../enterprise/include/functions_login.php:497 +#: ../../godmode/users/configure_user.php:1864 +#: ../../godmode/users/configure_user.php:1943 +#: ../../operation/users/user_edit.php:1107 +#: ../../operation/users/user_edit.php:1183 ../../general/register.php:247 +msgid "Double autentication activation" +msgstr "Активация двойной аутентификации" + +#: ../../enterprise/include/lib/Agent.php:88 +msgid " error, invalid agent." +msgstr " ошибка, недопустимый агент." + +#: ../../enterprise/include/lib/Agent.php:638 +#, php-format +msgid "Log module \"%s\" does not exist" +msgstr "Модуль журнала \"%s\" не существует" + +#: ../../enterprise/include/lib/Agent.php:660 +#, php-format +msgid "Plugin \"%s\" does not exist" +msgstr "Плагин \"%s\" не существует" + +#: ../../enterprise/include/lib/Agent.php:792 +#, php-format +msgid "Log module \"%s\" does not exist, %s skipped" +msgstr "Модуль журнала \"%s\" не существует, %s пропущен" + +#: ../../enterprise/include/lib/Agent.php:827 +#, php-format +msgid "Plugin \"%s\" does not exist, %s skipped" +msgstr "Плагин \"%s\" не существует, %s пропущен" + +#: ../../enterprise/include/lib/Agent.php:898 +#, php-format +msgid "Log module %s already defined" +msgstr "Модуль журнала %s уже определен" + +#: ../../enterprise/include/lib/Agent.php:915 +#, php-format +msgid "Invalid module type %s" +msgstr "Недопустимый тип модуля %s" + +#: ../../enterprise/include/lib/Agent.php:945 +#, php-format +msgid "Plugin %s already defined" +msgstr "Плагин %s уже определен" + +#: ../../enterprise/include/lib/Agent.php:959 +msgid "Invalid plugin definition" +msgstr "Недопустимое определение плагина" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:181 +msgid "There was a problem creating Alert" +msgstr "Возникла проблема при создании предупреждения" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:263 +msgid "There was a problem deleting Alert" +msgstr "Возникла проблема с удалением предупреждения" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:718 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:732 +msgid "There was a problem creating Action" +msgstr "Возникла проблема при создании действия" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:769 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:782 +msgid "There was a problem updating Action" +msgstr "Возникла проблема с обновлением действия" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:818 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:832 +msgid "There was a problem deleting Action" +msgstr "Возникла проблема при удалении действия" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:873 +msgid "There was a problem standby alert" +msgstr "Возникла проблема при предупреждении о режиме ожидания" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:888 +msgid "There was a problem standby off alert" +msgstr "Возникла проблема при отключении режима ожидания предупреждений" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:932 +msgid "There was a problem disabled alert" +msgstr "Возникла проблема с отключением оповещения" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:948 +msgid "There was a problem enabled alert" +msgstr "Возникла проблема с включением оповещения" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1430 +msgid "Failed to cleanup old rules." +msgstr "Не удалось очистить старые правила." + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1438 +#, php-format +msgid "Failed SQL: %s" +msgstr "Не удалось выполнить SQL: %s" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1443 +#, php-format +msgid "Failed to apply rule: %s." +msgstr "Не удалось применить правило: %s." + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1586 +msgid "any" +msgstr "любой" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:224 +msgid "Cluster not found: " +msgstr "Кластер не найден: " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:233 +msgid "Cluster agent not found: " +msgstr "Агент кластера не найден: " + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:270 +#, php-format +msgid "Error while deleting, reason: %s" +msgstr "Ошибка при удалении, причина: %s" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:278 +msgid "Cluster successfully deleted." +msgstr "Кластер успешно удален." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:304 +#, php-format +msgid "Error while forcing, reason: %s" +msgstr "Ошибка при принуждении к работе, причина: %s" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:312 +msgid "Cluster successfully forced." +msgstr "Принуждение кластера успешно выполнено." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:565 +msgid "Not set" +msgstr "Не задано" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:575 +msgid "Active-Active" +msgstr "Активный-активный" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:577 +msgid "Active-Passive" +msgstr "Активно-Пассивный" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:182 +msgid "Cluster already defined, please use another name." +msgstr "Кластер уже определен, пожалуйста, используйте другое имя." + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:772 +msgid "Cluster name" +msgstr "Имя кластера" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:773 +msgid "" +"An agent with the same name of the cluster will be created, as well a " +"special service with the same name" +msgstr "" +"Будет создан агент с тем же именем кластера, а также специальный сервис с " +"тем же именем" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:787 +msgid "Cluster type" +msgstr "Тип кластера" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:788 +msgid "" +"AA is a cluster where all members are working. In AP cluster only master " +"member is working" +msgstr "" +"AA - это кластер, в котором работают все члены. В кластере AP работает " +"только главный член" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:796 +msgid "Active - Active" +msgstr "Активный - Активный" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:797 +msgid "Active - Pasive" +msgstr "Активный - Пассивный" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:817 +msgid "Target cluster agent will be stored under this group" +msgstr "Агент целевого кластера будет храниться в этой группе" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:834 +msgid "" +"You must select a Prediction Server to perform all cluster status " +"calculations" +msgstr "" +"Вы должны выбрать сервер прогнозирования для выполнения всех расчетов " +"статуса кластера" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1009 +msgid "critical if" +msgstr "критический, если" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1018 +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1041 +#, php-format +msgid "% of balanced modules are down (equal or greater)." msgstr "" -#: ../../mobile/include/user.class.php:154 -msgid "Secret code not found" +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1056 +msgid "Please, set threholds for all active-active modules" +msgstr "Пожалуйста, установите пороги для всех активных модулей" + +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1160 +msgid "Please, check all active-passive modules critical for this cluster" msgstr "" +"Пожалуйста, проверьте все активно-пассивные модули, критически важные для " +"этого кластера" -#: ../../mobile/include/user.class.php:155 -msgid "Please contact the administrator to reset your double authentication" +#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1162 +msgid "" +"If a critical balanced module is going to critical status, then cluster will " +"be critical." msgstr "" +"Если критический сбалансированный модуль переходит в критическое состояние, " +"то кластер будет критическим." -#: ../../mobile/include/user.class.php:179 -msgid "There was an error checking the code" +#: ../../enterprise/include/lib/Service.php:127 +msgid "Service module does not match pointed one" +msgstr "Сервисный модуль не совпадает с указанным" + +#: ../../enterprise/include/lib/Service.php:134 +#, php-format +msgid "Service module not found %s <br>" +msgstr "Сервисный модуль не найден %s <br>" + +#: ../../enterprise/include/lib/Service.php:148 +#: ../../enterprise/include/lib/Service.php:170 +msgid "Service module SLA does not match pointed one" +msgstr "Сервисный SLA модуль не совпадает с указанным" + +#: ../../enterprise/include/lib/Service.php:155 +#, php-format +msgid "SLA service module not found %s<br>" +msgstr "Сервисный модуль SLA не найден %s<br>" + +#: ../../enterprise/include/lib/Service.php:177 +#, php-format +msgid "SLA service value module not found %s<br>" +msgstr "Модуль значения сервиса SLA не найден %s<br>" + +#: ../../enterprise/include/lib/Service.php:191 +#, php-format +msgid "Service agent not found %s<br>" +msgstr "Агент сервиса не найден %s<br>" + +#: ../../enterprise/include/lib/Service.php:202 +#, php-format +msgid "Service children could not be fully retrieved: %s<br>" +msgstr "Не удалось полностью получить дочерние службы: %s<br>" + +#: ../../enterprise/include/lib/Service.php:247 +msgid "" +" Cannot switch from SMART to MANUAL if there are dynamic elements attached " +"to the service. Please erase dynamic elements before change to MANUAL" msgstr "" +" Невозможно переключиться с ИНТЕЛЛЕКТУАЛЬНОГО режима на режим ВРУЧНУЮ, если " +"к услуге подключены динамические элементы. Пожалуйста, удалите динамические " +"элементы перед переключением на режим ВРУЧНУЮ" -#: ../../mobile/include/user.class.php:211 -msgid "Login Failed" -msgstr "Войти в систему не удалось" +#: ../../enterprise/include/lib/Service.php:334 +#: ../../enterprise/include/lib/Service.php:534 +#: ../../enterprise/include/lib/Service.php:667 +#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:235 +#: ../../enterprise/include/lib/ServiceElement.php:186 +#: ../../enterprise/include/lib/ServiceElement.php:311 +#: ../../enterprise/include/lib/ServiceElement.php:837 +#: ../../enterprise/include/lib/ServiceElement.php:879 +#: ../../enterprise/include/lib/ServiceElement.php:921 +#: ../../enterprise/include/lib/ServiceElement.php:1027 +#: ../../enterprise/include/lib/ServiceElement.php:1069 +#: ../../include/lib/Agent.php:338 ../../include/lib/Module.php:1122 +#: ../../include/lib/Entity.php:237 +#, php-format +msgid "Cannot connect to node %d" +msgstr "Невозможно подключиться к узлу %d" -#: ../../mobile/include/user.class.php:212 -msgid "User not found in database or incorrect password." -msgstr "Пользователь не найден в базе данных или неверный пароль." +#: ../../enterprise/include/lib/Service.php:1157 +msgid "Error: id agent must be defined." +msgstr "Ошибка: id агента должен быть определен." -#: ../../mobile/include/user.class.php:220 -msgid "Login out" -msgstr "Выйти" +#: ../../enterprise/include/lib/Service.php:1226 +msgid " error: Target agent does not exist." +msgstr " ошибка: Целевой агент не существует." -#: ../../mobile/include/user.class.php:238 -msgid "user" -msgstr "пользователь" +#: ../../enterprise/include/lib/Metaconsole/Node.php:90 +msgid "auth error." +msgstr "ошибка авторизации." -#: ../../mobile/include/user.class.php:245 -msgid "password" -msgstr "пароль" +#: ../../enterprise/include/lib/Metaconsole/Node.php:94 +msgid "connection error." +msgstr "ошибка соединения." -#: ../../mobile/include/user.class.php:295 -#: ../../mobile/include/user.class.php:296 ../../general/login_page.php:143 -msgid "Authenticator code" +#: ../../enterprise/include/lib/Metaconsole/Node.php:98 +msgid "could not resolve the host." +msgstr "не удалось разрешить хост." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:102 +#: ../../enterprise/include/lib/Metaconsole/Node.php:151 +#: ../../enterprise/include/lib/Metaconsole/Node.php:198 +#: ../../enterprise/include/lib/Metaconsole/Node.php:395 +msgid "unknown error." +msgstr "неизвестная ошибка." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:139 +msgid "missing credentials." +msgstr "отсутствуют учетные данные" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:143 +msgid "cannot connect to host." +msgstr "не удается подключиться к хосту." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:147 +msgid "database does not exist." +msgstr "база данных не существует." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:190 +msgid "failed to connect to node database." +msgstr "не удалось подключиться к базе данных узла." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:194 +msgid "MR version mistmatch." +msgstr "Несоответствие версии MR." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:233 +#, php-format +msgid "last event replication: %s" +msgstr "последняя репликация события: %s" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:239 +msgid "server connection failed" +msgstr "соединение с сервером не удалось" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:243 +#: ../../enterprise/include/lib/Metaconsole/Node.php:289 +#: ../../enterprise/include/lib/Metaconsole/Node.php:350 +msgid "unknown error" +msgstr "неизвестная ошибка" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:255 +msgid "Last event replication" +msgstr "Последнее событие репликации" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:285 +msgid "agent cache failed" +msgstr "сбой кэша агента" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:338 +msgid "node is not recognized as metaconsole node." +msgstr "узел не распознается как узел метаконсоли." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:342 +msgid "node license missmatch." +msgstr "несоответствие лицензий узлов." + +#: ../../enterprise/include/lib/Metaconsole/Node.php:346 +msgid "cannot connect to node" +msgstr "не удается подключиться к узлу" + +#: ../../enterprise/include/lib/Metaconsole/Node.php:785 +msgid "" +"The elimination of that node will lead to the suppression of all the agents " +"in metaconsole and all the configuration assigned to them. " msgstr "" +"Устранение этого узла приведет к подавлению всех агентов в метаконсоли и " +"всех назначенных им конфигураций. " -#: ../../mobile/include/user.class.php:300 ../../general/login_page.php:149 -msgid "Check code" -msgstr "" +#: ../../enterprise/include/lib/Metaconsole/Node.php:789 +msgid "And The rules for this node may stop working. " +msgstr "И Правила для этого узла могут перестать работать. " -#: ../../mobile/include/functions_web.php:81 -#: ../../mobile/include/ui.class.php:257 ../../general/footer.php:30 +#: ../../enterprise/include/lib/PolicyInventory.php:156 #, php-format -msgid "Pandora FMS %s - Build %s" -msgstr "Pandora FMS %s - Build %s" +msgid "inventory module already registered: \"%d\"" +msgstr "модуль инвентаризации уже зарегистрирован: \"%d\"" -#: ../../mobile/include/ui.class.php:87 ../../mobile/include/ui.class.php:168 -msgid "Pandora FMS mobile" -msgstr "Pandora FMS мобильнаое" - -#: ../../mobile/include/ui.class.php:185 ../../mobile/operation/home.php:154 -msgid "Home" -msgstr "Дом" - -#: ../../mobile/include/ui.class.php:630 -msgid "Not found header." -msgstr "Заголовок не найден." - -#: ../../mobile/include/ui.class.php:633 -msgid "Not found content." -msgstr "Содержание не найдено." - -#: ../../mobile/include/ui.class.php:636 -msgid "Not found footer." -msgstr "Колонтитул не найден." - -#: ../../mobile/include/ui.class.php:639 -msgid "Incorrect form." -msgstr "Неправильная форма." - -#: ../../mobile/include/ui.class.php:642 -msgid "Incorrect grid." -msgstr "Неправильная сетка." - -#: ../../mobile/include/ui.class.php:645 -msgid "Incorrect collapsible." -msgstr "Неправильный разборный." - -#: ../../mobile/operation/groups.php:102 ../../mobile/operation/groups.php:103 -#: ../../mobile/operation/groups.php:104 -#: ../../include/functions_groups.php:764 -#: ../../include/functions_groups.php:766 -#: ../../include/functions_groups.php:768 -#: ../../include/functions_groups.php:769 -#: ../../include/functions_groups.php:770 -#: ../../include/functions_reporting_html.php:2586 -msgid "Agents unknown" -msgstr "Агенты неизвестны" - -#: ../../mobile/operation/agent.php:104 -msgid "PandoraFMS: Agents" -msgstr "PandoraFMS: Агенты" - -#: ../../mobile/operation/agent.php:109 -msgid "No agent found" -msgstr "Агенты не найдены" - -#: ../../mobile/operation/agent.php:117 ../../include/ajax/module.php:825 -#: ../../include/class/Tree.class.php:1772 -#: ../../operation/agentes/estado_agente.php:522 -#: ../../operation/agentes/estado_generalagente.php:83 -#: ../../godmode/agentes/agent_manager.php:393 -#: ../../godmode/agentes/modificar_agente.php:470 -#: ../../godmode/agentes/module_manager_editor_common.php:518 -#: ../../godmode/agentes/planned_downtime.editor.php:482 -#: ../../godmode/agentes/planned_downtime.list.php:425 -#: ../../godmode/agentes/module_manager.php:584 -#: ../../godmode/massive/massive_edit_agents.php:397 -#: ../../godmode/massive/massive_edit_modules.php:570 -msgid "Quiet" -msgstr "\"Тихий\" режим" - -#: ../../mobile/operation/agent.php:131 ../../extensions/net_tools.php:131 -#: ../../operation/agentes/estado_generalagente.php:148 -msgid "IP address" -msgstr "IP адрес" - -#: ../../mobile/operation/agent.php:161 -msgid "Modules by status" -msgstr "" - -#: ../../mobile/operation/agent.php:169 -#: ../../include/functions_treeview.php:563 -#: ../../operation/agentes/estado_generalagente.php:596 -msgid "Events (24h)" -msgstr "События (24 часа)" - -#: ../../mobile/operation/agent.php:205 +#: ../../enterprise/include/lib/PolicyInventory.php:181 #, php-format -msgid "Last %s Events" -msgstr "Последние %s События" +msgid "Failed to update, already exists: \"%d\"" +msgstr "Не удалось обновить, уже существует: \"%d\"" -#: ../../mobile/operation/networkmaps.php:112 -#: ../../mobile/operation/home.php:72 -msgid "Networkmaps" -msgstr "Сетевые карты" +#: ../../enterprise/include/lib/RCMDFile.class.php:203 +msgid "You do not have grants to access this feature" +msgstr "У вас нет разрешений для доступа к этой функции" -#: ../../mobile/operation/networkmaps.php:120 +#: ../../enterprise/include/lib/RCMDFile.class.php:548 +msgid "There was a problem creating RCMD" +msgstr "Возникла проблема при создании RCMD" + +#: ../../enterprise/include/lib/RCMDFile.class.php:693 +#: ../../enterprise/include/lib/RCMDFile.class.php:717 +msgid "There was a problem deleting RCMD" +msgstr "Возникла проблема с удалением RCMD" + +#: ../../enterprise/include/lib/RCMDFile.class.php:865 +msgid "No agent configuration file" +msgstr "Отсутствует файл конфигурации агента" + +#: ../../enterprise/include/lib/RCMDFile.class.php:873 +msgid "you don't have write permissions in the configuration file" +msgstr "у вас нет разрешений на запись в конфигурационном файле" + +#: ../../enterprise/include/lib/RCMDFile.class.php:914 +msgid "This agent is already a target" +msgstr "Этот агент уже является целью" + +#: ../../enterprise/include/lib/RCMDFile.class.php:945 #, php-format -msgid "Filter Networkmaps by %s" -msgstr "Фильтр Сетевых карт по %s" +msgid "You do not have grants to access in this agent %s" +msgstr "У вас нет разрешений для доступа в этом агенте %s" -#: ../../mobile/operation/networkmaps.php:150 -#: ../../mobile/operation/modules.php:261 -#: ../../mobile/operation/alerts.php:213 ../../mobile/operation/events.php:654 -#: ../../mobile/operation/agents.php:201 -msgid "Apply Filter" -msgstr "Применить фильтр" +#: ../../enterprise/include/lib/RCMDFile.class.php:1011 +msgid "There was a problem creating RCMD files" +msgstr "Возникла проблема при создании файлов RCMD" -#: ../../mobile/operation/networkmaps.php:202 -#: ../../mobile/operation/networkmap.php:164 -msgid "No networkmaps" -msgstr "Нет сетевых карт" +#: ../../enterprise/include/lib/RCMDFile.class.php:1058 +msgid "There was a problem creating target" +msgstr "Возникла проблема при создании цели" -#: ../../mobile/operation/networkmaps.php:216 -#: ../../mobile/operation/modules.php:677 -#: ../../mobile/operation/alerts.php:306 -#: ../../mobile/operation/events.php:1060 -#: ../../mobile/operation/agents.php:426 -msgid "(Default)" -msgstr "(По умолчанию)" +#: ../../enterprise/include/lib/RCMDFile.class.php:1092 +msgid "There was a problem adding items in the configuration file" +msgstr "Возникла проблема с добавлением элементов в файл конфигурации" -#: ../../mobile/operation/networkmaps.php:222 -#: ../../mobile/operation/modules.php:684 -#: ../../mobile/operation/alerts.php:316 -#: ../../mobile/operation/events.php:1086 -#: ../../mobile/operation/agents.php:432 +#: ../../enterprise/include/lib/RCMDFile.class.php:1118 +#: ../../enterprise/include/lib/RCMDFile.class.php:1285 +msgid "No agent has been selected" +msgstr "Ни один агент не был выбран" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1151 +msgid "Target doesn't exist" +msgstr "Цель не существует" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1223 +msgid "There was a problem deleting tokens in the configuration file" +msgstr "Возникла проблема с удалением маркеров в конфигурационном файле" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1259 +msgid "There was a problem deleting target from DB" +msgstr "Возникла проблема с удалением цели из БД" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1417 +msgid "Yaml is empty" +msgstr "Yaml пуст" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1426 +msgid "Doesn't have a valid YAML format" +msgstr "Не имеет допустимого формата YAML" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1444 #, php-format -msgid "Group: %s" -msgstr "Группа: %s" +msgid "%s field is not allowed" +msgstr "поле %s не разрешено" -#: ../../mobile/operation/networkmaps.php:229 -#: ../../mobile/operation/events.php:1098 +#: ../../enterprise/include/lib/PolicyModule.php:204 +#: ../../enterprise/include/lib/Policy.php:486 ../../include/lib/Module.php:755 #, php-format -msgid "Type: %s" -msgstr "Тип: %s" +msgid "Module already exists: \"%s\"" +msgstr "Модуль уже существует: \"%s\"" -#: ../../mobile/operation/module_graph.php:366 -#: ../../mobile/operation/module_graph.php:375 +#: ../../enterprise/include/lib/PolicyModule.php:230 #, php-format -msgid "PandoraFMS: %s" -msgstr "PandoraFMS: %s" +msgid "Failed to update: \"%s\"" +msgstr "Не удалось обновить: \"%s\"" -#: ../../mobile/operation/module_graph.php:389 +#: ../../enterprise/include/lib/ServiceElement.php:527 #, php-format -msgid "Options for %s : %s" -msgstr "Опции для %s : %s" +msgid "This filters will cause slowdown on server (%s ms)" +msgstr "Эти фильтры приведут к замедлению работы сервера (%s мс)" -#: ../../mobile/operation/module_graph.php:396 -msgid "Show Alerts" -msgstr "Показать оповещения" - -#: ../../mobile/operation/module_graph.php:404 -msgid "Show Events" -msgstr "Показать События" - -#: ../../mobile/operation/module_graph.php:412 -#: ../../operation/agentes/stat_win.php:373 -msgid "Time compare (Separated)" -msgstr "Время сравнения (Разделено)" - -#: ../../mobile/operation/module_graph.php:428 -#: ../../operation/agentes/stat_win.php:379 -msgid "Show unknown graph" -msgstr "Показать неизвестный график" - -#: ../../mobile/operation/module_graph.php:436 -msgid "Avg Only" -msgstr "Сред. Только" - -#: ../../mobile/operation/module_graph.php:441 -msgid "Time range (hours)" -msgstr "Интервал времени (в часах)" - -#: ../../mobile/operation/module_graph.php:454 -#: ../../operation/agentes/exportdata.php:301 -#: ../../operation/agentes/interface_traffic_graph_win.php:216 -#: ../../operation/agentes/stat_win.php:298 -#: ../../operation/agentes/graphs.php:133 -msgid "Begin date" -msgstr "Начальная дата" - -#: ../../mobile/operation/module_graph.php:461 -msgid "Update graph" -msgstr "Обновить график" - -#: ../../mobile/operation/module_graph.php:470 -msgid "Error get the graph" -msgstr "Ошибка получения графика" - -#: ../../mobile/operation/modules.php:194 +#: ../../enterprise/include/lib/ServiceElement.php:541 #, php-format -msgid "Filter Modules by %s" -msgstr "Фильтр Модулей по %s" +msgid "Regular expression is not valid: %s." +msgstr "Обычное выражение недействительно: %s." -#: ../../mobile/operation/modules.php:434 -#: ../../include/functions_modules.php:1834 -#: ../../operation/search_modules.php:104 -#: ../../operation/agentes/status_monitor.php:1119 -msgid "NOT INIT" -msgstr "НЕ ИНИЦ" - -#: ../../mobile/operation/modules.php:473 -msgid "Interval." -msgstr "Интервал." - -#: ../../mobile/operation/modules.php:479 -msgid "Last update." -msgstr "Последнее обновление." - -#: ../../mobile/operation/modules.php:558 -#: ../../godmode/agentes/agent_template.php:258 -msgid "No modules" -msgstr "Нет модулей" - -#: ../../mobile/operation/modules.php:692 +#: ../../enterprise/include/lib/ServiceElement.php:780 #, php-format -msgid "Module group: %s" -msgstr "Модуль грурры: %s" +msgid " error while decoding rules: %s" +msgstr " ошибка при декодировании правил: %s" -#: ../../mobile/operation/modules.php:696 -#: ../../mobile/operation/alerts.php:320 -#: ../../mobile/operation/events.php:1102 -#: ../../mobile/operation/agents.php:436 +#: ../../enterprise/include/lib/ServiceElement.php:1185 #, php-format -msgid "Status: %s" -msgstr "Статус: %s" +msgid " error: Failed to delete element: %s" +msgstr " ошибка: Не удалось удалить элемент: %s" -#: ../../mobile/operation/modules.php:700 -#: ../../mobile/operation/alerts.php:324 ../../mobile/operation/agents.php:440 +#: ../../enterprise/include/lib/Policy.php:461 #, php-format -msgid "Free Search: %s" -msgstr "Свободный поиск: %s" +msgid "Policy already defined: \"%s\"" +msgstr "Политика уже определена: \"%s\"" -#: ../../mobile/operation/modules.php:705 -#, php-format -msgid "Tag: %s" -msgstr "" +#: ../../enterprise/include/functions_groups.php:49 +msgid "Metaconsole" +msgstr "Мета консоль" -#: ../../mobile/operation/tactical.php:146 -msgid "Last activity" -msgstr "Последняя активность" +#: ../../enterprise/include/functions_events.php:107 +#: ../../godmode/events/event_filter.php:139 +#: ../../godmode/events/event_edit_filter.php:344 +#: ../../include/lib/Dashboard/Widgets/events_list.php:378 +#: ../../operation/events/events_list.php:958 +#: ../../operation/events/events.php:1011 +#: ../../operation/events/events.php:1486 +msgid "Event status" +msgstr "Статус события" -#: ../../mobile/operation/tactical.php:264 -#: ../../include/functions_reporting_html.php:2759 -#: ../../operation/snmpconsole/snmp_statistics.php:140 -#: ../../godmode/admin_access_logs.php:191 ../../general/logon_ok.php:224 -#: ../../general/logon_ok.php:421 -msgid "Source IP" -msgstr "IP источника" +#: ../../enterprise/include/functions_events.php:168 +#: ../../godmode/events/event_edit_filter.php:408 +#: ../../operation/events/events_list.php:778 +#: ../../operation/events/events.php:1193 +msgid "User ack." +msgstr "Подтверждение пользователя" -#: ../../mobile/operation/home.php:78 ../../mobile/operation/visualmaps.php:96 -msgid "Visual consoles" -msgstr "" +#: ../../enterprise/include/functions_events.php:178 +#: ../../godmode/events/event_edit_filter.php:443 +#: ../../operation/events/events_list.php:859 +#: ../../operation/events/events.php:1251 +msgid "Date from" +msgstr "f" -#: ../../mobile/operation/home.php:92 -#: ../../include/functions_visual_map.php:2271 -#: ../../include/functions_visual_map_editor.php:231 -#: ../../godmode/reporting/visual_console_builder.wizard.php:106 -msgid "Module graph" -msgstr "Графический модуль" +#: ../../enterprise/include/functions_events.php:188 +#: ../../godmode/events/event_edit_filter.php:446 +#: ../../operation/events/events_list.php:863 +#: ../../operation/events/events.php:1302 +msgid "Date to" +msgstr "Дата до" -#: ../../mobile/operation/home.php:104 -msgid "Visualmap" -msgstr "Визуальная карта" - -#: ../../mobile/operation/home.php:161 ../../operation/search_results.php:63 -msgid "Global search" -msgstr "Общий поиск" - -#: ../../mobile/operation/alerts.php:36 -#: ../../operation/agentes/alerts_status.functions.php:72 -msgid "All (Enabled)" -msgstr "Все (Подключены)" - -#: ../../mobile/operation/alerts.php:39 -#: ../../operation/snmpconsole/snmp_view.php:162 -#: ../../operation/snmpconsole/snmp_view.php:824 -#: ../../operation/agentes/alerts_status.functions.php:75 -msgid "Not fired" -msgstr "Не запущено" - -#: ../../mobile/operation/alerts.php:96 ../../mobile/operation/alerts.php:97 -#: ../../mobile/operation/alerts.php:203 ../../mobile/operation/alerts.php:204 -#: ../../godmode/alerts/alert_view.php:106 -msgid "Stand by" -msgstr "Поддерживается" - -#: ../../mobile/operation/alerts.php:162 -#, php-format -msgid "Filter Alerts by %s" -msgstr "Фильтр Оповещений по %s" - -#: ../../mobile/operation/alerts.php:272 -msgid "Last Fired" -msgstr "Последний запуск" - -#: ../../mobile/operation/alerts.php:282 -msgid "No alerts" -msgstr "Нет оповещений" - -#: ../../mobile/operation/alerts.php:312 -#, php-format -msgid "Standby: %s" -msgstr "Поддерживается: %s" - -#: ../../mobile/operation/events.php:107 -#: ../../operation/events/events.build_table.php:61 -msgid "Event Name" -msgstr "Имя события" - -#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378 -#: ../../mobile/operation/events.php:585 ../../mobile/operation/events.php:586 -msgid "Preset Filters" -msgstr "Заданные Фильтры" - -#: ../../mobile/operation/events.php:438 -msgid "ERROR: Event detail" -msgstr "ОШИБКА: детали события" - -#: ../../mobile/operation/events.php:440 -msgid "Error connecting to DB pandora." -msgstr "Ошибка соединения с БД pandora." - -#: ../../mobile/operation/events.php:453 -msgid "Event detail" -msgstr "Детали события" - -#: ../../mobile/operation/events.php:464 -#: ../../include/functions_events.php:2328 -#: ../../operation/events/events.build_table.php:55 -msgid "Event ID" -msgstr "ID события" - -#: ../../mobile/operation/events.php:480 -#: ../../include/functions_events.php:2367 -#: ../../operation/events/events_list.php:560 -#: ../../godmode/events/event_edit_filter.php:288 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:926 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:942 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:958 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:974 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:990 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:422 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:438 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:454 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:470 +#: ../../enterprise/include/functions_events.php:198 +#: ../../godmode/events/event_edit_filter.php:432 +#: ../../mobile/operation/events.php:528 +#: ../../include/functions_events.php:4903 +#: ../../operation/events/events_list.php:970 +#: ../../operation/events/events.php:1042 msgid "Repeated" msgstr "Повторенные" -#: ../../mobile/operation/events.php:492 -#: ../../include/functions_events.php:2416 -msgid "Acknowledged by" -msgstr "Признано" +#: ../../enterprise/include/functions_events.php:208 +#: ../../godmode/events/event_edit_filter.php:592 +#: ../../operation/events/events_list.php:825 +#: ../../operation/events/events.php:1210 +msgid "Alert events" +msgstr "Предупреждающие события" -#: ../../mobile/operation/events.php:501 -#: ../../include/functions_visual_map_editor.php:573 -#: ../../godmode/reporting/visual_console_builder.elements.php:153 -msgid "Module Graph" -msgstr "График модуля" +#: ../../enterprise/include/functions_events.php:219 +msgid "Id source events" +msgstr "События источника Id" -#: ../../mobile/operation/events.php:536 -msgid "Sucessful validate" -msgstr "Успешно подтверждено" +#: ../../enterprise/include/functions_events.php:229 +#: ../../godmode/admin_access_logs.php:85 +#: ../../godmode/admin_access_logs.php:86 +#: ../../godmode/events/event_edit_filter.php:398 +#: ../../mobile/operation/events.php:705 ../../include/functions_snmp.php:401 +#: ../../include/lib/Dashboard/Widgets/events_list.php:336 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270 +#: ../../operation/snmpconsole/snmp_view.php:638 +#: ../../operation/events/events_list.php:961 +#: ../../operation/events/events.php:1024 +#: ../../operation/events/events.php:1516 +msgid "Max. hours old" +msgstr "Максимальный возраст (в часах)" -#: ../../mobile/operation/events.php:538 -msgid "Fail validate" -msgstr "Сбой подтверждения" +#: ../../enterprise/include/functions_events.php:245 +#: ../../enterprise/include/functions_events.php:267 +msgid "More than 5 tags" +msgstr "Более 5 тегов" -#: ../../mobile/operation/events.php:570 +#: ../../enterprise/include/functions_events.php:251 +#: ../../godmode/events/event_edit_filter.php:487 +#: ../../operation/events/events_list.php:880 +#: ../../operation/events/events_list.php:883 +#: ../../operation/events/events.php:1334 +#: ../../operation/events/events.php:1337 +msgid "Events with following tags" +msgstr "События со следующими тегами" + +#: ../../enterprise/include/functions_events.php:273 +#: ../../godmode/events/event_edit_filter.php:540 +#: ../../operation/events/events_list.php:881 +#: ../../operation/events/events_list.php:884 +#: ../../operation/events/events.php:1335 +#: ../../operation/events/events.php:1338 +msgid "Events without following tags" +msgstr "События без следующих тегов" + +#: ../../enterprise/include/functions_events.php:291 +#: ../../include/functions_snmp.php:441 +msgid "Active filter" +msgstr "Активный фильтр" + +#: ../../enterprise/include/functions_events.php:291 +#: ../../include/functions_snmp.php:441 +msgid "Active filters" +msgstr "Активные фильтры" + +#: ../../enterprise/include/functions_update_manager.php:182 +#: ../../enterprise/include/functions_update_manager.php:376 +#: ../../include/functions_update_manager.php:1393 +#: ../../include/functions_update_manager.php:1395 +#: ../../include/functions_update_manager.php:1535 +#: ../../include/functions_update_manager.php:1538 +msgid "Could not connect to internet" +msgstr "Не удается подключиться к Интернету" + +#: ../../enterprise/include/functions_update_manager.php:184 +#: ../../include/functions_update_manager.php:1399 +#: ../../include/functions_update_manager.php:1401 +#: ../../include/functions_update_manager.php:1544 +#: ../../include/functions_update_manager.php:1547 +msgid "Server not found." +msgstr "Сервер не найден." + +#: ../../enterprise/include/functions_update_manager.php:186 +#: ../../enterprise/include/functions_update_manager.php:391 #, php-format -msgid "Filter Events by %s" -msgstr "Фильтр Событий по %s" +msgid "There is a error: %s" +msgstr "Возникла ошибка: %s" -#: ../../mobile/operation/events.php:780 -#: ../../include/functions_reporting.php:1192 -#: ../../include/functions_reporting.php:1353 -#: ../../include/functions_reporting_html.php:2938 -#: ../../include/functions_events.php:850 -#: ../../include/functions_events.php:854 -#: ../../operation/events/events.build_table.php:679 -msgid "No events" -msgstr "Нет событий" - -#: ../../mobile/operation/events.php:1066 +#: ../../enterprise/include/functions_update_manager.php:197 #, php-format -msgid "Filter: %s" -msgstr "Фильтр: %s" +msgid "There are %s updates, and the first to update is:" +msgstr "Есть %s обновлений, и первым обновлением является:" -#: ../../mobile/operation/events.php:1079 +#: ../../enterprise/include/functions_update_manager.php:206 +msgid "Version number:" +msgstr "Номер версии:" + +#: ../../enterprise/include/functions_update_manager.php:207 +msgid "Show details" +msgstr "Дополнительные сведения" + +#: ../../enterprise/include/functions_update_manager.php:214 +#: ../../godmode/update_manager/update_manager.offline.php:82 +#: ../../include/functions_update_manager.php:1416 +msgid "Minor release available" +msgstr "Доступно незначительное обновление" + +#: ../../enterprise/include/functions_update_manager.php:215 +#: ../../godmode/update_manager/update_manager.offline.php:83 +#: ../../include/functions_update_manager.php:1417 +msgid "New package available" +msgstr "Новый пакет в наличии" + +#: ../../enterprise/include/functions_update_manager.php:216 +#: ../../enterprise/include/functions_update_manager.php:218 +#: ../../godmode/update_manager/update_manager.offline.php:84 +#: ../../godmode/update_manager/update_manager.offline.php:86 +#: ../../include/functions_update_manager.php:1418 +#: ../../include/functions_update_manager.php:1420 +msgid "Minor release rejected. Changes will not apply." +msgstr "Незначительное обновление отклонено. Изменения не будут применяться." + +#: ../../enterprise/include/functions_update_manager.php:217 +#: ../../godmode/update_manager/update_manager.offline.php:85 +#: ../../include/functions_update_manager.php:1419 +msgid "" +"Minor release rejected. The database will not be updated and the package " +"will apply." +msgstr "" +"Незначительное обновление отклонено. База данных не будет обновлена, и пакет " +"будет применен." + +#: ../../enterprise/include/functions_update_manager.php:219 +#: ../../godmode/update_manager/update_manager.offline.php:87 +#: ../../include/functions_update_manager.php:1421 +msgid "These package changes will not apply." +msgstr "Эти изменения пакета не будут применены." + +#: ../../enterprise/include/functions_update_manager.php:220 +#: ../../godmode/update_manager/update_manager.offline.php:88 +#: ../../include/functions_update_manager.php:1422 +msgid "Package rejected. These package changes will not apply." +msgstr "Пакет отклонен. Эти изменения пакета не будут применены." + +#: ../../enterprise/include/functions_update_manager.php:221 +#: ../../godmode/update_manager/update_manager.offline.php:89 +#: ../../include/functions_update_manager.php:1423 +msgid "Database successfully updated" +msgstr "База данных успешно обновлена" + +#: ../../enterprise/include/functions_update_manager.php:222 +#: ../../godmode/update_manager/update_manager.offline.php:90 +#: ../../include/functions_update_manager.php:1424 +msgid "Error in MR file" +msgstr "Ошибка в файле MR" + +#: ../../enterprise/include/functions_update_manager.php:223 +#: ../../godmode/update_manager/update_manager.offline.php:91 +#: ../../include/functions_update_manager.php:1425 +msgid "Package updated successfully" +msgstr "Пакет успешно обновлен" + +#: ../../enterprise/include/functions_update_manager.php:224 +#: ../../godmode/update_manager/update_manager.offline.php:92 +#: ../../include/functions_update_manager.php:1426 +msgid "Error in package updated" +msgstr "Ошибка при обновлении пакета" + +#: ../../enterprise/include/functions_update_manager.php:225 +#: ../../godmode/update_manager/update_manager.offline.php:93 +#: ../../include/functions_update_manager.php:1427 +msgid "" +"Database MR version is inconsistent, do you want to apply the package?" +msgstr "Версия базы данных MR несовместима, хотите ли вы применить пакет?" + +#: ../../enterprise/include/functions_update_manager.php:226 +#: ../../godmode/update_manager/update_manager.offline.php:94 +#: ../../include/functions_update_manager.php:1428 +msgid "There are db changes" +msgstr "Есть изменения в БД" + +#: ../../enterprise/include/functions_update_manager.php:227 +#: ../../godmode/update_manager/update_manager.offline.php:95 +#: ../../include/functions_update_manager.php:1429 +msgid "" +"There are new database changes available to apply. Do you want to start the " +"DB update process?" +msgstr "" +"Имеются новые изменения в базе данных, которые можно применить. Хотите ли вы " +"начать процесс обновления БД?" + +#: ../../enterprise/include/functions_update_manager.php:228 +#: ../../godmode/update_manager/update_manager.offline.php:96 +#: ../../include/functions_update_manager.php:1430 +msgid "We recommend launching " +msgstr "Мы рекомендуем запуск " + +#: ../../enterprise/include/functions_update_manager.php:229 +#: ../../godmode/update_manager/update_manager.offline.php:97 +#: ../../include/functions_update_manager.php:1431 +msgid "planned downtime" +msgstr "запланированая остановка" + +#: ../../enterprise/include/functions_update_manager.php:236 +#: ../../godmode/update_manager/update_manager.offline.php:103 +#: ../../include/functions_update_manager.php:1438 +msgid " to this process" +msgstr " к этому процессу" + +#: ../../enterprise/include/functions_update_manager.php:238 +#: ../../godmode/update_manager/update_manager.offline.php:106 +#: ../../include/functions_update_manager.php:1441 ../../general/header.php:82 +msgid "About minor release update" +msgstr "Информация о незначительном обновлении" + +#: ../../enterprise/include/functions_update_manager.php:241 +#: ../../godmode/update_manager/update_manager.offline.php:109 +#: ../../include/functions_update_manager.php:1444 +msgid "There is a new update available" +msgstr "Вышло новое обновление" + +#: ../../enterprise/include/functions_update_manager.php:242 +#: ../../godmode/update_manager/update_manager.offline.php:110 +#: ../../include/functions_update_manager.php:1445 +msgid "" +"There is a new update available to apply. Do you want to start the update " +"process?" +msgstr "Доступно новое обновление. Хотите ли вы начать процесс обновления?" + +#: ../../enterprise/include/functions_update_manager.php:243 +#: ../../godmode/update_manager/update_manager.offline.php:113 +#: ../../include/functions_update_manager.php:1446 +msgid "Applying DB MR" +msgstr "Применение незначительного обновления к базе данных" + +#: ../../enterprise/include/functions_update_manager.php:246 +#: ../../godmode/update_manager/update_manager.offline.php:116 +#: ../../include/functions_update_manager.php:1449 +msgid "Apply MR" +msgstr "Применить незначительное обновление" + +#: ../../enterprise/include/functions_update_manager.php:266 +#: ../../include/functions_update_manager.php:1457 +msgid "There is no update available." +msgstr "Нет Доступных обновлений." + +#: ../../enterprise/include/functions_update_manager.php:383 +#: ../../include/ajax/update_manager.ajax.php:468 +msgid "Fail to update to the last package." +msgstr "Неудачная попытка обновления до последнего пакета." + +#: ../../enterprise/include/functions_update_manager.php:409 +#: ../../include/ajax/update_manager.ajax.php:480 +msgid "Starting to update to the last package." +msgstr "Начинаем обновление до последнего пакета." + +#: ../../enterprise/include/functions_update_manager.php:453 +#: ../../include/ajax/update_manager.ajax.php:96 +msgid "There was an error extracting the file '" +msgstr "Ошибка при распаковке файла '" + +#: ../../enterprise/include/functions_update_manager.php:470 +#: ../../include/ajax/update_manager.ajax.php:113 +msgid "The package was not extracted." +msgstr "Пакет не распакован." + +#: ../../enterprise/include/functions_update_manager.php:526 +#: ../../include/ajax/update_manager.ajax.php:577 +msgid "progress" +msgstr "progress" + +#: ../../enterprise/include/functions_update_manager.php:575 +#: ../../include/ajax/update_manager.ajax.php:253 +#: ../../include/functions_update_manager.php:1110 +msgid "An error ocurred while reading a file." +msgstr "Ошибка во время чтения файла." + +#: ../../enterprise/include/functions_update_manager.php:619 +#: ../../enterprise/include/functions_update_manager.php:662 +#: ../../include/ajax/update_manager.ajax.php:217 +#: ../../include/ajax/update_manager.ajax.php:232 +#: ../../include/functions_update_manager.php:1151 +#: ../../include/functions_update_manager.php:1190 +msgid "Some of your old files might not be recovered." +msgstr "Некоторые ваши старые файлы возможно не были восстановлены." + +#: ../../enterprise/include/functions_update_manager.php:628 +#: ../../enterprise/include/functions_update_manager.php:633 +#: ../../enterprise/include/functions_update_manager.php:653 +#: ../../include/ajax/update_manager.ajax.php:207 +#: ../../include/ajax/update_manager.ajax.php:212 +#: ../../include/ajax/update_manager.ajax.php:238 +#: ../../include/functions_update_manager.php:1156 +#: ../../include/functions_update_manager.php:1161 +#: ../../include/functions_update_manager.php:1181 +msgid "Some of your files might not be recovered." +msgstr "Некоторые ваши файлы возможно не были восстановлены." + +#: ../../enterprise/include/functions_update_manager.php:642 +#: ../../enterprise/include/functions_update_manager.php:672 #, php-format -msgid "Severity: %s" -msgstr "Строгость: %s" +msgid "Line '%s' not copied to the progress file." +msgstr "Строка '%s' не скопирована в файл прогресса." -#: ../../mobile/operation/events.php:1106 +#: ../../enterprise/include/functions_update_manager.php:684 +#: ../../include/ajax/update_manager.ajax.php:259 +#: ../../include/functions_update_manager.php:1212 +msgid "The package does not exist" +msgstr "Пакет не существует" + +#: ../../enterprise/include/functions_update_manager.php:697 +#: ../../include/ajax/update_manager.ajax.php:623 +#: ../../include/functions_update_manager.php:1227 +msgid "The package is installed." +msgstr "Пакет установлен." + +#: ../../enterprise/include/functions_metaconsole.php:2780 +msgid "Agent alerts action does not exist in target node" +msgstr "Действие предупреждения агента не существует в целевом узле" + +#: ../../enterprise/include/functions_metaconsole.php:2787 +msgid "Agent alerts template does not exist in target node" +msgstr "Шаблон предупреждений агента не существует в целевом узле" + +#: ../../enterprise/include/functions_metaconsole.php:2794 +msgid "Agent inventory does not exist in target node" +msgstr "Инвентаризация агента не существует в целевом узле" + +#: ../../enterprise/include/functions_metaconsole.php:2801 +msgid "Exists agent conf please remove configuration file from target node." +msgstr "" +"Существует агент конфигурации, пожалуйста, удалите файл конфигурации с " +"целевого узла." + +#: ../../enterprise/include/functions_metaconsole.php:2808 +msgid "Agent collections does not exist in target node" +msgstr "Коллекции агентов не существует в целевом узле" + +#: ../../enterprise/include/functions_metaconsole.php:2815 +msgid "Agent plugins does not exist in target node" +msgstr "Плагины агента не существуют в целевом узле" + +#: ../../enterprise/include/functions_metaconsole.php:2822 +msgid "" +"Agent policies definitions does not match with defined ones in target node" +msgstr "" +"Определения политик агента не совпадают с определениями политик в целевом " +"узле" + +#: ../../enterprise/include/functions_metaconsole.php:2829 +msgid "Agent group does not exist in target node" +msgstr "Группа агентов не существует в целевом узле" + +#: ../../enterprise/include/functions_metaconsole.php:2836 +msgid "Agent already exists in target node" +msgstr "Агент уже существует в целевом узле" + +#: ../../enterprise/include/functions_metaconsole.php:2860 +msgid "The agent: has not been added due to problems in the insertion" +msgstr "Агент: не был добавлен из-за проблем при вставке" + +#: ../../enterprise/include/functions_metaconsole.php:2865 +msgid "The agent: has already been added to the migration queue" +msgstr "Агент: уже добавлен в очередь миграции" + +#: ../../enterprise/include/functions_metaconsole.php:2943 +msgid "Cannot " +msgstr "Не удается " + +#: ../../enterprise/include/functions_license.php:119 +msgid "Perpetual" +msgstr "Постоянный" + +#: ../../enterprise/include/functions_license.php:119 +msgid "Subscription" +msgstr "Подписка" + +#: ../../enterprise/include/functions_license.php:120 +#: ../../include/class/Diagnostics.class.php:1150 +msgid "Support expires" +msgstr "Срок поддержки истекает" + +#: ../../enterprise/include/functions_license.php:120 +msgid "Expires" +msgstr "Срок действия до" + +#: ../../enterprise/include/functions_ipam.php:289 +msgid "Export to Excel" +msgstr "Экспортировать в Exel" + +#: ../../enterprise/include/functions_ipam.php:342 +msgid "Assign next free IP" +msgstr "Назначить следующее свободное IP" + +#: ../../enterprise/include/functions_ipam.php:360 +msgid "Next available IP" +msgstr "Следующее свободное IP" + +#: ../../enterprise/include/functions_ipam.php:1206 +#: ../../enterprise/tools/ipam/ipam_ajax.php:330 +#: ../../include/ajax/events.php:1359 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:66 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:429 +msgid "Details" +msgstr "Подробности" + +#: ../../enterprise/include/functions_ipam.php:1232 +#: ../../enterprise/include/functions_ipam.php:1819 +#: ../../enterprise/tools/ipam/ipam_list.php:146 +#: ../../enterprise/tools/ipam/ipam_editor.php:162 +#: ../../godmode/events/event_responses.editor.php:121 +msgid "Location" +msgstr "Месторасположение" + +#: ../../enterprise/include/functions_ipam.php:1420 +#: ../../operation/snmpconsole/snmp_statistics.php:78 +#: ../../operation/snmpconsole/snmp_view.php:99 +#: ../../operation/incidents/incident_statistics.php:27 +msgid "Statistics" +msgstr "Статистика" + +#: ../../enterprise/include/functions_ipam.php:1422 +#: ../../enterprise/include/functions_ipam.php:1825 +#: ../../enterprise/tools/ipam/ipam_excel.php:118 +#: ../../enterprise/tools/ipam/ipam_excel.php:185 +msgid "Total IPs" +msgstr "Всего IP" + +#: ../../enterprise/include/functions_ipam.php:1428 +msgid "Occupied" +msgstr "Занято" + +#: ../../enterprise/include/functions_ipam.php:1434 +#: ../../enterprise/include/functions_ipam.php:1878 +#: ../../enterprise/tools/ipam/ipam_network.php:360 +#: ../../enterprise/tools/ipam/ipam_ajax.php:261 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +msgid "Managed" +msgstr "Управляется" + +#: ../../enterprise/include/functions_ipam.php:1436 +msgid "Not managed" +msgstr "Без управления" + +#: ../../enterprise/include/functions_ipam.php:1440 +#: ../../enterprise/include/functions_ipam.php:1571 +#: ../../enterprise/include/functions_ipam.php:1879 +#: ../../enterprise/tools/ipam/ipam_network.php:361 +#: ../../enterprise/tools/ipam/ipam_ajax.php:286 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 +msgid "Reserved" +msgstr "Зарезервировано" + +#: ../../enterprise/include/functions_ipam.php:1442 +msgid "Not Reserved" +msgstr "Не зарезервировано" + +#: ../../enterprise/include/functions_ipam.php:1483 +msgid "DESC" +msgstr "Снижающийся" + +#: ../../enterprise/include/functions_ipam.php:1484 +msgid "ASC" +msgstr "Повышающийся" + +#: ../../enterprise/include/functions_ipam.php:1485 +#: ../../enterprise/include/functions_ipam.php:1486 +#: ../../enterprise/include/functions_ipam.php:1873 +#: ../../enterprise/tools/ipam/ipam_network.php:356 +#: ../../enterprise/tools/ipam/ipam_ajax.php:219 +#: ../../include/class/Diagnostics.class.php:728 +#: ../../include/class/Diagnostics.class.php:746 +msgid "Hostname" +msgstr "Имя хоста" + +#: ../../enterprise/include/functions_ipam.php:1485 +msgid "A -> Z" +msgstr "A -> Z" + +#: ../../enterprise/include/functions_ipam.php:1486 +msgid "Z -> A" +msgstr "Z -> A" + +#: ../../enterprise/include/functions_ipam.php:1487 +#: ../../enterprise/include/functions_ipam.php:1488 +msgid "Last check" +msgstr "Последняя проверка" + +#: ../../enterprise/include/functions_ipam.php:1487 +msgid "Newer -> Older" +msgstr "Новее->Старее" + +#: ../../enterprise/include/functions_ipam.php:1488 +msgid "Older -> Newer" +msgstr "Старше -> Новее" + +#: ../../enterprise/include/functions_ipam.php:1515 +msgid "Exact address match" +msgstr "Точное совпадение адресов" + +#: ../../enterprise/include/functions_ipam.php:1519 +msgid "S.O" +msgstr "S.O" + +#: ../../enterprise/include/functions_ipam.php:1532 +msgid "Big" +msgstr "Большой" + +#: ../../enterprise/include/functions_ipam.php:1533 +msgid "Tiny" +msgstr "Мелкий" + +#: ../../enterprise/include/functions_ipam.php:1534 +msgid "Icons style" +msgstr "Стиль иконок" + +#: ../../enterprise/include/functions_ipam.php:1551 +msgid "Show not alive hosts" +msgstr "Показать неактивные хосты" + +#: ../../enterprise/include/functions_ipam.php:1559 +msgid "Show only managed addresses" +msgstr "Показать только управляемые адреса" + +#: ../../enterprise/include/functions_ipam.php:1567 +msgid "Reserved addresses" +msgstr "Зарезервированные адреса" + +#: ../../enterprise/include/functions_ipam.php:1572 +msgid "Unreserved" +msgstr "Незарезервированные адреса" + +#: ../../enterprise/include/functions_ipam.php:1582 +msgid "Last Contact" +msgstr "Последний контакт" + +#: ../../enterprise/include/functions_ipam.php:1625 +msgid "Filter options" +msgstr "Отфильтровать варианты" + +#: ../../enterprise/include/functions_ipam.php:1815 +msgid "id Network" +msgstr "Сеть id" + +#: ../../enterprise/include/functions_ipam.php:1820 +msgid "ID recon task" +msgstr "Задача ID recon" + +#: ../../enterprise/include/functions_ipam.php:1821 +msgid "Scan Interval" +msgstr "Интервал сканирования" + +#: ../../enterprise/include/functions_ipam.php:1822 +msgid "Users Operator" +msgstr "Оператор пользователей" + +#: ../../enterprise/include/functions_ipam.php:1823 +msgid "Total Ips" +msgstr "Всего IP" + +#: ../../enterprise/include/functions_ipam.php:1824 +msgid "Last Update" +msgstr "Последнее обновлени" + +#: ../../enterprise/include/functions_ipam.php:1826 +#: ../../enterprise/tools/ipam/ipam_excel.php:119 +#: ../../enterprise/tools/ipam/ipam_excel.php:186 +msgid "Alive IPs" +msgstr "Активные IP-адреса" + +#: ../../enterprise/include/functions_ipam.php:1827 +#: ../../enterprise/tools/ipam/ipam_excel.php:120 +#: ../../enterprise/tools/ipam/ipam_excel.php:187 +msgid "Occupied %" +msgstr "Занято %" + +#: ../../enterprise/include/functions_ipam.php:1828 +#: ../../enterprise/tools/ipam/ipam_excel.php:121 +#: ../../enterprise/tools/ipam/ipam_excel.php:188 +msgid "Available %" +msgstr "Доступно %" + +#: ../../enterprise/include/functions_ipam.php:1829 +#: ../../enterprise/tools/ipam/ipam_excel.php:122 +#: ../../enterprise/tools/ipam/ipam_excel.php:189 +msgid "Managed IPs" +msgstr "Управляемые IP-адреса" + +#: ../../enterprise/include/functions_ipam.php:1830 +#: ../../enterprise/tools/ipam/ipam_excel.php:123 +#: ../../enterprise/tools/ipam/ipam_excel.php:190 +msgid "Managed %" +msgstr "Управляемые %" + +#: ../../enterprise/include/functions_ipam.php:1831 +#: ../../enterprise/tools/ipam/ipam_excel.php:124 +#: ../../enterprise/tools/ipam/ipam_excel.php:191 +msgid "Unmanaged %" +msgstr "Неуправляемые %" + +#: ../../enterprise/include/functions_ipam.php:1832 +#: ../../enterprise/tools/ipam/ipam_excel.php:125 +#: ../../enterprise/tools/ipam/ipam_excel.php:192 +msgid "Reserved IPs" +msgstr "Зарезервированные IP-адреса" + +#: ../../enterprise/include/functions_ipam.php:1833 +#: ../../enterprise/tools/ipam/ipam_excel.php:126 +#: ../../enterprise/tools/ipam/ipam_excel.php:193 +msgid "Reserved %" +msgstr "Зарезервированные %" + +#: ../../enterprise/include/functions_ipam.php:1834 +#: ../../enterprise/tools/ipam/ipam_excel.php:127 +#: ../../enterprise/tools/ipam/ipam_excel.php:194 +msgid "Not reserved %" +msgstr "Не зарезервированные %" + +#: ../../enterprise/include/functions_ipam.php:1874 +#: ../../enterprise/tools/ipam/ipam_network.php:374 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1335 +msgid "Alive" +msgstr "Активный" + +#: ../../enterprise/include/functions_ipam.php:1877 +msgid "OS Name" +msgstr "Имя ОС" + +#: ../../enterprise/include/functions_ipam.php:1880 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:417 +msgid "Created at" +msgstr "Создано в" + +#: ../../enterprise/include/functions_ipam.php:1881 +msgid "Last updated" +msgstr "Последнее обновление" + +#: ../../enterprise/include/functions_ipam.php:1882 +msgid "Last modified" +msgstr "Последнее изменение" + +#: ../../enterprise/include/functions_ipam.php:1883 +msgid "Dhcp Leased" +msgstr "Аренда Dhcp" + +#: ../../enterprise/include/functions_ipam.php:1884 +msgid "Dhcp Leased Mode" +msgstr "Dhcp Режим Аренды" + +#: ../../enterprise/include/functions_ipam.php:1885 +msgid "Dhcp Leased Expiration" +msgstr "Истечение срока действия аренды Dhcp" + +#: ../../enterprise/include/functions_ipam.php:1886 +msgid "Mac address" +msgstr "Адрес Mac" + +#: ../../enterprise/include/functions_policies.php:511 +#: ../../enterprise/include/functions_policies.php:526 +#: ../../include/functions_alerts.php:474 +msgid "copy" +msgstr "копия" + +#: ../../enterprise/include/functions_policies.php:3533 +msgid "Policy linkation" +msgstr "Политика линейности" + +#: ../../enterprise/include/functions_policies.php:3538 +msgid "Module linked" +msgstr "Модуль связан" + +#: ../../enterprise/include/functions_policies.php:3543 +#: ../../enterprise/include/functions_policies.php:3563 +msgid "Unlink from policy" +msgstr "Отсоединить от политики" + +#: ../../enterprise/include/functions_policies.php:3548 +msgid "Module unlinked" +msgstr "Модуль отсоединен" + +#: ../../enterprise/include/functions_policies.php:3553 +#: ../../enterprise/include/functions_policies.php:3573 +msgid "Relink to policy" +msgstr "Связать заново с политикой" + +#: ../../enterprise/include/functions_policies.php:3558 +msgid "Module pending to link" +msgstr "Модуль, ожидающий связи" + +#: ../../enterprise/include/functions_policies.php:3558 +#: ../../godmode/agentes/module_manager_editor.php:540 +msgid "Module will be linked in the next application" +msgstr "Модуль будет соединен в следующем приложении" + +#: ../../enterprise/include/functions_policies.php:3568 +msgid "Module pending to unlink" +msgstr "Модуль, ожидающий отсоединения" + +#: ../../enterprise/include/functions_policies.php:3568 +#: ../../godmode/agentes/module_manager_editor.php:554 +msgid "Module will be unlinked in the next application" +msgstr "Модуль будет отсоединен в следующем приложении" + +#: ../../enterprise/include/functions_policies.php:3764 +#: ../../godmode/agentes/configurar_agente.php:537 +#: ../../godmode/agentes/configurar_agente.php:751 +#: ../../godmode/setup/snmp_wizard.php:31 +msgid "SNMP Wizard" +msgstr "Master SNMP" + +#: ../../enterprise/include/functions_policies.php:3767 +#: ../../godmode/agentes/configurar_agente.php:547 +#: ../../godmode/agentes/configurar_agente.php:757 +msgid "SNMP Interfaces wizard" +msgstr "Мастер интерфейсов SNMP" + +#: ../../enterprise/include/functions_policies.php:3770 +#: ../../godmode/agentes/configurar_agente.php:557 +#: ../../godmode/agentes/configurar_agente.php:763 +msgid "WMI Wizard" +msgstr "Мастер WMI" + +#: ../../enterprise/include/functions_policies.php:4087 +msgid "Create a new policy map" +msgstr "Создать новую карту политики" + +#: ../../enterprise/include/functions_policies.php:4457 +#: ../../extensions/resource_registration.php:1064 +msgid "Error, please install the PHP libXML in the system." +msgstr "Ошибка, пожалуйста, установите PHP libXML в системе." + +#: ../../enterprise/include/functions_policies.php:4469 #, php-format -msgid "Free search: %s" -msgstr "Свободный поиск: %s" +msgid "" +"This extension makes registration of policies enterprise. <br>You can get " +"more policies in our <a href='%s'>Public Resource Library</a>" +msgstr "" +"Это расширение позволяет регистрировать политики enterprise. <br>Вы можете " +"получить больше политик в нашей <a href='%s'>Библиотеке общественных " +"ресурсов</a>." -#: ../../mobile/operation/events.php:1110 +#: ../../enterprise/include/functions_policies.php:4476 +#: ../../extensions/resource_registration.php:1085 +msgid "Group filter: " +msgstr "Фольтр группы: " + +#: ../../enterprise/include/functions_policies.php:4480 +#: ../../extensions/extension_uploader.php:89 +#: ../../extensions/resource_registration.php:1089 +#: ../../extensions/plugin_registration.php:45 +#: ../../godmode/alerts/alert_special_days.php:309 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 +msgid "Upload" +msgstr "Загрузить" + +#: ../../enterprise/include/functions_policies.php:4584 +#: ../../enterprise/include/functions_policies.php:5163 #, php-format -msgid "Hours: %s" -msgstr "Часы: %s" +msgid "Error connecting with node %s." +msgstr "Ошибка соединения с узлом %s." -#: ../../mobile/operation/visualmaps.php:146 -msgid "No maps defined" -msgstr "Карты не определены" - -#: ../../mobile/operation/agents.php:166 +#: ../../enterprise/include/functions_policies.php:4593 +#: ../../enterprise/include/functions_policies.php:5172 #, php-format -msgid "Filter Agents by %s" -msgstr "Фильтр агентов по %s" +msgid "Policy does not exist in node %s. Error creating it." +msgstr "Политика не существует в узле %s. Ошибка при ее создании." -#: ../../mobile/operation/agents.php:333 -msgid "No agents" -msgstr "Нет агентов" +#: ../../enterprise/include/functions_policies.php:4599 +#: ../../enterprise/include/functions_policies.php:5178 +#, php-format +msgid "" +"This policy exist in node %s with other name (%s). Change the name to '%s' " +"to apply the policy." +msgstr "" +"Эта политика существует в узле %s с другим именем (%s). Измените имя на " +"'%s', чтобы применить политику." -#: ../../extensions/resource_registration.php:40 +#: ../../enterprise/include/functions_policies.php:4611 +#: ../../enterprise/include/functions_policies.php:5190 +#, php-format +msgid "This policy is being applied on node %s." +msgstr "Эта политика применяется на узле %s." + +#: ../../enterprise/include/functions_policies.php:4637 +#, php-format +msgid "Error syncronizing the agents to node %s." +msgstr "Ошибка синхронизации агентов на узле %s." + +#: ../../enterprise/include/functions_policies.php:4650 +#, php-format +msgid "Error syncronizing the groups to node %s." +msgstr "Ошибка синхронизации групп на узле %s." + +#: ../../enterprise/include/functions_policies.php:4663 +#, php-format +msgid "Error syncronizing the modules to node %s." +msgstr "Ошибка синхронизации модулей на узле %s." + +#: ../../enterprise/include/functions_policies.php:4679 +#, php-format +msgid "Error syncronizing the alerts to node %s." +msgstr "Ошибка синхронизации предупреждений на узле %s." + +#: ../../enterprise/include/functions_policies.php:4689 +#, php-format +msgid "Error syncronizing the alert actions to node %s." +msgstr "Ошибка синхронизации действий предупреждения на узле %s." + +#: ../../enterprise/include/functions_policies.php:4703 +#, php-format +msgid "Error syncronizing the inventory modules to node %s." +msgstr "Ошибка синхронизации модулей инвентаря на узле %s." + +#: ../../enterprise/include/functions_policies.php:4716 +#, php-format +msgid "Error syncronizing the plugins to node %s." +msgstr "Ошибка синхронизации плагинов на узле %s." + +#: ../../enterprise/include/functions_policies.php:4730 +#, php-format +msgid "Error syncronizing the collections to node %s." +msgstr "Ошибка синхронизации коллекций на узле %s." + +#: ../../enterprise/include/functions_policies.php:4740 +#, php-format +msgid "Error adding the queue to node %s." +msgstr "Ошибка добавления очереди на узел %s." + +#: ../../enterprise/include/functions_policies.php:5134 +msgid "This will not produce any action." +msgstr "Это не произведет никагого действия." + +#: ../../enterprise/include/functions_policies.php:5228 +msgid "Error syncronizing ." +msgstr "Ошибка синхронизации ." + +#: ../../enterprise/include/functions_local_components.php:175 +msgid "Empty configuration" +msgstr "Пустая конфигурация" + +#: ../../enterprise/include/functions_local_components.php:180 +msgid "Empty OS" +msgstr "Пустой OS" + +#: ../../enterprise/include/functions_local_components.php:342 +#: ../../include/functions_alerts.php:1154 +#: ../../include/functions_network_components.php:617 +msgid "Copy of" +msgstr "Копия" + +#: ../../enterprise/include/functions_ux_console.php:506 +#: ../../enterprise/operation/agentes/tag_view.php:868 +#: ../../enterprise/operation/agentes/tag_view.php:878 +#: ../../enterprise/operation/agentes/ux_console_view.php:102 +#: ../../enterprise/operation/agentes/ux_console_view.php:297 +#: ../../enterprise/operation/agentes/ux_console_view.php:377 +#: ../../enterprise/operation/agentes/wux_console_view.php:333 +#: ../../include/functions_ui.php:5902 +msgid "Snapshot view" +msgstr "Просмотр снимков" + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44 +msgid "Unsucessful get module inventory data." +msgstr "Неудачное получение данных инвентаризации модуля." + +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 +#: ../../godmode/reporting/visual_console_builder.wizard.php:558 +#: ../../mobile/operation/agents.php:444 ../../mobile/operation/modules.php:786 +#: ../../mobile/operation/module_graph.php:475 +#: ../../mobile/operation/events.php:864 +#: ../../mobile/operation/tactical.php:237 +msgid "Loading..." +msgstr "Идёт загрузка..." + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 +#: ../../enterprise/operation/agentes/manage_transmap.php:39 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:98 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:304 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:378 +msgid "Transactions List" +msgstr "Список Транзакций" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 +#: ../../enterprise/operation/agentes/manage_transmap.php:79 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:122 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:402 +msgid "Edit Transaction" +msgstr "Редактировать Транзакцию" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:50 +msgid "Go back to phases list" +msgstr "Вернуться к списку фаз" + +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 +msgid "Transactional Map - Phase - " +msgstr "Транзакционная карта - фаза - " + +#: ../../enterprise/operation/agentes/policy_view.php:38 +msgid "This agent has no policy assigned" +msgstr "У данного агента нет назначенной политики" + +#: ../../enterprise/operation/agentes/policy_view.php:53 +#: ../../include/functions_events.php:2568 +msgid "V." +msgstr "V." + +#: ../../enterprise/operation/agentes/policy_view.php:72 +msgid "Policy outdate" +msgstr "Политика устарела" + +#: ../../enterprise/operation/agentes/policy_view.php:146 +#: ../../enterprise/operation/agentes/policy_view.php:156 +msgid "Toggle the collection table" +msgstr "Переключить коллекции таблицы" + +#: ../../enterprise/operation/agentes/policy_view.php:152 +msgid "Descripttion" +msgstr "Описание" + +#: ../../enterprise/operation/agentes/policy_view.php:160 +msgid "Show Collection" +msgstr "Показать коллекцию" + +#: ../../enterprise/operation/agentes/policy_view.php:240 +#: ../../enterprise/operation/agentes/policy_view.php:252 +msgid "Toggle the alert table" +msgstr "Переключить оповещения таблицы" + +#: ../../enterprise/operation/agentes/policy_view.php:244 +#: ../../godmode/alerts/alert_list.list.php:135 +#: ../../include/ajax/alert_list.ajax.php:272 +#: ../../include/ajax/alert_list.ajax.php:297 +#: ../../operation/agentes/alerts_status.php:528 +#: ../../operation/agentes/alerts_status.php:564 +#: ../../operation/agentes/alerts_status.php:599 +#: ../../operation/agentes/alerts_status.php:632 +#: ../../operation/agentes/alerts_status.functions.php:123 +msgid "Standby" +msgstr "Режим ожидания" + +#: ../../enterprise/operation/agentes/policy_view.php:256 +msgid "Show Alert" +msgstr "Показать Оповещение" + +#: ../../enterprise/operation/agentes/policy_view.php:377 +#: ../../enterprise/operation/agentes/policy_view.php:389 +msgid "Toggle the module table" +msgstr "Переключить модуль таблицы" + +#: ../../enterprise/operation/agentes/policy_view.php:381 +msgid "Relationship" +msgstr "Взаимосвязь" + +#: ../../enterprise/operation/agentes/policy_view.php:393 +msgid "Show Modules" +msgstr "Показать модули" + +#: ../../enterprise/operation/agentes/policy_view.php:412 +msgid "(Un-adopted)" +msgstr "(Не принято)" + +#: ../../enterprise/operation/agentes/policy_view.php:415 +msgid "(Adopted)" +msgstr "(Принято)" + +#: ../../enterprise/operation/agentes/policy_view.php:420 +msgid "(Un-adopted) (Unlinked)" +msgstr "(Не принято) (Не связаны)" + +#: ../../enterprise/operation/agentes/policy_view.php:423 +msgid "(Adopted) (Unlinked)" +msgstr "(Принято) (Не связано)" + +#: ../../enterprise/operation/agentes/policy_view.php:444 +#: ../../godmode/agentes/module_manager.php:1016 +msgid "Non initialized module" +msgstr "Модуль не инициализирован" + +#: ../../enterprise/operation/agentes/policy_view.php:472 +#: ../../enterprise/operation/agentes/policy_view.php:477 +#: ../../enterprise/operation/agentes/policy_view.php:482 +#: ../../enterprise/operation/agentes/transactional_map.php:184 +#: ../../enterprise/operation/agentes/tag_view.php:984 +#: ../../enterprise/operation/agentes/tag_view.php:990 +#: ../../enterprise/operation/agentes/tag_view.php:1000 +#: ../../enterprise/operation/agentes/tag_view.php:1006 +#: ../../enterprise/operation/agentes/tag_view.php:1016 +#: ../../enterprise/operation/agentes/tag_view.php:1022 +#: ../../mobile/operation/modules.php:558 +#: ../../mobile/operation/modules.php:566 +#: ../../mobile/operation/modules.php:574 +#: ../../mobile/operation/modules.php:621 +#: ../../mobile/operation/modules.php:629 +#: ../../mobile/operation/modules.php:637 +#: ../../include/functions_modules.php:2583 +#: ../../include/functions_modules.php:2587 +#: ../../include/functions_modules.php:2591 +#: ../../operation/agentes/status_monitor.php:1543 +#: ../../operation/agentes/status_monitor.php:1549 +#: ../../operation/agentes/status_monitor.php:1559 +#: ../../operation/agentes/status_monitor.php:1565 +#: ../../operation/agentes/status_monitor.php:1575 +#: ../../operation/agentes/status_monitor.php:1581 +#: ../../operation/agentes/pandora_networkmap.view.php:344 +#: ../../operation/agentes/pandora_networkmap.view.php:349 +#: ../../operation/agentes/pandora_networkmap.view.php:354 +#: ../../operation/search_modules.php:129 +#: ../../operation/search_modules.php:137 +#: ../../operation/search_modules.php:145 +msgid "Last status" +msgstr "Последний статус" + +#: ../../enterprise/operation/agentes/transactional_map.php:49 +msgid "Transactions list" +msgstr "Список транзакций" + +#: ../../enterprise/operation/agentes/transactional_map.php:123 +msgid "Name can't be empty" +msgstr "Указание имени обязательно" + +#: ../../enterprise/operation/agentes/transactional_map.php:180 +msgid "Transaction name" +msgstr "Имя транзакции" + +#: ../../enterprise/operation/agentes/transactional_map.php:183 +msgid "Running status" +msgstr "Текущий статус" + +#: ../../enterprise/operation/agentes/transactional_map.php:185 +msgid "Time spent" +msgstr "Затрачено времени" + +#: ../../enterprise/operation/agentes/transactional_map.php:186 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:560 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:418 +#: ../../operation/servers/recon_view.php:112 +msgid "Updated at" +msgstr "Обновлено в" + +#: ../../enterprise/operation/agentes/transactional_map.php:227 +msgid "Stopped" +msgstr "Остановлено" + +#: ../../enterprise/operation/agentes/transactional_map.php:233 +msgid "Starting" +msgstr "Запуск" + +#: ../../enterprise/operation/agentes/transactional_map.php:235 +msgid "Stopping" +msgstr "Остановка" + +#: ../../enterprise/operation/agentes/transactional_map.php:361 +#: ../../godmode/menu.php:31 ../../godmode/setup/setup_ehorus.php:109 +#: ../../godmode/setup/setup_integria.php:559 +#: ../../operation/users/user_edit.php:725 +msgid "Start" +msgstr "Старт" + +#: ../../enterprise/operation/agentes/transactional_map.php:373 +msgid "Edit phases" +msgstr "Изменить фазу" + +#: ../../enterprise/operation/agentes/transactional_map.php:381 +msgid "Error in phases section" +msgstr "Ошибка в разделе фаз" + +#: ../../enterprise/operation/agentes/transactional_map.php:403 +msgid "Create Transaction" +msgstr "Создать транзакцию" + +#: ../../enterprise/operation/agentes/tag_view.php:32 +#: ../../enterprise/operation/menu.php:191 +msgid "Tag view" +msgstr "Вид Тега" + +#: ../../enterprise/operation/agentes/tag_view.php:118 +#: ../../operation/agentes/status_monitor.php:442 +msgid "Monitor status" +msgstr "Статус монитора" + +#: ../../enterprise/operation/agentes/tag_view.php:204 +#: ../../enterprise/operation/agentes/tag_view.php:206 +#: ../../operation/agentes/status_monitor.php:501 +#: ../../operation/agentes/alerts_status.functions.php:107 +msgid "Only it is show tags in use." +msgstr "Только эти показанные теги используются." + +#: ../../enterprise/operation/agentes/tag_view.php:210 +#: ../../operation/agentes/status_monitor.php:506 +#: ../../operation/agentes/alerts_status.functions.php:112 +msgid "No tags" +msgstr "Нет тегов" + +#: ../../enterprise/operation/agentes/tag_view.php:259 +#: ../../godmode/agentes/module_manager_editor_data.php:15 +#: ../../operation/agentes/status_monitor.php:565 +msgid "Data server module" +msgstr "Модуль сервера данных" + +#: ../../enterprise/operation/agentes/tag_view.php:261 +#: ../../godmode/agentes/module_manager_editor_network.php:77 +#: ../../operation/agentes/status_monitor.php:567 +msgid "Network server module" +msgstr "Сетевой сервер модуля" + +#: ../../enterprise/operation/agentes/tag_view.php:265 +#: ../../godmode/agentes/module_manager_editor_plugin.php:46 +#: ../../operation/agentes/status_monitor.php:571 +msgid "Plugin server module" +msgstr "Плагин сервисного модуля" + +#: ../../enterprise/operation/agentes/tag_view.php:269 +#: ../../godmode/agentes/module_manager_editor_wmi.php:33 +#: ../../operation/agentes/status_monitor.php:575 +msgid "WMI server module" +msgstr "Серверный модуль WMI" + +#: ../../enterprise/operation/agentes/tag_view.php:273 +#: ../../godmode/agentes/module_manager_editor_prediction.php:93 +#: ../../operation/agentes/status_monitor.php:579 +msgid "Prediction server module" +msgstr "Предварительная подготовка сервера модуля" + +#: ../../enterprise/operation/agentes/tag_view.php:280 +#: ../../enterprise/operation/agentes/tag_view.php:664 +#: ../../godmode/agentes/status_monitor_custom_fields.php:89 +#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../operation/agentes/status_monitor.php:590 +#: ../../operation/agentes/status_monitor.php:1235 +msgid "Server type" +msgstr "Тип сервера" + +#: ../../enterprise/operation/agentes/tag_view.php:286 +#: ../../godmode/agentes/modificar_agente.php:288 +#: ../../operation/agentes/status_monitor.php:596 +msgid "Only enabled" +msgstr "Только включенные" + +#: ../../enterprise/operation/agentes/tag_view.php:287 +#: ../../godmode/agentes/modificar_agente.php:287 +#: ../../operation/agentes/status_monitor.php:597 +msgid "Only disabled" +msgstr "Только выключенные" + +#: ../../enterprise/operation/agentes/tag_view.php:290 +#: ../../operation/agentes/status_monitor.php:600 +msgid "Show monitors..." +msgstr "Показать Приборы контроля..." + +#: ../../enterprise/operation/agentes/tag_view.php:300 +#: ../../enterprise/operation/agentes/tag_view.php:663 +#: ../../godmode/agentes/status_monitor_custom_fields.php:81 +#: ../../godmode/agentes/status_monitor_custom_fields.php:144 +#: ../../operation/agentes/status_monitor.php:611 +msgid "Data type" +msgstr "Тип данных" + +#: ../../enterprise/operation/agentes/tag_view.php:428 +#: ../../operation/agentes/agent_fields.php:37 +#: ../../operation/agentes/status_monitor.php:774 +msgid "Agent custom fields" +msgstr "Поля пользовательского агента" + +#: ../../enterprise/operation/agentes/tag_view.php:586 +#: ../../include/functions_treeview.php:675 +#: ../../operation/agentes/estado_agente.php:717 +#: ../../operation/agentes/estado_generalagente.php:350 +#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 +msgid "Remote" +msgstr "Удалённый вход" + +#: ../../enterprise/operation/agentes/tag_view.php:631 +#: ../../operation/agentes/estado_agente.php:870 +msgid "Remote config" +msgstr "Дистанционное конфигурирование" + +#: ../../enterprise/operation/agentes/tag_view.php:666 +#: ../../enterprise/operation/services/services.service.php:201 +#: ../../enterprise/operation/services/services.list.php:516 +#: ../../extensions/realtime_graphs.php:145 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../include/functions_visual_map_editor.php:58 +#: ../../include/ajax/module.php:983 +#: ../../include/class/NetworkMap.class.php:2934 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:303 +#: ../../include/functions_events.php:4484 +#: ../../operation/agentes/status_monitor.php:1258 +#: ../../operation/search_modules.php:36 +msgid "Graph" +msgstr "График" + +#: ../../enterprise/operation/agentes/tag_view.php:667 +#: ../../godmode/agentes/status_monitor_custom_fields.php:109 +#: ../../godmode/agentes/status_monitor_custom_fields.php:151 +#: ../../godmode/agentes/module_manager.php:794 +#: ../../operation/agentes/status_monitor.php:1263 +msgid "Warn" +msgstr "Предупреждение" + +#: ../../enterprise/operation/agentes/tag_view.php:930 +#: ../../mobile/operation/modules.php:529 +#: ../../mobile/operation/modules.php:592 +#: ../../include/functions_modules.php:2568 +#: ../../include/functions_modules.php:3556 +#: ../../include/functions_events.php:60 +#: ../../operation/agentes/status_monitor.php:1461 +#: ../../operation/search_modules.php:96 ../../operation/events/events.php:1980 +msgid "NOT INIT" +msgstr "НЕ ИНИЦ" + +#: ../../enterprise/operation/agentes/tag_view.php:1070 +#: ../../include/functions_reporting.php:11349 +#: ../../include/functions_reporting.php:11358 +#, php-format +msgid "%d Total modules" +msgstr "%d общее число модулей" + +#: ../../enterprise/operation/agentes/tag_view.php:1071 +#: ../../include/functions_reporting.php:11350 +#, php-format +msgid "%d Modules in normal status" +msgstr "%d Модули в нормальном статусе" + +#: ../../enterprise/operation/agentes/tag_view.php:1072 +#: ../../include/functions_reporting.php:11351 +#, php-format +msgid "%d Modules in critical status" +msgstr "%d Модули в критическом статусе" + +#: ../../enterprise/operation/agentes/tag_view.php:1073 +#: ../../include/functions_reporting.php:11352 +#, php-format +msgid "%d Modules in warning status" +msgstr "%d Модули в опасном состоянии" + +#: ../../enterprise/operation/agentes/tag_view.php:1074 +#: ../../include/functions_reporting.php:11353 +#, php-format +msgid "%d Modules in unknown status" +msgstr "%d Модули в неизвестном статусе" + +#: ../../enterprise/operation/agentes/tag_view.php:1075 +#: ../../include/functions_reporting.php:11354 +#, php-format +msgid "%d Modules in not init status" +msgstr "%d Модули в статусе не инициализировано" + +#: ../../enterprise/operation/agentes/manage_transmap.php:67 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:110 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:390 +msgid "Edit main data" +msgstr "Редактировать основные данные" + +#: ../../enterprise/operation/agentes/manage_transmap.php:92 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:135 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:415 +msgid "View Transaction" +msgstr "Посмотреть Транзакцию" + +#: ../../enterprise/operation/agentes/manage_transmap.php:136 +msgid "Return to windowed mode" +msgstr "Возврат в режим окна" + +#: ../../enterprise/operation/agentes/manage_transmap.php:145 +msgid "Transactional Map - " +msgstr "Транзакционная карта - " + +#: ../../enterprise/operation/agentes/manage_transmap.php:154 +msgid "Transaction not found" +msgstr "Транзакция не найдена" + +#: ../../enterprise/operation/agentes/manage_transmap.php:157 +msgid "Master lock file not found (No data to show)" +msgstr "Файл главного замка не найден (Нет данных для отображения)" + +#: ../../enterprise/operation/agentes/manage_transmap.php:160 +msgid "Transaction is stopped" +msgstr "Транзакция остановлена" + +#: ../../enterprise/operation/agentes/manage_transmap.php:163 +msgid "Error, please check the transaction phases" +msgstr "Ошибка, пожалуйста, проверьте фазы транзакции" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:95 +#: ../../operation/agentes/pandora_networkmap.editor.php:315 +msgid "Position X" +msgstr "Позиция X" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:97 +#: ../../operation/agentes/pandora_networkmap.editor.php:317 +msgid "Position Y" +msgstr "Позиция Y" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:100 +#: ../../operation/agentes/pandora_networkmap.editor.php:320 +msgid "Zoom scale" +msgstr "Масштаб" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:102 +#: ../../operation/agentes/pandora_networkmap.editor.php:325 +msgid "" +"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +msgstr "" +"Ввести уровень масштабирования. 1 = Наибольшее разрешение. Цифры могут " +"включать десятичные числа" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +#: ../../include/functions_groups.php:107 +#: ../../operation/agentes/pandora_networkmap.editor.php:328 +msgid "Discovery task" +msgstr "Задачи Discovery" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +#: ../../operation/agentes/pandora_networkmap.editor.php:328 +msgid "CIDR IP mask" +msgstr "IP-маска CIDR" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:132 +#: ../../operation/agentes/pandora_networkmap.editor.php:330 +msgid "Source from recon task" +msgstr "Источник из recon задачи" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:134 +#: ../../operation/agentes/pandora_networkmap.editor.php:332 +msgid "" +"It is setted any recon task, the nodes get from the recontask IP mask " +"instead from the group." +msgstr "" +"При установке любой задачи recon, узлы получают от recontask IP маску вместо " +"группы." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:150 +#: ../../operation/agentes/pandora_networkmap.editor.php:349 +msgid "Show only the task with the recon script \"SNMP L2 Recon\"." +msgstr "Покажите только задание со скриптом recon \"SNMP L2 Recon\"." + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:154 +#: ../../operation/agentes/pandora_networkmap.editor.php:353 +msgid "Source from CIDR IP mask" +msgstr "Источник из CIDR IP-маска" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:166 +#: ../../operation/agentes/pandora_networkmap.editor.php:378 +msgid "Don't show subgroups:" +msgstr "Не показывать подгруппы:" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:200 +#: ../../operation/agentes/pandora_networkmap.editor.php:396 +msgid "Method generation networkmap" +msgstr "Метод формирования карты сети" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:216 +#: ../../operation/agentes/pandora_networkmap.editor.php:417 +msgid "Separation between nodes. By default 0.25" +msgstr "Разделение между узлами. По умолчанию 0,25" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:218 +#: ../../operation/agentes/pandora_networkmap.editor.php:419 +msgid "Rank separation" +msgstr "Разделение по рангам" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:219 +#: ../../operation/agentes/pandora_networkmap.editor.php:420 +msgid "" +"Only flat and radial. Separation between arrows. By default 0.5 in flat and " +"1.0 in radial" +msgstr "" +"Только плоские и радиальные. Разделение между стрелками. По умолчанию 0,5 " +"для плоских и 1,0 для радиальных" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:221 +#: ../../operation/agentes/pandora_networkmap.editor.php:422 +msgid "Min nodes dist" +msgstr "Мин расстояние между узлами" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:222 +#: ../../operation/agentes/pandora_networkmap.editor.php:423 +msgid "Only circular. Minimum separation between all nodes. By default 1.0" +msgstr "" +"Только круговые. Минимальное расстояние между всеми узлами. По умолчанию 1,0" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:224 +#: ../../operation/agentes/pandora_networkmap.editor.php:425 +msgid "Default ideal node separation" +msgstr "Идеальное разделение узлов по умолчанию" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:225 +#: ../../operation/agentes/pandora_networkmap.editor.php:426 +msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" +msgstr "" +"Только fdp. По умолчанию идеальное разделение узлов в макете. По умолчанию " +"0,3" + +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:1204 +#: ../../include/functions_treeview.php:885 +#: ../../operation/agentes/estado_generalagente.php:707 +msgid "Interface traffic" +msgstr "Интерфейсный трафик" + +#: ../../enterprise/operation/agentes/ver_agente.php:69 +#: ../../operation/agentes/ver_agente.php:945 +msgid "Main IP" +msgstr "Главний IP" + +#: ../../enterprise/operation/agentes/ver_agente.php:75 +#: ../../include/functions_events.php:4404 +#: ../../operation/agentes/ver_agente.php:957 +msgid "Last remote contact" +msgstr "Последнее подключение" + +#: ../../enterprise/operation/agentes/ver_agente.php:119 +#: ../../operation/agentes/ver_agente.php:1002 +msgid "Monitors down" +msgstr "Приборы контроля выключны" + +#: ../../enterprise/operation/agentes/ver_agente.php:161 +#: ../../mobile/operation/groups.php:164 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:576 +#: ../../operation/agentes/ver_agente.php:1043 +msgid "Alerts fired" +msgstr "Угрозы снятия" + +#: ../../enterprise/operation/agentes/ver_agente.php:255 +msgid "URL Route Analyzer" +msgstr "Анализатор маршрутов URL" + +#: ../../enterprise/operation/agentes/ver_agente.php:271 +msgid "UX Console" +msgstr "UX-консоль" + +#: ../../enterprise/operation/agentes/ver_agente.php:287 +msgid "WUX Console" +msgstr "WUX консоль" + +#: ../../enterprise/operation/agentes/collection_view.php:53 +msgid "No collection assigned to this agent" +msgstr "Нет коллекции, назначенной для этого агент" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:46 +msgid "Please, reset the transaction" +msgstr "Пожалуйста, перезапустите транзакцию" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:85 +msgid "Successfully data updated" +msgstr "Успешное обновление данных" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:86 +msgid "Could not be data updated" +msgstr "Не удалось обновить данные" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:142 +msgid "Transactional Map - Create Phase - " +msgstr "Транзакционная карта - создать фазу - " + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:157 +msgid "Index" +msgstr "Индекс" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160 +msgid "Dependencies" +msgstr "Зависимости" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:161 +msgid "Enables" +msgstr "Активный" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:226 +msgid "Not valid dependencies field" +msgstr "Недействительное поле зависимостей" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:232 +msgid "Not valid enables field" +msgstr "Недействительное поле активации" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:311 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:423 +msgid "Transactional Map - Create Transaction" +msgstr "Транзакционная карта - Создать транзакцию" + +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:328 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:444 +msgid "Loop interval" +msgstr "Интервал петли" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 +msgid "No agent selected" +msgstr "Агент не выбран" + +#: ../../enterprise/operation/agentes/url_route_analyzer.php:42 +msgid "Route not found" +msgstr "Маршрут не найден" + +#: ../../enterprise/operation/agentes/agent_inventory.php:61 +msgid "This agent has not modules inventory" +msgstr "У этого агента нет модулей инвентаризации" + +#: ../../enterprise/operation/agentes/agent_inventory.php:162 +#: ../../enterprise/operation/agentes/agent_inventory.php:163 +msgid "Diff view" +msgstr "Вид Diff" + +#: ../../enterprise/operation/agentes/ux_console_view.php:43 +msgid "No ux transaction selected." +msgstr "Транзакция ux не выбрана." + +#: ../../enterprise/operation/agentes/ux_console_view.php:124 +msgid "No ux transactions found." +msgstr "Транзакция ux не найдена." + +#: ../../enterprise/operation/agentes/ux_console_view.php:133 +#: ../../enterprise/operation/agentes/wux_console_view.php:235 +msgid "Transaction" +msgstr "Транзакция" + +#: ../../enterprise/operation/agentes/ux_console_view.php:142 +#: ../../enterprise/operation/agentes/wux_console_view.php:260 +msgid "Show transaction" +msgstr "Показать транзакцию" + +#: ../../enterprise/operation/agentes/ux_console_view.php:168 +msgid "Execution results for transaction " +msgstr "Результаты выполнения для транзакции " + +#: ../../enterprise/operation/agentes/ux_console_view.php:266 +#: ../../enterprise/operation/agentes/wux_console_view.php:313 +msgid "Global results" +msgstr "Глобальные результаты" + +#: ../../enterprise/operation/agentes/ux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:551 +msgid "Transaction history" +msgstr "История транзакций" + +#: ../../enterprise/operation/agentes/wux_console_view.php:75 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:320 +msgid "No wux transaction selected." +msgstr "Транзакция wux не выбрана." + +#: ../../enterprise/operation/agentes/wux_console_view.php:149 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 +msgid "Phase modules not found" +msgstr "Фазовые модули не найдены" + +#: ../../enterprise/operation/agentes/wux_console_view.php:211 +msgid "Selected transaction has no stats" +msgstr "Выбранная транзакция не имеет статистики" + +#: ../../enterprise/operation/agentes/wux_console_view.php:224 +msgid "No WUX transactions found." +msgstr "Транзакции WUX не найдены." + +#: ../../enterprise/operation/agentes/wux_console_view.php:338 +msgid "Failed: " +msgstr "Не удалось: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:338 +#: ../../enterprise/operation/agentes/wux_console_view.php:359 +#: ../../godmode/setup/performance.php:185 +#: ../../godmode/setup/performance.php:240 ../../general/logon_ok.php:189 +msgid "ago" +msgstr "назад" + +#: ../../enterprise/operation/agentes/wux_console_view.php:350 +#: ../../enterprise/operation/agentes/wux_console_view.php:354 +#: ../../include/functions_alerts.php:678 +msgid "Unknown status" +msgstr "Неизвестный статус" + +#: ../../enterprise/operation/agentes/wux_console_view.php:359 +msgid "Success: " +msgstr "Успешно: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:365 +msgid "Total transaction time: " +msgstr "Общее время транзакции: " + +#: ../../enterprise/operation/agentes/wux_console_view.php:379 +#, php-format +msgid "Execution results for transaction %s" +msgstr "Результаты выполнения для транзакции %s" + +#: ../../enterprise/operation/agentes/wux_console_view.php:508 +msgid "View all stats" +msgstr "Просмотреть всю статистику" + +#: ../../enterprise/operation/agentes/wux_console_view.php:576 +#: ../../include/functions_events.php:7096 +#: ../../operation/snmpconsole/snmp_view.php:1065 +#: ../../operation/snmpconsole/snmp_view.php:1066 ../../operation/menu.php:233 +#: ../../operation/events/events.php:1838 +#: ../../operation/events/events.php:2004 +#: ../../operation/events/events.build_table.php:836 +msgid "Show more" +msgstr "Показать подробнее" + +#: ../../enterprise/operation/agentes/wux_console_view.php:592 +msgid "Invalid transaction." +msgstr "Неверная транзакция." + +#: ../../enterprise/operation/log/elasticsearch_interface.php:35 +#: ../../enterprise/operation/log/log_viewer.php:387 +#: ../../enterprise/operation/menu.php:202 +msgid "Elasticsearch Interface" +msgstr "Интерфейс Elasticsearch" + +#: ../../enterprise/operation/log/elasticsearch_interface.php:39 +msgid "" +"This is a view to interface with Elasticsearch directly from WEB console. \n" +"Please note that you can damage your Elasticsearch if you don`t know exactly " +"what are you are doing. \n" +"This view is intended to be used only by users with a knowledge of " +"Elasticsearch" +msgstr "" +"Это просмотр интерфейса ElasticSearch непосредственно из WEB-консоли. \n" +"Обратите внимание, что это может привести к сбою ElasticSearch, если вы не " +"знаете точно, что делаете. \n" +"Это представление предназначено для тех пользователей, которые хорошо знают " +"ElasticSearch" + +#: ../../enterprise/operation/log/log_viewer.php:398 +#: ../../enterprise/operation/log/log_viewer.php:413 +#: ../../enterprise/operation/log/log_viewer.php:422 +msgid "Log sources" +msgstr "Источники журнала" + +#: ../../enterprise/operation/log/log_viewer.php:464 +msgid "All words" +msgstr "Все слова" + +#: ../../enterprise/operation/log/log_viewer.php:465 +msgid "Any word" +msgstr "Любое слово" + +#: ../../enterprise/operation/log/log_viewer.php:468 +msgid "Search mode" +msgstr "Режим поиска" + +#: ../../enterprise/operation/log/log_viewer.php:515 +msgid "Full context" +msgstr "Полный контекст" + +#: ../../enterprise/operation/log/log_viewer.php:538 +#: ../../operation/network/network_report.php:102 +#: ../../operation/network/network_usage_map.php:75 +#: ../../operation/netflow/nf_live_view.php:263 +msgid "Start date" +msgstr "Дата начала" + +#: ../../enterprise/operation/log/log_viewer.php:562 +#: ../../operation/agentes/exportdata.php:346 +#: ../../operation/network/network_report.php:126 +#: ../../operation/network/network_usage_map.php:99 +#: ../../operation/netflow/nf_live_view.php:287 +msgid "End date" +msgstr "Дата окончания" + +#: ../../enterprise/operation/log/log_viewer.php:647 +#: ../../enterprise/operation/log/log_viewer.php:648 +msgid "Edit sources" +msgstr "Редактировать источники" + +#: ../../enterprise/operation/log/log_viewer.php:691 +msgid "Show log entries" +msgstr "Показать записи журнала" + +#: ../../enterprise/operation/log/log_viewer.php:692 +msgid "Graph log results" +msgstr "Графический журнал результатов" + +#: ../../enterprise/operation/log/log_viewer.php:694 +msgid "Display mode" +msgstr "Режим просмотра" + +#: ../../enterprise/operation/log/log_viewer.php:707 +msgid "Use capture model" +msgstr "Используйте модель захвата" + +#: ../../enterprise/operation/log/log_viewer.php:730 +msgid "Create new model" +msgstr "Создание новой модели" + +#: ../../enterprise/operation/log/log_viewer.php:734 +#: ../../godmode/reporting/graph_builder.main.php:220 +msgid "Horizontal bars" +msgstr "Горизонтальные планки" + +#: ../../enterprise/operation/log/log_viewer.php:735 +#: ../../godmode/reporting/graph_builder.main.php:221 +msgid "Vertical bars" +msgstr "Вертикальные планки" + +#: ../../enterprise/operation/log/log_viewer.php:737 +msgid "Graph type" +msgstr "Тип графика" + +#: ../../enterprise/operation/log/log_viewer.php:752 +msgid "Advanced options " +msgstr "Дополнительные параметры " + +#: ../../enterprise/operation/log/log_viewer.php:865 +msgid "" +"The maximum limit of rows has been exceeded. Please enter an email to send " +"the csv file" +msgstr "" +"Превышен максимальный лимит строк. Пожалуйста, введите адрес электронной " +"почты для отправки файла csv" + +#: ../../enterprise/operation/log/log_viewer.php:867 +msgid "e-mail address" +msgstr "e-mail адрес" + +#: ../../enterprise/operation/log/log_viewer.php:870 +msgid "" +"WARNING: If your email size exceeds your mail attachment size limit, the " +"file will be saved in the local attachment folder." +msgstr "" +"ВНИМАНИЕ: Если размер вашего письма превышает лимит размера почтового " +"вложения, файл будет сохранен в локальной папке вложений." + +#: ../../enterprise/operation/log/log_viewer.php:988 +msgid "The start date cannot be greater than the end date" +msgstr "Дата начала не может быть больше даты окончания" + +#: ../../enterprise/operation/log/log_viewer.php:1416 +msgid "Add new capture model" +msgstr "Добавить новую модель захвата" + +#: ../../enterprise/operation/log/log_viewer.php:1419 +msgid "Edit capture model" +msgstr "Редактировать модель захвата" + +#: ../../enterprise/operation/log/log_viewer.php:1503 +msgid "Error create new model" +msgstr "Ошибка при создании новой модели" + +#: ../../enterprise/operation/log/log_viewer.php:1530 +msgid "Error delete model" +msgstr "Ошибка удаления модели" + +#: ../../enterprise/operation/log/log_viewer.php:1576 +msgid "Error update model" +msgstr "Ошибка обновления модели" + +#: ../../enterprise/operation/menu.php:32 +msgid "Cluster View" +msgstr "Просмотр кластера" + +#: ../../enterprise/operation/menu.php:61 +#: ../../operation/agentes/ver_agente.php:1580 +#: ../../operation/agentes/ver_agente.php:1775 +msgid "SAP view" +msgstr "Просмотр SAP" + +#: ../../enterprise/operation/menu.php:143 +msgid "Transactional map" +msgstr "Транзакционная карта" + +#: ../../enterprise/operation/menu.php:160 +msgid "Custom SQL" +msgstr "Пользовательские SQL" + +#: ../../enterprise/operation/inventory/inventory.php:258 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1776 +msgid "Last" +msgstr "Последний" + +#: ../../enterprise/operation/inventory/inventory.php:261 +msgid "Order by agent" +msgstr "Заказать по агенту" + +#: ../../enterprise/operation/inventory/inventory.php:302 +msgid "Export this list to CSV" +msgstr "Экспорт этого списка в CSV" + +#: ../../enterprise/operation/services/services.service.php:144 +#: ../../enterprise/operation/services/services.service_map.php:135 +#: ../../include/lib/Dashboard/Widgets/service_map.php:192 +msgid "Service Map" +msgstr "Карта обслуживания" + +#: ../../enterprise/operation/services/services.service.php:160 +msgid "No Services" +msgstr "Нет Сервисов" + +#: ../../enterprise/operation/services/services.service.php:204 +#: ../../enterprise/operation/services/services.list.php:517 +#: ../../enterprise/tools/ipam/ipam_list.php:161 +#: ../../extensions/agents_modules.php:305 +#: ../../operation/agentes/group_view.php:61 +#: ../../operation/agentes/tactical.php:45 +msgid "Last update" +msgstr "Последнее обновление" + +#: ../../enterprise/operation/services/services.service.php:274 +#: ../../enterprise/operation/services/services.list.php:588 +msgid "SLA graph" +msgstr "График SLA" + +#: ../../enterprise/operation/services/services.service.php:298 +msgid "List of elements" +msgstr "Список элементов" + +#: ../../enterprise/operation/services/services.service_map.php:158 +#: ../../extensions/agents_modules.php:868 +#: ../../extensions/module_groups.php:376 +#: ../../godmode/snmpconsole/snmp_alert.php:1536 +#: ../../include/functions_reporting_html.php:1809 +#: ../../operation/snmpconsole/snmp_view.php:1279 +msgid "Legend" +msgstr "Легенда" + +#: ../../enterprise/operation/services/services.treeview_services.php:75 +#: ../../enterprise/operation/services/services.list.php:77 +#: ../../enterprise/operation/services/services.table_services.php:52 +msgid "Service table view" +msgstr "Просмотр таблицы сервисов" + +#: ../../enterprise/operation/services/services.treeview_services.php:88 +#: ../../enterprise/operation/services/services.list.php:89 +#: ../../enterprise/operation/services/services.table_services.php:64 +msgid "Service tree view" +msgstr "Просмотр дерева сервисов" + +#: ../../enterprise/operation/services/services.treeview_services.php:139 +#: ../../enterprise/operation/services/services.list.php:294 +#: ../../enterprise/operation/services/services.table_services.php:246 +msgid "Show only favourites" +msgstr "Показывать только избранное" + +#: ../../enterprise/operation/services/services.treeview_services.php:179 +#: ../../enterprise/operation/services/services.list.php:457 +#: ../../enterprise/operation/services/services.list.php:463 +#: ../../enterprise/operation/services/services.table_services.php:399 +#: ../../enterprise/operation/services/services.table_services.php:405 +msgid "No services defined." +msgstr "Услуги не определены." + +#: ../../enterprise/operation/services/services.treeview_services.php:204 +#: ../../enterprise/operation/services/services.list.php:681 +#: ../../enterprise/operation/services/services.table_services.php:490 +msgid "Create Service" +msgstr "Создать сервис" + +#: ../../enterprise/operation/services/services.treeview_services.php:270 +#: ../../godmode/groups/group_list.php:968 +msgid "Found groups" +msgstr "Найденные группы" + +#: ../../enterprise/operation/services/services.treeview_services.php:364 +#: ../../operation/tree.php:479 ../../operation/agentes/status_monitor.php:1895 +#: ../../operation/agentes/estado_monitores.php:421 +msgid "Module: " +msgstr "Модуль: " + +#: ../../enterprise/operation/services/services.list.php:123 +msgid "Service deleted successfully" +msgstr "Сервис удален успешно" + +#: ../../enterprise/operation/services/services.list.php:124 +#, php-format +msgid "Error deleting service %s" +msgstr "Ошибка при удалении сервиса %s" + +#: ../../enterprise/operation/services/services.list.php:132 +msgid "Service forced successfully" +msgstr "Сервис успешно принужден к работе" + +#: ../../enterprise/operation/services/services.list.php:133 +msgid "Error service forced" +msgstr "Ошибка принудительной работы сервиса" + +#: ../../enterprise/operation/services/services.list.php:308 +#: ../../enterprise/operation/services/services.table_services.php:260 +msgid "Show only root services" +msgstr "Показывать только корневые службы" + +#: ../../enterprise/operation/services/services.list.php:592 +msgid "Status graph" +msgstr "График статуса" + +#: ../../enterprise/operation/services/services.list.php:627 +#: ../../operation/agentes/pandora_networkmap.php:799 +msgid "Config" +msgstr "Конфигурация" + +#: ../../enterprise/operation/reporting/custom_reporting.php:90 +#: ../../enterprise/operation/reporting/custom_reporting.php:164 +msgid "Send by email" +msgstr "Отправить по e-mail" + +#: ../../enterprise/operation/reporting/custom_reporting.php:101 +msgid "ID Report" +msgstr "Отчет об идентификации" + +#: ../../enterprise/operation/reporting/custom_reporting.php:200 +msgid "Send by email " +msgstr "Отправить по e-mail " + +#: ../../enterprise/tools/ipam/ipam.php:46 ../../extensions/files_repo.php:119 +#: ../../extensions/files_repo.php:207 +msgid "Operation view" +msgstr "Операционный Вид" + +#: ../../enterprise/tools/ipam/ipam.php:72 +msgid "Subnetworks calculator" +msgstr "Калькулятор подсетей" + +#: ../../enterprise/tools/ipam/ipam.php:90 +msgid "Vlan config" +msgstr "Конфигурация Vlan" + +#: ../../enterprise/tools/ipam/ipam.php:108 +msgid "Vlan wizard" +msgstr "Помощник Vlan" + +#: ../../enterprise/tools/ipam/ipam.php:133 +msgid "Vlan statistics" +msgstr "Статистика Vlan" + +#: ../../enterprise/tools/ipam/ipam.php:153 +msgid "Supernet config" +msgstr "Конфигурация суперсети" + +#: ../../enterprise/tools/ipam/ipam.php:174 +msgid "Supernet statistics" +msgstr "Статистика суперсети" + +#: ../../enterprise/tools/ipam/ipam.php:194 +msgid "Supernet map" +msgstr "Карта суперсети" + +#: ../../enterprise/tools/ipam/ipam.php:217 +#: ../../enterprise/tools/ipam/ipam_list.php:206 +msgid "Manage addresses" +msgstr "Управлять адресами" + +#: ../../enterprise/tools/ipam/ipam.php:257 +#: ../../enterprise/tools/ipam/ipam_list.php:215 +msgid "Addresses view" +msgstr "Просмотр адресов" + +#: ../../enterprise/tools/ipam/ipam_network.php:123 +msgid "No addresses found on this network" +msgstr "В этой сети не найдено ни одного адреса" + +#: ../../enterprise/tools/ipam/ipam_network.php:274 +msgid "Edit address" +msgstr "Изменить адрес" + +#: ../../enterprise/tools/ipam/ipam_network.php:287 +msgid "Disabled address" +msgstr "Отключенный адрес" + +#: ../../enterprise/tools/ipam/ipam_network.php:287 +msgid "This address will not be updated by the server" +msgstr "Этот адрес не будет обновляться сервером" + +#: ../../enterprise/tools/ipam/ipam_network.php:383 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1340 +msgid "Not alive" +msgstr "Не активный" + +#: ../../enterprise/tools/ipam/ipam_network.php:414 +#: ../../enterprise/tools/ipam/ipam_network.php:493 +#: ../../enterprise/tools/ipam/ipam_network.php:535 +msgid "Change to automatic mode" +msgstr "Перевести в автоматический режим" + +#: ../../enterprise/tools/ipam/ipam_network.php:423 +#: ../../enterprise/tools/ipam/ipam_network.php:502 +#: ../../enterprise/tools/ipam/ipam_network.php:544 +msgid "Change to manual mode" +msgstr "Перевести в ручной режим" + +#: ../../enterprise/tools/ipam/ipam_network.php:623 +msgid "Add comments" +msgstr "Добавить комментарии" + +#: ../../enterprise/tools/ipam/ipam_network.php:651 +msgid "Update agent address" +msgstr "Обновление адреса агента" + +#: ../../enterprise/tools/ipam/ipam_network.php:817 +msgid "Please, uncheck auto option to set manual agent." +msgstr "" +"Пожалуйста, снимите флажок auto с опции, чтобы установить ручной агент." + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:48 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:95 +msgid "There is no supernet name. Please introduce a name" +msgstr "Имени суперсети не существует. Пожалуйста, введите имя" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:52 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:99 +msgid "There is no supernet address. Please introduce a address" +msgstr "Не существует адреса суперсети. Пожалуйста, введите адрес" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:56 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:103 +msgid "There is no supernet mask. Please introduce a mask" +msgstr "Не существует супермаски. Пожалуйста, введите маску" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:60 +msgid "There is no valid address. Please introduce a address" +msgstr "Нет действующего адреса. Пожалуйста, введите адрес" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:64 +msgid "There is no valid mask. Please introduce a mask" +msgstr "Нет действующей маски. Пожалуйста, введите маску" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:78 +msgid "Supernet created" +msgstr "Суперсеть создана" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:80 +msgid "Supernet not created" +msgstr "Суперсеть не создана" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:84 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:129 +msgid "Supernet name exists in bbdd, please select other name" +msgstr "" +"Имя суперсети существует в базах данных, пожалуйста, выберите другое имя" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:123 +msgid "Supernet updated" +msgstr "Суперсеть обновлена" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:125 +msgid "Supernet not updated" +msgstr "Суперсеть не обновлена" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:150 +msgid "Could not be deleted, please select supernet" +msgstr "Не удалось удалить, пожалуйста, выберите суперсеть" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:179 +msgid "Network name cannot be repeated in this supernet" +msgstr "Имя сети не может повторяться в этой суперсети" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:186 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:151 +msgid "Successfully added networks" +msgstr "Успешно добавлены сети" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:190 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:155 +msgid "Network could not be added" +msgstr "Не удалось добавить сеть" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:195 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:160 +msgid "Network name could not be added, please select network" +msgstr "Имя сети не удалось добавить, пожалуйста, выберите сеть" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:200 +msgid "supernet name could not be added, please select supernet" +msgstr "имя суперсети не удалось добавить, пожалуйста, выберите суперсеть" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:224 +msgid "Could not be deleted, please select supernet and network" +msgstr "Не удалось удалить, пожалуйста, выберите суперсеть и сеть" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:288 +#: ../../enterprise/tools/ipam/ipam_excel.php:116 +#: ../../enterprise/tools/ipam/ipam_calculator.php:84 +msgid "Mask" +msgstr "Маска" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:302 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:370 +#: ../../enterprise/tools/ipam/ipam_excel.php:117 +msgid "Subneting Mask" +msgstr "Маска подсети" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:338 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:459 +msgid "Update Supernet" +msgstr "Обновление Суперсети" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:345 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:543 +msgid "New Supernet" +msgstr "Новая Суперсеть" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:368 +msgid "Address / Masks" +msgstr "Адрес / Маски" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:371 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:273 +msgid "Networks" +msgstr "Сети" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:388 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:452 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:285 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342 +msgid "Not assigned networks" +msgstr "Не назначенные сети" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:445 +msgid "Delete network to supernet" +msgstr "Удаление сети из суперсети" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:466 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486 +msgid "Add network to supernet" +msgstr "Добавить сеть в суперсеть" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:469 +msgid "Next network" +msgstr "Следующая сеть" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:500 +msgid "Delete Supernet" +msgstr "Удалить Суперсеть" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:522 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:397 +#: ../../include/functions_visual_map_editor.php:793 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:558 +msgid "Show statistics" +msgstr "Показать статистику" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:536 +msgid "No Supernet found" +msgstr "Суперсеть не найдена" + +#: ../../enterprise/tools/ipam/ipam_list.php:109 +msgid "No networks found" +msgstr "Сети не найдены" + +#: ../../enterprise/tools/ipam/ipam_list.php:155 +msgid "IPs" +msgstr "IP-адреса" + +#: ../../enterprise/tools/ipam/ipam_list.php:229 +msgid "Edit network" +msgstr "Редактирование сети" + +#: ../../enterprise/tools/ipam/ipam_list.php:240 +msgid "Delete network" +msgstr "Удалить сеть" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410 +msgid "Interfaces" +msgstr "Интерфейсы" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 +#: ../../enterprise/tools/ipam/ipam_vlan_network.php:38 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:221 +msgid "Vlan" +msgstr "Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 +msgid "succesfully created" +msgstr "создано успешно" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 +msgid "not created" +msgstr "не создано" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 +msgid "exists in bbdd, please select other name" +msgstr "существует в базе данных, пожалуйста, выберите другое название" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:72 +msgid "please, select VLAN to be created" +msgstr "пожалуйста, выберите VLAN, которую необходимо создать" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:231 +msgid "Please enter adress, for search vlans" +msgstr "Пожалуйста, введите адрес, для поиска vlans" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263 +#: ../../godmode/modules/manage_network_components_form_network.php:82 +#: ../../godmode/agentes/module_manager_editor_network.php:149 +#: ../../include/class/AgentWizard.class.php:723 +msgid "SNMP community" +msgstr "Сообщество SNMP" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337 +msgid "privacy pass" +msgstr "конфиденциальный доступ" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374 +#: ../../godmode/wizards/HostDevices.class.php:1248 +msgid "Context" +msgstr "Контекст" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397 +msgid "Run" +msgstr "Запустить" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409 +msgid "Vlan name" +msgstr "Имя Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424 +#: ../../enterprise/tools/ipam/ipam_ajax.php:336 +msgid "Created" +msgstr "Создано" + +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:424 +msgid "No vlans found" +msgstr "Не найдены Vlan" + +#: ../../enterprise/tools/ipam/ipam_action.php:106 +#: ../../enterprise/tools/ipam/ipam_action.php:167 +msgid "The location is not filled, please add a location." +msgstr "Место не указано, пожалуйста, добавьте место." + +#: ../../enterprise/tools/ipam/ipam_action.php:140 +#: ../../enterprise/tools/ipam/ipam_action.php:197 +msgid "Incorrect format in Subnet field" +msgstr "Неверный формат в поле Подсеть" + +#: ../../enterprise/tools/ipam/ipam_action.php:146 +#, php-format +msgid "Could not be created: %s" +msgstr "Не удалось создать: %s" + +#: ../../enterprise/tools/ipam/ipam_action.php:301 +#: ../../operation/agentes/pandora_networkmap.view.php:177 +msgid "Could not be updated." +msgstr "Не может быть обновлено." + +#: ../../enterprise/tools/ipam/ipam_action.php:307 +msgid "Successfully updated." +msgstr "Успешно обновлено." + +#: ../../enterprise/tools/ipam/ipam_action.php:312 +#: ../../include/functions_reporting.php:2338 +msgid "No changes found." +msgstr "Изменения не найдены." + +#: ../../enterprise/tools/ipam/ipam_ajax.php:140 +msgid "There is not an available IP." +msgstr "Не существует доступного IP-адреса." + +#: ../../enterprise/tools/ipam/ipam_ajax.php:142 +msgid "Next available IP Address is:" +msgstr "Следующий доступный IP-адрес:" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:168 +msgid "Reserve this IP now" +msgstr "Зарезервировать этот IP сейчас" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:184 +msgid "Manage this IP now" +msgstr "Управлять этим IP сейчас" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:229 +msgid "Operating system" +msgstr "Операционная система" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:239 +msgid "This agent has other IPs" +msgstr "У этого агента есть другие IP" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:248 +msgid "Generate events" +msgstr "Генерировать события" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:294 +msgid "Leases Dhcp" +msgstr "Аренда Dhcp" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:303 +msgid "leased mode" +msgstr "арендный режим" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:315 +msgid "leased expiration" +msgstr "срок аренды" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:320 +#: ../../include/class/NetworkMap.class.php:2936 +msgid "MAC" +msgstr "MAC" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:346 +msgid "Edited" +msgstr "Отредактировано" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:356 +msgid "Tracking" +msgstr "Отслеживание" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:371 +msgid "Ping" +msgstr "Перебросить" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:387 +#: ../../include/ajax/events.php:1112 +#, php-format +msgid "Executing command: %s" +msgstr "Выполнение команды: %s" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:397 +#: ../../include/ajax/events.php:1129 ../../include/ajax/events.php:1153 +msgid "Execute again" +msgstr "Выполнить еще раз" + +#: ../../enterprise/tools/ipam/ipam_ajax.php:411 +msgid "Ping to host" +msgstr "Перебросить на хост" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:45 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:73 +msgid "There is no vlan name. Please introduce a name" +msgstr "Не указано имя vlan. Пожалуйста, введите имя" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:56 +msgid "Vlan created" +msgstr "Vlan создан" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:58 +msgid "Vlan not created" +msgstr "Vlan не создан" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:62 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:96 +msgid "Vlan name exists in bbdd, please select other name" +msgstr "Имя Vlan существует в бд, пожалуйста, выберите другое имя" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:90 +msgid "Vlan updated" +msgstr "Vlan обновлен" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:92 +msgid "Vlan not updated" +msgstr "Vlan не обновлен" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:116 +msgid "Could not be deleted, please select vlan" +msgstr "Не удалось удалить, пожалуйста, выберите Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:144 +msgid "Network name cannot be repeated in this Vlan" +msgstr "Имя сети не может быть повторено в этом Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:165 +msgid "Vlan name could not be added, please select vlan" +msgstr "Имя Vlan не удалось добавить, пожалуйста, выберите Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:189 +msgid "Could not be deleted, please select vlan and network" +msgstr "Не удалось удалить, пожалуйста, выберите vlan и сеть" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:241 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:348 +msgid "Update Vlan" +msgstr "Обновить Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:248 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435 +msgid "New Vlan" +msgstr "Новый Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:315 +msgid "Delete network to vlan" +msgstr "Удалить сеть в vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:355 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:374 +msgid "Add network to Vlan" +msgstr "Добавить сеть в Vlan" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:358 +msgid "Create network" +msgstr "Создать сеть" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:391 +msgid "Delete Vlan" +msgstr "Удалить Vlan" + +#: ../../enterprise/tools/ipam/ipam_massive.php:82 +msgid "Addresses" +msgstr "Адреса" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:64 +#: ../../enterprise/tools/ipam/ipam_calculator.php:66 +#: ../../enterprise/tools/ipam/ipam_calculator.php:87 +#: ../../enterprise/tools/ipam/ipam_calculator.php:90 +#: ../../enterprise/tools/ipam/ipam_calculator.php:93 +#: ../../enterprise/tools/ipam/ipam_calculator.php:96 +msgid "Example:" +msgstr "Пример:" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:70 +msgid "Bit mask" +msgstr "Битовая маска" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:71 +msgid "Net mask" +msgstr "Маска сети" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:74 +msgid "Mask format" +msgstr "Формат маски" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:105 +msgid "Calculate" +msgstr "Рассчитать" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:112 +msgid "Address field is empty" +msgstr "Поле адреса пустое" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:120 +msgid "Mask field is empty" +msgstr "Поле маски пустое" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:139 +#: ../../enterprise/tools/ipam/ipam_calculator.php:152 +msgid "Incorrect address format" +msgstr "Неправильный формат адреса" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:144 +#: ../../enterprise/tools/ipam/ipam_calculator.php:157 +#: ../../enterprise/tools/ipam/ipam_calculator.php:162 +msgid "Incorrect mask format" +msgstr "Неправильный формат маски" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:190 +msgid "Network mask" +msgstr "Маска сети" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:211 +msgid "Network wildcard" +msgstr "Сеть wildcard" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:220 +msgid "Network address" +msgstr "Адрес Сети" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:229 +msgid "Broadcast address" +msgstr "Адрес передачи данных" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:238 +msgid "First valid IP" +msgstr "Первый действующий IP" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:247 +msgid "Last valid IP" +msgstr "Последний действующий IP" + +#: ../../enterprise/tools/ipam/ipam_calculator.php:257 +msgid "Hosts/Net" +msgstr "Хосты/Сеть" + +#: ../../enterprise/tools/ipam/ipam_editor.php:49 +msgid "Network not found" +msgstr "Сеть не найдена" + +#: ../../enterprise/tools/ipam/ipam_editor.php:86 +msgid "All users" +msgstr "Все пользователи" + +#: ../../enterprise/tools/ipam/ipam_editor.php:96 +msgid "Format: IP/Mask" +msgstr "Формат: IP/маска" + +#: ../../enterprise/tools/ipam/ipam_editor.php:110 +msgid "Examples" +msgstr "Примеры" + +#: ../../enterprise/tools/ipam/ipam_editor.php:163 +msgid "For example: Central Data Center" +msgstr "Например: Общий центр обработки данных" + +#: ../../enterprise/tools/ipam/ipam_editor.php:177 +msgid "Include statistical monitors" +msgstr "Включить статистические приборы контроля" + +#: ../../enterprise/tools/ipam/ipam_editor.php:192 +msgid "Lightweight mode" +msgstr "Облегченный режим" + +#: ../../enterprise/tools/ipam/ipam_editor.php:193 +msgid "Use quicker network scan" +msgstr "Используйте ускоренное сканирование сети" + +#: ../../enterprise/tools/ipam/ipam_editor.php:209 +msgid "Target group for monitoring agent" +msgstr "Целевая группа для агента мониторинга" + +#: ../../enterprise/tools/ipam/ipam_editor.php:230 +msgid "Scan interval" +msgstr "Интервал сканирования" + +#: ../../enterprise/tools/ipam/ipam_editor.php:231 +msgid "0 for manually scan" +msgstr "0 для ручного сканирования" + +#: ../../enterprise/tools/ipam/ipam_editor.php:247 +msgid "Operator users" +msgstr "Пользователи операторов" + +#: ../../extensions/disabled/matrix_events.php:27 +msgid "Matrix events" +msgstr "Матричные события" + +#: ../../extensions/quick_shell.php:115 ../../extensions/quick_shell.php:219 +msgid "WebService engine has not been started, please check documentation." +msgstr "Двигатель WebService не запущен, пожалуйста, проверьте документацию." + +#: ../../extensions/quick_shell.php:127 +msgid "Retry" +msgstr "Повторить" + +#: ../../extensions/quick_shell.php:171 +msgid "Telnet" +msgstr "Telnet" + +#: ../../extensions/quick_shell.php:179 +msgid "Connect" +msgstr "Подключиться" + +#: ../../extensions/quick_shell.php:207 +msgid "Please use SSH or Telnet." +msgstr "Пожалуйста, используйте SSH или Telnet." + +#: ../../extensions/quick_shell.php:241 +msgid "" +"WebService engine is not working properly, please check documentation." +msgstr "" +"Двигатель WebService не работает должным образом, пожалуйста, проверьте " +"документацию." + +#: ../../extensions/quick_shell.php:400 +#, php-format +msgid "%d Updated" +msgstr "%d Обновлено" + +#: ../../extensions/quick_shell.php:403 +#, php-format +msgid "%d Updated, please restart WebSocket engine service" +msgstr "%d Обновлено, пожалуйста, перезапустите сервис двигателя WebSocket" + +#: ../../extensions/quick_shell.php:413 +msgid "Quickshell" +msgstr "Quickshell" + +#: ../../extensions/quick_shell.php:423 +msgid "Gotty path" +msgstr "Путь Gotty" + +#: ../../extensions/quick_shell.php:433 +msgid "Gotty host" +msgstr "Хост Gotty" + +#: ../../extensions/quick_shell.php:443 +msgid "Gotty ssh port" +msgstr "Порт Gotty ssh" + +#: ../../extensions/quick_shell.php:453 +msgid "Gotty telnet port" +msgstr "Порт gotty telnet" + +#: ../../extensions/quick_shell.php:470 +msgid "Gotty user" +msgstr "Пользователь Gotty" + +#: ../../extensions/quick_shell.php:480 +msgid "Gotty password" +msgstr "Пароль Gotty" + +#: ../../extensions/quick_shell.php:520 +msgid "QuickShell" +msgstr "QuickShell" + +#: ../../extensions/extension_uploader.php:29 +msgid "Uploader extension" +msgstr "Загрузчик расширения" + +#: ../../extensions/extension_uploader.php:69 +msgid "Success to upload extension" +msgstr "Успешно загружено расширение" + +#: ../../extensions/extension_uploader.php:70 +msgid "Fail to upload extension" +msgstr "Сбой при загрузке расширения" + +#: ../../extensions/extension_uploader.php:79 +msgid "Upload extension" +msgstr "Загрузить расширение" + +#: ../../extensions/extension_uploader.php:80 +msgid "Upload the extension as a zip file." +msgstr "Загрузить расширение как заархивированный файл." + +#: ../../extensions/extension_uploader.php:82 +msgid "Upload enterprise extension" +msgstr "Загрузить расширение предприятия" + +#: ../../extensions/extension_uploader.php:95 +msgid "Extension uploader" +msgstr "загрузчик расширения" + +#: ../../extensions/resource_registration.php:41 #, php-format msgid "Success add '%s' item in report '%s'." msgstr "Успешно добавлен '%s' пункт в отчет '%s' ." -#: ../../extensions/resource_registration.php:41 +#: ../../extensions/resource_registration.php:46 #, php-format msgid "Error create '%s' item in report '%s'." msgstr "Ошибка создания '%s' пункта в отчете '%s'." -#: ../../extensions/resource_registration.php:68 +#: ../../extensions/resource_registration.php:82 #, php-format msgid "Error create '%s' report, the name exist and there aren't free name." msgstr "" "Ошибка создание '%s' отчета, имя уже существует и нет свободного имени." -#: ../../extensions/resource_registration.php:75 +#: ../../extensions/resource_registration.php:90 #, php-format msgid "" "Warning create '%s' report, the name exist, the report have a name %s." msgstr "" -"Внимание, Создание '%s' отчета, имя существует, отчет содержит имя %s." +"Предостережение о создании отчета '%s', имя уже существует, отчет обладает " +"именем %s." -#: ../../extensions/resource_registration.php:82 +#: ../../extensions/resource_registration.php:99 msgid "Error the report haven't name." msgstr "Ошибка - отчет без имени" -#: ../../extensions/resource_registration.php:88 +#: ../../extensions/resource_registration.php:113 msgid "Error the report haven't group." msgstr "Ошибка - отчет без группы" -#: ../../extensions/resource_registration.php:98 +#: ../../extensions/resource_registration.php:126 #, php-format msgid "Success create '%s' report." msgstr "Успешное созданние '%s' отчета." -#: ../../extensions/resource_registration.php:99 +#: ../../extensions/resource_registration.php:127 #, php-format msgid "Error create '%s' report." msgstr "Ошибка создания '%s' отчета." -#: ../../extensions/resource_registration.php:327 -#: ../../extensions/resource_registration.php:348 -#: ../../extensions/resource_registration.php:358 +#: ../../extensions/resource_registration.php:421 +#: ../../extensions/resource_registration.php:443 +#: ../../extensions/resource_registration.php:454 #, php-format msgid "Success add '%s' content." msgstr "Усппешное добавление '%s' содержания." -#: ../../extensions/resource_registration.php:335 +#: ../../extensions/resource_registration.php:431 #, php-format msgid "Success add '%s' SLA." msgstr "Успешно добавлен '%s' SLA." -#: ../../extensions/resource_registration.php:336 +#: ../../extensions/resource_registration.php:432 #, php-format msgid "Error add '%s' SLA." msgstr "Ошибка добавления '%s' SLA." -#: ../../extensions/resource_registration.php:377 +#: ../../extensions/resource_registration.php:475 #, php-format msgid "Error create '%s' visual map, lost tag name." msgstr "Ошибка создание '%s' визуальной карты, потеряно имя тега." -#: ../../extensions/resource_registration.php:413 +#: ../../extensions/resource_registration.php:518 #, php-format msgid "" "Error create '%s' visual map, the name exist and there aren't free name." msgstr "" "Ошибка создание '%s' визуальной карты, умя существует и нет свободного имени." -#: ../../extensions/resource_registration.php:420 +#: ../../extensions/resource_registration.php:526 #, php-format msgid "" "Warning create '%s' visual map, the name exist, the report have a name %s." msgstr "" "Внимание создание '%s' визуальной карты, умя существует, отчет содержит %s." -#: ../../extensions/resource_registration.php:428 +#: ../../extensions/resource_registration.php:538 #, php-format msgid "Success create '%s' visual map." msgstr "Успешное создание '%s' визуальной карты." -#: ../../extensions/resource_registration.php:429 +#: ../../extensions/resource_registration.php:539 #, php-format msgid "Error create '%s' visual map." msgstr "Ошибка созданиещя '%s' визуальной карты." -#: ../../extensions/resource_registration.php:535 +#: ../../extensions/resource_registration.php:700 #, php-format msgid "Success create item type '%d' visual map." msgstr "Успешное создание типа пункта '%d' визуальной карты." -#: ../../extensions/resource_registration.php:536 +#: ../../extensions/resource_registration.php:701 #, php-format msgid "Error create item type '%d' visual map." msgstr "Ошибка создания типа пункта '%d' визуальной карты." -#: ../../extensions/resource_registration.php:554 -#: ../../extensions/resource_registration.php:569 +#: ../../extensions/resource_registration.php:720 +#: ../../extensions/resource_registration.php:736 #, php-format msgid "Success create item for agent '%s' visual map." msgstr "успешное создание пункта для агента '%s' визуальной карты." -#: ../../extensions/resource_registration.php:555 -#: ../../extensions/resource_registration.php:570 +#: ../../extensions/resource_registration.php:721 +#: ../../extensions/resource_registration.php:737 #, php-format msgid "Error create item for agent '%s' visual map." msgstr "Ошибка создания пункта для агента '%s' визуальной карты." -#: ../../extensions/resource_registration.php:776 +#: ../../extensions/resource_registration.php:997 #, php-format msgid "Success create '%s' component." msgstr "Успешное создание '%s' компонента." -#: ../../extensions/resource_registration.php:777 +#: ../../extensions/resource_registration.php:998 #, php-format msgid "Error create '%s' component." msgstr "Ошибка создания '%s' компонента." -#: ../../extensions/resource_registration.php:833 -#: ../../extensions/resource_registration.php:873 +#: ../../extensions/resource_registration.php:1061 +#: ../../extensions/resource_registration.php:1104 msgid "Resource registration" msgstr "Ресурс регистрации" -#: ../../extensions/resource_registration.php:836 -msgid "Error, please install the PHP libXML in the system." -msgstr "Ошибка, пожалуйста, установите PHP libXML в системе." +#: ../../extensions/resource_registration.php:1071 +msgid "" +"This node is configured with centralized mode. Go to metaconsole to create a " +"policy." +msgstr "" +"Этот узел настроен в централизованном режиме. Перейдите в метаконсоль для " +"создания политики." -#: ../../extensions/resource_registration.php:842 +#: ../../extensions/resource_registration.php:1075 +msgid "This extension makes registering resource templates easier." +msgstr "Это расширение облегчает регистрацию шаблонов ресурсов." + +#: ../../extensions/resource_registration.php:1075 +msgid "Here you can upload a resource template in .ptr format." +msgstr "Здесь вы можете загрузить шаблон ресурса в формате .ptr ." + +#: ../../extensions/resource_registration.php:1075 #, php-format msgid "" -"This extension makes registration of resource template more easy. Here you " -"can upload a resource template in Pandora FMS 3.x format (.ptr). Please " -"refer to documentation on how to obtain and use Pandora FMS resources. " -"<br><br>You can get more resurces in our <a href='%s'>Public Resource " -"Library</a>" +"Please refer to our documentation for more information on how to obtain and " +"use %s resources." msgstr "" -"Это расширение облегчает регистрацию ресурсов шаблона. Здесь вы можете " -"загрузить ресурс шаблона в Pandora FMS 3.x формате (.ptr). Пожалуйста, " -"обратитесь к документации о том, как получить и использовать ресурсы Pandora " -"FMS. <br><br>Вы можете получить больше ресурсов в нашей <a href='%s'> " -"Общественной библиотеке ресурсов</a>" +"Пожалуйста, обратитесь к нашей документации для получения дополнительной " +"информации о том, как получить и использовать ресурсы %s." -#: ../../extensions/resource_registration.php:856 -msgid "Group filter: " -msgstr "Фольтр группы: " - -#: ../../extensions/resource_registration.php:860 -#: ../../extensions/extension_uploader.php:85 -#: ../../extensions/plugin_registration.php:43 -#: ../../operation/incidents/incident_detail.php:507 -msgid "Upload" -msgstr "Загрузить" - -#: ../../extensions/extension_uploader.php:28 -msgid "Uploader extension" -msgstr "Загрузчик расширения" - -#: ../../extensions/extension_uploader.php:64 -msgid "Success to upload extension" -msgstr "Успешно загружено расширение" - -#: ../../extensions/extension_uploader.php:65 -msgid "Fail to upload extension" -msgstr "Сбой при загрузке расширения" - -#: ../../extensions/extension_uploader.php:73 -msgid "Upload extension" -msgstr "Загрузить расширение" - -#: ../../extensions/extension_uploader.php:75 -msgid "Upload the extension as a zip file." -msgstr "Загрузить расширение как заархивированный файл." - -#: ../../extensions/extension_uploader.php:77 -msgid "Upload enterprise extension" -msgstr "Загрузить расширение предприятия" - -#: ../../extensions/extension_uploader.php:90 -msgid "Extension uploader" -msgstr "загрузчик расширения" - -#: ../../extensions/files_repo/files_repo_get_file.php:65 -msgid "Unreliable petition" -msgstr "" - -#: ../../extensions/files_repo/files_repo_get_file.php:65 -msgid "Please contact the administrator" -msgstr "Пожалуйста, обратитесь к администратору" - -#: ../../extensions/files_repo/files_repo_form.php:73 -msgid "Only 200 characters are permitted" -msgstr "" - -#: ../../extensions/files_repo/files_repo_form.php:84 -#: ../../extensions/system_info.php:470 ../../extensions/system_info.php:525 -#: ../../operation/integria_incidents/incident.files.php:23 -#: ../../godmode/extensions.php:143 -msgid "File" -msgstr "Файл" - -#: ../../extensions/files_repo/files_repo_form.php:87 -#: ../../extensions/files_repo/files_repo_form.php:93 -#: ../../extensions/files_repo/files_repo_list.php:89 -msgid "Public link" -msgstr "" - -#: ../../extensions/files_repo/files_repo_list.php:61 -#: ../../include/functions_filemanager.php:579 -msgid "Last modification" -msgstr "Последнее изменение" - -#: ../../extensions/files_repo/files_repo_list.php:86 -msgid "Copy to clipboard" -msgstr "" - -#: ../../extensions/files_repo/files_repo_list.php:115 -msgid "No items" -msgstr "Нет объектов" - -#: ../../extensions/files_repo/functions_files_repo.php:29 -#: ../../extensions/files_repo/functions_files_repo.php:40 -#: ../../include/functions_config.php:1465 -msgid "Attachment directory is not writable by HTTP Server" -msgstr "Прикреплённая директория недоступна для записи для HTTP сервера" - -#: ../../extensions/files_repo/functions_files_repo.php:30 -#: ../../extensions/files_repo/functions_files_repo.php:41 -#, php-format -msgid "Please check that the web server has write rights on the %s directory" -msgstr "" - -#: ../../extensions/files_repo/functions_files_repo.php:229 -msgid "The file could not be copied" -msgstr "" - -#: ../../extensions/files_repo/functions_files_repo.php:233 -msgid "There was an error creating the file" -msgstr "" - -#: ../../extensions/pandora_logs.php:33 ../../extensions/system_info.php:174 -msgid "Cannot find file" -msgstr "Не удается найти файл" - -#: ../../extensions/pandora_logs.php:39 -msgid "File is too large than PHP memory allocated in the system." -msgstr "Файл больше чем PHP память, выделенная в системе." - -#: ../../extensions/pandora_logs.php:40 -msgid "The preview file is imposible." -msgstr "Предварительный просмотр файла невозможен." - -#: ../../extensions/pandora_logs.php:44 -msgid "File is too large (> 500KB)" -msgstr "Файл слишком большой (> 500KB)" - -#: ../../extensions/pandora_logs.php:72 -msgid "System logfile viewer" -msgstr "Просмотрщик системного журнала файлов" - -#: ../../extensions/pandora_logs.php:74 +#: ../../extensions/resource_registration.php:1075 msgid "" -"This tool is used just to view your Pandora FMS system logfiles directly " -"from console" +"You can get more resurces in our <a " +"href='http://pandorafms.com/Library/Library/'>Public Resource Library</a>" msgstr "" -"Этот инструмент используется только для просмотра ваших Pandora FMS файлов " -"системного журнала непосредственно из консоли" +"Вы можете получить больше ресурсов в нашей <a " +"href='http://pandorafms.com/Library/Library/'>Библиотеке общественных " +"ресурсов</a> ." -#: ../../extensions/pandora_logs.php:83 -msgid "System logfiles" -msgstr "Система журнал фйлов" +#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:250 +msgid "API checker" +msgstr "API проверки" -#: ../../extensions/net_tools.php:96 -msgid "The agent hasn't got IP" -msgstr "агент не получил IP" - -#: ../../extensions/net_tools.php:120 -msgid "" -"You can set the command path in the menu Administration -> Extensions -" -"> Config Network Tools" -msgstr "" -"Вы можете установить путь команды в меню Управление -> Расширение -> " -"Конфиг Инструментов Сети" - -#: ../../extensions/net_tools.php:123 -msgid "Traceroute" -msgstr "Трассировка" - -#: ../../extensions/net_tools.php:124 -msgid "Ping host & Latency" -msgstr "Пинг хоста & Задержка" - -#: ../../extensions/net_tools.php:125 -msgid "SNMP Interface status" -msgstr "Статус SNMP интерфейса" - -#: ../../extensions/net_tools.php:126 -msgid "Basic TCP Port Scan" -msgstr "Основные TCP Порт сканирования" - -#: ../../extensions/net_tools.php:127 -msgid "DiG/Whois Lookup" -msgstr "DiG/Whois Поиск" - -#: ../../extensions/net_tools.php:148 ../../include/functions_events.php:1793 -#: ../../operation/extensions.php:64 -#: ../../operation/agentes/networkmap_list.php:266 -msgid "Execute" -msgstr "Выполнение" - -#: ../../extensions/net_tools.php:162 -msgid "Traceroute executable does not exist." -msgstr "Выполняемая трассировка не существует." - -#: ../../extensions/net_tools.php:165 -msgid "Traceroute to " -msgstr "трассировать в " - -#: ../../extensions/net_tools.php:174 -msgid "Ping executable does not exist." -msgstr "Выполнение переброса не существует." - -#: ../../extensions/net_tools.php:177 +#: ../../extensions/api_checker.php:128 #, php-format -msgid "Ping to %s" +msgid "%s Console URL" +msgstr "%s URL консоли" + +#: ../../extensions/api_checker.php:133 +msgid "API Pass" +msgstr "API Пропуск" + +#: ../../extensions/api_checker.php:151 +msgid "Action (get or set)" +msgstr "действие (получить или установить)" + +#: ../../extensions/api_checker.php:166 +msgid "ID 2" +msgstr "ID 2" + +#: ../../extensions/api_checker.php:171 +msgid "Return Type" +msgstr "Тип возвращаемых данных" + +#: ../../extensions/api_checker.php:181 +msgid "Other Mode" +msgstr "другой режим" + +#: ../../extensions/api_checker.php:189 +msgid "Raw URL" +msgstr "Необработанный URL" + +#: ../../extensions/api_checker.php:200 +msgid "Call parameters" +msgstr "параметры вызова" + +#: ../../extensions/api_checker.php:200 +msgid "Action: get Operation: module_last_value id: 63" +msgstr "Действие: доступ к Операций: module_last_value id: 63" + +#: ../../extensions/api_checker.php:209 +msgid "Custom URL" +msgstr "URL пользователя" + +#: ../../extensions/api_checker.php:215 +msgid "Call" +msgstr "Вызов" + +#: ../../extensions/api_checker.php:221 ../../extensions/api_checker.php:228 +#: ../../include/functions_reporting_html.php:3525 +#: ../../include/functions_reporting_html.php:3658 +#: ../../include/functions_reporting_html.php:3993 +#: ../../include/functions_reporting_html.php:4004 +#: ../../include/functions_db.php:1831 +msgid "Result" +msgstr "Результат" + +#: ../../extensions/api_checker.php:224 ../../extensions/api_checker.php:241 +msgid "Show URL" +msgstr "Показать URL-ссылку" + +#: ../../extensions/api_checker.php:237 +msgid "Hide URL" +msgstr "спрятать URL" + +#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 +#: ../../godmode/menu.php:425 +msgid "DB Schema check" +msgstr "Проверка схемы БД" + +#: ../../extensions/db_status.php:43 +msgid "" +"This extension checks the DB is correct. Because sometimes the old DB from a " +"migration has not some fields in the tables or the data is changed." msgstr "" +"Это расширение проверяет правильность БД. Потому что иногда в старой БД " +"после миграции отсутствуют некоторые поля в таблицах или данные изменены." -#: ../../extensions/net_tools.php:186 -msgid "Nmap executable does not exist." -msgstr "Nmap выполнение не существует." +#: ../../extensions/db_status.php:46 +msgid "At the moment the checks is for MySQL/MariaDB." +msgstr "На данный момент проверки проводятся для MySQL/MariaDB." -#: ../../extensions/net_tools.php:189 -msgid "Basic TCP Scan on " -msgstr "Основное TCP сканирование в " +#: ../../extensions/db_status.php:52 +msgid "DB settings" +msgstr "Настройки БД" -#: ../../extensions/net_tools.php:196 -msgid "Domain and IP information for " -msgstr "Домен и IP информации для " +#: ../../extensions/db_status.php:56 +msgid "DB User with privileges" +msgstr "Пользователь БД с привилегиями" -#: ../../extensions/net_tools.php:200 -msgid "Dig executable does not exist." -msgstr "Dig исполнение не существует." +#: ../../extensions/db_status.php:58 +msgid "DB Password for this user" +msgstr "Пароль БД для этого пользователя" -#: ../../extensions/net_tools.php:210 -msgid "Whois executable does not exist." -msgstr "Whois исполнение не существует." +#: ../../extensions/db_status.php:62 +msgid "DB Hostname" +msgstr "Имя хоста БД" -#: ../../extensions/net_tools.php:219 -msgid "SNMP information for " -msgstr "SNMP Информация для " +#: ../../extensions/db_status.php:64 +msgid "DB Name (temporal for testing)" +msgstr "Имя БД (временное для тестирования)" -#: ../../extensions/net_tools.php:223 -msgid "SNMPget executable does not exist." -msgstr "SNMPget выполнение не существует." +#: ../../extensions/db_status.php:72 +msgid "Execute Test" +msgstr "Провести тест" -#: ../../extensions/net_tools.php:226 -msgid "Uptime" -msgstr "Время работы" +#: ../../extensions/db_status.php:108 +msgid "Unsuccessful connected to the DB" +msgstr "Неудачное подключение к БД" -#: ../../extensions/net_tools.php:230 -msgid "Device info" -msgstr "информация об устройстве" +#: ../../extensions/db_status.php:119 +msgid "Unsuccessful created the testing DB" +msgstr "Не удалось создать тестовую БД" -#: ../../extensions/net_tools.php:238 -msgid "Interface" -msgstr "Интерфейс" +#: ../../extensions/db_status.php:135 +msgid "Unsuccessful installed tables into the testing DB" +msgstr "Неудачно установленные таблицы в тестовую БД" -#: ../../extensions/net_tools.php:259 ../../extensions/net_tools.php:333 -msgid "Config Network Tools" -msgstr "Конф Сетевых Инстр" +#: ../../extensions/db_status.php:219 +#, php-format +msgid "Success! %s DB contains all tables" +msgstr "Успешно! %s БД содержит все таблицы" -#: ../../extensions/net_tools.php:280 ../../extensions/net_tools.php:281 -msgid "Set the paths." -msgstr "Настройка путей." +#: ../../extensions/db_status.php:221 +#, php-format +msgid "%s DB could not retrieve all tables. The missing tables are (%s)" +msgstr "" +"%s БД не смогла получить все таблицы. Отсутствующие таблицы - это (%s)" -#: ../../extensions/net_tools.php:300 -msgid "Traceroute path" -msgstr "Трассировка пути" +#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 +#: ../../extensions/db_status.php:349 +msgid "You can execute this SQL query for to fix." +msgstr "Вы можете выполнить этот SQL-запрос для исправления." -#: ../../extensions/net_tools.php:301 -msgid "If it is empty, Pandora searchs the traceroute system." -msgstr "Если пусто, Pandora ищет трассировку системы." +#: ../../extensions/db_status.php:343 +#, php-format +msgid "Unsuccessful the table %s has not the field %s" +msgstr "Неудачно в таблице %s отсутствует поле %s" -#: ../../extensions/net_tools.php:304 -msgid "Ping path" -msgstr "Пинг путь" +#: ../../extensions/db_status.php:408 +msgid "Successful all the tables have the correct fields" +msgstr "Успешно все таблицы имеют правильные поля" -#: ../../extensions/net_tools.php:305 -msgid "If it is empty, Pandora searchs the ping system." -msgstr "Если пусто, Pandora ищет пинг системы." +#: ../../extensions/agents_alerts.php:37 +msgid "Agents/Alerts view" +msgstr "Просмотр Агентов/Оповещений" -#: ../../extensions/net_tools.php:308 -msgid "Nmap path" -msgstr "Nmap Путь" +#: ../../extensions/resource_exportation.php:47 +#: ../../extensions/resource_exportation.php:414 +msgid "Resource exportation" +msgstr "Ресурс экспортирования" -#: ../../extensions/net_tools.php:309 -msgid "If it is empty, Pandora searchs the nmap system." -msgstr "Если пусто, Pandora ищет nmap системы." +#: ../../extensions/resource_exportation.php:417 +msgid "This extension makes exportation of resource template more easy." +msgstr "Это расширение упрощает экспорт шаблона ресурса." -#: ../../extensions/net_tools.php:312 -msgid "Dig path" -msgstr "Dig путь" +#: ../../extensions/resource_exportation.php:417 +msgid "You can export resource templates in .ptr format." +msgstr "Вы можете экспортировать шаблоны ресурсов в формате .ptr ." -#: ../../extensions/net_tools.php:313 -msgid "If it is empty, Pandora searchs the dig system." -msgstr "Если пусто, Pandora ищет dig системы." +#: ../../extensions/files_repo.php:103 +msgid "Extension not installed" +msgstr "Расширение не установлено" -#: ../../extensions/net_tools.php:316 -msgid "Snmpget path" -msgstr "Snmpget Путь" +#: ../../extensions/files_repo.php:115 ../../extensions/files_repo.php:204 +msgid "Administration view" +msgstr "Просмотр Администратора" -#: ../../extensions/net_tools.php:317 -msgid "If it is empty, Pandora searchs the snmpget system." -msgstr "Если пусто, Pandora ищет snmpget системы." +#: ../../extensions/files_repo.php:127 ../../extensions/files_repo.php:237 +msgid "Files repository manager" +msgstr "Файлы менеджер хранилище" -#: ../../extensions/dbmanager.php:107 +#: ../../extensions/files_repo.php:145 ../../include/functions.php:2898 +#: ../../include/functions.php:2902 +msgid "The file exceeds the maximum size" +msgstr "Файл превышает максимальный размер" + +#: ../../extensions/files_repo.php:218 ../../extensions/files_repo.php:235 +msgid "Files repository" +msgstr "Хранилище для файлов" + +#: ../../extensions/dbmanager.php:99 msgid "Database interface" msgstr "интерфейс базы данных" -#: ../../extensions/dbmanager.php:122 +#: ../../extensions/dbmanager.php:103 +#, php-format +msgid "" +"This is an advanced extension to interface with %s database directly from " +"WEB console\n" +"\t\tusing native SQL sentences. Please note that <b>you can damage</b> your " +"%s installation\n" +"\t\tif you don't know </b>exactly</b> what are you are doing,\n" +"\t\tthis means that you can severily damage your setup using this " +"extension.\n" +"\t\tThis extension is intended to be used <b>only by experienced users</b>\n" +"\t\twith a depth knowledge of %s internals." +msgstr "" +"Это дополнительное расширение для взаимодействия с базой данных %s " +"непосредственно из WEB-консоли\n" +"\t\tиспользуя родные предложения SQL. Обратите внимание, что <b>вы можете " +"повредить</b> вашу установку %s.\n" +"\t\tесли вы не знаете <b>точно</b>, что вы делаете,\n" +"\t\tэто означает, что вы можете серьезно повредить вашу установку, используя " +"это расширение.\n" +"\t\tЭто расширение предназначено для использования <b>только опытными " +"пользователями</b>\n" +"\t\tс глубокими знаниями о внутреннем устройстве %s." + +#: ../../extensions/dbmanager.php:124 msgid "Execute SQL" msgstr "Запустить SQL" -#: ../../extensions/dbmanager.php:166 +#: ../../extensions/dbmanager.php:173 ../../godmode/menu.php:425 msgid "DB interface" msgstr "интерфейс базы данных" -#: ../../extensions/module_groups.php:39 -msgid "Number fired of alerts" -msgstr "Число запусков оповещений" +#: ../../extensions/agents_modules.php:439 +#: ../../include/functions_reports.php:788 +msgid "Agents/Modules" +msgstr "Агенты/Модули" -#: ../../extensions/module_groups.php:168 -msgid "Combined table of agent group and module group" -msgstr "Комбинированная таблица агента группы и модуля группы" +#: ../../extensions/agents_modules.php:509 +msgid "Agent/module view" +msgstr "Просмотр агента/модуля" -#: ../../extensions/module_groups.php:171 -msgid "" -"This table shows in columns the modules group and in rows agents group. The " -"cell shows all modules" +#: ../../extensions/agents_modules.php:546 +msgid "Filters " +msgstr "Фильтры " + +#: ../../extensions/agents_modules.php:546 +msgid "Secondary groups and agent subgroups will be taken into account." +msgstr "Будут учитываться вторичные группы и подгруппы агентов." + +#: ../../extensions/agents_modules.php:681 +#: ../../include/functions_reporting.php:2496 +msgid "There are no agents with modules" +msgstr "здесь нет агентов с модулями" + +#: ../../extensions/agents_modules.php:696 +msgid "Previous modules" +msgstr "Предыдущие модули" + +#: ../../extensions/agents_modules.php:722 +msgid "More modules" +msgstr "Еще модули" + +#: ../../extensions/agents_modules.php:855 +#: ../../include/functions_reporting_html.php:1810 +msgid "Orange cell when the module has fired alerts" +msgstr "Оранжевая ячейка, когда модуль содержит запущенные оповещения" + +#: ../../extensions/agents_modules.php:857 +#: ../../include/functions_reporting_html.php:1811 +msgid "Red cell when the module has a critical status" +msgstr "Красная ячейка, когда модуль в критическо статусе" + +#: ../../extensions/agents_modules.php:860 +#: ../../include/functions_reporting_html.php:1812 +msgid "Yellow cell when the module has a warning status" +msgstr "Желтая ячейка, когда модуль в статусе предостережения опасности" + +#: ../../extensions/agents_modules.php:862 +#: ../../include/functions_reporting_html.php:1813 +msgid "Green cell when the module has a normal status" +msgstr "Зеленая ячейка, когда модуль в нормальном статусе" + +#: ../../extensions/agents_modules.php:864 +#: ../../include/functions_reporting_html.php:1814 +msgid "Grey cell when the module has an unknown status" +msgstr "Серая ячейка, когда модуль в неизвестном статусе" + +#: ../../extensions/agents_modules.php:866 +msgid "Cell turns blue when the module is in 'not initialize' status" msgstr "" -"Эта таблица отображает в колонках модулеи группы и в строках агенты группы. " -"В ячейках отображаются все модули" +"Ячейка становится синей, когда модуль находится в состоянии \"не " +"инициализирован\"" -#: ../../extensions/module_groups.php:297 +#: ../../extensions/agents_modules.php:879 +msgid "Agents/Modules view" +msgstr "Просмотр Агентов/Модулей" + +#: ../../extensions/pandora_logs.php:29 +msgid "Cannot find file" +msgstr "Не удается найти файл" + +#: ../../extensions/pandora_logs.php:34 +msgid "File is too large than PHP memory allocated in the system." +msgstr "Файл больше чем PHP память, выделенная в системе." + +#: ../../extensions/pandora_logs.php:35 +msgid "The preview file is imposible." +msgstr "Предварительный просмотр файла невозможен." + +#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45 msgid "" -"Orange cell when the module group and agent have at least one alarm fired." +"The folder /var/log/pandora must have pandora:apache and its content too." msgstr "" -"Оранжевый клетки - когда модуль группы и агент имеют хотя бы один запуск " -"сигнала тревоги." +"В папке /var/log/pandora должен находиться pandora:apache и его содержимое." -#: ../../extensions/module_groups.php:298 +#: ../../extensions/pandora_logs.php:64 +msgid "System logfile viewer" +msgstr "Просмотрщик системного журнала файлов" + +#: ../../extensions/pandora_logs.php:66 +#, php-format +msgid "Use this tool to view your %s logfiles directly on the console" +msgstr "" +"Используйте этот инструмент для просмотра файлов журналов %s непосредственно " +"на консоли" + +#: ../../extensions/pandora_logs.php:68 msgid "" -"Red cell when the module group and agent have at least one module in " -"critical status and the others in any status" +"You can choose the amount of information shown in general setup (Log size " +"limit in system logs viewer extension), " msgstr "" -"Красные клетки - когда группа модулей и агентов имеют хотя бы один модуль в " -"критическом состоянии и остальные в любом статусе" +"Вы можете выбрать объем отображаемой информации в общих настройках " +"(Ограничение размера журнала в расширении просмотра системных журналов), " -#: ../../extensions/module_groups.php:299 -msgid "" -"Yellow cell when the module group and agent have at least one in warning " -"status and the others in grey or green status" -msgstr "" -"Желтые ячейки - когда группа модулей и агентов имеет хотя бы один в статусе " -"предупреждения и другие в сером или зеленом статусе" +#: ../../extensions/pandora_logs.php:82 +msgid "System logfiles" +msgstr "Система журнал фйлов" -#: ../../extensions/module_groups.php:300 -msgid "" -"Green cell when the module group and agent have all modules in OK status" -msgstr "" -"Зеленую ячейка - когда группа модулей и агента содержит все модули в статус " -"ОК" - -#: ../../extensions/module_groups.php:301 -msgid "" -"Grey cell when the module group and agent have at least one in unknown " -"status and the others in green status" -msgstr "" -"Серый ячейки - когда группа модулей и агента содержит по крайней мере один в " -"неизвестном статусе и другие в зеленом статусе" - -#: ../../extensions/module_groups.php:302 -msgid "" -"Blue cell when the module group and agent have all modules in not init " -"status." -msgstr "" -"Голубые ячейки - когда группа модуля и агента псодержит все модули в не иниц " -"статусе." - -#: ../../extensions/module_groups.php:307 -msgid "There are no defined groups or module groups" -msgstr "здесь нет определенных групп или модулей групп" - -#: ../../extensions/module_groups.php:325 ../../operation/tree.php:67 -#: ../../godmode/menu.php:53 -msgid "Module groups" -msgstr "Модуль групп" - -#: ../../extensions/users_connected.php:38 -#: ../../extensions/users_connected.php:122 -#: ../../extensions/users_connected.php:126 -msgid "Users connected" -msgstr "Пользователи подключены" - -#: ../../extensions/users_connected.php:66 -msgid "No other users connected" -msgstr "Нет других подключенных пользовтелей" - -#: ../../extensions/plugin_registration.php:26 -#: ../../extensions/plugin_registration.php:33 +#: ../../extensions/plugin_registration.php:27 +#: ../../extensions/plugin_registration.php:34 +#: ../../godmode/servers/plugin.php:296 msgid "Plugin registration" msgstr "Регистрация плагина" -#: ../../extensions/plugin_registration.php:30 +#: ../../extensions/plugin_registration.php:31 msgid "Plugin Registration" -msgstr "" +msgstr "Регистрация плагина" -#: ../../extensions/plugin_registration.php:35 +#: ../../extensions/plugin_registration.php:36 msgid "" -"This extension makes registration of server plugins more easy. \n" -"\t\t\t\t\t\tHere you can upload a server plugin in Pandora FMS 3.x zipped " -"format (.pspz). \n" -"\t\t\t\t\t\tPlease refer to documentation on how to obtain and use Pandora " -"FMS Server Plugins.\n" +"This extension makes registering server plugins an easier task.\n" +"\t\t\t\t\t\tHere you can upload a server plugin in .pspz zipped format.\n" +"\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and " +"use Server Plugins.\n" "\t\t\t\t\t\t<br><br>You can get more plugins in our <a " "href='http://pandorafms.com/Library/Library/'>Public Resource Library</a> " msgstr "" +"Это расширение облегчает регистрацию серверных плагинов.\n" +"\t\t\t\t\t\t\t\t\tЗдесь вы можете загрузить серверный плагин в формате .pspz " +"zipped.\n" +"\t\t\t\t\t\t\t\t\tПожалуйста, обратитесь к официальной документации по " +"получению и использованию серверных плагинов.\n" +"\t\t\t\t\t\t\t\t<br><br>Вы можете получить больше плагинов в нашей <a " +"href='http://pandorafms.com/Library/Library/'>Библиотеке публичных " +"ресурсов</a>. " -#: ../../extensions/plugin_registration.php:84 +#: ../../extensions/plugin_registration.php:86 msgid "Cannot load INI file" msgstr "Фаил INI не может быть загружен" @@ -18274,563 +29614,201 @@ msgstr "Фаил INI не может быть загружен" msgid "Plugin exec not found. Aborting!" msgstr "Плагин расширения не найден. Прерывание!" -#: ../../extensions/plugin_registration.php:120 +#: ../../extensions/plugin_registration.php:117 msgid "Plugin already registered. Aborting!" msgstr "Плагин уже зарегистрирован. Прерывание!" -#: ../../extensions/plugin_registration.php:291 +#: ../../extensions/plugin_registration.php:281 msgid "Plug-in Remote Registered unsuccessfull" -msgstr "" +msgstr "Неудача при регистрации дистанционного плагина" -#: ../../extensions/plugin_registration.php:293 +#: ../../extensions/plugin_registration.php:284 msgid "Please check the syntax of file \"plugin_definition.ini\"" -msgstr "" +msgstr "Пожалуйста, проверьте синтаксис файла \"plugin_definition.ini\"." -#: ../../extensions/plugin_registration.php:413 +#: ../../extensions/plugin_registration.php:403 msgid "Module plugin registered" msgstr "Модуль плагина зарегистрирован" -#: ../../extensions/plugin_registration.php:418 -#: ../../godmode/agentes/module_manager_editor_plugin.php:47 -#: ../../godmode/massive/massive_edit_plugins.php:287 -#: ../../godmode/modules/manage_network_components_form_plugin.php:22 -msgid "Plugin" -msgstr "Плагин" - -#: ../../extensions/plugin_registration.php:418 +#: ../../extensions/plugin_registration.php:406 msgid "Registered successfully" msgstr "Зарегистрировано успешно" -#: ../../extensions/plugin_registration.php:428 +#: ../../extensions/plugin_registration.php:417 msgid "Register plugin" msgstr "регистратор плагина" -#: ../../extensions/api_checker.php:83 ../../extensions/api_checker.php:219 -msgid "API checker" -msgstr "API проверки" +#: ../../extensions/files_repo/functions_files_repo.php:28 +#: ../../extensions/files_repo/functions_files_repo.php:46 +msgid "Attachment directory is not writable by HTTP Server" +msgstr "Прикреплённая директория недоступна для записи для HTTP сервера" -#: ../../extensions/api_checker.php:95 -msgid "Pandora Console URL" -msgstr "Pandora Console URL" - -#: ../../extensions/api_checker.php:100 -msgid "API Pass" -msgstr "API Пропуск" - -#: ../../extensions/api_checker.php:118 -msgid "Action (get or set)" -msgstr "действие (получить или установить)" - -#: ../../extensions/api_checker.php:128 -#: ../../operation/integria_incidents/incident.list.php:93 -#: ../../operation/events/events.build_table.php:39 -#: ../../operation/incidents/incident.php:330 -#: ../../godmode/alerts/alert_commands.php:324 -#: ../../godmode/agentes/agent_incidents.php:85 -#: ../../godmode/agentes/agent_manager.php:162 -#: ../../godmode/agentes/module_manager_editor_common.php:137 -#: ../../godmode/agentes/fields_manager.php:94 -#: ../../godmode/groups/group_list.php:334 -#: ../../godmode/groups/modu_group_list.php:181 -#: ../../godmode/setup/os.list.php:33 ../../godmode/modules/module_list.php:58 -msgid "ID" -msgstr "ID" - -#: ../../extensions/api_checker.php:133 -msgid "ID 2" -msgstr "ID 2" - -#: ../../extensions/api_checker.php:138 -msgid "Return Type" -msgstr "Тип возвращаемых данных" - -#: ../../extensions/api_checker.php:148 -msgid "Other Mode" -msgstr "другой режим" - -#: ../../extensions/api_checker.php:156 -msgid "Raw URL" -msgstr "Необработанный URL" - -#: ../../extensions/api_checker.php:167 -msgid "Call parameters" -msgstr "параметры вызова" - -#: ../../extensions/api_checker.php:172 ../../extensions/api_checker.php:185 -msgid "Call" -msgstr "Вызов" - -#: ../../extensions/api_checker.php:179 -msgid "Custom URL" -msgstr "URL пользователя" - -#: ../../extensions/api_checker.php:191 ../../extensions/api_checker.php:198 -#: ../../include/functions_db.php:1084 -msgid "Result" -msgstr "Результат" - -#: ../../extensions/api_checker.php:194 ../../extensions/api_checker.php:211 -msgid "Show URL" -msgstr "Показать URL-ссылку" - -#: ../../extensions/api_checker.php:207 -msgid "Hide URL" -msgstr "спрятать URL" - -#: ../../extensions/ssh_gateway.php:52 -msgid "You need to specify a user and a host address" -msgstr "Вам нужно указать пользователя и хост-адрес" - -#: ../../extensions/ssh_gateway.php:57 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:66 -msgid "Host address" -msgstr "Адрес сервера" - -#: ../../extensions/ssh_gateway.php:59 +#: ../../extensions/files_repo/functions_files_repo.php:28 +#: ../../extensions/files_repo/functions_files_repo.php:46 #, php-format -msgid "For security reasons the following characters are not allowed: %s" -msgstr "В целях безопасности следующие символы не допускаются: %s" +msgid "Please check that the web server has write rights on the %s directory" +msgstr "Убедитесь, что веб-сервер имеет права на запись в каталог %s" -#: ../../extensions/ssh_gateway.php:60 -msgid "Connect" -msgstr "Подключиться" +#: ../../extensions/files_repo/functions_files_repo.php:248 +msgid "The file could not be copied" +msgstr "Файл не был скопирован" -#: ../../extensions/ssh_gateway.php:63 -msgid "Port (use 0 for default)" -msgstr "Порт (использовать 0 по умолчанию)" +#: ../../extensions/files_repo/functions_files_repo.php:251 +msgid "There was an error creating the file" +msgstr "Произошла ошибка при создании файла" -#: ../../extensions/ssh_gateway.php:65 -msgid "Connect mode" -msgstr "Режим подключения" +#: ../../extensions/files_repo/functions_files_repo.php:295 +msgid "There was an error updating the file" +msgstr "Произошла ошибка при обновлении файла" -#: ../../extensions/agents_modules.php:59 -#: ../../extensions/agents_alerts.php:58 -#: ../../operation/agentes/group_view.php:62 -#: ../../operation/agentes/tactical.php:50 -msgid "Updated at realtime" -msgstr "Обновлять в реальном времени" +#: ../../extensions/files_repo/files_repo_get_file.php:66 +msgid "Unreliable petition" +msgstr "Ненадежная петиция" -#: ../../extensions/agents_modules.php:89 -#: ../../extensions/agents_alerts.php:81 ../../include/functions.php:2539 -#: ../../operation/gis_maps/render_view.php:126 -msgid "1 minute" -msgstr "1 минута" +#: ../../extensions/files_repo/files_repo_get_file.php:66 +msgid "Please contact the administrator" +msgstr "Пожалуйста, обратитесь к администратору" -#: ../../extensions/agents_modules.php:90 -#: ../../extensions/agents_alerts.php:82 ../../include/functions.php:2540 -#: ../../operation/gis_maps/render_view.php:127 -msgid "2 minutes" -msgstr "2 минуты" +#: ../../extensions/files_repo/files_repo_form.php:84 +msgid "Only 200 characters are permitted" +msgstr "Разрешены только 200 символов" -#: ../../extensions/agents_modules.php:91 -#: ../../extensions/agents_alerts.php:83 ../../include/functions.php:2541 -#: ../../include/ajax/module.php:117 -#: ../../operation/gis_maps/render_view.php:128 -msgid "5 minutes" -msgstr "5 минут" +#: ../../extensions/files_repo/files_repo_form.php:95 +#: ../../godmode/extensions.php:138 +msgid "File" +msgstr "Файл" -#: ../../extensions/agents_modules.php:92 -#: ../../extensions/agents_alerts.php:84 -#: ../../operation/gis_maps/render_view.php:129 -msgid "10 minutes" -msgstr "10 минут" +#: ../../extensions/files_repo/files_repo_form.php:98 +#: ../../extensions/files_repo/files_repo_form.php:104 +#: ../../extensions/files_repo/files_repo_list.php:112 +msgid "Public link" +msgstr "ссылка общего доступа" -#: ../../extensions/agents_modules.php:119 -#: ../../include/functions_reports.php:580 -msgid "Agents/Modules" -msgstr "Агенты/Модули" +#: ../../extensions/files_repo/files_repo_list.php:58 +#: ../../include/functions_filemanager.php:626 +msgid "Last modification" +msgstr "Последнее изменение" -#: ../../extensions/agents_modules.php:186 -#: ../../include/functions_reporting.php:1555 -msgid "There are no agents with modules" -msgstr "здесь нет агентов с модулями" +#: ../../extensions/files_repo/files_repo_list.php:106 +msgid "Copy to clipboard" +msgstr "Скопировать в буфер обмена" -#: ../../extensions/agents_modules.php:211 -msgid "Previous modules" -msgstr "Предыдущие модули" +#: ../../extensions/files_repo/files_repo_list.php:164 +msgid "No items" +msgstr "Нет объектов" -#: ../../extensions/agents_modules.php:249 -msgid "More modules" -msgstr "Еще модули" +#: ../../extensions/module_groups.php:48 +msgid "Counters Module" +msgstr "Модуль счетчиков" -#: ../../extensions/agents_modules.php:359 -#: ../../include/functions_reporting_html.php:898 -msgid "Orange cell when the module has fired alerts" -msgstr "Оранжевая ячейка, когда модуль содержит запущенные оповещения" +#: ../../extensions/module_groups.php:49 +msgid "Alerts_Fired" +msgstr "Сработавшие_предупреждения" -#: ../../extensions/agents_modules.php:360 -#: ../../include/functions_reporting_html.php:899 -msgid "Red cell when the module has a critical status" -msgstr "Красная ячейка, когда модуль в критическо статусе" +#: ../../extensions/module_groups.php:51 +msgid "warning" +msgstr "внимание" -#: ../../extensions/agents_modules.php:361 -#: ../../include/functions_reporting_html.php:900 -msgid "Yellow cell when the module has a warning status" -msgstr "Желтая ячейка, когда модуль в статусе Предупреждения" +#: ../../extensions/module_groups.php:54 +msgid "Not_init" +msgstr "Не_начато" -#: ../../extensions/agents_modules.php:362 -#: ../../include/functions_reporting_html.php:901 -msgid "Green cell when the module has a normal status" -msgstr "Зеленая ячейка, когда модуль в нормальном статусе" +#: ../../extensions/module_groups.php:249 +msgid "Combined table of agent group and module group" +msgstr "Комбинированная таблица агента группы и модуля группы" -#: ../../extensions/agents_modules.php:363 -#: ../../include/functions_reporting_html.php:902 -msgid "Grey cell when the module has an unknown status" -msgstr "Серая ячейка, когда модуль в неизвестном статусе" +#: ../../extensions/module_groups.php:263 +msgid "Search by agent group" +msgstr "Поиск по группе агентов" -#: ../../extensions/agents_modules.php:405 -msgid "Agents/Modules view" -msgstr "Просмотр Агентов/Модулей" +#: ../../extensions/module_groups.php:267 +msgid "Search by module group" +msgstr "Поиск по группе модулей" -#: ../../extensions/vnc_view.php:25 -msgid "VNC Display (:0 by default)" -msgstr "VNC отображение (:0 по умолчанию)" - -#: ../../extensions/vnc_view.php:28 -msgid "Send" -msgstr "Отправлено" - -#: ../../extensions/vnc_view.php:42 -msgid "VNC view" -msgstr "Просмотр VNC" - -#: ../../extensions/realtime_graphs.php:29 -#: ../../extensions/realtime_graphs.php:136 -msgid "Realtime graphs" -msgstr "" - -#: ../../extensions/realtime_graphs.php:61 -msgid "Pandora Server CPU" -msgstr "Pandora Сервер CPU" - -#: ../../extensions/realtime_graphs.php:62 -msgid "Pandora Server Pending packets" -msgstr "" - -#: ../../extensions/realtime_graphs.php:63 -msgid "Pandora Server Disk IO Wait" -msgstr "Pandora Сервер Диск IO в ожидании" - -#: ../../extensions/realtime_graphs.php:64 -msgid "Pandora Server Apache load" -msgstr "" - -#: ../../extensions/realtime_graphs.php:65 -msgid "Pandora Server MySQL load" -msgstr "Pandora Сервер MySQL Нагрузка" - -#: ../../extensions/realtime_graphs.php:66 -msgid "Pandora Server load" -msgstr "" - -#: ../../extensions/realtime_graphs.php:67 -msgid "SNMP Interface throughput" -msgstr "" - -#: ../../extensions/realtime_graphs.php:79 -msgid "Refresh interval" -msgstr "" - -#: ../../extensions/realtime_graphs.php:80 -msgid "Incremental" -msgstr "" - -#: ../../extensions/realtime_graphs.php:81 -msgid "Clear graph" -msgstr "" - -#: ../../extensions/realtime_graphs.php:94 -#: ../../include/functions_snmp_browser.php:506 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:333 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:693 -#: ../../godmode/agentes/module_manager_editor_network.php:61 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:255 -#: ../../godmode/agentes/module_manager_editor_wmi.php:42 -#: ../../godmode/massive/massive_edit_modules.php:460 -msgid "Target IP" -msgstr "Целевой IP" - -#: ../../extensions/realtime_graphs.php:97 -#: ../../include/functions_snmp_browser.php:508 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:69 -msgid "Community" -msgstr "Сообщество" - -#: ../../extensions/realtime_graphs.php:112 -#: ../../godmode/agentes/module_manager_editor_network.php:120 -msgid "SNMP walk" -msgstr "SNMP ход" - -#: ../../extensions/realtime_graphs.php:125 -#: ../../godmode/agentes/module_manager_editor_network.php:30 -msgid "Use this OID" -msgstr "Используйте этот OID" - -#: ../../extensions/system_info.php:179 -msgid "Cannot read file" -msgstr "Не удается прочитать файл" - -#: ../../extensions/system_info.php:388 -msgid "No options selected" -msgstr "" - -#: ../../extensions/system_info.php:391 -msgid "There was an error with the zip file" -msgstr "Произошла ошибка с архивированным файлом" - -#: ../../extensions/system_info.php:414 ../../extensions/system_info.php:807 -msgid "System Info" -msgstr "Информация о системе" - -#: ../../extensions/system_info.php:417 +#: ../../extensions/module_groups.php:377 msgid "" -"This extension can run as PHP script in a shell for extract more " -"information, but it must be run as root or across sudo. For example: <i>sudo " -"php /var/www/pandora_console/extensions/system_info.php -d -s -c</i>" +"Orange cell when the module group and agent have at least one alarm fired." msgstr "" -"Это расширение может работать как PHP скрипт в оболочке для извлечения " -"дополнительной информации, но он должен быть запущен как корень или через " -"судо. Например: <i>sudo php " -"/var/www/pandora_console/extensions/system_info.php -d -s -c</i>" +"Оранжевый клетки - когда модуль группы и агент имеют хотя бы один запуск " +"сигнала тревоги." -#: ../../extensions/system_info.php:427 ../../extensions/system_info.php:430 -#: ../../extensions/system_info.php:503 -msgid "Pandora Diagnostic info" -msgstr "Pandora диагностическая информация" - -#: ../../extensions/system_info.php:434 ../../extensions/system_info.php:437 -#: ../../extensions/system_info.php:509 -msgid "System info" -msgstr "Системная информация" - -#: ../../extensions/system_info.php:442 ../../extensions/system_info.php:445 -#: ../../extensions/system_info.php:513 -msgid "Log Info" -msgstr "Информация журнала" - -#: ../../extensions/system_info.php:448 ../../extensions/system_info.php:449 -msgid "Number lines of log" -msgstr "Число линий журнала" - -#: ../../extensions/system_info.php:494 -msgid "Generate file" -msgstr "Создайте файл" - -#: ../../extensions/system_info.php:547 -msgid "At least one option must be selected" -msgstr "" - -#: ../../extensions/agents_alerts.php:108 -msgid "Agents/Alerts" -msgstr "Агенты/Оповещения" - -#: ../../extensions/agents_alerts.php:155 -msgid "There are no agents with alerts" -msgstr "здесь нет агентов с оповещениями" - -#: ../../extensions/agents_alerts.php:176 -#: ../../godmode/alerts/alert_templates.php:132 -#: ../../godmode/alerts/alert_templates.php:175 -#: ../../godmode/alerts/alert_templates.php:194 -#: ../../godmode/alerts/alert_templates.php:210 -#: ../../godmode/massive/massive_add_action_alerts.php:148 -#: ../../godmode/massive/massive_delete_action_alerts.php:157 -msgid "Alert templates" -msgstr "Шаблоны оповещений" - -#: ../../extensions/agents_alerts.php:183 -msgid "Previous templates" -msgstr "Предыдущие шаблоны" - -#: ../../extensions/agents_alerts.php:221 -msgid "More templates" -msgstr "Еще шаблоны" - -#: ../../extensions/agents_alerts.php:346 -msgid "Agents/Alerts view" -msgstr "Просмотр Агентов/Оповещений" - -#: ../../extensions/matrix_events.php:29 -msgid "Matrix events" -msgstr "" - -#: ../../extensions/db_status.php:43 ../../extensions/db_status.php:365 -msgid "DB Status" -msgstr "" - -#: ../../extensions/db_status.php:56 +#: ../../extensions/module_groups.php:378 msgid "" -"This extension checks the DB is correct. Because sometimes the old DB from a " -"migration has not some fields in the tables or the data is changed." +"Red cell when the module group and agent have at least one module in " +"critical status and the others in any status" msgstr "" +"Красные клетки - когда группа модулей и агентов имеют хотя бы один модуль в " +"критическом состоянии и остальные в любом статусе" -#: ../../extensions/db_status.php:58 -msgid "At the moment the checks is for MySQL/MariaDB." -msgstr "" - -#: ../../extensions/db_status.php:63 -msgid "DB settings" -msgstr "" - -#: ../../extensions/db_status.php:67 -msgid "DB User with privileges" -msgstr "" - -#: ../../extensions/db_status.php:69 -msgid "DB Password for this user" -msgstr "" - -#: ../../extensions/db_status.php:73 -msgid "DB Hostname" -msgstr "" - -#: ../../extensions/db_status.php:75 -msgid "DB Name (temporal for testing)" -msgstr "" - -#: ../../extensions/db_status.php:83 -msgid "Execute Test" -msgstr "" - -#: ../../extensions/db_status.php:110 -msgid "Unsuccessful connected to the DB" -msgstr "" - -#: ../../extensions/db_status.php:117 -msgid "Unsuccessful created the testing DB" -msgstr "" - -#: ../../extensions/db_status.php:128 -msgid "Unsuccessful installed tables into the testing DB" -msgstr "" - -#: ../../extensions/db_status.php:139 -msgid "Unsuccessful installed enterprise tables into the testing DB" -msgstr "" - -#: ../../extensions/db_status.php:190 -msgid "Successful the DB Pandora has all tables" -msgstr "" - -#: ../../extensions/db_status.php:191 -#, php-format +#: ../../extensions/module_groups.php:379 msgid "" -"Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" +"Yellow cell when the module group and agent have at least one in warning " +"status and the others in grey or green status" msgstr "" +"Желтые ячейки используется, когда хотя бы один из группы модулей и агентов " +"находится в статусе предостережения опасности и другие в сером или зеленом " +"статусе." -#: ../../extensions/db_status.php:201 ../../extensions/db_status.php:258 -#: ../../extensions/db_status.php:278 ../../extensions/db_status.php:290 -#: ../../extensions/db_status.php:298 -msgid "You can execute this SQL query for to fix." -msgstr "" - -#: ../../extensions/db_status.php:255 -#, php-format -msgid "Unsuccessful the table %s has not the field %s" -msgstr "" - -#: ../../extensions/db_status.php:275 -#, php-format +#: ../../extensions/module_groups.php:380 msgid "" -"Unsuccessful the field %s in the table %s must be setted the type with %s." +"Grey cell when the module group and agent have at least one in unknown " +"status and the others in green status" msgstr "" +"Серый ячейки - когда группа модулей и агента содержит по крайней мере один в " +"неизвестном статусе и другие в зеленом статусе" -#: ../../extensions/db_status.php:286 -#, php-format +#: ../../extensions/module_groups.php:381 msgid "" -"Unsuccessful the field %s in the table %s must be setted the null values " -"with %s." +"Green cell when the module group and agent have all modules in OK status" msgstr "" +"Зеленую ячейка - когда группа модулей и агента содержит все модули в статус " +"ОК" -#: ../../extensions/db_status.php:308 -#, php-format +#: ../../extensions/module_groups.php:382 msgid "" -"Unsuccessful the field %s in the table %s must be setted the key as defined " -"in the SQL file." +"Blue cell when the module group and agent have all modules in not init " +"status." msgstr "" +"Голубые ячейки - когда группа модуля и агента псодержит все модули в не иниц " +"статусе." -#: ../../extensions/db_status.php:311 -msgid "Please check the SQL file for to know the kind of key needed." -msgstr "" - -#: ../../extensions/db_status.php:315 -#, php-format +#: ../../extensions/module_groups.php:386 msgid "" -"Unsuccessful the field %s in the table %s must be setted the default value " -"as %s." +"This table shows in columns the modules group and in rows agents group. The " +"cell shows all modules" msgstr "" +"Эта таблица отображает в колонках модулеи группы и в строках агенты группы. " +"В ячейках отображаются все модули" -#: ../../extensions/db_status.php:318 -msgid "" -"Please check the SQL file for to know the kind of default value needed." -msgstr "" +#: ../../extensions/module_groups.php:387 +msgid "There are no defined groups or module groups" +msgstr "здесь нет определенных групп или модулей групп" -#: ../../extensions/db_status.php:322 -#, php-format -msgid "" -"Unsuccessful the field %s in the table %s must be setted as defined in the " -"SQL file." -msgstr "" +#: ../../extensions/module_groups.php:407 ../../godmode/menu.php:90 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:330 +#: ../../operation/tree.php:84 +msgid "Module groups" +msgstr "Модуль групп" -#: ../../extensions/db_status.php:325 -msgid "" -"Please check the SQL file for to know the kind of extra config needed." -msgstr "" - -#: ../../extensions/db_status.php:336 -msgid "Successful all the tables have the correct fields" -msgstr "" - -#: ../../extensions/files_repo.php:91 -msgid "Extension not installed" -msgstr "Расширение не установлено" - -#: ../../extensions/files_repo.php:116 ../../extensions/files_repo.php:218 -msgid "Files repository manager" -msgstr "Файлы менеджер хранилище" - -#: ../../extensions/files_repo.php:133 ../../include/functions.php:2147 -#: ../../include/functions.php:2150 -msgid "The file exceeds the maximum size" -msgstr "" - -#: ../../extensions/files_repo.php:200 ../../extensions/files_repo.php:216 -msgid "Files repository" -msgstr "" - -#: ../../extensions/resource_exportation.php:55 -#: ../../extensions/resource_exportation.php:334 -msgid "Resource exportation" -msgstr "Ресурс экспортирования" - -#: ../../extensions/resource_exportation.php:337 -msgid "" -"This extension makes exportation of resource template more easy. Here you " -"can export as a resource template in Pandora FMS 3.x format (.ptr). " -msgstr "" -"Это экспортирование облегчает экспортирование шаблонов ресурсов. Здесь вы " -"можете экспортировать в виде ресурса шаблона в Pandora FMS 3.x формате " -"(.ptr). " - -#: ../../extensions/insert_data.php:54 +#: ../../extensions/insert_data.php:58 msgid "Insert data" msgstr "Вставить данные" -#: ../../extensions/insert_data.php:83 +#: ../../extensions/insert_data.php:86 msgid "You haven't privileges for insert data in the agent." msgstr "Вы не имеете привилегий для вставки данных в агенте." -#: ../../extensions/insert_data.php:119 +#: ../../extensions/insert_data.php:122 #, php-format msgid "Can't save agent (%s), module (%s) data xml." msgstr "Нельзя сохранить агента (%s), модуль (%s) данных xml." -#: ../../extensions/insert_data.php:126 +#: ../../extensions/insert_data.php:131 #, php-format msgid "Save agent (%s), module (%s) data xml." msgstr "Сихранить агента (%s), модуль (%s) данных xml." -#: ../../extensions/insert_data.php:135 +#: ../../extensions/insert_data.php:142 #, php-format msgid "" "Please check that the directory \"%s\" is writeable by the apache user. <br " @@ -18843,7672 +29821,1237 @@ msgstr "" "date;value<newline>date;value<newline>... Дата в CSV в формате " "Y/m/d H:i:s." -#: ../../extensions/insert_data.php:241 +#: ../../extensions/insert_data.php:270 msgid "Insert Data" msgstr "Вставить данные" -#: ../../include/functions_tags.php:585 -msgid "Click here to open a popup window with URL tag" -msgstr "Нажмите здесь, чтобы открыть всплывающее окно с URL тегом" +#: ../../extensions/realtime_graphs.php:53 +#: ../../extensions/realtime_graphs.php:250 +msgid "Realtime graphs" +msgstr "Графики в реальном времени" -#: ../../include/functions_alerts.php:549 -msgid "Max and min" -msgstr "Макс и мин" - -#: ../../include/functions_alerts.php:552 -msgid "Equal to" -msgstr "РавняетсяНеизвестный статус" - -#: ../../include/functions_alerts.php:553 -msgid "Not equal to" -msgstr "Не равно" - -#: ../../include/functions_alerts.php:556 -msgid "Unknown status" -msgstr "Неизвестный статус" - -#: ../../include/functions_alerts.php:557 -msgid "On Change" -msgstr "При изменении" - -#: ../../include/functions_api.php:77 -msgid "No set or get or help operation." -msgstr "Нет установлены или не получены или не помогли операции." - -#: ../../include/functions_api.php:81 -msgid "This operation does not exist." -msgstr "Данная операция не существует." - -#: ../../include/functions_api.php:85 -msgid "Id does not exist in BD." -msgstr "Id не существует в БД." - -#: ../../include/functions_api.php:906 -msgid "Does not exist agent with this name." -msgstr "Нет агента с таким именем." - -#: ../../include/functions_api.php:908 -msgid "Does not exist module with this name." -msgstr "" - -#: ../../include/functions_api.php:1275 -msgid "Correct Delete" -msgstr "Правильное удаление" - -#: ../../include/functions_api.php:1788 -msgid "Error in creation network module. Agent name doesn't exist." -msgstr "Ошибка в создании модуля сети. Имя агента не существует." - -#: ../../include/functions_api.php:1794 -msgid "" -"Error in creation network module. Id_module_type is not correct for network " -"modules." -msgstr "" -"Ошибка в создани модуля сети. Id_модуль_тип не подходит для сетевых модулей." - -#: ../../include/functions_api.php:1849 -msgid "Error in creation network module." -msgstr "Ошибка при создании сетевого модуля." - -#: ../../include/functions_api.php:1882 -msgid "Error updating network module. Module name cannot be left blank." -msgstr "" -"Ошибка при обновлении сетевого модуля. Имя модуля не может быть пустым." - -#: ../../include/functions_api.php:1890 -msgid "Error updating network module. Id_module doesn't exist." -msgstr "Ошибка при обновлении сетевой модуль. Id_модуль не существует." - -#: ../../include/functions_api.php:1905 -msgid "Error updating network module. Id_module exists in the new agent." -msgstr "" -"Ошибка при обновлении сетевого модуля. Id_модуль существует в новом агенте." - -#: ../../include/functions_api.php:1912 -msgid "Error updating network module. Id_agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:1962 -msgid "Network module updated." -msgstr "Сетевой модуль обновлен." - -#: ../../include/functions_api.php:1991 -msgid "Error in creation plugin module. Id_plugin cannot be left blank." -msgstr "Ошибка при создании плагина модуля. Id_плагин не может быть пустым." - -#: ../../include/functions_api.php:1998 -msgid "Error in creation plugin module. Agent name doesn't exist." -msgstr "Ошибка при создании плагина модуля. Имя агента не существует." - -#: ../../include/functions_api.php:2058 -msgid "Error in creation plugin module." -msgstr "Ошибка в создании плагина модуля." - -#: ../../include/functions_api.php:2089 -msgid "Error updating plugin module. Id_module cannot be left blank." -msgstr "" -"Ошибка при обновлении плагина модуля. Id_модуль не может быть пустым." - -#: ../../include/functions_api.php:2096 -msgid "Error updating plugin module. Id_module doesn't exist." -msgstr "Ошибка при обновлении плагина модуля. Id_модуль не существует." - -#: ../../include/functions_api.php:2108 -msgid "Error updating plugin module. Id_module exists in the new agent." -msgstr "" -"Ошибка при обновлении плагина модуля. Id_модуль существует в новом агенте." - -#: ../../include/functions_api.php:2115 -msgid "Error updating plugin module. Id_agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:2174 -msgid "Plugin module updated." -msgstr "Модуль плагина обновлен." - -#: ../../include/functions_api.php:2203 -msgid "Error in creation data module. Module_name cannot be left blank." -msgstr "Ошибка при создании данных модуля. Модуль_имя не должно быть пустым." - -#: ../../include/functions_api.php:2210 -msgid "Error in creation data module. Agent name doesn't exist." -msgstr "Ошибка при создании данных модуля. Имя агента не существует." - -#: ../../include/functions_api.php:2261 ../../include/functions_api.php:2323 -msgid "Error in creation data module." -msgstr "Ошибка при создании данных модуля." - -#: ../../include/functions_api.php:2293 -msgid "Error in creation synthetic module. Module_name cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:2300 -msgid "Error in creation synthetic module. Agent name doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:2382 -msgid "Synthetic module created ID: " -msgstr "" - -#: ../../include/functions_api.php:2414 -msgid "Error updating data module. Id_module cannot be left blank." -msgstr "" -"Ошибка при обновлении данных модуля. Id_модуль не должно быть пустым." - -#: ../../include/functions_api.php:2421 -msgid "Error updating data module. Id_module doesn't exist." -msgstr "Ошибка при обновлении данных модуля. Id_модуль не существует." - -#: ../../include/functions_api.php:2433 -msgid "Error updating data module. Id_module exists in the new agent." -msgstr "" -"Ошибка при обновлении данных модуля. Id_модуль существует в новом агенте." - -#: ../../include/functions_api.php:2440 -msgid "Error updating data module. Id_agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:2486 -msgid "Data module updated." -msgstr "Данные модуля обновлены." - -#: ../../include/functions_api.php:2523 -msgid "Error in creation SNMP module. Module_name cannot be left blank." -msgstr "Ошибка в создании SNMP модуля. Модуль_имя не может быть пустым." - -#: ../../include/functions_api.php:2528 -msgid "" -"Error in creation SNMP module. Invalid id_module_type for a SNMP module." -msgstr "" -"Ошибка в создании SNMP модуля. Недействительный id_модуль_тип для SNMP " -"модуля." - -#: ../../include/functions_api.php:2535 -msgid "Error in creation SNMP module. Agent name doesn't exist." -msgstr "Ошибка в создании SNMP модуля. Имя агента не существует." - -#: ../../include/functions_api.php:2550 ../../include/functions_api.php:2713 -#: ../../include/functions_api.php:5164 -msgid "" -"Error in creation SNMP module. snmp3_priv_method doesn't exist. Set it to " -"'AES' or 'DES'. " -msgstr "" -"Ошибка в создании SNMP модуля. snmp3_priv_method не существует. Установить " -"его в 'AES' или 'DES'. " - -#: ../../include/functions_api.php:2555 ../../include/functions_api.php:2722 -#: ../../include/functions_api.php:5169 -msgid "" -"Error in creation SNMP module. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" -"Ошибка в создании SNMP модуля. snmp3_sec_level не существует. Установить " -"его в 'authNoPriv' или 'authPriv' или 'noAuthNoPriv'. " - -#: ../../include/functions_api.php:2560 ../../include/functions_api.php:2728 -#: ../../include/functions_api.php:5174 -msgid "" -"Error in creation SNMP module. snmp3_auth_method doesn't exist. Set it to " -"'MD5' or 'SHA'. " -msgstr "" -"Ошибка в создании SNMP модуля. snmp3_auth_method не существует. Установить " -"его в 'MD5' или 'SHA'. " - -#: ../../include/functions_api.php:2644 -msgid "Error in creation SNMP module." -msgstr "Ошибка в создании SNMP модуля." - -#: ../../include/functions_api.php:2677 -msgid "Error updating SNMP module. Id_module cannot be left blank." -msgstr "Ошибка в создании SNMP модуля. Id_модуль не может быть пустым." - -#: ../../include/functions_api.php:2684 -msgid "Error updating SNMP module. Id_module doesn't exist." -msgstr "Ошибка в создании SNMP модуля. Id_модуль не существует." - -#: ../../include/functions_api.php:2696 -msgid "Error updating SNMP module. Id_module exists in the new agent." -msgstr "Ошибка в создании SNMP модуля. Id_модуль существует в новом агенте." - -#: ../../include/functions_api.php:2703 -msgid "Error updating snmp module. Id_agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:2813 -msgid "SNMP module updated." -msgstr "Модуль SNMP обновлен." - -#: ../../include/functions_api.php:2841 -msgid "" -"Error creating network component. Network component name cannot be left " -"blank." -msgstr "" -"Ошибка при создании компонент сети. Имя сетевого компонента не может быть " -"пустым." - -#: ../../include/functions_api.php:2846 -msgid "" -"Error creating network component. Incorrect value for Network component type " -"field." -msgstr "" -"Ошибка при создании сетевого компонента. Неверное значение для сетевого " -"компонента типа сети." - -#: ../../include/functions_api.php:2851 -msgid "" -"Error creating network component. Network component group cannot be left " -"blank." -msgstr "" -"Ошибка при создании сетевого компонента. Группа сетевого компонента не может " -"быть незаполненной." - -#: ../../include/functions_api.php:2887 -msgid "" -"Error creating network component. This network component already exists." -msgstr "" -"Ошибка при создании сетевого компонента. Данный сетевой компонент уже " -"существует." - -#: ../../include/functions_api.php:2926 -msgid "" -"Error creating plugin component. Plugin component name cannot be left blank." -msgstr "" -"Ошибка при создании плагина компонента. Имя плагина компонента не может быть " -"незаполненным." - -#: ../../include/functions_api.php:2931 -msgid "Error creating plugin component. Incorrect value for Id plugin." -msgstr "" -"Ошибка при создании плагина компонента. Неврное значение для Id плагина." - -#: ../../include/functions_api.php:2936 -msgid "" -"Error creating plugin component. Plugin component group cannot be left blank." -msgstr "" -"Ошибка при создании плагина компонента. Плагин компонента группы не может " -"быть пустым." - -#: ../../include/functions_api.php:2976 -msgid "" -"Error creating plugin component. This plugin component already exists." -msgstr "" -"Ошибка при создании плагина компонента. Данный плагин компонента уже " -"существует." - -#: ../../include/functions_api.php:3014 -msgid "" -"Error creating SNMP component. SNMP component name cannot be left blank." -msgstr "" -"Ошибка при создании SNMP компонента. Имя SNMP компонента не может быть " -"пустым." - -#: ../../include/functions_api.php:3019 -msgid "" -"Error creating SNMP component. Incorrect value for Snmp component type field." -msgstr "" -"Ошибка при создании SNMP компонента. Неверное значение для типа поля Snmp " -"компонента." - -#: ../../include/functions_api.php:3024 -msgid "" -"Error creating SNMP component. Snmp component group cannot be left blank." -msgstr "" -"Ошибка при создании SNMP компонента. Snmp компонент группы не может быть " -"пустым." - -#: ../../include/functions_api.php:3036 -msgid "" -"Error creating SNMP component. snmp3_priv_method doesn't exist. Set it to " -"'AES' or 'DES'. " -msgstr "" -"Ошибка при создании Snmp компонента. snmp3_priv_method не существует. " -"Установите это в 'AES' или 'DES'. " - -#: ../../include/functions_api.php:3045 -msgid "" -"Error creating SNMP component. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" -"Ошибка при создании Snmp компонента. snmp3_sec_level не существует. " -"Установите это в 'authNoPriv' или 'authPriv' или 'noAuthNoPriv'. " - -#: ../../include/functions_api.php:3051 -msgid "" -"Error creating SNMP component. snmp3_auth_method doesn't exist. Set it to " -"'MD5' or 'SHA'. " -msgstr "" -"Ошибка при создании SNMP компонента. snmp3_auth_method не существует. " -"Установите это в 'MD5' или 'SHA'. " - -#: ../../include/functions_api.php:3126 -msgid "Error creating SNMP component. This SNMP component already exists." -msgstr "" -"Ошибка при создании SNMP компонента. Данный SNMP компонент уже существует." - -#: ../../include/functions_api.php:3163 -msgid "" -"Error creating local component. Local component name cannot be left blank." -msgstr "" -"Ошибка при создании местного компонента. Имя местного компонента не может " -"быть пустым." - -#: ../../include/functions_api.php:3169 -msgid "" -"Error creating local component. Local component group cannot be left blank." -msgstr "" -"Ошибка при создании местного компонента. Местный компонент группы не может " -"быть пустым." - -#: ../../include/functions_api.php:3193 -msgid "Error creating local component." -msgstr "Ошибка при создании местного компонента." - -#: ../../include/functions_api.php:3199 -msgid "Error creating local component. This local component already exists." -msgstr "" -"Ошибка при создании местного компонента. Данный местный компонент уже " -"существует." - -#: ../../include/functions_api.php:3232 -msgid "" -"Error getting module value from all agents. Module name cannot be left blank." -msgstr "" -"Ошибка при получении значения модуля из всех агентов. Имя модуля не может " -"быть пустым." - -#: ../../include/functions_api.php:3240 -msgid "" -"Error getting module value from all agents. Module name doesn't exist." -msgstr "" -"Ошибка при получении значения модуля из всех агентов. Имя модуля не " -"существует." - -#: ../../include/functions_api.php:3285 -msgid "Error creating alert template. Template name cannot be left blank." -msgstr "" -"Ошибка при создании шаблона оповещения. Имя шаблона не может быть пустым." - -#: ../../include/functions_api.php:3357 -msgid "Error creating alert template." -msgstr "Ошибка при создании шаблона оповещения." - -#: ../../include/functions_api.php:3388 -msgid "Error updating alert template. Id_template cannot be left blank." -msgstr "" -"Ошибка при создании шаблона оповещения. Id_шаблона не может быть пустым." - -#: ../../include/functions_api.php:3396 -msgid "Error updating alert template. Id_template doesn't exist." -msgstr "Ошибка при обновлении шаблона оповещения. Id_шаблона не существует." - -#: ../../include/functions_api.php:3422 -msgid "Error updating alert template." -msgstr "Ошибка при обновлении шаблона оповещения." - -#: ../../include/functions_api.php:3427 -msgid "Correct updating of alert template" -msgstr "Правильное обновление шаблона оповещения" - -#: ../../include/functions_api.php:3451 -msgid "Error deleting alert template. Id_template cannot be left blank." -msgstr "" -"Ошибка при удалении шаблона оповещения. Id_шаблона не может быть пустым." - -#: ../../include/functions_api.php:3460 -msgid "Error deleting alert template." -msgstr "Ошибка при удалении шаблона оповещения." - -#: ../../include/functions_api.php:3464 -msgid "Correct deleting of alert template." -msgstr "Правильное удаление шаблона оповещения." - -#: ../../include/functions_api.php:3501 -msgid "Error getting all alert templates." -msgstr "Ошибка при получении всех шаблонов оповещений." - -#: ../../include/functions_api.php:3533 -msgid "Error getting alert template. Id_template doesn't exist." -msgstr "Ошибка при получении шаблона оповещения. Id_шаблона не существует." - -#: ../../include/functions_api.php:3550 -msgid "Error getting alert template." -msgstr "Ошибка при получении шаблона оповещения." - -#: ../../include/functions_api.php:3589 -msgid "Error getting module groups." -msgstr "Ошибка получения групп модуля." - -#: ../../include/functions_api.php:3628 -msgid "Error getting plugins." -msgstr "Ошибка при получении плагинов." - -#: ../../include/functions_api.php:3651 -msgid "Error creating module from network component. Agent doesn't exist." -msgstr "" -"Ошибка при создании модуля из сетевого компонента. Агент не существует." - -#: ../../include/functions_api.php:3658 -msgid "" -"Error creating module from network component. Network component doesn't " -"exists." -msgstr "" -"Ошибка при создании модуля из сетевого компонента. Сетевой компонент не " -"существует." - -#: ../../include/functions_api.php:3676 -msgid "Error creating module from network component. Error creating module." -msgstr "" -"Ошибка при создании модуля из сетевого компонента. Ошибка создания модуля." - -#: ../../include/functions_api.php:3703 -msgid "Error assigning module to template. Id_template cannot be left blank." -msgstr "Ошибка назначения модуля к шаблону. Id_шаблона не может быть пустым." - -#: ../../include/functions_api.php:3709 -msgid "Error assigning module to template. Id_module cannot be left blank." -msgstr "Ошибка назначения модуля к шаблону. Id_модуля не может быть пустым." - -#: ../../include/functions_api.php:3715 -msgid "Error assigning module to template. Id_agent cannot be left blank." -msgstr "Ошибка назначения модуля к шаблону. Id_агента не может быть пустым." - -#: ../../include/functions_api.php:3723 -msgid "Error assigning module to template. Id_template doensn't exists." -msgstr "Ошибка назначения модуля к шаблону. Id_шаблона не существует." - -#: ../../include/functions_api.php:3733 -msgid "Error assigning module to template. Id_agent doesn't exist." -msgstr "Ошибка назначения модуля к шаблону. Id_агента не существует." - -#: ../../include/functions_api.php:3740 -msgid "Error assigning module to template. Id_module doesn't exist." -msgstr "Ошибка назначения модуля к шаблону. Id_модуля не существует." - -#: ../../include/functions_api.php:3748 -msgid "Error assigning module to template." -msgstr "Ошибка назначения модуля к шаблону." - -#: ../../include/functions_api.php:3774 -msgid "" -"Error deleting module template. Id_module_template cannot be left blank." -msgstr "" -"Ошибка удаления модуля шаблона. Id_модуля_шаблона не может быть пустым." - -#: ../../include/functions_api.php:3781 -msgid "Error deleting module template. Id_module_template doesn't exist." -msgstr "Ошибка удаления модуля шаблона. Id_модуля_шаблона не существует." - -#: ../../include/functions_api.php:3789 ../../include/functions_api.php:3848 -msgid "Error deleting module template." -msgstr "Ошибка удаления модуля шаблона." - -#: ../../include/functions_api.php:3792 ../../include/functions_api.php:3851 -msgid "Correct deleting of module template." -msgstr "Правильное удаление модуля шаблона." - -#: ../../include/functions_api.php:3928 -msgid "Error validate all alerts. Failed " -msgstr "Ошибка при подтверждении всех оповещений. Сбой " - -#: ../../include/functions_api.php:3931 -msgid "Correct validating of all alerts." -msgstr "Верное утверждение всех оповещений." - -#: ../../include/functions_api.php:3958 -msgid "Error validating all alert policies." -msgstr "Ошибка при подтверждении всех оповещений политики." - -#: ../../include/functions_api.php:4016 -msgid "Error validate all policy alerts. Failed " -msgstr "Ошибка при подтверждении всех оповещений политики. Сбой " - -#: ../../include/functions_api.php:4019 -msgid "Correct validating of all policy alerts." -msgstr "Правильное подтверждение всех оповещений политики." - -#: ../../include/functions_api.php:4042 -msgid "Error stopping downtime. Id_downtime cannot be left blank." -msgstr "Ошибка при остановке простоя. Id_простой не может быть пустым." - -#: ../../include/functions_api.php:4058 -msgid "Downtime stopped." -msgstr "Простой остановлен." - -#: ../../include/functions_api.php:4373 -msgid "the selected modules do not exist or do not belong to the intended agents: " -msgstr "" - -#: ../../include/functions_api.php:4375 -msgid "and this agents are generate problems: " -msgstr "" - -#: ../../include/functions_api.php:4377 -msgid "and this agents with ids are don't exist: " -msgstr "" - -#: ../../include/functions_api.php:4404 -msgid "Error adding agent to policy. Id_policy cannot be left blank." -msgstr "Ошибка добавления агента политики. Id_политики не может быть пустым." - -#: ../../include/functions_api.php:4409 -msgid "Error adding agent to policy. Id_agent cannot be left blank." -msgstr "Ошибка добавления агента политики. Id_агент не может быть пустым." - -#: ../../include/functions_api.php:4417 -msgid "Error adding agent to policy. Id_agent doesn't exist." -msgstr "Ошибка добавления агента политики. Id_политики не существует." - -#: ../../include/functions_api.php:4425 -msgid "Error adding agent to policy." -msgstr "Ошибка добавления агента политики." - -#: ../../include/functions_api.php:4433 -msgid "Error adding agent to policy. The agent is already in the policy." -msgstr "" -"Ошибка добавления агента политики. Данный агент уже находится в политике." - -#: ../../include/functions_api.php:4468 -msgid "Error adding data module to policy. Id_policy cannot be left blank." -msgstr "" -"Ошибка добавления данных модуля к политики. Id_политики не может быть пустым." - -#: ../../include/functions_api.php:4473 -msgid "Error adding data module to policy. Module_name cannot be left blank." -msgstr "" -"Ошибка добавления данных модуля к политики. Модуль_имя не может быть пустым." - -#: ../../include/functions_api.php:4481 -msgid "Error adding data module to policy." -msgstr "Ошибка добавления данных модуля к политики." - -#: ../../include/functions_api.php:4517 -msgid "" -"Error adding data module to policy. The module is already in the policy." -msgstr "" -"Ошибка добавления данных модуля к политики. Данный модуль уже существует в " -"политике." - -#: ../../include/functions_api.php:4557 -msgid "Error updating data module in policy. Id_policy cannot be left blank." -msgstr "" -"Ошибка обновления данных модуля в политике. Id_политики не может быть " -"пустым." - -#: ../../include/functions_api.php:4562 -msgid "" -"Error updating data module in policy. Id_policy_module cannot be left blank." -msgstr "" -"Ошибка обновления данных модуля в политике. Id_политики_модуля не может " -"быть пустым." - -#: ../../include/functions_api.php:4570 -msgid "Error updating data module in policy. Module doesn't exist." -msgstr "Ошибка обновления данных модуля в политике. Модуль не существует." - -#: ../../include/functions_api.php:4576 -msgid "" -"Error updating data module in policy. Module type is not network type." -msgstr "" - -#: ../../include/functions_api.php:4605 -msgid "Data policy module updated." -msgstr "Данные политики модуля обновлены." - -#: ../../include/functions_api.php:4634 -msgid "" -"Error adding network module to policy. Id_policy cannot be left blank." -msgstr "" -"Ошибка добавления сетевого модуля к политики. Id_политики не может быть " -"пустым." - -#: ../../include/functions_api.php:4640 -msgid "" -"Error adding network module to policy. Module_name cannot be left blank." -msgstr "" -"Ошибка добавления сетевого модуля к политики. Модуля_имя не может быть " -"пустым." - -#: ../../include/functions_api.php:4646 -msgid "" -"Error adding network module to policy. Id_module_type is not correct for " -"network modules." -msgstr "" -"Ошибка добавления сетевого модуля к политики. Неверный Id_модуль_тип для " -"сетевых модулей." - -#: ../../include/functions_api.php:4656 -msgid "Error adding network module to policy." -msgstr "Ошибка добавления сетевого модуля к политики." - -#: ../../include/functions_api.php:4694 -msgid "" -"Error adding network module to policy. The module is already in the policy." -msgstr "" -"Ошибка добавления сетевого модуля к политики. Модуль уже находится в " -"политике." - -#: ../../include/functions_api.php:4732 -msgid "" -"Error updating network module in policy. Id_policy cannot be left blank." -msgstr "" -"Ошибка обновления сетевого модуля в политике. Id_политики не может быть " -"пустым." - -#: ../../include/functions_api.php:4738 -msgid "" -"Error updating network module in policy. Id_policy_module cannot be left " -"blank." -msgstr "" -"Ошибка обновления сетевого модуля в политике. Id_политики_модуль не может " -"быть пустым." - -#: ../../include/functions_api.php:4747 -msgid "Error updating network module in policy. Module doesn't exist." -msgstr "Ошибка обновления сетевого модуля в политике. Модуль не существует." - -#: ../../include/functions_api.php:4753 -msgid "" -"Error updating network module in policy. Module type is not network type." -msgstr "" -"Ошибка обновления сетевого модуля в политике. Тип модуля - не сетевой тип." - -#: ../../include/functions_api.php:4779 -msgid "Network policy module updated." -msgstr "Сетевой модуль политики обновлен." - -#: ../../include/functions_api.php:4806 -msgid "Error adding plugin module to policy. Id_policy cannot be left blank." -msgstr "" -"Ошибка добавления плагина модуля к политикие Id_политики не может быть " -"пустым." - -#: ../../include/functions_api.php:4811 -msgid "" -"Error adding plugin module to policy. Module_name cannot be left blank." -msgstr "" -"Ошибка добавления плагина модуля к политикие Модуль_имя не может быть " -"пустым." - -#: ../../include/functions_api.php:4816 -msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." -msgstr "" -"Ошибка добавления плагина модуля к политике. Id_плагин не может быть пустым." - -#: ../../include/functions_api.php:4824 -msgid "Error adding plugin module to policy." -msgstr "Ошибка добавления плагина модуля к политике." - -#: ../../include/functions_api.php:4867 -msgid "" -"Error adding plugin module to policy. The module is already in the policy." -msgstr "" -"Ошибка добавления плагина модуля к политике. Модуль уже находится в политике." - -#: ../../include/functions_api.php:4906 -msgid "" -"Error updating plugin module in policy. Id_policy cannot be left blank." -msgstr "" -"Ошибка обновления плагина модуля в политике. Id_политики не может быть " -"пустым." - -#: ../../include/functions_api.php:4912 -msgid "" -"Error updating plugin module in policy. Id_policy_module cannot be left " -"blank." -msgstr "" -"Ошибка обновления плагина модуля в политике. Id_политики_модуля не может " -"быть пустым." - -#: ../../include/functions_api.php:4921 -msgid "Error updating plugin module in policy. Module doesn't exist." -msgstr "Ошибка обновления плагина модуля в политике. Модуль не существует." - -#: ../../include/functions_api.php:4927 -msgid "" -"Error updating plugin module in policy. Module type is not network type." -msgstr "" -"Ошибка обновления плагина модуля в политике. Тип модуля - не сетевой тип." - -#: ../../include/functions_api.php:4959 -msgid "Plugin policy module updated." -msgstr "Плагин модуля политики обновлен." - -#: ../../include/functions_api.php:5134 -msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." -msgstr "" -"Ошибка добавления SNMP модуля кполитике. Id_политики не может быть пустым." - -#: ../../include/functions_api.php:5139 -msgid "Error adding SNMP module to policy. Module_name cannot be left blank." -msgstr "" -"Ошибка добавления SNMP модуля кполитике. Модуль_имя не может быть пустым." - -#: ../../include/functions_api.php:5147 -msgid "Error adding SNMP module to policy." -msgstr "Ошибка добавления SNMP модуля к политике." - -#: ../../include/functions_api.php:5152 -msgid "" -"Error adding SNMP module to policy. Id_module_type is not correct for SNMP " -"modules." -msgstr "" -"Ошибка добавления SNMP модуля кполитике. Id_модуль_тип неверен для SNMP " -"модулей." - -#: ../../include/functions_api.php:5246 -msgid "" -"Error adding SNMP module to policy. The module is already in the policy." -msgstr "" -"Ошибка добавления SNMP модуля к политике. Модуль уже находится в политике." - -#: ../../include/functions_api.php:5285 -msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." -msgstr "" -"Ошибка обновления SNMP модуля в политике. Id_политики не может быть пустым." - -#: ../../include/functions_api.php:5290 -msgid "" -"Error updating SNMP module in policy. Id_policy_module cannot be left blank." -msgstr "" -"Ошибка обновления SNMP модуля в политике. Id_политики_модуль не может быть " -"пустым." - -#: ../../include/functions_api.php:5298 -msgid "Error updating SNMP module in policy. Module doesn't exist." -msgstr "Ошибка обновления SNMP модуля в политике. Модуль не существует." - -#: ../../include/functions_api.php:5303 -msgid "Error updating SNMP module in policy. Module type is not SNMP type." -msgstr "Ошибка обновления SNMP модуля в политике. Тип модуля - не SNMP тип." - -#: ../../include/functions_api.php:5313 -msgid "" -"Error updating SNMP module. snmp3_priv_method doesn't exist. Set it to " -"'AES' or 'DES'. " -msgstr "" -"Ошибка обновления SNMP модуля. snmp3_priv_method не существует. Установите " -"это к 'AES' или 'DES'. " - -#: ../../include/functions_api.php:5323 -msgid "" -"Error updating SNMP module. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" -"Ошибка обновления SNMP модуля. snmp3_sec_level не существует. Установите это " -"в 'authNoPriv' или 'authPriv' или 'noAuthNoPriv'. " - -#: ../../include/functions_api.php:5330 -msgid "" -"Error updating SNMP module. snmp3_auth_method doesn't exist. Set it to " -"'MD5' or 'SHA'. " -msgstr "" -"Ошибка обновления SNMP модуля. snmp3_auth_method не существует. Установите " -"это в 'MD5' или 'SHA'. " - -#: ../../include/functions_api.php:5370 -msgid "SNMP policy module updated." -msgstr "SNMP модуль политики обновлен." - -#: ../../include/functions_api.php:5393 -msgid "Error applying policy. Id_policy cannot be left blank." -msgstr "Ошибка применения политики. Id_политики не может быть пустым." - -#: ../../include/functions_api.php:5406 ../../include/functions_api.php:5431 -msgid "Error applying policy." -msgstr "Ошибка применения политики." - -#: ../../include/functions_api.php:5418 -msgid "Error applying policy. This policy is already pending to apply." -msgstr "" -"Ошибка применения политики. Политика уже находится в режиме ожидания для " -"применения." - -#: ../../include/functions_api.php:5476 -msgid "Error applying all policies." -msgstr "Ошибка применения всех политик." - -#: ../../include/functions_api.php:5528 -msgid "Error in group creation. Group_name cannot be left blank." -msgstr "Ошибка в создании группы. Группа_имя не может быть пустым." - -#: ../../include/functions_api.php:5534 -msgid "Error in group creation. Icon_name cannot be left blank." -msgstr "Ошибка в создании группы. Значок_имя не может быть пустым." - -#: ../../include/functions_api.php:5547 ../../include/functions_api.php:5684 -msgid "Error in group creation. Id_parent_group doesn't exist." -msgstr "Ошибка в создании группы. Id_родитель_группа не может быть пустым." - -#: ../../include/functions_api.php:5575 -msgid "Error in group creation." -msgstr "Ошибка в создании группы." - -#: ../../include/functions_api.php:5672 -msgid "Error in netflow filter creation. Filter name cannot be left blank." -msgstr "" -"Ошибка в создании сетевого фильтра. Имя фильтра не может быть пустым." - -#: ../../include/functions_api.php:5677 -msgid "Error in netflow filter creation. Group id cannot be left blank." -msgstr "Ошибка в создании сетевого фильтра. Id группы не может быть пустым." - -#: ../../include/functions_api.php:5690 -msgid "Error in netflow filter creation. Filter cannot be left blank." -msgstr "Ошибка в создании сетевого фильтра. Фильтр не может быть пустым." - -#: ../../include/functions_api.php:5695 -msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." -msgstr "" -"Ошибка в создании сетевого фильтра. Совокупность _по не может быть пустым." - -#: ../../include/functions_api.php:5700 -msgid "Error in netflow filter creation. Output_format cannot be left blank." -msgstr "" -"Ошибка в создании сетевого фильтра. Выработка_формат не может быть пустым." - -#: ../../include/functions_api.php:5718 -msgid "Error in netflow filter creation." -msgstr "Ошибка в создании сетевого фильтра." - -#: ../../include/functions_api.php:5857 -msgid "Create user." -msgstr "Создать пользователя." - -#: ../../include/functions_api.php:5896 -msgid "Error updating user. Id_user cannot be left blank." -msgstr "" -"Ошибка обновления пользователя. Id_пользователя не может быть пустым." - -#: ../../include/functions_api.php:5904 -msgid "Error updating user. Id_user doesn't exist." -msgstr "Ошибка обновления пользователя. Id_пользователя не существует." - -#: ../../include/functions_api.php:5920 -msgid "Error updating user. Password info incorrect." -msgstr "Ошибка обновления пользователя. Неправильная информация о пароле." - -#: ../../include/functions_api.php:5928 -msgid "Updated user." -msgstr "Обновить пользователя." - -#: ../../include/functions_api.php:5959 -msgid "Error enable/disable user. Id_user cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5966 -msgid "Error enable/disable user. Enable/disable value cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:5972 -msgid "Error enable/disable user. The user doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:5981 -msgid "Error in user enabling/disabling." -msgstr "Ошибка в отключении/подключении пользователя." - -#: ../../include/functions_api.php:5986 -msgid "Enabled user." -msgstr "Включить пользователя." - -#: ../../include/functions_api.php:5990 -msgid "Disabled user." -msgstr "Отключить пользователя." - -#: ../../include/functions_api.php:6845 -#: ../../godmode/agentes/configurar_agente.php:1500 -msgid "Save by Pandora Console" -msgstr "Сохранено на Pandora Console" - -#: ../../include/functions_api.php:6846 -#: ../../godmode/agentes/configurar_agente.php:1515 -msgid "Update by Pandora Console" -msgstr "Обновлено Pandora Console" - -#: ../../include/functions_api.php:6847 -#: ../../godmode/agentes/configurar_agente.php:1528 -msgid "Insert by Pandora Console" -msgstr "Вставлено Pandora Console" - -#: ../../include/functions_api.php:7456 -msgid "Delete user." -msgstr "Удалить пользователя." - -#: ../../include/functions_api.php:7485 -msgid "Add user profile." -msgstr "Добавить профиль пользователя." - -#: ../../include/functions_api.php:7518 -msgid "Delete user profile." -msgstr "Удалить профиль пользователя." - -#: ../../include/functions_api.php:7616 -msgid "Correct module disable" -msgstr "Правильное отключение модуля" - -#: ../../include/functions_api.php:7619 -msgid "Error disabling module" -msgstr "Ошибка отключения модуля" - -#: ../../include/functions_api.php:7645 -msgid "Correct module enable" -msgstr "Правильное подключение модуля" - -#: ../../include/functions_api.php:7648 -msgid "Error enabling module" -msgstr "Ошибка подключения модуля" - -#: ../../include/functions_api.php:8187 -msgid "Error adding event comment." -msgstr "" - -#: ../../include/functions_api.php:8426 -msgid "Error enable/disable agent. Id_agent cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:8433 -msgid "" -"Error enable/disable agent. Enable/disable value cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:8439 -msgid "Error enable/disable agent. The agent doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:8450 -msgid "Error in agent enabling/disabling." -msgstr "Ошибка агента включения/отключения." - -#: ../../include/functions_api.php:8456 -msgid "Enabled agent." -msgstr "Включенный агент." - -#: ../../include/functions_api.php:8461 -msgid "Disabled agent." -msgstr "Отключенный агент." - -#: ../../include/functions_api.php:8557 -msgid "Error getting special_days." -msgstr "" - -#: ../../include/functions_api.php:8592 -msgid "Error creating special day. Specified day already exists." -msgstr "" - -#: ../../include/functions_api.php:8597 -msgid "Error creating special day. Invalid date format." -msgstr "Ошибка при создании особого дня. Недопустимый формат даты." - -#: ../../include/functions_api.php:8609 -msgid "Error in creation special day." -msgstr "Ошибка при создании особого дня." - -#: ../../include/functions_api.php:8642 -msgid "Error updating special day. Id cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:8649 -msgid "Error updating special day. Id doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:8654 -msgid "Error updating special day. Invalid date format." -msgstr "" - -#: ../../include/functions_api.php:8688 -msgid "Error deleting special day. Id cannot be left blank." -msgstr "" - -#: ../../include/functions_api.php:8695 -msgid "Error deleting special day. Id doesn't exist." -msgstr "" - -#: ../../include/functions_api.php:8702 -msgid "Error in deletion special day." -msgstr "" - -#: ../../include/functions_graph.php:691 -#: ../../include/functions_graph.php:3520 -#: ../../include/functions_reports.php:556 -msgid "Avg. Value" -msgstr "Среднее значение" - -#: ../../include/functions_graph.php:693 -msgid "Units. Value" -msgstr "Единицы. Значение" - -#: ../../include/functions_graph.php:757 -#, php-format -msgid "Percentile %dº" -msgstr "" - -#: ../../include/functions_graph.php:1178 -#, php-format -msgid "projection for %s" -msgstr "проекция для %s" - -#: ../../include/functions_graph.php:1745 -msgid "Not fired alerts" -msgstr "Нет запущенных оповещений" - -#: ../../include/functions_graph.php:2184 -msgid "Today" -msgstr "Сегодня" - -#: ../../include/functions_graph.php:2185 -msgid "Week" -msgstr "Неделя" - -#: ../../include/functions_graph.php:2186 ../../include/functions_html.php:842 -msgid "Month" -msgstr "Месяц" - -#: ../../include/functions_graph.php:2187 -#: ../../include/functions_graph.php:2188 -msgid "Months" -msgstr "Месяцы" - -#: ../../include/functions_graph.php:2210 -msgid "History db" -msgstr "" - -#: ../../include/functions_graph.php:2388 -#: ../../include/functions_incidents.php:29 -#: ../../include/functions_incidents.php:54 -msgid "Informative" -msgstr "Информативный" - -#: ../../include/functions_graph.php:2389 -#: ../../include/functions_incidents.php:30 -#: ../../include/functions_incidents.php:57 -msgid "Low" -msgstr "Низкий" - -#: ../../include/functions_graph.php:2390 -#: ../../include/functions_incidents.php:31 -#: ../../include/functions_incidents.php:60 -msgid "Medium" -msgstr "Средний" - -#: ../../include/functions_graph.php:2391 -#: ../../include/functions_incidents.php:32 -#: ../../include/functions_incidents.php:63 -msgid "Serious" -msgstr "Серьезный" - -#: ../../include/functions_graph.php:2392 -#: ../../include/functions_incidents.php:33 -#: ../../include/functions_incidents.php:66 -msgid "Very serious" -msgstr "Очень серьезный" - -#: ../../include/functions_graph.php:2393 -#: ../../include/functions_graph.php:2862 -#: ../../include/functions_graph.php:2863 -#: ../../include/functions_graph.php:4754 -#: ../../include/functions_incidents.php:34 -#: ../../include/functions_incidents.php:69 ../../include/functions.php:839 -#: ../../include/functions.php:1047 ../../include/functions.php:1080 -#: ../../include/functions_events.php:1465 -msgid "Maintenance" -msgstr "Управление" - -#: ../../include/functions_graph.php:2412 -#: ../../include/functions_graph.php:2424 -msgid "Open incident" -msgstr "Открытый инцидент" - -#: ../../include/functions_graph.php:2413 -#: ../../include/functions_graph.php:2426 -msgid "Closed incident" -msgstr "Закрытый инцидент" - -#: ../../include/functions_graph.php:2414 -#: ../../include/functions_graph.php:2428 -msgid "Outdated" -msgstr "Устаревший" - -#: ../../include/functions_graph.php:2741 -#: ../../include/functions_graph.php:2792 -#: ../../include/functions_events.php:1146 -msgid "SYSTEM" -msgstr "СИСТЕМА" - -#: ../../include/functions_graph.php:2825 -#: ../../godmode/setup/performance.php:123 -msgid "Others" -msgstr "Прочее" - -#: ../../include/functions_graph.php:2866 -#: ../../include/functions_graph.php:2867 -#: ../../include/functions_graph.php:4757 ../../include/functions.php:842 -#: ../../include/functions.php:1048 ../../include/functions.php:1083 -#: ../../include/functions_events.php:1468 -msgid "Informational" -msgstr "Информационное" - -#: ../../include/functions_graph.php:2874 -#: ../../include/functions_graph.php:2875 -#: ../../include/functions_graph.php:4769 ../../include/functions.php:854 -#: ../../include/functions.php:1050 ../../include/functions.php:1095 -msgid "Minor" -msgstr "Второстепенное" - -#: ../../include/functions_graph.php:2882 -#: ../../include/functions_graph.php:2883 -#: ../../include/functions_graph.php:4772 ../../include/functions.php:857 -#: ../../include/functions.php:1052 ../../include/functions.php:1098 -msgid "Major" -msgstr "Основной" - -#: ../../include/functions_graph.php:3521 -msgid "Units" -msgstr "Единицы" - -#: ../../include/functions_graph.php:4736 -#: ../../include/ajax/visual_console_builder.ajax.php:177 -msgid "No data to show" -msgstr "Нет данных для показа" - -#: ../../include/functions_graph.php:5106 -msgid "Main node" -msgstr "" - -#: ../../include/functions_menu.php:465 -msgid "Configure user" -msgstr "Сконфигурировать пользователя" - -#: ../../include/functions_menu.php:466 -msgid "Configure profile" -msgstr "Сконфигурировать профиль" - -#: ../../include/functions_menu.php:468 -#: ../../godmode/servers/manage_recontask_form.php:181 -#: ../../godmode/servers/manage_recontask.php:43 -msgid "Manage recontask" -msgstr "Управление рекон задачей" - -#: ../../include/functions_menu.php:470 -msgid "Module templates management" -msgstr "Управление шаблонами модуля" - -#: ../../include/functions_menu.php:471 -msgid "Inventory modules management" -msgstr "Управление модулями инвентаризации" - -#: ../../include/functions_menu.php:472 -msgid "Tags management" -msgstr "Теги управления" - -#: ../../include/functions_menu.php:476 -msgid "View agent" -msgstr "Просмотр агента" - -#: ../../include/functions_menu.php:478 -#: ../../godmode/alerts/configure_alert_template.php:63 -#: ../../godmode/alerts/configure_alert_template.php:82 -#: ../../godmode/alerts/configure_alert_template.php:100 -msgid "Configure alert template" -msgstr "Настроить шаблон оповещания" - -#: ../../include/functions_menu.php:480 -msgid "Manage network map" -msgstr "Управление сетевыми картами" - -#: ../../include/functions_menu.php:482 -msgid "View reporting" -msgstr "Посмотреть отчетности" - -#: ../../include/functions_menu.php:483 -#: ../../godmode/users/configure_profile.php:340 -msgid "View visual console" -msgstr "Посмотреть визуальные консоли" - -#: ../../include/functions_menu.php:484 -msgid "Manage custom graphs" -msgstr "Управление пользовательскими графиками" - -#: ../../include/functions_menu.php:485 -msgid "Copy dashboard" -msgstr "Копировать панель" - -#: ../../include/functions_menu.php:488 -msgid "Manage GIS Maps" -msgstr "Управление ГИС Картами" - -#: ../../include/functions_menu.php:490 -msgid "Incidents statistics" -msgstr "Статистика инцидентов" - -#: ../../include/functions_menu.php:491 -msgid "Manage messages" -msgstr "Управление сообщениями" - -#: ../../include/functions_menu.php:493 -msgid "Manage groups" -msgstr "Управление группами" - -#: ../../include/functions_menu.php:494 -msgid "Manage module groups" -msgstr "Управление модулем групп" - -#: ../../include/functions_menu.php:495 -msgid "Manage custom field" -msgstr "Управлять пользовательским полем" - -#: ../../include/functions_menu.php:497 -msgid "Manage alert actions" -msgstr "Управлять оповещением действий" - -#: ../../include/functions_menu.php:498 -msgid "Manage commands" -msgstr "Управление коммандами" - -#: ../../include/functions_menu.php:499 -msgid "Manage event alerts" -msgstr "Управлять событиями оповещения" - -#: ../../include/functions_menu.php:501 -msgid "Manage export targets" -msgstr "Управление экспортом заданий" - -#: ../../include/functions_menu.php:503 -msgid "Manage services" -msgstr "Управление сервисамиой" - -#: ../../include/functions_menu.php:504 ../../godmode/menu.php:165 -msgid "SNMP alerts" -msgstr "Оповещения SNMP" - -#: ../../include/functions_menu.php:505 ../../operation/menu.php:92 -msgid "SNMP filters" -msgstr "Фильтры SNMP" - -#: ../../include/functions_menu.php:507 ../../operation/menu.php:93 -msgid "SNMP trap generator" -msgstr "Генератор прерывания SNMP" - -#: ../../include/functions_menu.php:509 -msgid "Manage incident" -msgstr "Управление инцидентами" - -#: ../../include/functions_menu.php:511 -#: ../../godmode/users/configure_profile.php:348 -msgid "Manage visual console" -msgstr "Управление визуальной консолью" - -#: ../../include/functions_menu.php:561 -msgid "Administration" -msgstr "Администрирование" - -#: ../../include/functions_filemanager.php:170 -#: ../../include/functions_filemanager.php:240 -#: ../../include/functions_filemanager.php:298 -#: ../../include/functions_filemanager.php:380 -msgid "Security error" -msgstr "Ошибка безопасности" - -#: ../../include/functions_filemanager.php:183 -msgid "Upload error" -msgstr "Ошибка загрузки" - -#: ../../include/functions_filemanager.php:191 -#: ../../include/functions_filemanager.php:259 -#: ../../include/functions_filemanager.php:324 -msgid "Upload correct" -msgstr "Правильно загружено" - -#: ../../include/functions_filemanager.php:204 -msgid "" -"File size seems to be too large. Please check your php.ini configuration or " -"contact with the administrator" -msgstr "" -"Размер файла кажется слишком большим. Проверьте конфигурацию php.ini или " -"свяжитесь с администратором" - -#: ../../include/functions_filemanager.php:252 -msgid "Error creating file" -msgstr "Ошибка при создании файла" - -#: ../../include/functions_filemanager.php:265 -#: ../../include/functions_filemanager.php:360 -msgid "Error creating file with empty name" -msgstr "Ошибка при создании файла с пыстым именем" - -#: ../../include/functions_filemanager.php:310 -msgid "Attach error" -msgstr "Ошибка прикрепления" - -#: ../../include/functions_filemanager.php:355 -msgid "Directory created" -msgstr "Каталог создан" - -#: ../../include/functions_filemanager.php:548 -#, php-format -msgid "Directory %s doesn't exist!" -msgstr "Каталог %s не существует!" - -#: ../../include/functions_filemanager.php:559 -#: ../../godmode/servers/plugin.php:175 -#: ../../godmode/setup/file_manager.php:63 -#, php-format -msgid "Index of %s" -msgstr "Параметры %s" - -#: ../../include/functions_filemanager.php:563 -msgid "Index of images" -msgstr "" - -#: ../../include/functions_filemanager.php:601 -msgid "Parent directory" -msgstr "Родительский каталог" - -#: ../../include/functions_filemanager.php:630 -msgid "The zip upload in this dir, easy to upload multiple files." -msgstr "" -"Заархивированный файл загружен в этом каталоге, легче загружать сразу " -"несколько файлов." - -#: ../../include/functions_filemanager.php:634 -msgid "Decompress" -msgstr "Декомпрессировать" - -#: ../../include/functions_filemanager.php:677 -msgid "Directory" -msgstr "Каталог" - -#: ../../include/functions_filemanager.php:680 -#: ../../include/functions_visual_map_editor.php:178 -#: ../../godmode/reporting/visual_console_builder.elements.php:78 -#: ../../godmode/reporting/visual_console_builder.wizard.php:118 -msgid "Image" -msgstr "Изображение" - -#: ../../include/functions_filemanager.php:683 -msgid "Compressed file" -msgstr "сжатый файл" - -#: ../../include/functions_filemanager.php:686 -#: ../../include/functions_filemanager.php:692 -msgid "Text file" -msgstr "Текстовый файл" - -#: ../../include/functions_filemanager.php:773 -msgid "Create directory" -msgstr "Создать каталог" - -#: ../../include/functions_filemanager.php:778 -msgid "Create text" -msgstr "Создание текстового объекта" - -#: ../../include/functions_filemanager.php:783 -msgid "Upload file/s" -msgstr "Загрузить файл/ы" - -#: ../../include/functions_filemanager.php:790 -msgid "The directory is read-only" -msgstr "Журнал - чтение только" - -#: ../../include/auth/mysql.php:246 -msgid "" -"Problems with configuration permissions. Please contact with Administrator" -msgstr "" - -#: ../../include/auth/mysql.php:252 -msgid "Your permissions have changed. Please, login again." -msgstr "" - -#: ../../include/auth/mysql.php:265 -msgid "" -"Ooops User not found in \n" -"\t\t\t\tdatabase or incorrect password" -msgstr "" - -#: ../../include/auth/mysql.php:281 -msgid "Fail the group synchronizing" -msgstr "" - -#: ../../include/auth/mysql.php:287 -msgid "Fail the tag synchronizing" -msgstr "" - -#: ../../include/auth/mysql.php:300 -msgid "" -"User not found in database \n" -"\t\t\t\t\tor incorrect password" -msgstr "" - -#: ../../include/auth/mysql.php:312 -msgid "User not found in database or incorrect password" -msgstr "" - -#: ../../include/auth/mysql.php:544 -msgid "Could not changes password on remote pandora" -msgstr "" - -#: ../../include/auth/mysql.php:581 -msgid "Your installation of PHP does not support LDAP" -msgstr "Ваша установка PHP не поддерживает LDAP" - -#: ../../include/functions_html.php:658 ../../include/functions_html.php:659 -#: ../../include/functions_html.php:765 ../../include/functions_html.php:766 -#: ../../operation/events/events.php:391 -#: ../../operation/snmpconsole/snmp_view.php:71 -#: ../../operation/snmpconsole/snmp_statistics.php:55 -#: ../../operation/agentes/networkmap.php:289 -#: ../../godmode/category/category.php:58 -#: ../../godmode/alerts/alert_list.php:297 -#: ../../godmode/agentes/planned_downtime.editor.php:36 -msgid "List" -msgstr "Список" - -#: ../../include/functions_html.php:715 -msgid "weeks" -msgstr "недели" - -#: ../../include/functions_html.php:841 -msgid "Month day" -msgstr "День месяца" - -#: ../../include/functions_html.php:843 -msgid "Week day" -msgstr "День недели" - -#: ../../include/functions_html.php:2113 -msgid "Type at least two characters to search the module." -msgstr "Введите не менее двух символов для поиска модуля." - -#: ../../include/functions_db.php:75 -#, php-format -msgid "Error connecting to database %s at %s." -msgstr "Ошибка подключения к базе данных %s at %s." - -#: ../../include/functions_db.php:1067 ../../godmode/menu.php:301 -#: ../../godmode/db/db_refine.php:33 -msgid "Database debug" -msgstr "Отладка базы данных" - -#: ../../include/functions_db.php:1083 -msgid "SQL sentence" -msgstr "SQL предложениe" - -#: ../../include/functions_db.php:1085 -msgid "Rows" -msgstr "Строки" - -#: ../../include/functions_db.php:1086 -msgid "Saved" -msgstr "Сохранено" - -#: ../../include/functions_db.php:1087 -msgid "Time (ms)" -msgstr "Время (мин)" - -#: ../../include/functions_update_manager.php:198 -msgid "There is a unknown error." -msgstr "" - -#: ../../include/functions_update_manager.php:393 -msgid "Failed extracting the package to temp directory." -msgstr "" - -#: ../../include/functions_update_manager.php:420 -msgid "Failed the copying of the files." -msgstr "" - -#: ../../include/functions_update_manager.php:436 -msgid "Package extracted successfully." -msgstr "" - -#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 -#: ../../include/functions_gis.php:36 -msgid "Hierarchy of agents" -msgstr "Иерархия агентов" - -#: ../../include/functions_servers.php:363 -msgid "Data server" -msgstr "Данные сервера" - -#: ../../include/functions_servers.php:368 -msgid "Network server" -msgstr "Сетевой сервер" - -#: ../../include/functions_servers.php:373 -msgid "SNMP Trap server" -msgstr "SNMP перемещение сервера" - -#: ../../include/functions_servers.php:378 -#: ../../godmode/servers/manage_recontask_form.php:221 -#: ../../general/firts_task/recon_view.php:25 -msgid "Recon server" -msgstr "Рекон сервер" - -#: ../../include/functions_servers.php:383 -msgid "Plugin server" -msgstr "Плагин сервера" - -#: ../../include/functions_servers.php:388 -msgid "Prediction server" -msgstr "Сервер прогнозирования" - -#: ../../include/functions_servers.php:393 -msgid "WMI server" -msgstr "WMI сервер" - -#: ../../include/functions_servers.php:403 -msgid "Inventory server" -msgstr "Сервер инвентаризации" - -#: ../../include/functions_servers.php:408 -msgid "Web server" -msgstr "Веб сервер" - -#: ../../include/functions_servers.php:413 -msgid "Event server" -msgstr "Событие сервера" - -#: ../../include/functions_servers.php:418 -msgid "Enterprise ICMP server" -msgstr "Сервер предприятия ICMP" - -#: ../../include/functions_servers.php:423 -msgid "Enterprise SNMP server" -msgstr "SNMP Сервер предприятия" - -#: ../../include/functions_servers.php:428 -msgid "Enterprise Satellite server" -msgstr "" - -#: ../../include/functions_networkmap.php:1719 -msgid "Create a new topology map" -msgstr "Создать новую карту топологии" - -#: ../../include/functions_networkmap.php:1720 -msgid "Create a new group map" -msgstr "Создать новую карту группы" - -#: ../../include/functions_networkmap.php:1721 -msgid "Create a new dynamic map" -msgstr "" - -#: ../../include/functions_networkmap.php:1723 -msgid "Create a new radial dynamic map" -msgstr "" - -#: ../../include/functions_networkmap.php:1747 -msgid "Dynamic" -msgstr "" - -#: ../../include/functions_networkmap.php:1749 -msgid "Radial dynamic" -msgstr "" - -#: ../../include/functions_clippy.php:128 ../../general/header.php:166 -#: ../../general/header.php:167 -msgid "Pandora FMS assistant" -msgstr "" - -#: ../../include/functions_clippy.php:163 -#: ../../include/functions_clippy.php:168 -msgid "End wizard" -msgstr "" - -#: ../../include/functions_clippy.php:195 -msgid "Next →" -msgstr "" - -#: ../../include/functions_clippy.php:196 -msgid "← Back" -msgstr "" - -#: ../../include/functions_clippy.php:208 -msgid "Do you want to exit the help tour?" -msgstr "" - -#: ../../include/functions_groups.php:63 -msgid "Alert Actions" -msgstr "Оповещение Действий" - -#: ../../include/functions_groups.php:78 -msgid "Alert Templates" -msgstr "Оповещение Шаблонов" - -#: ../../include/functions_groups.php:106 -#: ../../include/functions_groups.php:163 -#: ../../include/functions_reports.php:498 -#: ../../include/functions_reports.php:500 -#: ../../include/functions_reports.php:504 -#: ../../include/functions_reports.php:506 -#: ../../include/functions_reports.php:510 -#: ../../include/functions_reports.php:512 -#: ../../include/functions_reports.php:514 -#: ../../include/functions_reports.php:518 -#: ../../operation/agentes/ver_agente.php:903 -#: ../../operation/agentes/ver_agente.php:1031 -#: ../../operation/search_results.php:103 -msgid "Graphs" -msgstr "Графики" - -#: ../../include/functions_groups.php:135 -msgid "Layout visual console" -msgstr "Макет визуальной консоли" - -#: ../../include/functions_groups.php:149 -msgid "Plannet down time" -msgstr "Плановые простои" - -#: ../../include/functions_groups.php:176 -msgid "GIS maps" -msgstr "ГИС карты" - -#: ../../include/functions_groups.php:190 -msgid "GIS connections" -msgstr "ГИС соединения" - -#: ../../include/functions_groups.php:204 -msgid "GIS map layers" -msgstr "ГИС уровни карты" - -#: ../../include/functions_groups.php:217 -msgid "Network maps" -msgstr "Сетевые карты" - -#: ../../include/functions_groups.php:2119 -msgid "Show branch children" -msgstr "Показать детское отделение" - -#: ../../include/functions_groups.php:2148 -msgid "" -"You can not delete the last group in Pandora. A common installation must has " -"almost one group." -msgstr "" - -#: ../../include/functions_ui.php:226 -msgid "Information" -msgstr "Информация" - -#: ../../include/functions_ui.php:368 -msgid "Request successfully processed" -msgstr "Запрос успешно обработан" - -#: ../../include/functions_ui.php:371 -msgid "Error processing request" -msgstr "Ошибка при обработке рапроса" - -#: ../../include/functions_ui.php:509 -msgid "" -"Is possible that this view uses part of information which your user has not " -"access" -msgstr "" -"Возможно, что просматревается только часть информации, к которой у вашего " -"пользователя нет доступа" - -#: ../../include/functions_ui.php:991 -#: ../../godmode/alerts/configure_alert_template.php:805 -#: ../../godmode/alerts/alert_view.php:152 -msgid "The alert would fire when the value is <span id=\"value\"></span>" -msgstr "" -"Оповещение будет срабатывать, когда значения <span id=\"value\"></span>" - -#: ../../include/functions_ui.php:995 -#: ../../godmode/alerts/configure_alert_template.php:806 -#: ../../godmode/alerts/alert_view.php:156 -msgid "The alert would fire when the value is not <span id=\"value\"></span>" -msgstr "" -"Оповещение будет срабатывать, когда значения не <span id=\"value\"></span>" - -#: ../../include/functions_ui.php:1000 -#: ../../godmode/alerts/configure_alert_template.php:803 -#: ../../godmode/alerts/alert_view.php:144 -msgid "" -"The alert would fire when the value matches <span id=\"value\"></span>" -msgstr "" -"Оповещение будет срабатывать, когда значения совпадают <span " -"id=\"value\"></span>" - -#: ../../include/functions_ui.php:1003 ../../godmode/alerts/alert_view.php:147 -msgid "" -"The alert would fire when the value doesn't match <span id=\"value\"></span>" -msgstr "" -"Оповещение будет запущено когда значение не совпадет <span " -"id=\"value\"></span>" - -#: ../../include/functions_ui.php:1009 -#: ../../godmode/alerts/configure_alert_template.php:807 -#: ../../godmode/alerts/alert_view.php:161 -msgid "" -"The alert would fire when the value is between <span id=\"min\"></span> and " -"<span id=\"max\"></span>" -msgstr "" -"Оповещение будет срабатывать, когда значения между <span id=\"min\"></span> " -"and <span id=\"max\"></span>" - -#: ../../include/functions_ui.php:1012 -#: ../../godmode/alerts/configure_alert_template.php:808 -#: ../../godmode/alerts/alert_view.php:164 -msgid "" -"The alert would fire when the value is not between <span id=\"min\"></span> " -"and <span id=\"max\"></span>" -msgstr "" -"Оповещение будет срабатывать, когда значения не между <span " -"id=\"min\"></span> and <span id=\"max\"></span>" - -#: ../../include/functions_ui.php:1016 -msgid "The alert would fire when the value is over <span id=\"max\"></span>" -msgstr "" -"Оповещение будет запущено когда значение превышает <span id=\"max\"></span>" - -#: ../../include/functions_ui.php:1021 -msgid "The alert would fire when the value is under <span id=\"min\"></span>" -msgstr "" -"Оповещение будет запущено когда значение ниже <span id=\"min\"></span>" - -#: ../../include/functions_ui.php:1026 -#: ../../godmode/alerts/configure_alert_template.php:811 -#: ../../godmode/alerts/alert_view.php:186 -msgid "The alert would fire when the module is in warning status" -msgstr "" -"Оповещение будет срабатывать, когда модуль находится в статусе предупреждения" - -#: ../../include/functions_ui.php:1031 -#: ../../godmode/alerts/configure_alert_template.php:812 -#: ../../godmode/alerts/alert_view.php:189 -msgid "The alert would fire when the module is in critical status" -msgstr "" -"Оповещение будет срабатывать, когда модуль находится в статусе критичности" - -#: ../../include/functions_ui.php:1609 ../../include/functions_ui.php:1643 -#, php-format -msgid "Total items: %s" -msgstr "Всего элементов: %s" - -#: ../../include/functions_ui.php:1950 -msgid "Unknown type" -msgstr "Неизвестный тип" - -#: ../../include/functions_ui.php:2749 -msgid "Type at least two characters to search." -msgstr "Наберите не менее двух символов для поиска" - -#: ../../include/functions_ui.php:3536 -msgid "Problem with Pandora FMS database" -msgstr "Проблема с базой данных Pandora FMS" - -#: ../../include/functions_ui.php:3537 -msgid "" -"Cannot connect to the database, please check your database setup in the " -"<b>include/config.php</b> file.<i><br/><br/>\n" -"\t\t\tProbably your database, hostname, user or password values are " -"incorrect or \n" -"\t\t\tthe database server is not running." -msgstr "" -"Не удается подключиться к базе данных, пожалуйста, проверьте ваши настройки " -"базы данных в <b>include/config.php</b> file.<i><br/><br/>\n" -"\t\t\t Возможно ваша база данных, имя хоста, пользователя или значения " -"пароля неверны \n" -"\t\t\t сервер базы данных не работает." - -#: ../../include/functions_ui.php:3541 -msgid "DB ERROR" -msgstr "ОШИБКА БАЗЫ ДАННЫХ" - -#: ../../include/functions_ui.php:3547 -msgid "" -"If you have modified auth system, this problem could be because Pandora " -"cannot override authorization variables from the config database. Remove " -"them from your database by executing:<br><pre>DELETE FROM tconfig WHERE " -"token = \"auth\";</pre>" -msgstr "" -"Если вы изменили систему авторизации, то эта проблема может возникнуть, " -"потому что Pandora не может переопределить переменные авторизации из " -"конфигурационной базы данных. Удалите их из своей базы данных, выполнив: " -"<br><pre>DELETE FROM tconfig WHERE token = \"auth\";</pre>" - -#: ../../include/functions_ui.php:3551 -msgid "Empty configuration table" -msgstr "Таблица конфигурации пуста" - -#: ../../include/functions_ui.php:3552 -msgid "" -"Cannot load configuration variables from database. Please check your " -"database setup in the\n" -"\t\t\t<b>include/config.php</b> file.<i><br><br>\n" -"\t\t\tMost likely your database schema has been created but there are is no " -"data in it, you have a problem with the database access credentials or your " -"schema is out of date.\n" -"\t\t\t<br><br>Pandora FMS Console cannot find <i>include/config.php</i> or " -"this file has invalid\n" -"\t\t\tpermissions and HTTP server cannot read it. Please read documentation " -"to fix this problem.</i>" -msgstr "" -"Не удается загрузить переменные конфигурации из базы данных. Пожалуйста, " -"проверьте настройки базы данных в\n" -"\t\t\t <b>include/config.php</b> файл.<i><br><br>\n" -"\t\t\t Скорее всего, ваша схема базы данных была создана, но в ней нет " -"никаких данных, у вас проблемы с учетными данными доступа к базе данных или " -"ваша схема устарела.\n" -"\t\t\t <br><br> Консоль Pandora FMS не может найти <i>include/config.php</i> " -"или этот файл недействителен\n" -"\t\t\t разрешения и HTTP сервер не может это прочитать. Пожалуйста, " -"ознакомьтесь с документацией, чтобы исправить эту проблему.</i>" - -#: ../../include/functions_ui.php:3559 -msgid "No configuration file found" -msgstr "Файл конфигурации не найден" - -#: ../../include/functions_ui.php:3560 -msgid "" -"Pandora FMS Console cannot find <i>include/config.php</i> or this file has " -"invalid\n" -"\t\t\tpermissions and HTTP server cannot read it. Please read documentation " -"to fix this problem." -msgstr "" -"Консоль Pandora FMS не может найти <i>include/config.php</i> или этот файл " -"недействителен\n" -"\t\t\t разрешения и HTTP сервер не может это прочитать. Пожалуйста, " -"ознакомьтесь с документацией, чтобы исправить эту проблему." - -#: ../../include/functions_ui.php:3571 -#, php-format -msgid "You may try to run the %s<b>installation wizard</b>%s to create one." -msgstr "" -"Вы можете попробовать запустить %s<b>установку мастера</b>%s, чтобы создать " -"одну." - -#: ../../include/functions_ui.php:3574 -msgid "Installer active" -msgstr "установщик активных" - -#: ../../include/functions_ui.php:3575 -msgid "" -"For security reasons, normal operation is not possible until you delete " -"installer file.\n" -"\t\t\tPlease delete the <i>./install.php</i> file before running Pandora FMS " -"Console." -msgstr "" -"В соображениях безопасности, нормальная работа не представляется возможной, " -"пока не удалите установщика файла.\n" -"\t\t\t Пожалуйста, удалите <i>./install.php</i> файл перед запуском консоли " -"Pandora FMS." - -#: ../../include/functions_ui.php:3579 -msgid "Bad permission for include/config.php" -msgstr "Нежелательное разрешение для включения/конф.php" - -#: ../../include/functions_ui.php:3580 -msgid "" -"For security reasons, <i>config.php</i> must have restrictive permissions, " -"and \"other\" users \n" -"\t\t\tshould not read it or write to it. It should be written only for owner " -"\n" -"\t\t\t(usually www-data or http daemon user), normal operation is not " -"possible until you change \n" -"\t\t\tpermissions for <i>include/config.php</i> file. Please do it, it is " -"for your security." -msgstr "" -"В соображениях безопасности, <i>config.php</i> должен иметь ограниченные " -"разрешения, и «чужие» пользователи \n" -"\t\t\t не должны читать или записывать сюда. это должно быть записано только " -"для владельца \n" -"\t\t\t (обычно веб-данных или HTTP демон пользователя), нормальная работа не " -"возможна, пока вы не измените\n" -"\t\t\t разрешения для <i>include/config.php</i> файла. Пожалуйста, сделайте " -"это, это для вашей безопасности." - -#: ../../include/functions_treeview.php:211 -#: ../../include/graphs/functions_flot.php:517 -msgid "No data" -msgstr "Данных нет" - -#: ../../include/functions_treeview.php:230 -msgid "Go to module edition" -msgstr "Перейти к модулю редактирования" - -#: ../../include/functions_treeview.php:268 -msgid "There was a problem loading alerts" -msgstr "Найдена проблема при загрузке оповещений" - -#: ../../include/functions_treeview.php:322 -msgid "Go to alerts edition" -msgstr "Перейти к редактированию оповещений." - -#: ../../include/functions_treeview.php:461 -msgid "Go to agent edition" -msgstr "Перейти к редактированию агента" - -#: ../../include/functions_treeview.php:470 -msgid "Agent data" -msgstr "" - -#: ../../include/functions_treeview.php:543 -msgid "Advanced information" -msgstr "Дополнительная информация" - -#: ../../include/functions_treeview.php:555 -#: ../../operation/agentes/estado_generalagente.php:257 -msgid "Agent access rate (24h)" -msgstr "Скорость доступа агента (24 часа)" - -#: ../../include/functions_treeview.php:615 -#: ../../operation/agentes/estado_generalagente.php:475 -msgid "Interface traffic" -msgstr "" - -#: ../../include/functions_treeview.php:637 -#: ../../operation/agentes/estado_generalagente.php:446 -msgid "Interface information" -msgstr "" - -#: ../../include/functions_snmp_browser.php:145 -msgid "Target IP cannot be blank." -msgstr "Целевой IP не может быть пустым." - -#: ../../include/functions_snmp_browser.php:403 -msgid "Numeric OID" -msgstr "Числовые OID" - -#: ../../include/functions_snmp_browser.php:420 -msgid "Syntax" -msgstr "Синтаксис" - -#: ../../include/functions_snmp_browser.php:425 -msgid "Display hint" -msgstr "Показать подсказку" - -#: ../../include/functions_snmp_browser.php:430 -msgid "Max access" -msgstr "Макс доступ" - -#: ../../include/functions_snmp_browser.php:445 -msgid "OID Information" -msgstr "OID Информация" - -#: ../../include/functions_snmp_browser.php:475 -#: ../../godmode/agentes/module_manager.php:725 -msgid "Create network component" -msgstr "Создать сетевой компонент" - -#: ../../include/functions_snmp_browser.php:510 -msgid "Starting OID" -msgstr "Начальные OID" - -#: ../../include/functions_snmp_browser.php:521 -msgid "Browse" -msgstr "Просмотреть" - -#: ../../include/functions_snmp_browser.php:530 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:360 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:720 -#: ../../godmode/agentes/module_manager_editor_network.php:175 -#: ../../godmode/massive/massive_edit_modules.php:466 -#: ../../godmode/modules/manage_network_components_form_network.php:57 -msgid "Auth user" -msgstr "Идентификация пользователя" - -#: ../../include/functions_snmp_browser.php:532 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:362 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:722 -#: ../../godmode/agentes/module_manager_editor_network.php:177 -#: ../../godmode/massive/massive_edit_modules.php:469 -#: ../../godmode/modules/manage_network_components_form_network.php:59 -msgid "Auth password" -msgstr "Идентификация пароля" - -#: ../../include/functions_snmp_browser.php:536 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:366 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:726 -#: ../../godmode/agentes/module_manager_editor_network.php:184 -#: ../../godmode/massive/massive_edit_modules.php:472 -#: ../../godmode/modules/manage_network_components_form_network.php:65 -msgid "Privacy method" -msgstr "Метод конфиденциальности" - -#: ../../include/functions_snmp_browser.php:537 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:367 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:727 -#: ../../godmode/agentes/module_manager_editor_network.php:185 -#: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/modules/manage_network_components_form_network.php:66 -msgid "DES" -msgstr "система шифрования данных (DES)" - -#: ../../include/functions_snmp_browser.php:537 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:367 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:727 -#: ../../godmode/agentes/module_manager_editor_network.php:185 -#: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/modules/manage_network_components_form_network.php:66 -msgid "AES" -msgstr "симметричный алгоритм блочного шифрования (AES)" - -#: ../../include/functions_snmp_browser.php:538 -#: ../../godmode/agentes/module_manager_editor_network.php:186 -#: ../../godmode/massive/massive_edit_modules.php:474 -#: ../../godmode/modules/manage_network_components_form_network.php:67 -msgid "Privacy pass" -msgstr "Конфиденциальный пропуск" - -#: ../../include/functions_snmp_browser.php:541 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:371 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:731 -#: ../../godmode/agentes/module_manager_editor_network.php:192 -#: ../../godmode/massive/massive_edit_modules.php:476 -#: ../../godmode/modules/manage_network_components_form_network.php:72 -msgid "Auth method" -msgstr "Метод идентификации" - -#: ../../include/functions_snmp_browser.php:542 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:372 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:732 -#: ../../godmode/agentes/module_manager_editor_network.php:193 -#: ../../godmode/massive/massive_edit_modules.php:477 -#: ../../godmode/modules/manage_network_components_form_network.php:73 -msgid "MD5" -msgstr "MD5" - -#: ../../include/functions_snmp_browser.php:542 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:372 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:732 -#: ../../godmode/agentes/module_manager_editor_network.php:193 -#: ../../godmode/massive/massive_edit_modules.php:477 -#: ../../godmode/modules/manage_network_components_form_network.php:73 -msgid "SHA" -msgstr "SHA" - -#: ../../include/functions_snmp_browser.php:543 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:373 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:733 -#: ../../godmode/agentes/module_manager_editor_network.php:194 -#: ../../godmode/massive/massive_edit_modules.php:478 -#: ../../godmode/modules/manage_network_components_form_network.php:74 -msgid "Security level" -msgstr "Уровень безопасности" - -#: ../../include/functions_snmp_browser.php:544 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:374 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:734 -#: ../../godmode/agentes/module_manager_editor_network.php:195 -#: ../../godmode/massive/massive_edit_modules.php:479 -#: ../../godmode/modules/manage_network_components_form_network.php:75 -msgid "Not auth and not privacy method" -msgstr "Нет идентификации и нет метода конфиденциальности" - -#: ../../include/functions_snmp_browser.php:545 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:375 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:735 -#: ../../godmode/agentes/module_manager_editor_network.php:196 -#: ../../godmode/massive/massive_edit_modules.php:480 -#: ../../godmode/modules/manage_network_components_form_network.php:76 -msgid "Auth and not privacy method" -msgstr "Идентификация и нет метода конфиденциальности" - -#: ../../include/functions_snmp_browser.php:545 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:375 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:735 -#: ../../godmode/agentes/module_manager_editor_network.php:196 -#: ../../godmode/massive/massive_edit_modules.php:480 -#: ../../godmode/modules/manage_network_components_form_network.php:76 -msgid "Auth and privacy method" -msgstr "Идентификация и метод конфиденциальности" - -#: ../../include/functions_snmp_browser.php:558 -msgid "First match" -msgstr "Первое совпадение" - -#: ../../include/functions_snmp_browser.php:560 -msgid "Previous match" -msgstr "Предыдущее совпадение" - -#: ../../include/functions_snmp_browser.php:562 -msgid "Next match" -msgstr "Следующее совпадение" - -#: ../../include/functions_snmp_browser.php:564 -msgid "Last match" -msgstr "Последнее совпадение" - -#: ../../include/functions_snmp_browser.php:569 -msgid "Expand the tree (can be slow)" -msgstr "Разверните дерево (может быть медлено)" - -#: ../../include/functions_snmp_browser.php:571 -msgid "Collapse the tree" -msgstr "Свернуть дерево" - -#: ../../include/functions_snmp_browser.php:590 -msgid "SNMP v3 options" -msgstr "SNMP v3 опции" - -#: ../../include/functions_snmp_browser.php:593 -msgid "Search options" -msgstr "Опции поиска" - -#: ../../include/functions_snmp_browser.php:603 -#: ../../godmode/agentes/module_manager_editor_network.php:27 -msgid "Search matches" -msgstr "Искать совпадения" - -#: ../../include/help/clippy/data_configuration_module.php:39 -msgid "Data Configuration Module." -msgstr "" - -#: ../../include/help/clippy/data_configuration_module.php:44 -msgid "" -"Please note that information provided here affects how the agent collect " -"information and generate the data XML. Any data/configuration reported by " -"the agent, different from data or description is discarded, and the " -"configuration shown in the console prevails over any configuration coming " -"from the agent, this applies for example for crit/warn thresholds, interval, " -"module group, min/max value, tags, etc." -msgstr "" - -#: ../../include/help/clippy/data_configuration_module.php:50 -msgid "" -"Information imported FIRST time from the XML will fill the information you " -"can see in the console, but after the first import, system will ignore any " -"update coming from the XML/Agent." -msgstr "" - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:36 -msgid "" -"Let me show you how to create an email action: Click on Create button and " -"fill the form showed in the following screen." -msgstr "" - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:51 -msgid "" -"Now, you have to go to the monitors list and look for a critical module to " -"apply the alert." -msgstr "" - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:56 -msgid "" -"Click on the arrow to drop down the Monitoring submenu and select Monitor " -"Detail." -msgstr "" - -#: ../../include/help/clippy/servers_down.php:39 -msgid "All servers down" -msgstr "" - -#: ../../include/help/clippy/servers_down.php:44 -msgid "" -"Can you up all servers. You go to terminal in linux and execute the next " -"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " -"introduce root pass." -msgstr "" - -#: ../../include/help/clippy/server_queued_modules.php:39 -msgid "Excesive Queued." -msgstr "" - -#: ../../include/help/clippy/server_queued_modules.php:44 -msgid "" -"You have too much items in the processing queue. This can happen if your " -"server is too loaded and/or not properly configured. This could be something " -"temporal, or a bottleneck. One possible solution is increase number of " -"server threads, but you should consider getting support about this." -msgstr "" - -#: ../../include/help/clippy/modules_not_init.php:39 -msgid "You have non initialized modules" -msgstr "" - -#: ../../include/help/clippy/modules_not_init.php:44 -msgid "" -"This happen when you have just created a module and it's not executed at " -"first time. Usually in a few seconds should be initialized and you will be " -"able to see in main view. If you keep non-init modules for more than 24hr " -"(due a problem in it's execution or configuration) they will be " -"automatically deleted by the system. Non-init are not visible in the âmain " -"viewâ, you can see/edit them in the module administration section, in the " -"agent administrator." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:35 -msgid "I'm going to show you how to monitor a server." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:39 -msgid "Please, type an agent to save the modules for monitoring a server." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:44 -msgid "If you have typed the name correctly you will see the agent." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:60 -msgid "Now, please choose the agent you searched." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:65 -msgid "Choose the agent and click on the name." -msgstr "" - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:35 -msgid "" -"Now, you have to go to the monitors list and look for a \"critical\" module " -"to apply the alert." -msgstr "" - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:39 -msgid "" -"If you know the name of the agent or the name of the module in critical " -"status, type it in this field to make the module list shorter. You can write " -"the entire name or just a part of it." -msgstr "" - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:44 -msgid "Click on Show button to get the modules list filtered." -msgstr "" - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:60 -msgid "" -"Now, to edit the module, click on the wrench that appears in the type column." -msgstr "" - -#: ../../include/help/clippy/module_unknow.php:39 -msgid "You have unknown modules in this agent." -msgstr "" - -#: ../../include/help/clippy/module_unknow.php:44 -msgid "" -"Unknown modules are modules which receive data normally at least in one " -"occassion, but at this time are not receving data. Please check our " -"troubleshoot help page to help you determine why you have unknown modules." -msgstr "" - -#: ../../include/help/clippy/modules_not_learning_mode.php:40 -msgid "" -"Please note that you have your agent setup to do not add new modules coming " -"from the data XML." -msgstr "" - -#: ../../include/help/clippy/modules_not_learning_mode.php:41 -msgid "" -"That means if you have a local plugin or add manually new modules to the " -"configuration file, you won't have it in your agent, unless you first create " -"manually in the interface (with the exact name and type as coming in the XML " -"file)." -msgstr "" - -#: ../../include/help/clippy/modules_not_learning_mode.php:42 -msgid "" -"You should use the \"normal\" mode (non learn) only when you don't intend to " -"add more modules to the agent." -msgstr "" - -#: ../../include/help/clippy/extension_cron_send_email.php:39 -msgid "The configuration of email for the task email is in the file:" -msgstr "" - -#: ../../include/help/clippy/extension_cron_send_email.php:41 -msgid "Please check if the email configuration is correct." -msgstr "" - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:36 -msgid "" -"The last step is to check the alert created. Click on the round icon to " -"force the action execution and after a few minutes you will receive the " -"alert in your email." -msgstr "" - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:37 -msgid "" -"And restart your pandora server to read again general configuration tokens." -msgstr "" - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:42 -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:126 -#: ../../operation/servers/recon_view.php:137 -msgid "Done" -msgstr "Готово" - -#: ../../include/help/clippy/homepage.php:59 -msgid "Hi, can I help you?" -msgstr "" - -#: ../../include/help/clippy/homepage.php:60 -msgid "" -"Let me introduce my self: I am Pandorin, the annoying assistant of Pandora " -"FMS. You can follow my steps to do basic tasks in Pandora FMS or you can " -"close me and never see me again." -msgstr "" - -#: ../../include/help/clippy/homepage.php:67 -msgid "Close this wizard and don't open it again." -msgstr "" - -#: ../../include/help/clippy/homepage.php:81 -msgid "Which task would you like to do first?" -msgstr "" - -#: ../../include/help/clippy/homepage.php:85 -msgid "Ping to a Linux or Windows server with a Pandora FMS agent" -msgstr "" - -#: ../../include/help/clippy/homepage.php:90 -msgid "Create a alert by email in a critical module." -msgstr "" - -#: ../../include/help/clippy/homepage.php:209 -msgid "" -"The first thing you have to do is to setup the config email in the Pandora " -"FMS Server." -msgstr "" - -#: ../../include/help/clippy/homepage.php:213 -msgid "If you have it already configured you can go to the next step." -msgstr "" - -#: ../../include/help/clippy/homepage.php:218 -msgid "Now, pull down the Manage alerts menu and click on Actions. " -msgstr "" - -#: ../../include/help/clippy/topology_group.php:39 -msgid "Topology Group" -msgstr "" - -#: ../../include/help/clippy/topology_group.php:44 -msgid "" -"Please note that group topology maps do not show the parent relationship " -"between nodes, it only shows the group parentship and the agent distribution " -"inside them. " -msgstr "" - -#: ../../include/help/clippy/agent_out_of_limits.php:39 -msgid "Agent contact date passed it's ETA!." -msgstr "" - -#: ../../include/help/clippy/agent_out_of_limits.php:44 -msgid "" -"This happen when your agent stopped reporting or the server have any problem " -"(too load or just down). Check also connectivity between the agent and the " -"server." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:35 -msgid "Now you must go to Modules. Don't worry I'll lead you." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:40 -msgid "Click in this tab.." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:56 -msgid "Now you must create the module. Don't worry, i'll teach you." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:60 -msgid "Choose the network server module." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:64 -msgid "And click the button." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:80 -msgid "Now you must create the module. Don't worry, i'll teach you ." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:84 -msgid "Now we are going to fill the form." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:88 -msgid "Please choose Network Management." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:92 -msgid "Choose the component named \"Host alive\"." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:96 -msgid "You can change the name if you want." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:100 -msgid "Check if the IP showed is the IP of your machine." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:104 -msgid "And only to finish it is clicking this button." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:121 -msgid "" -"Congrats! Your module has been created. <br /> and the status color is " -"<b>blue.</b><br /> That color means that the module hasn't been executed for " -"the first time. In the next seconds, if there is no problem, the status " -"color will turn into <b>red</b> or <b>green</b>." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:137 -msgid "Click on alerts tab and then fill the form to add an alert." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:152 -msgid "Select the critical module." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 -msgid "In template select \"Critical Condition\"." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:160 -msgid "Now, select the action created before." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:165 -msgid "Click on Add Alert button to create the alert." -msgstr "" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:181 -msgid "" -"To test the alert you've just created go to the main view by clicking on the " -"eye tab." -msgstr "" - -#: ../../include/help/clippy/interval_agent_min.php:39 -msgid "Interval Agent." -msgstr "" - -#: ../../include/help/clippy/interval_agent_min.php:44 -msgid "" -"Please note that having agents with a monitoring interval below 300 seconds " -"is not recommended. This will impact seriously in the performance of the " -"server. For example, having 200 agents with one minute interval, is the same " -"than having 1000 agents with a 5 minute interval. The probability of getting " -"unknown modules is higher, and the impact on the server is higher because it " -"requires a shorter response time." -msgstr "" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:35 -msgid "Fill the name of your action." -msgstr "" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:39 -msgid "" -"Select the group in the drop-down list and filter for ACL (the user in this " -"group can use your action to create an alert)." -msgstr "" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:43 -msgid "In the command field select \"email\"." -msgstr "" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:47 -msgid "" -"In the threshold field enter the seconds. The help icon show more " -"information." -msgstr "" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:53 -msgid "" -"In the first field enter the email address/addresses where you want to " -"receive the email alerts separated with comas ( , ) or white spaces." -msgstr "" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:58 -msgid "" -"In the \"Subject\" field you can use the macros _agent_ or _module_ for " -"each name." -msgstr "" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:63 -msgid "" -"In the text field, you can also use macros. Get more information about the " -"macros by clicking on the help icon." -msgstr "" - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:69 -msgid "Click on Create button to create the action." -msgstr "" - -#: ../../include/functions_reports.php:499 -#: ../../include/functions_reporting.php:4295 -#: ../../include/functions_reporting.php:4373 -msgid "Simple graph" -msgstr "Простой график" - -#: ../../include/functions_reports.php:501 -#: ../../include/functions_reporting.php:3144 -msgid "Simple baseline graph" -msgstr "Простой базовый график" - -#: ../../include/functions_reports.php:511 -msgid "SQL vertical bar graph" -msgstr "SQL вертикальная панель графика" - -#: ../../include/functions_reports.php:513 -msgid "SQL pie graph" -msgstr "SQL секторный график" - -#: ../../include/functions_reports.php:515 -msgid "SQL horizonal bar graph" -msgstr "SQL горизонтальная панель графика" - -#: ../../include/functions_reports.php:519 -msgid "Automatic combined Graph" -msgstr "Автоматически комбинированный график" - -#: ../../include/functions_reports.php:524 -#: ../../include/functions_reports.php:526 -#: ../../include/functions_reports.php:528 -#: ../../include/functions_reports.php:530 -msgid "ITIL" -msgstr "ITIL" - -#: ../../include/functions_reports.php:548 -#: ../../include/functions_reports.php:550 -msgid "Forecasting" -msgstr "Прогнозирование" - -#: ../../include/functions_reports.php:551 -msgid "Projection graph" -msgstr "Проектирование графика" - -#: ../../include/functions_reports.php:562 -msgid "Monitor report" -msgstr "Отчет по мониторам" - -#: ../../include/functions_reports.php:564 -msgid "Serialize data" -msgstr "Упорядоченные данные" - -#: ../../include/functions_reports.php:568 -msgid "Historical Data" -msgstr "" - -#: ../../include/functions_reports.php:572 -#: ../../include/functions_reports.php:574 -#: ../../include/functions_reports.php:576 -#: ../../include/functions_reports.php:579 -#: ../../include/functions_reports.php:583 -#: ../../include/functions_reports.php:586 -#: ../../include/functions_reports.php:588 -#: ../../include/functions_reports.php:590 -msgid "Grouped" -msgstr "Сгруппировано" - -#: ../../include/functions_reports.php:584 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1063 -msgid "SQL query" -msgstr "Запрос SQL" - -#: ../../include/functions_reports.php:589 -msgid "Network interfaces" -msgstr "" - -#: ../../include/functions_reports.php:594 -#: ../../include/functions_reports.php:596 -msgid "Text/HTML " -msgstr "Text/HTML " - -#: ../../include/functions_reports.php:597 -msgid "Import text from URL" -msgstr "Импорт текста из URL" - -#: ../../include/functions_reports.php:602 -msgid "Alert report module" -msgstr "Модуль отчета оповещение" - -#: ../../include/functions_reports.php:604 -msgid "Alert report agent" -msgstr "Агент отчета оповещения" - -#: ../../include/functions_reports.php:607 -msgid "Alert report group" -msgstr "Группа отчета оповещения" - -#: ../../include/functions_reports.php:613 -msgid "Event report agent" -msgstr "Агент Отчета событий" - -#: ../../include/functions_reports.php:615 -msgid "Event report module" -msgstr "Модуль отчета событий" - -#: ../../include/functions_reports.php:617 -msgid "Event report group" -msgstr "Группа отчета событий" - -#: ../../include/functions_reports.php:624 -msgid "Inventory changes" -msgstr "Изменения инвентаризации" - -#: ../../include/functions_reports.php:632 -#: ../../include/functions_reporting.php:3340 -msgid "Agent configuration" -msgstr "Агент конфигурации" - -#: ../../include/functions_reports.php:634 -#: ../../include/functions_reporting.php:2358 -msgid "Group configuration" -msgstr "Группа конфигурации" - -#: ../../include/functions_reports.php:636 -msgid "Netflow area chart" -msgstr "Диаграмма области сетевого потока" - -#: ../../include/functions_reports.php:638 -msgid "Netflow pie chart" -msgstr "Секторная диаграмма сетевого потока" - -#: ../../include/functions_reports.php:640 -msgid "Netflow data table" -msgstr "Таблица данных сетевого потока" - -#: ../../include/functions_reports.php:642 -msgid "Netflow statistics table" -msgstr "Таблица статистики сетевого потока" - -#: ../../include/functions_reports.php:644 -msgid "Netflow summary table" -msgstr "Суммарная таблица сетевого потока" - -#: ../../include/functions_agents.php:527 -#: ../../godmode/massive/massive_copy_modules.php:434 -msgid "No source agent to copy" -msgstr "Нет источника агента для копирования" - -#: ../../include/functions_agents.php:532 -#: ../../godmode/massive/massive_copy_modules.php:452 -msgid "No destiny agent(s) to copy" -msgstr "Нет предназначенного агента(ов) для копирования" - -#: ../../include/functions_agents.php:557 ../../godmode/db/db_refine.php:47 -#: ../../godmode/massive/massive_copy_modules.php:447 -msgid "No modules have been selected" -msgstr "Модули не выбраны" - -#: ../../include/functions_agents.php:664 -msgid "" -"There was an error copying the agent configuration, the copy has been " -"cancelled" -msgstr "" -"Найдена ошибка при копировании конфигурации агента, копия была отменена" - -#: ../../include/functions_agents.php:2098 -#: ../../include/functions_agents.php:2123 -#: ../../include/functions_agents.php:2148 -msgid "No Monitors" -msgstr "Нет Мониторов" - -#: ../../include/functions_agents.php:2102 -#: ../../include/functions_agents.php:2127 -#: ../../include/functions_agents.php:2152 -#: ../../include/functions_reporting.php:6310 -msgid "At least one module in CRITICAL status" -msgstr "Хотя бы один модуль в КРИТИЧЕСКОМ статусе" - -#: ../../include/functions_agents.php:2106 -#: ../../include/functions_agents.php:2131 -#: ../../include/functions_agents.php:2156 -#: ../../include/functions_reporting.php:6314 -msgid "At least one module in WARNING status" -msgstr "Хотя бы один модуль в статусе ПРЕДУПРЕЖДЕНИЯ" - -#: ../../include/functions_agents.php:2110 -#: ../../include/functions_agents.php:2135 -#: ../../include/functions_agents.php:2160 -#: ../../include/functions_reporting.php:6318 -msgid "At least one module is in UKNOWN status" -msgstr "Хотя бы один модуль в НЕИЗВЕСТНОМ статусе" - -#: ../../include/functions_agents.php:2114 -#: ../../include/functions_agents.php:2139 -#: ../../include/functions_agents.php:2164 -#: ../../include/functions_reporting.php:6322 -msgid "All Monitors OK" -msgstr "Все мониторы Ок" - -#: ../../include/functions_incidents.php:88 -#: ../../include/functions_incidents.php:107 -msgid "Active incidents" -msgstr "Активные инциденты" - -#: ../../include/functions_incidents.php:89 -#: ../../include/functions_incidents.php:110 -msgid "Active incidents, with comments" -msgstr "Активные инциденты, с комментриями" - -#: ../../include/functions_incidents.php:90 -#: ../../include/functions_incidents.php:113 -msgid "Rejected incidents" -msgstr "Отклоненные инциденты" - -#: ../../include/functions_incidents.php:91 -#: ../../include/functions_incidents.php:116 -msgid "Expired incidents" -msgstr "Истекшие инциденты" - -#: ../../include/functions_incidents.php:92 -#: ../../include/functions_incidents.php:119 -msgid "Closed incidents" -msgstr "Закрытые инциденты" - -#: ../../include/functions_snmp.php:67 -msgid "Load Average (Last minute)" -msgstr "" - -#: ../../include/functions_snmp.php:71 -msgid "Load Average (Last 5 minutes)" -msgstr "" - -#: ../../include/functions_snmp.php:75 -msgid "Load Average (Last 15 minutes)" -msgstr "" - -#: ../../include/functions_snmp.php:79 -msgid "Total Swap Size configured for the host" -msgstr "" - -#: ../../include/functions_snmp.php:83 -msgid "Available Swap Space on the host" -msgstr "" - -#: ../../include/functions_snmp.php:87 -msgid "Total Real/Physical Memory Size on the host" -msgstr "" - -#: ../../include/functions_snmp.php:91 -msgid "Available Real/Physical Memory Space on the host" -msgstr "" - -#: ../../include/functions_snmp.php:95 -msgid "Total Available Memory on the host" -msgstr "" - -#: ../../include/functions_snmp.php:99 -msgid "Total Cached Memory" -msgstr "" - -#: ../../include/functions_snmp.php:103 -msgid "Total Buffered Memory" -msgstr "" - -#: ../../include/functions_snmp.php:107 -msgid "Amount of memory swapped in from disk (kB/s)" -msgstr "" - -#: ../../include/functions_snmp.php:111 -msgid "Amount of memory swapped to disk (kB/s)" -msgstr "" - -#: ../../include/functions_snmp.php:115 -msgid "Number of blocks sent to a block device" -msgstr "" - -#: ../../include/functions_snmp.php:119 -msgid "Number of blocks received from a block device" -msgstr "" - -#: ../../include/functions_snmp.php:123 -msgid "Number of interrupts processed" -msgstr "" - -#: ../../include/functions_snmp.php:127 -msgid "Number of context switches" -msgstr "" - -#: ../../include/functions_snmp.php:131 -msgid "user CPU time" -msgstr "" - -#: ../../include/functions_snmp.php:135 -msgid "system CPU time" -msgstr "" - -#: ../../include/functions_snmp.php:139 -msgid "idle CPU time" -msgstr "" - -#: ../../include/functions_snmp.php:143 -msgid "system Up time" -msgstr "" - -#: ../../include/functions_reporting.php:1153 -msgid "Event Report Group" -msgstr "" - -#: ../../include/functions_reporting.php:1329 -msgid "Event Report Module" -msgstr "" - -#: ../../include/functions_reporting.php:1499 -msgid "Agent/Modules" -msgstr "" - -#: ../../include/functions_reporting.php:1616 -msgid "Exception - Everything" -msgstr "Исключения - Все" - -#: ../../include/functions_reporting.php:1621 -#, php-format -msgid "Exception - Modules over or equal to %s" -msgstr "Исключения - Модули выше или равные %s" - -#: ../../include/functions_reporting.php:1623 -#, php-format -msgid "Modules over or equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1627 -#, php-format -msgid "Exception - Modules under or equal to %s" -msgstr "Исключения - Модули ниже или равные %s" - -#: ../../include/functions_reporting.php:1629 -#, php-format -msgid "Modules under or equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1633 -#, php-format -msgid "Exception - Modules under %s" -msgstr "Исключения - Модули ниже %s" - -#: ../../include/functions_reporting.php:1635 -#, php-format -msgid "Modules under %s" -msgstr "" - -#: ../../include/functions_reporting.php:1639 -#, php-format -msgid "Exception - Modules over %s" -msgstr "Исключения - Модули выше %s" - -#: ../../include/functions_reporting.php:1641 -#, php-format -msgid "Modules over %s" -msgstr "" - -#: ../../include/functions_reporting.php:1645 -#, php-format -msgid "Exception - Equal to %s" -msgstr "Исключение - Равно %s" - -#: ../../include/functions_reporting.php:1647 -#, php-format -msgid "Equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1651 -#, php-format -msgid "Exception - Not equal to %s" -msgstr "Исключения - Не равные %s" - -#: ../../include/functions_reporting.php:1653 -#, php-format -msgid "Not equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1657 -msgid "Exception - Modules at normal status" -msgstr "Исключения - Модули в нормальном статусе" - -#: ../../include/functions_reporting.php:1658 -msgid "Modules at normal status" -msgstr "Модули в нормальном статусе" - -#: ../../include/functions_reporting.php:1662 -msgid "Exception - Modules at critical or warning status" -msgstr "Исключения - Модули в критическом или предупреждающем статусе" - -#: ../../include/functions_reporting.php:1663 -msgid "Modules at critical or warning status" -msgstr "Модули в критическом или предупреждающем статусе" - -#: ../../include/functions_reporting.php:1848 -msgid "There are no Modules under those conditions." -msgstr "" - -#: ../../include/functions_reporting.php:1851 -#, php-format -msgid "There are no Modules over or equal to %s." -msgstr "" - -#: ../../include/functions_reporting.php:1854 -#, php-format -msgid "There are no Modules less or equal to %s." -msgstr "" - -#: ../../include/functions_reporting.php:1857 -#, php-format -msgid "There are no Modules less %s." -msgstr "" - -#: ../../include/functions_reporting.php:1860 -#, php-format -msgid "There are no Modules over %s." -msgstr "" - -#: ../../include/functions_reporting.php:1863 -#, php-format -msgid "There are no Modules equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1866 -#, php-format -msgid "There are no Modules not equal to %s" -msgstr "" - -#: ../../include/functions_reporting.php:1869 -msgid "There are no Modules normal status" -msgstr "" - -#: ../../include/functions_reporting.php:1872 -msgid "There are no Modules at critial or warning status" -msgstr "Здесь нет Модулей в критическом или предупреждающем статусе" - -#: ../../include/functions_reporting.php:2074 -msgid "Event Report Agent" -msgstr "" - -#: ../../include/functions_reporting.php:2246 -msgid "Database Serialized" -msgstr "" - -#: ../../include/functions_reporting.php:2434 -msgid "Network interfaces report" -msgstr "" - -#: ../../include/functions_reporting.php:2453 -msgid "" -"The group has no agents or none of the agents has any network interface" -msgstr "" - -#: ../../include/functions_reporting.php:2503 -msgid "bytes/s" -msgstr "" - -#: ../../include/functions_reporting.php:2532 -msgid "Alert Report Group" -msgstr "" - -#: ../../include/functions_reporting.php:2659 -msgid "Alert Report Agent" -msgstr "" - -#: ../../include/functions_reporting.php:2786 -msgid "Alert Report Module" -msgstr "" - -#: ../../include/functions_reporting.php:2938 -msgid "SQL Graph Vertical Bars" -msgstr "" - -#: ../../include/functions_reporting.php:2941 -msgid "SQL Graph Horizontal Bars" -msgstr "" - -#: ../../include/functions_reporting.php:2944 -msgid "SQL Graph Pie" -msgstr "" - -#: ../../include/functions_reporting.php:3069 -msgid "Netflow Area" -msgstr "" - -#: ../../include/functions_reporting.php:3072 -msgid "Netflow Pie" -msgstr "" - -#: ../../include/functions_reporting.php:3075 -msgid "Netflow Data" -msgstr "" - -#: ../../include/functions_reporting.php:3078 -msgid "Netflow Statistics" -msgstr "" - -#: ../../include/functions_reporting.php:3081 -msgid "Netflow Summary" -msgstr "" - -#: ../../include/functions_reporting.php:3204 -msgid "Prediction Date" -msgstr "" - -#: ../../include/functions_reporting.php:3734 -msgid "" -"Illegal query: Due security restrictions, there are some tokens or words you " -"cannot use: *, delete, drop, alter, modify, union, password, pass, insert or " -"update." -msgstr "" - -#: ../../include/functions_reporting.php:3831 -msgid "No Address" -msgstr "" - -#: ../../include/functions_reporting.php:4227 -msgid "Minimal" -msgstr "Минимум" - -#: ../../include/functions_reporting.php:4230 -msgid "Maximun" -msgstr "Максимум" - -#: ../../include/functions_reporting.php:4750 -#: ../../include/functions_reporting.php:4864 -#: ../../include/functions_reporting.php:4993 -msgid "Maximum of events shown" -msgstr "" - -#: ../../include/functions_reporting.php:5355 -#: ../../include/functions_reporting.php:5392 -msgid "Server health" -msgstr "Стабильность сервера" - -#: ../../include/functions_reporting.php:5355 -#, php-format -msgid "%d Downed servers" -msgstr "%d серверов, вышедших из строя" - -#: ../../include/functions_reporting.php:5363 -#: ../../include/functions_reporting.php:5395 -msgid "Monitor health" -msgstr "Мониторинг состояния" - -#: ../../include/functions_reporting.php:5363 -#, php-format -msgid "%d Not Normal monitors" -msgstr "%d Не обычных мониторов" - -#: ../../include/functions_reporting.php:5365 -#: ../../include/functions_reporting.php:5396 -msgid "of monitors up" -msgstr "мониторов включено" - -#: ../../include/functions_reporting.php:5371 -#: ../../include/functions_reporting.php:5398 -msgid "Module sanity" -msgstr "Необходимость модуля" - -#: ../../include/functions_reporting.php:5371 -#, php-format -msgid "%d Not inited monitors" -msgstr "%d Не инициализированных мониторов" - -#: ../../include/functions_reporting.php:5373 -#: ../../include/functions_reporting.php:5399 -msgid "of total modules inited" -msgstr "из всего запущенных модулей" - -#: ../../include/functions_reporting.php:5379 -#: ../../include/functions_reporting.php:5401 -#: ../../include/functions_reporting_html.php:1922 -msgid "Alert level" -msgstr "Уровень ошибки" - -#: ../../include/functions_reporting.php:5379 -#: ../../include/functions_reporting.php:6370 -#: ../../include/functions_reporting.php:6379 -#, php-format -msgid "%d Fired alerts" -msgstr "%d Запущенных оповещений" - -#: ../../include/functions_reporting.php:5381 -#: ../../include/functions_reporting.php:5402 -msgid "of defined alerts not fired" -msgstr "из определенных предупреждений, не запущенных" - -#: ../../include/functions_reporting.php:5452 -msgid "Defined and fired alerts" -msgstr "Определенные и запущеные оповещения" - -#: ../../include/functions_reporting.php:5507 -#: ../../operation/events/sound_events.php:75 -msgid "Monitor critical" -msgstr "Критический монитор" - -#: ../../include/functions_reporting.php:5511 -#: ../../operation/events/sound_events.php:76 -msgid "Monitor warning" -msgstr "Монитор предупреждения" - -#: ../../include/functions_reporting.php:5518 -msgid "Monitor normal" -msgstr "Монитор нормальный" - -#: ../../include/functions_reporting.php:5522 -msgid "Monitor unknown" -msgstr "Монитор неизвестный" - -#: ../../include/functions_reporting.php:5529 -msgid "Monitor not init" -msgstr "Монитор без лимита" - -#: ../../include/functions_reporting.php:5553 -#: ../../include/functions_reporting.php:5564 -msgid "Monitors by status" -msgstr "Мониторы по статусу" - -#: ../../include/functions_reporting.php:5610 -#: ../../include/functions_reporting_html.php:2636 -msgid "Total agents and monitors" -msgstr "Всего агентов и мониторв" - -#: ../../include/functions_reporting.php:5633 -msgid "Defined users" -msgstr "Определенные пользователи" - -#: ../../include/functions_reporting.php:6271 -msgid "Agent without data" -msgstr "Агент без данных" - -#: ../../include/functions_reporting.php:6358 -#: ../../include/functions_reporting.php:6365 -#, php-format -msgid "%d Total modules" -msgstr "%d общее число модулей" - -#: ../../include/functions_reporting.php:6359 -#: ../../include/functions_reporting.php:6366 -#, php-format -msgid "%d Normal modules" -msgstr "%d Обычные модули" - -#: ../../include/functions_reporting.php:6360 -#: ../../include/functions_reporting.php:6367 -#, php-format -msgid "%d Critical modules" -msgstr "%d Критические модули" - -#: ../../include/functions_reporting.php:6361 -#: ../../include/functions_reporting.php:6368 -#, php-format -msgid "%d Warning modules" -msgstr "%d Предупреждающие модули" - -#: ../../include/functions_reporting.php:6362 -#: ../../include/functions_reporting.php:6369 -#, php-format -msgid "%d Unknown modules" -msgstr "%d Неизвестные модули" - -#: ../../include/functions_reporting.php:6373 -#, php-format -msgid "%d Total agents" -msgstr "%d Всего агентов" - -#: ../../include/functions_reporting.php:6374 -#, php-format -msgid "%d Normal agents" -msgstr "%d Обычные агенты" - -#: ../../include/functions_reporting.php:6375 -#, php-format -msgid "%d Critical agents" -msgstr "%d Критические агенты" - -#: ../../include/functions_reporting.php:6376 -#, php-format -msgid "%d Warning agents" -msgstr "%d предупреждающие агенты" - -#: ../../include/functions_reporting.php:6377 -#, php-format -msgid "%d Unknown agents" -msgstr "%d Неизвестные агенты" - -#: ../../include/functions_reporting.php:6378 -#, php-format -msgid "%d not init agents" -msgstr "" - -#: ../../include/functions_reporting.php:8212 -msgid "Total running modules" -msgstr "Всего работающих модулей" - -#: ../../include/functions_reporting.php:8216 -#: ../../include/functions_reporting.php:8233 -#: ../../include/functions_reporting.php:8244 -#: ../../include/functions_reporting.php:8258 -#: ../../include/functions_reporting.php:8270 -#: ../../include/functions_reporting.php:8282 -#: ../../include/functions_reporting.php:8294 -#: ../../include/functions_reporting.php:8310 -msgid "Ratio" -msgstr "Коэффициент" - -#: ../../include/functions_reporting.php:8216 -#: ../../include/functions_reporting.php:8233 -#: ../../include/functions_reporting.php:8244 -#: ../../include/functions_reporting.php:8258 -#: ../../include/functions_reporting.php:8270 -#: ../../include/functions_reporting.php:8282 -#: ../../include/functions_reporting.php:8294 -#: ../../include/functions_reporting.php:8310 -msgid "Modules by second" -msgstr "Модули по второму" - -#: ../../include/functions_reporting.php:8228 -msgid "Local modules" -msgstr "Локальные модули" - -#: ../../include/functions_reporting.php:8240 -msgid "Remote modules" -msgstr "Удаленные модули" - -#: ../../include/functions_reporting.php:8252 -msgid "Network modules" -msgstr "Сетевые модули" - -#: ../../include/functions_reporting.php:8266 -msgid "Plugin modules" -msgstr "Плагин модулей" - -#: ../../include/functions_reporting.php:8278 -msgid "Prediction modules" -msgstr "Прогнозирование модулей" - -#: ../../include/functions_reporting.php:8290 -msgid "WMI modules" -msgstr "WMI Модулей" - -#: ../../include/functions_reporting.php:8302 -msgid "Web modules" -msgstr "Веб модули" - -#: ../../include/functions_reporting.php:8341 ../../godmode/db/db_main.php:105 -msgid "Total events" -msgstr "Всего событий" - -#: ../../include/functions.php:217 -msgid "," -msgstr "," - -#: ../../include/functions.php:413 ../../include/functions.php:547 -msgid "s" -msgstr "сек" - -#: ../../include/functions.php:414 ../../include/functions.php:548 -msgid "d" -msgstr "д." - -#: ../../include/functions.php:415 ../../include/functions.php:549 -msgid "M" -msgstr "M" - -#: ../../include/functions.php:416 ../../include/functions.php:550 -msgid "Y" -msgstr "Г" - -#: ../../include/functions.php:417 ../../include/functions.php:551 -msgid "m" -msgstr "мин" - -#: ../../include/functions.php:418 ../../include/functions.php:552 -msgid "h" -msgstr "ч" - -#: ../../include/functions.php:419 ../../include/functions.php:553 -msgid "N" -msgstr "Н" - -#: ../../include/functions.php:1001 ../../include/functions_events.php:1401 -msgid "Monitor Critical" -msgstr "Монитор Критического" - -#: ../../include/functions.php:1002 ../../include/functions_events.php:1404 -msgid "Monitor Warning" -msgstr "Монитор Предупреждения" - -#: ../../include/functions.php:1003 ../../include/functions_events.php:1407 -msgid "Monitor Normal" -msgstr "Монитор Обычного" - -#: ../../include/functions.php:1005 -msgid "Monitor Unknown" -msgstr "Монитор неизвестен" - -#: ../../include/functions.php:1008 ../../include/functions_events.php:1123 -#: ../../include/functions_events.php:1413 -msgid "Alert recovered" -msgstr "Оповещение восстановлено" - -#: ../../include/functions.php:1009 ../../include/functions_events.php:1158 -#: ../../include/functions_events.php:1416 -msgid "Alert ceased" -msgstr "Оповещение прекращено" - -#: ../../include/functions.php:1010 ../../include/functions_events.php:1419 -msgid "Alert manual validation" -msgstr "Подтверждение руководства оповещений" - -#: ../../include/functions.php:1012 -msgid "Agent created" -msgstr "" - -#: ../../include/functions.php:1013 ../../include/functions_events.php:1422 -msgid "Recon host detected" -msgstr "Хост рекона определен" - -#: ../../include/functions.php:1016 ../../include/functions_events.php:1155 -#: ../../include/functions_events.php:1431 -msgid "Configuration change" -msgstr "Конфигурационные изменения" - -#: ../../include/functions.php:1978 -msgid "custom" -msgstr "пользовательский" - -#: ../../include/functions.php:1983 ../../include/functions.php:1984 -#, php-format -msgid "%s minutes" -msgstr "%s минут" - -#: ../../include/functions.php:1986 ../../include/functions.php:1987 -#, php-format -msgid "%s hours" -msgstr "%s часов" - -#: ../../include/functions.php:1989 ../../include/functions_netflow.php:1090 -#: ../../include/ajax/module.php:123 -msgid "1 week" -msgstr "1 неделя" - -#: ../../include/functions.php:1992 ../../include/functions.php:1993 -#, php-format -msgid "%s months" -msgstr "%s месяцев" - -#: ../../include/functions.php:1995 ../../include/functions.php:1996 -#, php-format -msgid "%s years" -msgstr "%s лет" - -#: ../../include/functions.php:1999 -msgid "Default values will be used" -msgstr "Значения по умолчанию не будут исползованы" - -#: ../../include/functions.php:2153 -msgid "The uploaded file was only partially uploaded" -msgstr "" - -#: ../../include/functions.php:2156 -#: ../../operation/integria_incidents/incident.php:170 -msgid "No file was uploaded" -msgstr "Файл не был загружен" - -#: ../../include/functions.php:2159 -msgid "Missing a temporary folder" -msgstr "" - -#: ../../include/functions.php:2162 -msgid "Failed to write file to disk" -msgstr "" - -#: ../../include/functions.php:2165 -msgid "File upload stopped by extension" -msgstr "" - -#: ../../include/functions.php:2169 -msgid "Unknown upload error" -msgstr "" - -#: ../../include/functions.php:2265 -msgid "Source ID" -msgstr "" - -#: ../../include/functions.php:2272 -msgid "No data found to export" -msgstr "" - -#: ../../include/functions.php:2535 -#: ../../operation/gis_maps/render_view.php:123 -msgid "5 seconds" -msgstr "5 секунд" - -#: ../../include/functions.php:2536 -#: ../../operation/gis_maps/render_view.php:124 -msgid "10 seconds" -msgstr "10 секунд" - -#: ../../include/functions.php:2537 -msgid "15 seconds" -msgstr "15 секунд" - -#: ../../include/functions.php:2538 -#: ../../operation/gis_maps/render_view.php:125 -msgid "30 seconds" -msgstr "30 секунд" - -#: ../../include/functions.php:2542 -msgid "15 minutes" -msgstr "15 минут" - -#: ../../include/functions.php:2543 ../../include/ajax/module.php:118 -msgid "30 minutes" -msgstr "30 минут" - -#: ../../include/functions_netflow.php:361 -msgid "Total flows" -msgstr "Всего потоков" - -#: ../../include/functions_netflow.php:366 -msgid "Total bytes" -msgstr "Всего байтов" - -#: ../../include/functions_netflow.php:371 -msgid "Total packets" -msgstr "Всего пакетов" - -#: ../../include/functions_netflow.php:376 -msgid "Average bits per second" -msgstr "Среднее число битов в секунду" - -#: ../../include/functions_netflow.php:381 -msgid "Average packets per second" -msgstr "Среднее число пакетов в секунду" - -#: ../../include/functions_netflow.php:386 -msgid "Average bytes per packet" -msgstr "Среднее число байтов в пакете" - -#: ../../include/functions_netflow.php:1028 -msgid "Area graph" -msgstr "Площадь графика" - -#: ../../include/functions_netflow.php:1029 -msgid "Pie graph and Summary table" -msgstr "Секторный график и Таблица суммирования" - -#: ../../include/functions_netflow.php:1030 -msgid "Statistics table" -msgstr "Таблица статистики" - -#: ../../include/functions_netflow.php:1031 -#: ../../operation/agentes/exportdata.php:321 -msgid "Data table" -msgstr "Таблица данных" - -#: ../../include/functions_netflow.php:1032 -msgid "Circular mesh" -msgstr "" - -#: ../../include/functions_netflow.php:1033 -#: ../../include/functions_netflow.php:1387 -msgid "Host detailed traffic" -msgstr "" - -#: ../../include/functions_netflow.php:1046 -#: ../../include/functions_netflow.php:1079 -msgid "10 mins" -msgstr "10 мин." - -#: ../../include/functions_netflow.php:1047 -#: ../../include/functions_netflow.php:1080 -msgid "15 mins" -msgstr "15 мин." - -#: ../../include/functions_netflow.php:1048 -#: ../../include/functions_netflow.php:1081 -msgid "30 mins" -msgstr "30 мин" - -#: ../../include/functions_netflow.php:1055 -#: ../../include/functions_netflow.php:1088 -msgid "5 days" -msgstr "5 дней" - -#: ../../include/functions_netflow.php:1060 ../../include/ajax/module.php:126 -msgid "3 months" -msgstr "3 месяца" - -#: ../../include/functions_netflow.php:1062 -msgid "Last year" -msgstr "Прошлый год" - -#: ../../include/functions_netflow.php:1063 ../../include/ajax/module.php:129 -msgid "2 years" -msgstr "2 года" - -#: ../../include/functions_netflow.php:1076 -msgid "1 min" -msgstr "1 мин" - -#: ../../include/functions_netflow.php:1077 -msgid "2 mins" -msgstr "2 мин" - -#: ../../include/functions_netflow.php:1078 -msgid "5 mins" -msgstr "5 мин." - -#: ../../include/functions_netflow.php:1129 -#: ../../include/functions_netflow.php:1139 -#: ../../include/functions_netflow.php:1188 -#: ../../include/functions_netflow.php:1246 -#: ../../include/functions_netflow.php:1252 -#: ../../include/functions_netflow.php:1285 -msgid "Aggregate" -msgstr "Совокупность" - -#: ../../include/functions_netflow.php:1131 -#: ../../include/functions_netflow.php:1141 -#: ../../include/functions_netflow.php:1158 -#: ../../include/functions_netflow.php:1166 -#: ../../include/functions_netflow.php:1190 -#: ../../operation/integria_incidents/incident.incident.php:97 -#: ../../operation/integria_incidents/incident.list.php:96 -#: ../../operation/netflow/nf_live_view.php:245 -#: ../../godmode/reporting/reporting_builder.item_editor.php:683 -msgid "Resolution" -msgstr "Разрешение" - -#: ../../include/functions_netflow.php:1358 -msgid "Sent" -msgstr "" - -#: ../../include/functions_netflow.php:1365 -msgid "Received" -msgstr "" - -#: ../../include/functions_netflow.php:1432 -msgid "Error generating report" -msgstr "Ошибка при формировани отчета" - -#: ../../include/functions_netflow.php:1629 -msgid "MB" -msgstr "МБ" - -#: ../../include/functions_netflow.php:1631 -msgid "MB/s" -msgstr "МБ/c" - -#: ../../include/functions_netflow.php:1633 -msgid "kB" -msgstr "Кбайт" - -#: ../../include/functions_netflow.php:1635 -msgid "kB/s" -msgstr "кб/с" - -#: ../../include/functions_netflow.php:1637 -#: ../../include/functions_config.php:424 -#: ../../include/functions_config.php:1309 -#: ../../operation/netflow/nf_live_view.php:385 -msgid "Bytes" -msgstr "Байты" - -#: ../../include/functions_netflow.php:1639 -msgid "B/s" -msgstr "Б/с" - -#: ../../include/functions_netflow.php:1653 -msgid "Dst port" -msgstr "порт назначения" - -#: ../../include/functions_netflow.php:1655 -msgid "Dst IP" -msgstr "IP назначения" - -#: ../../include/functions_netflow.php:1657 -#: ../../operation/netflow/nf_live_view.php:381 -#: ../../godmode/netflow/nf_edit_form.php:226 -msgid "Protocol" -msgstr "Протокол" - -#: ../../include/functions_netflow.php:1659 -msgid "Src IP" -msgstr "IP источника" - -#: ../../include/functions_netflow.php:1661 -msgid "Src port" -msgstr "порт источника" - -#: ../../include/functions_visual_map.php:895 -msgid "Last value: " -msgstr "" - -#: ../../include/functions_visual_map.php:1254 -msgid "Agent successfully added to layout" -msgstr "Агент успешно добавлен в макет" - -#: ../../include/functions_visual_map.php:1400 -msgid "Modules successfully added to layout" -msgstr "Модули успешно добавлены в макет" - -#: ../../include/functions_visual_map.php:1599 -msgid "Agents successfully added to layout" -msgstr "Агенты успешно добавлены в макет" - -#: ../../include/functions_visual_map.php:1939 -msgid "Cannot load the visualmap" -msgstr "Не удается загрузить визуальную карту" - -#: ../../include/functions_visual_map.php:2267 -#: ../../include/functions_visual_map_editor.php:62 -#: ../../include/functions_visual_map_editor.php:578 -#: ../../godmode/reporting/visual_console_builder.elements.php:188 -msgid "Box" -msgstr "" - -#: ../../include/functions_visual_map.php:2275 -msgid "Percentile bar" -msgstr "Меню процентиля" - -#: ../../include/functions_visual_map.php:2279 -msgid "Static graph" -msgstr "Статический график" - -#: ../../include/functions_visual_map.php:2284 -#: ../../include/functions_visual_map_editor.php:574 -#: ../../godmode/reporting/visual_console_builder.elements.php:158 -msgid "Simple Value" -msgstr "Простое значение" - -#: ../../include/functions_visual_map.php:2288 -#: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:167 -#: ../../include/functions_visual_map_editor.php:575 -#: ../../godmode/reporting/graph_builder.graph_editor.php:83 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.elements.php:178 -#: ../../godmode/reporting/visual_console_builder.wizard.php:257 -msgid "Label" -msgstr "Метка" - -#: ../../include/functions_visual_map_editor.php:53 -#: ../../include/functions_visual_map_editor.php:326 -#: ../../godmode/reporting/visual_console_builder.data.php:121 -#: ../../godmode/reporting/visual_console_builder.elements.php:111 -msgid "Background" -msgstr "Фон" - -#: ../../include/functions_visual_map_editor.php:54 -#: ../../include/functions_visual_map_editor.php:571 -#: ../../godmode/reporting/visual_console_builder.elements.php:138 -#: ../../godmode/reporting/visual_console_builder.wizard.php:104 -msgid "Static Graph" -msgstr "График статистики" - -#: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:572 -#: ../../godmode/reporting/visual_console_builder.wizard.php:105 -msgid "Percentile Item" -msgstr "Процентиль элемента" - -#: ../../include/functions_visual_map_editor.php:57 -#: ../../godmode/reporting/visual_console_builder.wizard.php:107 -msgid "Simple value" -msgstr "Простое значение" - -#: ../../include/functions_visual_map_editor.php:57 -msgid "" -"To use 'label'field, you should write\n" -"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be " -"printed at the end." -msgstr "" - -#: ../../include/functions_visual_map_editor.php:95 -#: ../../include/functions_visual_map_editor.php:119 -msgid "Border color" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:131 -msgid "Border width" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:140 -msgid "Fill color" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:198 -msgid "Enable link" -msgstr "Включить ссылку" - -#: ../../include/functions_visual_map_editor.php:217 -msgid "Background color" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:219 -msgid "White" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:220 -msgid "Black" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:221 -msgid "Transparent" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:317 -#: ../../godmode/reporting/visual_console_builder.wizard.php:153 -msgid "Min value" -msgstr "Мин. значение" - -#: ../../include/functions_visual_map_editor.php:318 -#: ../../include/functions_visual_map_editor.php:360 -#: ../../godmode/reporting/visual_console_builder.wizard.php:154 -#: ../../godmode/reporting/visual_console_builder.wizard.php:167 -msgid "Max value" -msgstr "Максимальное значение" - -#: ../../include/functions_visual_map_editor.php:319 -#: ../../godmode/reporting/visual_console_builder.wizard.php:155 -msgid "Avg value" -msgstr "Среднее значение" - -#: ../../include/functions_visual_map_editor.php:333 -msgid "Original Size" -msgstr "Исходный размер" - -#: ../../include/functions_visual_map_editor.php:340 -msgid "Aspect ratio" -msgstr "Соотношение сторон" - -#: ../../include/functions_visual_map_editor.php:341 -msgid "Width proportional" -msgstr "Ширина пропорциональна" - -#: ../../include/functions_visual_map_editor.php:347 -msgid "Height proportional" -msgstr "высота пропорциональна" - -#: ../../include/functions_visual_map_editor.php:376 -#: ../../include/functions_visual_map_editor.php:395 -#: ../../godmode/reporting/visual_console_builder.wizard.php:187 -msgid "Value to show" -msgstr "Показываемое значение" - -#: ../../include/functions_visual_map_editor.php:477 -msgid "For use the original image file size, set 0 width and 0 height." -msgstr "" -"Для использования оригинального размера изображение, укажите 0 в значениях " -"длинны и ширины." - -#: ../../include/functions_visual_map_editor.php:504 -#: ../../godmode/reporting/visual_console_builder.elements.php:81 -msgid "Map linked" -msgstr "Карта связана" - -#: ../../include/functions_visual_map_editor.php:513 -msgid "Lines haven't advanced options" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:540 -msgid "Click start point<br />of the line" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:545 -msgid "Click end point<br />of the line" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:586 -msgid "Show grid" -msgstr "Показать сетку" - -#: ../../include/functions_visual_map_editor.php:588 -msgid "Delete item" -msgstr "Удалить элемент" - -#: ../../include/functions_visual_map_editor.php:589 -msgid "Copy item" -msgstr "" - -#: ../../include/functions_visual_map_editor.php:617 -msgid "No image or name defined." -msgstr "Нет определенного изображения или имени." - -#: ../../include/functions_visual_map_editor.php:619 -msgid "No label defined." -msgstr "Метка не определена." - -#: ../../include/functions_visual_map_editor.php:621 -msgid "No image defined." -msgstr "Изображение не определено." - -#: ../../include/functions_visual_map_editor.php:623 -msgid "No process defined." -msgstr "Процесс не определен." - -#: ../../include/functions_visual_map_editor.php:625 -msgid "No Max value defined." -msgstr "Макс значение не определено." - -#: ../../include/functions_visual_map_editor.php:627 -msgid "No width defined." -msgstr "Ширина не определена." - -#: ../../include/functions_visual_map_editor.php:629 -msgid "No period defined." -msgstr "Период не определен." - -#: ../../include/functions_visual_map_editor.php:631 -msgid "No agent defined." -msgstr "Агент не определен." - -#: ../../include/functions_visual_map_editor.php:633 -msgid "No module defined." -msgstr "Модуль не определен." - -#: ../../include/functions_visual_map_editor.php:636 -msgid "Successfully save the changes." -msgstr "Изменения успешно сохранены." - -#: ../../include/functions_visual_map_editor.php:638 -msgid "Could not be save" -msgstr "Не может быть сохранено" - -#: ../../include/functions_custom_graphs.php:212 -#: ../../godmode/reporting/reporting_builder.list_items.php:312 -msgid "No items." -msgstr "" - -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:678 -#: ../../godmode/agentes/planned_downtime.editor.php:206 -msgid "" -"Not created. Error inserting data. Start time must be higher than the " -"current time" -msgstr "" -"Не создан. Произошла ошибка при вставке данных. Время начала должно быть " -"выше, чем текущее время" - -#: ../../include/functions_planned_downtimes.php:45 -#: ../../include/functions_planned_downtimes.php:50 -#: ../../include/functions_planned_downtimes.php:53 -#: ../../include/functions_planned_downtimes.php:682 -#: ../../include/functions_planned_downtimes.php:687 -#: ../../include/functions_planned_downtimes.php:695 -#: ../../include/functions_planned_downtimes.php:702 -#: ../../godmode/agentes/planned_downtime.editor.php:209 -#: ../../godmode/agentes/planned_downtime.editor.php:212 -#: ../../godmode/agentes/planned_downtime.editor.php:217 -#: ../../godmode/agentes/planned_downtime.editor.php:220 -msgid "Not created. Error inserting data" -msgstr "Не создано. Ошибка вставки данных" - -#: ../../include/functions_planned_downtimes.php:45 -#: ../../include/functions_planned_downtimes.php:683 -#: ../../godmode/agentes/planned_downtime.editor.php:209 -msgid "The end date must be higher than the start date" -msgstr "" - -#: ../../include/functions_planned_downtimes.php:50 -#: ../../include/functions_planned_downtimes.php:696 -#: ../../godmode/agentes/planned_downtime.editor.php:217 -#: ../../godmode/agentes/planned_downtime.editor.php:586 -#: ../../godmode/agentes/planned_downtime.editor.php:594 -msgid "The end time must be higher than the start time" -msgstr "" - -#: ../../include/functions_planned_downtimes.php:53 -#: ../../include/functions_planned_downtimes.php:703 -#: ../../godmode/agentes/planned_downtime.editor.php:220 -#: ../../godmode/agentes/planned_downtime.editor.php:575 -msgid "The end day must be higher than the start day" -msgstr "" - -#: ../../include/functions_planned_downtimes.php:94 -#: ../../include/functions_planned_downtimes.php:717 -#: ../../godmode/agentes/planned_downtime.editor.php:269 -msgid "Each planned downtime must have a different name" -msgstr "Каждый запланированный простой должен иметь разное имя" - -#: ../../include/functions_planned_downtimes.php:100 -#: ../../include/functions_planned_downtimes.php:722 -#: ../../godmode/agentes/planned_downtime.editor.php:274 -#: ../../godmode/agentes/planned_downtime.editor.php:301 -msgid "Planned downtime must have a name" -msgstr "Запланированный простой должен иметь имя" - -#: ../../include/functions_planned_downtimes.php:560 -msgid "Succesful stopped the Downtime" -msgstr "Успешно остановлен простой" - -#: ../../include/functions_planned_downtimes.php:561 -msgid "Unsuccesful stopped the Downtime" -msgstr "Неуспешно остановлен простой" - -#: ../../include/functions_planned_downtimes.php:660 -#, php-format -msgid "Enabled %s elements from the downtime" -msgstr "Включено %s элементов простоя" - -#: ../../include/functions_planned_downtimes.php:688 -#: ../../godmode/agentes/planned_downtime.editor.php:212 -msgid "The end date must be higher than the current time" -msgstr "" - -#: ../../include/functions_planned_downtimes.php:785 -msgid "This planned downtime are executed now. Can't delete in this moment." -msgstr "" - -#: ../../include/functions_planned_downtimes.php:790 -msgid "Deleted this planned downtime successfully." -msgstr "" - -#: ../../include/functions_planned_downtimes.php:792 -msgid "Problems for deleted this planned downtime." -msgstr "" - -#: ../../include/functions_reporting_html.php:63 -#: ../../include/functions_reporting_html.php:2554 -#: ../../godmode/agentes/planned_downtime.editor.php:500 -msgid "From:" -msgstr "От:" - -#: ../../include/functions_reporting_html.php:64 -#: ../../include/functions_reporting_html.php:2555 -#: ../../godmode/agentes/planned_downtime.editor.php:511 -msgid "To:" -msgstr "Куда:" - -#: ../../include/functions_reporting_html.php:577 -msgid "Events by Severity" -msgstr "" - -#: ../../include/functions_reporting_html.php:1036 -#: ../../include/functions_reporting_html.php:2432 -msgid "Monitors" -msgstr "Наблюдатели" - -#: ../../include/functions_reporting_html.php:1265 -#, php-format -msgid "Agent '%s'" -msgstr "" - -#: ../../include/functions_reporting_html.php:1279 -#, php-format -msgid "Interface '%s' throughput graph" -msgstr "" - -#: ../../include/functions_reporting_html.php:1282 -msgid "Mac" -msgstr "" - -#: ../../include/functions_reporting_html.php:1283 -msgid "Actual status" -msgstr "" - -#: ../../include/functions_reporting_html.php:1509 -msgid "Empty modules" -msgstr "" - -#: ../../include/functions_reporting_html.php:1516 -msgid "Warning<br/>Critical" -msgstr "" - -#: ../../include/functions_reporting_html.php:1714 -msgid "Agent max" -msgstr "" - -#: ../../include/functions_reporting_html.php:1717 -msgid "Agent min" -msgstr "" - -#: ../../include/functions_reporting_html.php:1921 -#: ../../operation/tree.php:163 -msgid "Module status" -msgstr "Модуль статуса" - -#: ../../include/functions_reporting_html.php:1986 -#: ../../operation/users/user_edit.php:196 -#: ../../operation/snmpconsole/snmp_view.php:517 -#: ../../operation/search_users.php:38 -#: ../../godmode/users/configure_user.php:438 -#: ../../godmode/users/user_list.php:266 -msgid "User ID" -msgstr "Идентификатор пользователя" - -#: ../../include/functions_reporting_html.php:2042 -#: ../../include/functions_reporting_html.php:2270 -#: ../../godmode/snmpconsole/snmp_alert.php:1059 -msgid "Times fired" -msgstr "Число запусков" - -#: ../../include/functions_reporting_html.php:2091 -msgid "Alerts not fired" -msgstr "Угрозы не снятия" - -#: ../../include/functions_reporting_html.php:2100 -msgid "Total alerts monitored" -msgstr "Всего обработанных оповещений" - -#: ../../include/functions_reporting_html.php:2151 -msgid "Total monitors" -msgstr "всего мониторов" - -#: ../../include/functions_reporting_html.php:2152 -msgid "Monitors down on period" -msgstr "Мониторы вниз по периоду" - -#: ../../include/functions_reporting_html.php:2168 -msgid "Monitors OK" -msgstr "OK Монитор" - -#: ../../include/functions_reporting_html.php:2169 -msgid "Monitors BAD" -msgstr "BAD Монитор" - -#: ../../include/functions_reporting_html.php:2243 -#, php-format -msgid "Agents in group: %s" -msgstr "Агенты в группе: %s" - -#: ../../include/functions_reporting_html.php:2336 -msgid "Last failure" -msgstr "Последний сбой" - -#: ../../include/functions_reporting_html.php:2400 -msgid "N/A(*)" -msgstr "нет данных(*)" - -#: ../../include/functions_reporting_html.php:2574 -msgid "Agents critical" -msgstr "" - -#: ../../include/functions_reporting_html.php:2577 -msgid "Agents warning" -msgstr "" - -#: ../../include/functions_reporting_html.php:2583 -msgid "Agents ok" -msgstr "" - -#: ../../include/functions_reporting_html.php:2592 -msgid "Agents not init" -msgstr "" - -#: ../../include/functions_reporting_html.php:2603 -#: ../../include/functions_reporting_html.php:2612 -msgid "Agents by status" -msgstr "" - -#: ../../include/functions_reporting_html.php:2656 -#: ../../include/functions_reporting_html.php:2665 -msgid "Node overview" -msgstr "" - -#: ../../include/functions_reporting_html.php:2683 -#: ../../include/functions_reporting_html.php:2700 -#: ../../general/shortcut_bar.php:189 ../../general/shortcut_bar.php:191 -msgid "Critical events" -msgstr "Критические события" - -#: ../../include/functions_reporting_html.php:2687 -#: ../../include/functions_reporting_html.php:2704 -msgid "Warning events" -msgstr "" - -#: ../../include/functions_reporting_html.php:2691 -#: ../../include/functions_reporting_html.php:2708 -msgid "OK events" -msgstr "" - -#: ../../include/functions_reporting_html.php:2695 -#: ../../include/functions_reporting_html.php:2712 -msgid "Unknown events" -msgstr "" - -#: ../../include/functions_reporting_html.php:2735 -msgid "Important Events by Criticity" -msgstr "" - -#: ../../include/functions_reporting_html.php:2761 -msgid "Last activity in Pandora FMS console" -msgstr "" - -#: ../../include/functions_reporting_html.php:2837 -msgid "Events info (1hr.)" -msgstr "" - -#: ../../include/functions_events.php:865 -#: ../../operation/agentes/tactical.php:192 -msgid "Latest events" -msgstr "Последние события" - -#: ../../include/functions_events.php:1000 -msgid "Events -by module-" -msgstr "События -по модулю-" - -#: ../../include/functions_events.php:1010 -#: ../../operation/events/event_statistics.php:37 -#: ../../operation/agentes/tactical.php:207 -msgid "Event graph" -msgstr "График события" - -#: ../../include/functions_events.php:1015 -#: ../../operation/events/event_statistics.php:61 -#: ../../operation/agentes/tactical.php:213 -msgid "Event graph by agent" -msgstr "События графика по агенту" - -#: ../../include/functions_events.php:1120 -msgid "Going to unknown" -msgstr "Перейти к неизвестному" - -#: ../../include/functions_events.php:1126 -msgid "Alert manually validated" -msgstr "Руководство оповещений подтверждено" - -#: ../../include/functions_events.php:1129 -msgid "Going from critical to warning" -msgstr "Перейти от критического к предупреждающему" - -#: ../../include/functions_events.php:1133 -msgid "Going down to critical state" -msgstr "Спуститься к критическому положению" - -#: ../../include/functions_events.php:1137 -msgid "Going up to normal state" -msgstr "Поднються к обычному положению" - -#: ../../include/functions_events.php:1140 -msgid "Going down from normal to warning" -msgstr "Опуститься с обычного к предупреждающему" - -#: ../../include/functions_events.php:1149 -msgid "Recon server detected a new host" -msgstr "Recon сервер определил нового хозяина" - -#: ../../include/functions_events.php:1152 -msgid "New agent created" -msgstr "Новый агент создан" - -#: ../../include/functions_events.php:1165 -msgid "Unknown type:" -msgstr "Неизвестный тип:" - -#: ../../include/functions_events.php:1502 -#: ../../include/functions_events.php:1523 -msgid "Only new" -msgstr "Только новые" - -#: ../../include/functions_events.php:1504 -#: ../../include/functions_events.php:1529 -msgid "Only in process" -msgstr "Только активные" - -#: ../../include/functions_events.php:1505 -#: ../../include/functions_events.php:1532 -msgid "Only not validated" -msgstr "Только не подтвержденные" - -#: ../../include/functions_events.php:1576 -msgid "Agent address" -msgstr "Адрес агента" - -#: ../../include/functions_events.php:1577 -msgid "Agent id" -msgstr "id агента" - -#: ../../include/functions_events.php:1579 -msgid "Module Agent address" -msgstr "" - -#: ../../include/functions_events.php:1671 -msgid "Change owner" -msgstr "Изменить владельца" - -#: ../../include/functions_events.php:1710 -msgid "Change status" -msgstr "Изменить статус" - -#: ../../include/functions_events.php:1716 -#: ../../include/functions_events.php:1722 -msgid "In process" -msgstr "В процессе" - -#: ../../include/functions_events.php:1749 -#: ../../include/functions_events.php:2559 -msgid "Add comment" -msgstr "Добавить комментарий" - -#: ../../include/functions_events.php:1756 -#: ../../include/functions_events.php:1758 -#: ../../operation/events/events.build_table.php:579 -msgid "Delete event" -msgstr "Удалить событие" - -#: ../../include/functions_events.php:1768 -msgid "Custom responses" -msgstr "Ответы пользователей" - -#: ../../include/functions_events.php:1968 -msgid "There was an error connecting to the node" -msgstr "" - -#: ../../include/functions_events.php:2007 -msgid "Agent details" -msgstr "Агент деталей" - -#: ../../include/functions_events.php:2044 -msgid "View custom fields" -msgstr "Просмотреть пользовательские поля" - -#: ../../include/functions_events.php:2056 -msgid "Module details" -msgstr "Модуль деталь" - -#: ../../include/functions_events.php:2073 -msgid "No assigned" -msgstr "Не назчначено" - -#: ../../include/functions_events.php:2135 -#: ../../godmode/alerts/alert_view.php:49 -#: ../../godmode/alerts/alert_view.php:324 -msgid "Alert details" -msgstr "Детали оповещения" - -#: ../../include/functions_events.php:2146 -#: ../../include/functions_events.php:2150 -msgid "Go to data overview" -msgstr "Просмотреть данные" - -#: ../../include/functions_events.php:2293 -#, php-format -msgid "Invalid custom data: %s" -msgstr "Недействительные пользовательские данные: %s" - -#: ../../include/functions_events.php:2340 -msgid "First event" -msgstr "Первое событие" - -#: ../../include/functions_events.php:2340 -msgid "Last event" -msgstr "Последнее событие" - -#: ../../include/functions_events.php:2454 -msgid "ID extra" -msgstr "дополнительный ID" - -#: ../../include/functions_events.php:2505 -#: ../../include/functions_events.php:2551 -msgid "There are no comments" -msgstr "здесь нет комментариев" - -#: ../../include/functions_events.php:2921 -#: ../../include/functions_events.php:2926 -#: ../../operation/snmpconsole/snmp_view.php:397 -#: ../../operation/snmpconsole/snmp_view.php:558 -#: ../../operation/snmpconsole/snmp_view.php:816 -msgid "Not validated" -msgstr "Не проверено" - -#: ../../include/ajax/networkmap.ajax.php:74 -#: ../../include/ajax/networkmap.ajax.php:94 -msgid "Map summary" -msgstr "Суммарная карта" - -#: ../../include/ajax/double_auth.ajax.php:146 -msgid "" -"This is the private code that you should use with your authenticator app" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:147 -#: ../../include/ajax/double_auth.ajax.php:283 -msgid "" -"You could enter the code manually or use the QR code to add it automatically" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:153 -#: ../../include/ajax/double_auth.ajax.php:289 -msgid "QR" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:189 -msgid "You are about to activate the double authentication" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:190 -msgid "" -"With this option enabled, your account access will be more secure, \n" -"\t\tcause a code generated by other application will be required after the " -"login" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:194 -msgid "" -"You will need to install the app from the following link before continue" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:199 -msgid "Download the app" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:203 -#: ../../include/ajax/double_auth.ajax.php:294 -msgid "Continue" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:219 -msgid "Are you installed the app yet?" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:247 -#: ../../include/ajax/double_auth.ajax.php:342 -#: ../../include/ajax/double_auth.ajax.php:387 -#: ../../include/ajax/double_auth.ajax.php:501 -#: ../../operation/users/user_edit.php:569 -#: ../../operation/users/user_edit.php:634 -#: ../../operation/users/user_edit.php:705 ../../general/logon_failed.php:21 -msgid "Authentication error" -msgstr "Ошибка аутентификации" - -#: ../../include/ajax/double_auth.ajax.php:254 -#: ../../include/ajax/double_auth.ajax.php:349 -#: ../../include/ajax/double_auth.ajax.php:394 -#: ../../include/ajax/double_auth.ajax.php:509 -#: ../../operation/users/user_edit.php:576 -#: ../../operation/users/user_edit.php:641 -msgid "There was an error loading the data" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:277 -msgid "A private code has been generated" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:282 -msgid "" -"Before continue, you should create a new entry into the authenticator app" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:292 -msgid "Refresh code" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:358 -msgid "Are you introduced the code in the authenticator app yet?" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:420 -msgid "Introduce a code generated by the app" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:421 -msgid "If the code is valid, the double authentication will be activated" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:430 -msgid "Validate code" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:481 -msgid "The code is valid, you can exit now" -msgstr "" - -#: ../../include/ajax/double_auth.ajax.php:497 -msgid "The code is valid, but it was an error saving the data" -msgstr "" - -#: ../../include/ajax/module.php:130 -msgid "3 years" -msgstr "3 года (3 years)" - -#: ../../include/ajax/module.php:134 -#: ../../operation/agentes/datos_agente.php:185 -msgid "Choose a time from now" -msgstr "Выберите время с этого момента" - -#: ../../include/ajax/module.php:146 -#: ../../operation/agentes/datos_agente.php:188 -msgid "Specify time range" -msgstr "Укажите временной диапазон" - -#: ../../include/ajax/module.php:307 -#: ../../operation/agentes/datos_agente.php:286 -#: ../../godmode/agentes/module_manager.php:482 -msgid "No available data to show" -msgstr "Нет доступных данных для показа" - -#: ../../include/ajax/module.php:697 -#: ../../operation/agentes/alerts_status.php:415 -#: ../../operation/agentes/alerts_status.php:457 -#: ../../operation/agentes/alerts_status.php:490 -#: ../../operation/agentes/alerts_status.php:524 -msgid "Force execution" -msgstr "Принудительное выполнение" - -#: ../../include/ajax/module.php:697 -#: ../../operation/agentes/alerts_status.php:416 -#: ../../operation/agentes/alerts_status.php:457 -#: ../../operation/agentes/alerts_status.php:490 -#: ../../operation/agentes/alerts_status.php:524 -msgid "F." -msgstr "F." - -#: ../../include/ajax/module.php:713 -#: ../../operation/agentes/status_monitor.php:961 -#: ../../godmode/agentes/module_manager.php:524 -msgid "Warn" -msgstr "Предупреждение" - -#: ../../include/ajax/module.php:787 ../../include/ajax/module.php:797 -#: ../../godmode/agentes/module_manager.php:620 -#: ../../godmode/agentes/module_manager.php:630 -msgid "Adopted" -msgstr "Приёмные" - -#: ../../include/ajax/module.php:797 ../../include/ajax/module.php:801 -#: ../../godmode/agentes/module_manager.php:630 -#: ../../godmode/agentes/module_manager.php:634 -#: ../../godmode/massive/massive_edit_modules.php:541 -msgid "Unlinked" -msgstr "Разъединено" - -#: ../../include/ajax/module.php:1016 -msgid "Any monitors aren't with this filter." -msgstr "Нет мониторов с этим фильтром." - -#: ../../include/ajax/module.php:1019 -msgid "This agent doesn't have any active monitors." -msgstr "Этот агент не имеет никаких активных мониторов." - -#: ../../include/ajax/update_manager.ajax.php:95 -msgid "Invalid extension. The package must have the extension .oum." -msgstr "" - -#: ../../include/ajax/update_manager.ajax.php:102 -msgid "The file was not uploaded succesfully." -msgstr "" - -#: ../../include/ajax/events.php:300 -msgid "Agent fields" -msgstr "Поля агента" - -#: ../../include/ajax/events.php:308 -msgid "Custom data" -msgstr "Пользовательская информация" - -#: ../../include/ajax/events.php:376 -msgid "Error adding comment" -msgstr "ошибка при создании комментария" - -#: ../../include/ajax/events.php:377 -msgid "Comment added successfully" -msgstr "Комментарий успешно добавлен" - -#: ../../include/ajax/events.php:378 -msgid "Error changing event status" -msgstr "Ошибка при изменении статуса события" - -#: ../../include/ajax/events.php:379 -msgid "Event status changed successfully" -msgstr "Статус события успешно изменен" - -#: ../../include/ajax/events.php:380 -msgid "Error changing event owner" -msgstr "Ошибка при смене владельца события" - -#: ../../include/ajax/events.php:381 -msgid "Event owner changed successfully" -msgstr "Событие владельца успешно изменено" - -#: ../../include/graphs/functions_flot.php:213 -msgid "Cancel zoom" -msgstr "Отменить увеличение" - -#: ../../include/graphs/functions_flot.php:215 -msgid "Warning and Critical thresholds" -msgstr "Предупреждаюшие и Критические пороги" - -#: ../../include/graphs/functions_flot.php:218 -msgid "Overview graph" -msgstr "Обзор графика" - -#: ../../include/graphs/export_data.php:71 -#: ../../include/graphs/export_data.php:126 -msgid "An error occured exporting the data" -msgstr "" - -#: ../../include/functions_config.php:99 -msgid "Failed updated: User did not login." -msgstr "Ошибка обновления: Пользователь не вошел в систему." - -#: ../../include/functions_config.php:107 -msgid "Failed updated: User is not admin." -msgstr "Сбой обновления: Пользователь не администратор." - -#: ../../include/functions_config.php:136 -#: ../../godmode/setup/setup_general.php:56 -msgid "Remote config directory" -msgstr "Папка удаленных настроек" - -#: ../../include/functions_config.php:143 -#: ../../godmode/setup/setup_general.php:69 -msgid "Automatic check for updates" -msgstr "Автоматическая проверка обновлений" - -#: ../../include/functions_config.php:153 -#: ../../godmode/setup/setup_general.php:93 -msgid "Enable GIS features in Pandora Console" -msgstr "Включить возможности ГИС в Pandora Console" - -#: ../../include/functions_config.php:155 -#: ../../godmode/setup/setup_general.php:97 -msgid "Enable Integria incidents in Pandora Console" -msgstr "Включить Integria инциденты в консоли Pandora" - -#: ../../include/functions_config.php:157 -#: ../../godmode/setup/setup_general.php:169 -msgid "Integria inventory" -msgstr "Integria инвентаризация" - -#: ../../include/functions_config.php:159 -#: ../../godmode/setup/setup_general.php:149 -msgid "Integria API password" -msgstr "Integria API пароль" - -#: ../../include/functions_config.php:161 -#: ../../godmode/setup/setup_general.php:140 -msgid "Integria URL" -msgstr "Integria URL" - -#: ../../include/functions_config.php:163 -#: ../../godmode/setup/setup_general.php:173 -msgid "Enable Netflow" -msgstr "Включить Сетевой поток" - -#: ../../include/functions_config.php:170 -#: ../../godmode/setup/setup_general.php:213 -msgid "Sound for Alert fired" -msgstr "Звук для оповещения запущен" - -#: ../../include/functions_config.php:172 -#: ../../godmode/setup/setup_general.php:218 -msgid "Sound for Monitor critical" -msgstr "Звук для Монитора критичуский" - -#: ../../include/functions_config.php:174 -#: ../../godmode/setup/setup_general.php:223 -msgid "Sound for Monitor warning" -msgstr "Звук для Монитора предупредительный" - -#: ../../include/functions_config.php:185 -msgid "License information" -msgstr "Лицензионная информация" - -#: ../../include/functions_config.php:191 -#: ../../godmode/setup/setup_general.php:232 -msgid "Referer security" -msgstr "Ссылки на веб-безопасность" - -#: ../../include/functions_config.php:193 -#: ../../godmode/setup/setup_general.php:240 -msgid "Event storm protection" -msgstr "Событие шторма защиты" - -#: ../../include/functions_config.php:195 -#: ../../godmode/setup/setup_general.php:249 -msgid "Command Snapshot" -msgstr "Команда Snapshot" - -#: ../../include/functions_config.php:197 -#: ../../godmode/setup/setup_general.php:254 -msgid "Server logs directory" -msgstr "Каталог системных журналов сервера" - -#: ../../include/functions_config.php:199 -#: ../../godmode/setup/setup_general.php:263 -msgid "Tutorial mode" -msgstr "" - -#: ../../include/functions_config.php:201 -#: ../../godmode/setup/setup_general.php:270 -msgid "Allow create planned downtimes in the past" -msgstr "" - -#: ../../include/functions_config.php:203 -#: ../../godmode/setup/setup_general.php:275 -msgid "Limit parameters massive" -msgstr "" - -#: ../../include/functions_config.php:228 -msgid "Replication DB engine" -msgstr "" - -#: ../../include/functions_config.php:230 -msgid "Replication DB host" -msgstr "Хост БД репликации" - -#: ../../include/functions_config.php:232 -msgid "Replication DB database" -msgstr "Репликация базы данных" - -#: ../../include/functions_config.php:234 -msgid "Replication DB user" -msgstr "Репликация пользователя БД" - -#: ../../include/functions_config.php:236 -msgid "Replication DB password" -msgstr "Репликация пароля БД" - -#: ../../include/functions_config.php:238 -msgid "Replication DB port" -msgstr "Репликация порта БД" - -#: ../../include/functions_config.php:366 -#: ../../godmode/setup/performance.php:50 -msgid "Max. days before delete traps" -msgstr "Количество дней до удаления ловушек" - -#: ../../include/functions_config.php:368 -#: ../../godmode/setup/performance.php:56 -msgid "Max. days before delete string data" -msgstr "Количество дней до удаления строковых данных" - -#: ../../include/functions_config.php:372 -#: ../../godmode/setup/performance.php:59 -msgid "Max. days before delete GIS data" -msgstr "количество дней до удаления данных ГИС" - -#: ../../include/functions_config.php:374 -#: ../../godmode/setup/performance.php:62 -msgid "Max. days before purge" -msgstr "Количество дней до чистки" - -#: ../../include/functions_config.php:376 -#: ../../godmode/setup/performance.php:68 -msgid "Max. days before delete unknown modules" -msgstr "Макс. количество дней до удаления неизвестных модулей" - -#: ../../include/functions_config.php:378 -#: ../../godmode/setup/performance.php:65 -msgid "Max. days before compact data" -msgstr "Количество дней до архивации данных" - -#: ../../include/functions_config.php:380 -#: ../../godmode/setup/performance.php:80 -msgid "Compact interpolation in hours (1 Fine-20 bad)" -msgstr "Компактная интерполяции в часах (1хорошо -20 плохо)" - -#: ../../include/functions_config.php:384 -#: ../../godmode/setup/performance.php:97 -msgid "Use realtime statistics" -msgstr "Использовать текущую статистику" - -#: ../../include/functions_config.php:386 -#: ../../godmode/setup/performance.php:101 -msgid "Batch statistics period (secs)" -msgstr "Периодпакетной статистики (сек)" - -#: ../../include/functions_config.php:390 -#: ../../godmode/setup/performance.php:108 -msgid "Max. recommended number of files in attachment directory" -msgstr "" -"Максимально рекомендованное количество файлов в приклепленном каталоге" - -#: ../../include/functions_config.php:392 -#: ../../godmode/setup/performance.php:111 -msgid "Delete not init modules" -msgstr "" - -#: ../../include/functions_config.php:409 -#: ../../godmode/setup/setup_visuals.php:308 -msgid "Graph color #4" -msgstr "" - -#: ../../include/functions_config.php:411 -#: ../../godmode/setup/setup_visuals.php:312 -msgid "Graph color #5" -msgstr "" - -#: ../../include/functions_config.php:413 -#: ../../godmode/setup/setup_visuals.php:316 -msgid "Graph color #6" -msgstr "" - -#: ../../include/functions_config.php:415 -#: ../../godmode/setup/setup_visuals.php:320 -msgid "Graph color #7" -msgstr "" - -#: ../../include/functions_config.php:417 -#: ../../godmode/setup/setup_visuals.php:324 -msgid "Graph color #8" -msgstr "" - -#: ../../include/functions_config.php:419 -#: ../../godmode/setup/setup_visuals.php:328 -msgid "Graph color #9" -msgstr "" - -#: ../../include/functions_config.php:421 -#: ../../godmode/setup/setup_visuals.php:332 -msgid "Graph color #10" -msgstr "" - -#: ../../include/functions_config.php:430 -#: ../../godmode/setup/setup_visuals.php:117 -msgid "Style template" -msgstr "Шаблон стиля" - -#: ../../include/functions_config.php:436 -msgid "Show QR code header" -msgstr "" - -#: ../../include/functions_config.php:438 -#: ../../godmode/setup/setup_visuals.php:122 -msgid "Status icon set" -msgstr "Установить иконки статусов" - -#: ../../include/functions_config.php:440 -#: ../../godmode/setup/setup_visuals.php:225 -msgid "Font path" -msgstr "Путь для Шрифтов" - -#: ../../include/functions_config.php:448 -#: ../../godmode/setup/setup_visuals.php:132 -msgid "Login background" -msgstr "" - -#: ../../include/functions_config.php:450 -#: ../../godmode/setup/setup_visuals.php:74 -msgid "Default interval for refresh on Visual Console" -msgstr "Интервал по умолчанию для обновления на Визуальной консоли" - -#: ../../include/functions_config.php:452 -#: ../../godmode/setup/setup_visuals.php:400 -msgid "Default line thickness for the Visual Console" -msgstr "" - -#: ../../include/functions_config.php:454 -#: ../../include/functions_config.php:456 -#: ../../godmode/setup/setup_visuals.php:255 -msgid "Agent size text" -msgstr "Агент размера текста" - -#: ../../include/functions_config.php:458 -#: ../../godmode/setup/setup_visuals.php:263 -msgid "Module size text" -msgstr "Модуль размера текста" - -#: ../../include/functions_config.php:460 -#: ../../include/functions_config.php:462 -#: ../../godmode/setup/setup_visuals.php:271 -msgid "Description size text" -msgstr "Описание размера текста" - -#: ../../include/functions_config.php:464 -#: ../../godmode/setup/setup_visuals.php:275 -msgid "Item title size text" -msgstr "Артикул Названия Размера текста" - -#: ../../include/functions_config.php:466 -#: ../../godmode/setup/setup_visuals.php:189 -msgid "GIS Labels" -msgstr "ГИС Метки" - -#: ../../include/functions_config.php:468 -#: ../../godmode/setup/setup_visuals.php:201 -msgid "Default icon in GIS" -msgstr "Значок по умолчанию в ГИС" - -#: ../../include/functions_config.php:470 -#: ../../godmode/setup/setup_visuals.php:170 -msgid "Autohidden menu" -msgstr "" - -#: ../../include/functions_config.php:472 -#: ../../godmode/setup/setup_visuals.php:154 -msgid "Fixed header" -msgstr "" - -#: ../../include/functions_config.php:474 -#: ../../godmode/setup/setup_visuals.php:162 -msgid "Fixed menu" -msgstr "" - -#: ../../include/functions_config.php:476 -msgid "Paginate module" -msgstr "" - -#: ../../include/functions_config.php:478 -#: ../../godmode/setup/setup_visuals.php:509 -msgid "Custom graphviz directory" -msgstr "" - -#: ../../include/functions_config.php:480 -#: ../../godmode/setup/setup_visuals.php:516 -msgid "Networkmap max width" -msgstr "" - -#: ../../include/functions_config.php:482 -#: ../../godmode/setup/setup_visuals.php:364 -msgid "Shortened module graph data" -msgstr "" - -#: ../../include/functions_config.php:486 -#: ../../godmode/setup/setup_visuals.php:344 -msgid "Default line thickness for the Custom Graph." -msgstr "" - -#: ../../include/functions_config.php:488 -msgid "Default type of module charts." -msgstr "" - -#: ../../include/functions_config.php:513 -msgid "Add the custom post process" -msgstr "" - -#: ../../include/functions_config.php:520 -msgid "Delete the custom post process" -msgstr "" - -#: ../../include/functions_config.php:593 -#: ../../godmode/setup/setup_netflow.php:41 -msgid "Data storage path" -msgstr "Путь хранения данных" - -#: ../../include/functions_config.php:595 -#: ../../godmode/setup/setup_netflow.php:45 -msgid "Daemon interval" -msgstr "Интервал присоединенной программы" - -#: ../../include/functions_config.php:597 -#: ../../godmode/setup/setup_netflow.php:49 -msgid "Daemon binary path" -msgstr "Двоичный путь присоединенной программы" - -#: ../../include/functions_config.php:599 -#: ../../godmode/setup/setup_netflow.php:52 -msgid "Nfdump binary path" -msgstr "Nfdump двоичного пути" - -#: ../../include/functions_config.php:601 -#: ../../godmode/setup/setup_netflow.php:55 -msgid "Nfexpire binary path" -msgstr "Nfexpire двоичного пути" - -#: ../../include/functions_config.php:603 -#: ../../godmode/setup/setup_netflow.php:58 -msgid "Maximum chart resolution" -msgstr "Максимальное разрешение диаграммы" - -#: ../../include/functions_config.php:607 -#: ../../include/functions_config.php:613 -#: ../../godmode/setup/setup_netflow.php:65 -msgid "Netflow max lifetime" -msgstr "Максимальный срок жизни сетевого потока" - -#: ../../include/functions_config.php:609 -#: ../../godmode/setup/setup_netflow.php:68 -msgid "Name resolution for IP address" -msgstr "" - -#: ../../include/functions_config.php:647 -#, php-format -msgid "Failed updated: the next values cannot update: %s" -msgstr "Ошибка обновления: следующия значения не могут обновить: %s" - -#: ../../include/functions_config.php:1451 -msgid "Default password for \"Admin\" user has not been changed." -msgstr "Пароль по умолчанию для \"Админ\" пользователя не был изменен." - -#: ../../include/functions_config.php:1452 -msgid "" -"Please change the default password because is a common vulnerability " -"reported." -msgstr "" -"Пожалуйста, измените пароль по умолчанию, потому что сообщает об общей " -"уязвимости." - -#: ../../include/functions_config.php:1458 -msgid "You can not get updates until you renew the license." -msgstr "" - -#: ../../include/functions_config.php:1459 -msgid "This license has expired." -msgstr "" - -#: ../../include/functions_config.php:1464 -msgid "" -"Please check that the web server has write rights on the " -"{HOMEDIR}/attachment directory" -msgstr "Пожалуйста, проверьте, что имя веб-сервера написано правильно" - -#: ../../include/functions_config.php:1477 -msgid "Remote configuration directory is not readble for the console" -msgstr "" - -#: ../../include/functions_config.php:1483 -#: ../../include/functions_config.php:1490 -msgid "Remote configuration directory is not writtable for the console" -msgstr "Дистанционный каталог конфигурации не доступен для записи в консоли" - -#: ../../include/functions_config.php:1501 -msgid "" -"There are too much files in attachment directory. This is not fatal, but you " -"should consider cleaning up your attachment directory manually" -msgstr "" -"Слишком много файлов во приложении директория. Это не критично, но вы должны " -"рассмотреть очистку вашего приложения директория вручную" - -#: ../../include/functions_config.php:1501 -msgid "files" -msgstr "файлы" - -#: ../../include/functions_config.php:1502 -msgid "Too much files in your tempora/attachment directory" -msgstr "Слишком много файлов в приложениях директория" - -#: ../../include/functions_config.php:1519 -msgid "" -"Your database is not well maintained. Seems that it have more than 48hr " -"without a proper maintance. Please review Pandora FMS documentation about " -"how to execute this maintance process (pandora_db.pl) and enable it as soon " -"as possible" -msgstr "" -"Ваша база данных не в хорошем состоянии. Кажется, что она находится более " -"чем 48 часов без надлежащего обслуживания. Пожалуйста, ознакомьтесь с " -"документацией Pandora FMS о том, как выполнять этот процесс обслуживания В " -"процессе (pandora_db.pl) и начать его как можно скорее" - -#: ../../include/functions_config.php:1520 -msgid "Database maintance problem" -msgstr "Проблема обслуживания базы данных" - -#: ../../include/functions_config.php:1526 -msgid "" -"Your defined font doesnt exist or is not defined. Please check font " -"parameters in your config" -msgstr "" -"Установленный вами шрифт не существует или не определен. Пожалуйста, " -"проверьте параметры шрифта в вашей конфигурации" - -#: ../../include/functions_config.php:1527 -msgid "Default font doesnt exist" -msgstr "Шрифт по умолчанию не существует" - -#: ../../include/functions_config.php:1532 -msgid "You need to restart server after altering this configuration setting." -msgstr "" - -#: ../../include/functions_config.php:1533 -msgid "" -"Event storm protection is activated. No events will be generated during this " -"mode." -msgstr "" - -#: ../../include/functions_config.php:1540 -msgid "" -"Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a " -"developer mode and should be disabled in a production system. This value is " -"written in the main index.php file" -msgstr "" -"Ваш Pandora FMS режим \"develop_bypass\" включен. Это режим разработчика и " -"должны быть отключен в производственной системе. Это значение записывается в " -"главный файл index.php" - -#: ../../include/functions_config.php:1541 -msgid "Developer mode is enabled" -msgstr "Режим разработчик включен" - -#: ../../include/functions_config.php:1550 -msgid "Error first setup Open update" -msgstr "Ошибка первой установки Открыть обновление" - -#: ../../include/functions_config.php:1556 -msgid "" -"There is a new update available. Please<a style=\"font-weight:bold;\" " -"href=\"index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=on" -"line\"> go to Administration:Setup:Update Manager</a> for more details." -msgstr "" - -#: ../../include/functions_config.php:1557 -msgid "New update of Pandora Console" -msgstr "Новое обновление Консоли Pandora" - -#: ../../include/functions_config.php:1571 -msgid "" -"To disable, change it on your PHP configuration file (php.ini) and put " -"safe_mode = Off (Dont forget restart apache process after changes)" -msgstr "" - -#: ../../include/functions_config.php:1572 -msgid "PHP safe mode is enabled. Some features may not properly work." -msgstr "" - -#: ../../include/functions_config.php:1577 -#, php-format -msgid "Recommended value is %s" -msgstr "" - -#: ../../include/functions_config.php:1577 -#: ../../include/functions_config.php:1583 -msgid "Unlimited" -msgstr "Неограниченно" - -#: ../../include/functions_config.php:1577 -#: ../../include/functions_config.php:1583 -#: ../../include/functions_config.php:1591 -#: ../../include/functions_config.php:1606 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator (Dont forget restart apache process after changes)" -msgstr "" - -#: ../../include/functions_config.php:1578 -#: ../../include/functions_config.php:1584 -#: ../../include/functions_config.php:1592 -#: ../../include/functions_config.php:1600 -#, php-format -msgid "Not recommended '%s' value in PHP configuration" -msgstr "" - -#: ../../include/functions_config.php:1583 -#: ../../include/functions_config.php:1591 -#: ../../include/functions_config.php:1599 -#, php-format -msgid "Recommended value is: %s" -msgstr "" - -#: ../../include/functions_config.php:1591 -#: ../../include/functions_config.php:1599 -#, php-format -msgid "%s or greater" -msgstr "" - -#: ../../include/functions_config.php:1599 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator" -msgstr "" - -#: ../../include/functions_config.php:1605 -msgid "" -"Variable disable_functions containts functions system() or exec(), in PHP " -"configuration file (php.ini)" -msgstr "" - -#: ../../include/functions_config.php:1606 -msgid "Problems with disable functions in PHP.INI" -msgstr "" - -#: ../../include/get_file.php:45 -msgid "Security error. Please contact the administrator." -msgstr "Ошибка безопасности. Пожалуйста, обратитесь к администратору." - -#: ../../include/get_file.php:55 -msgid "File is missing in disk storage. Please contact the administrator." -msgstr "" -"Файл отсутствует в памяти диска. Пожалуйста, обратитесь к администратору." - -#: ../../include/functions_users.php:377 -#, php-format -msgid "User %s login at %s" -msgstr "Пользователь %s вход в %s" - -#: ../../include/functions_users.php:438 -#, php-format -msgid "User %s was deleted in the DB at %s" -msgstr "Пользователь %s был удален в БД в %s" - -#: ../../include/functions_users.php:443 -#, php-format -msgid "User %s logout at %s" -msgstr "Пользователь %s выход из %s" - -#: ../../include/class/Tree.class.php:1468 -msgid "NO DATA" -msgstr "" - -#: ../../extras/pandora_diag.php:90 -msgid "Pandora FMS Diagnostic tool" -msgstr "Pandora FMS инструмент диагностики" - -#: ../../extras/pandora_diag.php:93 -msgid "Item" -msgstr "Пункт" - -#: ../../extras/pandora_diag.php:94 -msgid "Data value" -msgstr "Значение параметра" - -#: ../../operation/menu.php:37 -msgid "Views" -msgstr "" - -#: ../../operation/menu.php:54 ../../operation/agentes/estado_agente.php:142 -#: ../../godmode/agentes/agent_manager.php:165 -msgid "Agent detail" -msgstr "Агент детализации" - -#: ../../operation/menu.php:59 ../../operation/agentes/status_monitor.php:41 -msgid "Monitor detail" -msgstr "Детали монитора" - -#: ../../operation/menu.php:62 ../../operation/users/user_edit.php:296 -#: ../../operation/agentes/alerts_status.php:126 -msgid "Alert detail" -msgstr "Детали оповещения" - -#: ../../operation/menu.php:72 -msgid "Netflow Live View" -msgstr "Обзор живого сетевого потока" - -#: ../../operation/menu.php:83 ../../operation/events/events_rss.php:185 -msgid "SNMP" -msgstr "SNMP" - -#: ../../operation/menu.php:89 -msgid "SNMP console" -msgstr "Консоль SNMP" - -#: ../../operation/menu.php:90 -msgid "SNMP browser" -msgstr "Браузер SNMP" - -#: ../../operation/menu.php:91 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:30 -msgid "MIB uploader" -msgstr "MIB загрузчик" - -#: ../../operation/menu.php:108 -msgid "Topology maps" -msgstr "" - -#: ../../operation/menu.php:183 ../../operation/gis_maps/gis_map.php:31 -#: ../../operation/gis_maps/index.php:26 -msgid "GIS Maps" -msgstr "ГИС Карты" - -#: ../../operation/menu.php:188 -msgid "List of Gis maps" -msgstr "" - -#: ../../operation/menu.php:236 -#: ../../operation/reporting/reporting_viewer.php:130 -#: ../../operation/reporting/custom_reporting.php:27 -#: ../../godmode/reporting/reporting_builder.php:343 -#: ../../godmode/reporting/reporting_builder.php:365 -#: ../../godmode/reporting/reporting_builder.php:1780 -msgid "Custom reporting" -msgstr "Пользовательские отчеты" - -#: ../../operation/menu.php:243 ../../operation/reporting/graph_viewer.php:161 -#: ../../godmode/reporting/graphs.php:71 -msgid "Custom graphs" -msgstr "Пользовательские графики" - -#: ../../operation/menu.php:278 -msgid "RSS" -msgstr "Ленты новостей RSS" - -#: ../../operation/menu.php:283 -msgid "CSV File" -msgstr "CSV файл" - -#: ../../operation/menu.php:288 -msgid "Marquee" -msgstr "Маркер" - -#: ../../operation/menu.php:296 ../../operation/events/sound_events.php:44 -msgid "Sound Events" -msgstr "Звуковые события" - -#: ../../operation/menu.php:308 ../../operation/events/events.php:416 -msgid "Sound Alerts" -msgstr "Звуковые Оповещения" - -#: ../../operation/menu.php:318 -msgid "Workspace" -msgstr "Рабочая область" - -#: ../../operation/menu.php:331 -msgid "WebChat" -msgstr "Веб Чат" - -#: ../../operation/menu.php:348 -#: ../../operation/integria_incidents/incident.php:43 -#: ../../operation/integria_incidents/incident.php:54 -#: ../../operation/agentes/ver_agente.php:867 -#: ../../operation/incidents/incident_statistics.php:30 -#: ../../godmode/agentes/configurar_agente.php:393 -#: ../../godmode/agentes/configurar_agente.php:523 -#: ../../general/firts_task/incidents.php:28 -msgid "Incidents" -msgstr "Инциденты" - -#: ../../operation/menu.php:358 -msgid "List of Incidents" -msgstr "" - -#: ../../operation/menu.php:367 ../../operation/messages/message_list.php:43 -#: ../../operation/messages/message_edit.php:46 -msgid "Messages" -msgstr "Сообщения" - -#: ../../operation/menu.php:373 -msgid "Messages List" -msgstr "" - -#: ../../operation/menu.php:374 -msgid "New message" -msgstr "Новое сообщение" - -#: ../../operation/menu.php:388 -msgid "Tools" -msgstr "" - -#: ../../operation/menu.php:395 ../../operation/agentes/exportdata.php:36 -msgid "Export data" -msgstr "Экспорт данных" - -#: ../../operation/menu.php:399 -msgid "Scheduled downtime" -msgstr "Предусмотренный графиком простой" - -#: ../../operation/menu.php:403 -msgid "Recon view" -msgstr "Просмотеть рекон" - -#: ../../operation/extensions.php:27 ../../godmode/extensions.php:27 -msgid "Extensions" -msgstr "Расширения" - -#: ../../operation/extensions.php:27 ../../godmode/extensions.php:27 -msgid "Defined extensions" -msgstr "Определенные расширения" - -#: ../../operation/extensions.php:30 ../../godmode/extensions.php:32 -msgid "There are no extensions defined" -msgstr "Здесь нет определенных расширений" - -#: ../../operation/integria_incidents/incident.files.php:35 -msgid "Add a file" -msgstr "Добавить файл" - -#: ../../operation/integria_incidents/incident.files.php:42 -#: ../../operation/incidents/incident_detail.php:453 -#: ../../operation/incidents/incident_detail.php:505 -msgid "Filename" -msgstr "Имя файла" - -#: ../../operation/integria_incidents/incident.files.php:66 -msgid "Delete file" -msgstr "Удалить файл" - -#: ../../operation/integria_incidents/incident.incident.php:84 -#: ../../operation/integria_incidents/incident.list.php:100 -#: ../../operation/incidents/incident_detail.php:327 -msgid "Creator" -msgstr "Создатель" - -#: ../../operation/integria_incidents/incident.incident.php:93 -msgid "Assigned user" -msgstr "Сопоставленный пользователь" - -#: ../../operation/integria_incidents/incident.incident.php:111 -msgid "Resolution epilog" -msgstr "Разрешение эпилога" - -#: ../../operation/integria_incidents/incident_statistics.php:52 -msgid "Opened tickets" -msgstr "" - -#: ../../operation/integria_incidents/incident_statistics.php:53 -msgid "Closed tickets" -msgstr "" - -#: ../../operation/integria_incidents/incident_statistics.php:56 -#: ../../operation/incidents/incident_statistics.php:33 -msgid "Incidents by status" -msgstr "Инциденты по статусу" - -#: ../../operation/integria_incidents/incident.php:47 -msgid "New Incident" -msgstr "Новый инцидент" - -#: ../../operation/integria_incidents/incident.php:58 -#: ../../operation/incidents/incident_detail.php:233 -msgid "Incident details" -msgstr "Детали инцидента" - -#: ../../operation/integria_incidents/incident.php:62 -#: ../../operation/integria_incidents/incident.list.php:132 -msgid "Workunits" -msgstr "Рабочие единицы" - -#: ../../operation/integria_incidents/incident.php:75 -#: ../../operation/incidents/incident.php:28 -msgid "Incident management" -msgstr "инцидент управления" - -#: ../../operation/integria_incidents/incident.php:98 -msgid "Incident updated" -msgstr "Инцидент обновлен" - -#: ../../operation/integria_incidents/incident.php:101 -msgid "" -"There was a problem updating the incident, please check if any field was " -"modified and the values are correct." -msgstr "" -"Найдена проблема при обновлении инцидента, пожалуйста, проверьте, если какое-" -"любо поле была модифицировано и правильны ли значения." - -#: ../../operation/integria_incidents/incident.php:125 -#: ../../operation/incidents/incident.php:141 -msgid "Incident created" -msgstr "Инцидент создан" - -#: ../../operation/integria_incidents/incident.php:128 -msgid "There was a problem creating incident" -msgstr "Найдена проблема при создании инцидента" - -#: ../../operation/integria_incidents/incident.php:155 -#: ../../operation/incidents/incident_detail.php:173 -msgid "File uploaded" -msgstr "Файл загружен" - -#: ../../operation/integria_incidents/incident.php:158 -msgid "There was a problem uploading file" -msgstr "Найдена проблема при загрузке файла" - -#: ../../operation/integria_incidents/incident.php:164 -msgid "File is too big" -msgstr "Фаил слишком большой" - -#: ../../operation/integria_incidents/incident.php:167 -msgid "File was partially uploaded. Please try again" -msgstr "Файл был загружен не полностью. Пожалуйста, попробуйте еще раз" - -#: ../../operation/integria_incidents/incident.php:173 -msgid "Generic upload error" -msgstr "Общая ошибка загрузки" - -#: ../../operation/integria_incidents/incident.php:192 -msgid "File deleted" -msgstr "Файл удален" - -#: ../../operation/integria_incidents/incident.php:195 -msgid "You user doesn't have enough rights to delete this file" -msgstr "Ваш пользователь не имеет достаточно прав для удаления этого файла" - -#: ../../operation/integria_incidents/incident.php:210 -msgid "Incident deleted" -msgstr "Инцидент удален" - -#: ../../operation/integria_incidents/incident.php:213 -msgid "There was a problem deteling incident" -msgstr "найдена проблема при удалении инцидента" - -#: ../../operation/integria_incidents/incident.php:237 -msgid "Workunit added" -msgstr "Рабочая единича добавлена" - -#: ../../operation/integria_incidents/incident.php:240 -msgid "There was a problem adding workunit" -msgstr "Ошибка при добавлении рабочего блока" - -#: ../../operation/integria_incidents/incident.php:339 -msgid "" -"There is a error in the message from your Integria or there is not " -"connection." -msgstr "Есть ошибка в сообщении от Integra или нет соединения." - -#: ../../operation/integria_incidents/incident.workunits.php:27 -msgid "Time used" -msgstr "Время израсходовано" - -#: ../../operation/integria_incidents/incident.workunits.php:28 -msgid "Have cost" -msgstr "Должно стоить" - -#: ../../operation/integria_incidents/incident.workunits.php:29 -#: ../../operation/integria_incidents/incident.workunits.php:61 -msgid "Public" -msgstr "Общее" - -#: ../../operation/integria_incidents/incident.workunits.php:42 -msgid "Add workunit" -msgstr "Добавить рабочую единицу" - -#: ../../operation/integria_incidents/incident.workunits.php:60 -msgid "said" -msgstr "сказано" - -#: ../../operation/integria_incidents/incident.workunits.php:61 -#: ../../operation/integria_incidents/incident.list.php:132 -msgid "Hours" -msgstr "Часов" - -#: ../../operation/integria_incidents/incident.list.php:34 -msgid "Not closed" -msgstr "Не закрыто" - -#: ../../operation/integria_incidents/incident.list.php:55 -msgid "Search string" -msgstr "Искать строку" - -#: ../../operation/integria_incidents/incident.list.php:94 -#: ../../operation/agentes/ver_agente.php:1037 -#: ../../operation/incidents/incident.php:332 -#: ../../operation/incidents/incident_detail.php:244 -#: ../../godmode/agentes/agent_incidents.php:87 -#: ../../godmode/servers/manage_recontask_form.php:306 -#: ../../godmode/servers/manage_recontask.php:287 -msgid "Incident" -msgstr "инцидент" - -#: ../../operation/integria_incidents/incident.list.php:98 -msgid "Started" -msgstr "Запущено" - -#: ../../operation/integria_incidents/incident.list.php:135 -msgid "Delete incident" -msgstr "Удалить инцидент" - -#: ../../operation/integria_incidents/incident.list.php:135 -msgid "View incident details" -msgstr "Просмотреть инцидент деталей" - -#: ../../operation/events/event_statistics.php:41 -msgid "Event graph by user" -msgstr "События графика по пользователю" - -#: ../../operation/events/events.build_table.php:104 -msgid "Agent Module" -msgstr "Модуль Агента" - -#: ../../operation/events/events.build_table.php:141 -msgid "Extra ID" -msgstr "Дополнительное ID" - -#: ../../operation/events/events.build_table.php:569 -msgid "Validate event" -msgstr "Подтвердить событие" - -#: ../../operation/events/events.build_table.php:584 -#: ../../operation/events/events.php:682 ../../operation/events/events.php:686 -#: ../../operation/events/events.php:856 ../../operation/events/events.php:860 -msgid "Is not allowed delete events in process" -msgstr "Нельзя удалить активное событие" - -#: ../../operation/events/events.build_table.php:592 -#: ../../operation/snmpconsole/snmp_view.php:658 -msgid "Show more" -msgstr "Показать подробнее" - -#: ../../operation/events/events.build_table.php:646 -msgid "Validate selected" -msgstr "Подтверждено успешно" - -#: ../../operation/events/events_list.php:178 -#: ../../operation/events/events_list.php:597 -msgid "No filter loaded" -msgstr "Нет загруженного фильтра" - -#: ../../operation/events/events_list.php:180 -#: ../../operation/events/events_list.php:602 -msgid "Filter loaded" -msgstr "Фильтр загружен" - -#: ../../operation/events/events_list.php:182 -#: ../../operation/events/events_list.php:246 -#: ../../operation/events/events_list.php:586 -msgid "Save filter" -msgstr "Сохранить фильтр" - -#: ../../operation/events/events_list.php:184 -#: ../../operation/events/events_list.php:270 -#: ../../operation/events/events_list.php:272 -#: ../../operation/events/events_list.php:590 -#: ../../operation/netflow/nf_live_view.php:311 -msgid "Load filter" -msgstr "Загрузить фильтр" - -#: ../../operation/events/events_list.php:206 -msgid "New filter" -msgstr "Новый фильтр" - -#: ../../operation/events/events_list.php:207 -#: ../../operation/events/events_list.php:238 -#: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../godmode/netflow/nf_edit_form.php:180 -msgid "Update filter" -msgstr "Обновить фильтр" - -#: ../../operation/events/events_list.php:213 -#: ../../godmode/events/event_edit_filter.php:202 -msgid "Filter name" -msgstr "Название фильтра" - -#: ../../operation/events/events_list.php:216 -msgid "Save in Group" -msgstr "" - -#: ../../operation/events/events_list.php:233 -msgid "Overwrite filter" -msgstr "Переписать фильтр" - -#: ../../operation/events/events_list.php:425 -#: ../../godmode/events/event_edit_filter.php:272 -msgid "User ack." -msgstr "Подтверждение пользователя" - -#: ../../operation/events/events_list.php:436 -#: ../../godmode/events/event_edit_filter.php:371 -msgid "Module search" -msgstr "" - -#: ../../operation/events/events_list.php:455 -#: ../../godmode/events/event_edit_filter.php:361 -msgid "Alert events" -msgstr "Предупреждающие события" - -#: ../../operation/events/events_list.php:456 -#: ../../godmode/events/event_edit_filter.php:365 -msgid "Filter alert events" -msgstr "Фильтр предупреждающих событий" - -#: ../../operation/events/events_list.php:456 -#: ../../godmode/events/event_edit_filter.php:366 -msgid "Only alert events" -msgstr "Только предупреждающие события" - -#: ../../operation/events/events_list.php:468 -msgid "Date from" -msgstr "f" - -#: ../../operation/events/events_list.php:474 -msgid "Date to" -msgstr "" - -#: ../../operation/events/events_list.php:485 -#: ../../operation/events/events_list.php:499 -#: ../../godmode/events/event_edit_filter.php:332 -msgid "Events with following tags" -msgstr "События со следующими тегами" - -#: ../../operation/events/events_list.php:491 -#: ../../operation/events/events_list.php:505 -#: ../../godmode/events/event_edit_filter.php:347 -msgid "Events without following tags" -msgstr "События без следующих тегов" - -#: ../../operation/events/events_list.php:562 -#: ../../godmode/events/event_edit_filter.php:287 -msgid "Group events" -msgstr "События группы" - -#: ../../operation/events/events_list.php:592 -msgid "Show events graph" -msgstr "Показать события графика" - -#: ../../operation/events/events_list.php:629 -msgid "Event control filter" -msgstr "Фильтр контроля событий" - -#: ../../operation/events/events_list.php:633 -msgid "Error creating filter." -msgstr "" - -#: ../../operation/events/events_list.php:634 -msgid "Error creating filter is duplicated." -msgstr "" - -#: ../../operation/events/events_list.php:635 -msgid "Filter created." -msgstr "" - -#: ../../operation/events/events_list.php:637 -msgid "Filter updated." -msgstr "" - -#: ../../operation/events/events_list.php:638 -msgid "Error updating filter." -msgstr "" - -#: ../../operation/events/events_list.php:972 -msgid "Filter name cannot be left blank" -msgstr "Имя фильтра не может быть пустым" - -#: ../../operation/events/events_list.php:1039 -#: ../../operation/events/events_list.php:1123 -msgid "none" -msgstr "ни один" - -#: ../../operation/events/events_list.php:1445 -msgid "Events generated -by agent-" -msgstr "События, сгенерированные - агентом-" - -#: ../../operation/events/events_rss.php:32 -msgid "Your IP is not into the IP list with API access." -msgstr "" - -#: ../../operation/events/events_rss.php:46 -msgid "The URL of your feed has bad hash." -msgstr "" - -#: ../../operation/events/events.php:187 -msgid "" -"Event viewer is disabled due event replication. For more information, please " -"contact with the administrator" -msgstr "" -"Просмотр событий отключен из-за события репликации. Для получения " -"дополнительной информации, пожалуйста, свяжитесь с администратором" - -#: ../../operation/events/events.php:320 -#: ../../operation/users/user_edit.php:293 ../../godmode/events/events.php:36 -msgid "Event list" -msgstr "Список событий" - -#: ../../operation/events/events.php:325 -msgid "History event list" -msgstr "Список истории событий" - -#: ../../operation/events/events.php:330 -msgid "RSS Events" -msgstr "RSS События" - -#: ../../operation/events/events.php:335 -msgid "Marquee display" -msgstr "Отображение \"Бегущая строка\"" - -#: ../../operation/events/events.php:340 -msgid "Export to CSV file" -msgstr "Эксорт в файл CSV" - -#: ../../operation/events/events.php:344 ../../operation/events/events.php:383 -msgid "Sound events" -msgstr "Звуковые события" - -#: ../../operation/events/events.php:351 ../../godmode/events/events.php:83 -#: ../../godmode/events/events.php:86 -#: ../../godmode/users/configure_profile.php:306 -msgid "Manage events" -msgstr "Управление событиями" - -#: ../../operation/events/events.php:387 -msgid "History" -msgstr "История" - -#: ../../operation/events/events.php:423 -msgid "Main event view" -msgstr "Просмотр главных событий" - -#: ../../operation/events/events.php:441 -msgid "No events selected" -msgstr "Нет выбранных событий" - -#: ../../operation/events/events.php:467 -msgid "Successfully validated" -msgstr "Успешно подтверждено" - -#: ../../operation/events/events.php:468 ../../operation/events/events.php:745 -#: ../../operation/events/events.php:897 -msgid "Could not be validated" -msgstr "Не может быть подтверждено" - -#: ../../operation/events/events.php:472 -msgid "Successfully set in process" -msgstr "Успешно настроено в процессе" - -#: ../../operation/events/events.php:473 -msgid "Could not be set in process" -msgstr "Активные настройки не могут быть удалены" - -#: ../../operation/events/events.php:780 -msgid "Error deleting event" -msgstr "Ошибка при удалении события" - -#: ../../operation/events/sound_events.php:62 -msgid "Sound console" -msgstr "Звуковые консоли" - -#: ../../operation/users/user_edit.php:86 -#: ../../godmode/users/configure_user.php:90 -msgid "User detail editor" -msgstr "Редактор деталей пользователя" - -#: ../../operation/users/user_edit.php:144 -#: ../../operation/users/user_edit.php:151 -msgid "Password successfully updated" -msgstr "Пароль успешно обновлен" - -#: ../../operation/users/user_edit.php:145 -#: ../../operation/users/user_edit.php:152 -#, php-format -msgid "Error updating passwords: %s" -msgstr "Ошибка при обновлении паролей : %s" - -#: ../../operation/users/user_edit.php:157 -msgid "" -"Passwords didn't match or other problem encountered while updating passwords" -msgstr "" -"Пароли не совпадают или другая проблема, возникающая при обновлении паролей" - -#: ../../operation/users/user_edit.php:168 -#: ../../operation/users/user_edit.php:178 -#: ../../godmode/users/configure_user.php:300 -#: ../../godmode/users/configure_user.php:310 -#: ../../godmode/users/configure_user.php:338 -#: ../../godmode/users/configure_user.php:344 -#: ../../godmode/users/configure_user.php:372 -msgid "User info successfully updated" -msgstr "Информация о пользователе успешно обновлена" - -#: ../../operation/users/user_edit.php:169 -#: ../../operation/users/user_edit.php:179 -msgid "Error updating user info" -msgstr "Ошибка при обновлении информации о пользователе" - -#: ../../operation/users/user_edit.php:189 -msgid "Edit my User" -msgstr "" - -#: ../../operation/users/user_edit.php:198 -#: ../../godmode/users/configure_user.php:442 -msgid "Full (display) name" -msgstr "Полное (отображать) имя" - -#: ../../operation/users/user_edit.php:220 -#: ../../godmode/users/configure_user.php:474 -#: ../../godmode/users/user_list.php:407 -msgid "E-mail" -msgstr "Электронная почта" - -#: ../../operation/users/user_edit.php:222 -#: ../../godmode/users/configure_user.php:478 -msgid "Phone number" -msgstr "Номер телефона" - -#: ../../operation/users/user_edit.php:231 -msgid "New Password" -msgstr "Новый Пароль" - -#: ../../operation/users/user_edit.php:233 -#: ../../godmode/users/configure_user.php:454 -msgid "Password confirmation" -msgstr "Подтверждение пароля" - -#: ../../operation/users/user_edit.php:241 -msgid "" -"You can not change your password from Pandora FMS under the current " -"authentication scheme" -msgstr "" -"Вы не можете изменить свой пароль в Pandora FMS при текущей системе " -"аутентификации" - -#: ../../operation/users/user_edit.php:250 -msgid "If checkbox is clicked then block size global configuration is used" -msgstr "Если флажок нажат, то размер блока общей конфигурации используется" - -#: ../../operation/users/user_edit.php:286 -msgid "Shortcut bar" -msgstr "Панель быстрого доступа" - -#: ../../operation/users/user_edit.php:286 -msgid "" -"This will activate a shortcut bar with alerts, events, messages... " -"information" -msgstr "" -"Это позволит активизировать панель быстрого доступа с оповещениями, " -"событиями, сообщениями ... информацией" - -#: ../../operation/users/user_edit.php:289 -msgid "Home screen" -msgstr "Главный экран" - -#: ../../operation/users/user_edit.php:289 -msgid "" -"User can customize the home page. By default, will display 'Agent Detail'. " -"Example: Select 'Other' and type " -"sec=estado&sec2=operation/agentes/estado_agente to show agent detail view" -msgstr "" -"Пользователь может настроить главную страницу. По умолчанию будет " -"отображаться как \"Агент Деталей\". Например: Выберите «Другие» и тип " -"sec=estado&sec2=operation/agentes/estado_agente чтобы показать агент деталей " -"подробно" - -#: ../../operation/users/user_edit.php:337 -#: ../../godmode/users/configure_user.php:506 -#: ../../godmode/groups/configure_group.php:181 -msgid "Skin" -msgstr "Обложка" - -#: ../../operation/users/user_edit.php:354 -msgid "Show information" -msgstr "" - -#: ../../operation/users/user_edit.php:385 -msgid "" -"You can not change your user info from Pandora FMS under the current " -"authentication scheme" -msgstr "" -"Вы не можете изменить вашу пользовательскую информацию в Pandora FMS " -"притекущей системе аутентификации" - -#: ../../operation/users/user_edit.php:395 -#: ../../operation/users/user_edit.php:402 -#: ../../godmode/users/configure_user.php:597 -#: ../../godmode/users/configure_user.php:606 -msgid "Profiles/Groups assigned to this user" -msgstr "Профили / Группы закрепленные за данным пользователем" - -#: ../../operation/users/user_edit.php:456 -msgid "This user doesn't have any assigned profile/group." -msgstr "" - -#: ../../operation/users/user_edit.php:586 -msgid "Double autentication information" -msgstr "" - -#: ../../operation/users/user_edit.php:649 -#: ../../operation/users/user_edit.php:725 -msgid "Double autentication activation" -msgstr "" - -#: ../../operation/users/user_edit.php:675 -msgid "The double authentication will be deactivated" -msgstr "" - -#: ../../operation/users/user_edit.php:676 -msgid "Deactivate" -msgstr "" - -#: ../../operation/users/user_edit.php:708 -msgid "The double autentication was deactivated successfully" -msgstr "" - -#: ../../operation/users/user_edit.php:711 -#: ../../operation/users/user_edit.php:715 -msgid "There was an error deactivating the double autentication" -msgstr "" - -#: ../../operation/users/webchat.php:71 -msgid "Webchat" -msgstr "Веб-чат" - -#: ../../operation/users/webchat.php:82 -msgid "Users Online" -msgstr "Пользователей онлайн" - -#: ../../operation/users/webchat.php:90 -#: ../../operation/messages/message_edit.php:217 -msgid "Send message" -msgstr "Отправить сообщение" - -#: ../../operation/users/webchat.php:157 -msgid "Connection established...get last 24h messages..." -msgstr "Соединение установлено ... сообщения за последние 24 часа..." - -#: ../../operation/users/webchat.php:168 -msgid "Error in connection." -msgstr "Ошибка соединения." - -#: ../../operation/users/webchat.php:249 -msgid "Error sendding message." -msgstr "Ошибка при отправке сообщения." - -#: ../../operation/users/webchat.php:277 -msgid "Error login." -msgstr "Ошибка входа в систему." - -#: ../../operation/search_modules.php:26 ../../operation/search_agents.php:33 -#: ../../operation/search_reports.php:29 ../../operation/search_maps.php:22 -#: ../../operation/search_graphs.php:24 ../../operation/search_users.php:26 -#: ../../operation/search_alerts.php:27 -msgid "Zero results found" -msgstr "Результатов не найдено" - -#: ../../operation/search_agents.php:109 -#: ../../operation/agentes/ver_agente.php:797 -#: ../../operation/servers/recon_view.php:46 -msgid "Manage" -msgstr "Управлять" - -#: ../../operation/messages/message_list.php:32 -#: ../../operation/messages/message_edit.php:35 -msgid "Received messages" -msgstr "Принятые сообщения" - -#: ../../operation/messages/message_list.php:36 -#: ../../operation/messages/message_edit.php:39 -msgid "Sent messages" -msgstr "Отправленные сообщения" - -#: ../../operation/messages/message_list.php:40 -#: ../../operation/messages/message_list.php:221 -#: ../../operation/messages/message_edit.php:43 -msgid "Create message" -msgstr "Создать сообщение" - -#: ../../operation/messages/message_list.php:74 -msgid "Not deleted. Error deleting messages" -msgstr "Не удалены. Ошибка при удалении сообщений" - -#: ../../operation/messages/message_list.php:80 -#: ../../operation/messages/message_list.php:88 -msgid "You have" -msgstr "У Вас" - -#: ../../operation/messages/message_list.php:81 -msgid "sent message(s)" -msgstr "отправлено сообщение(я)" - -#: ../../operation/messages/message_list.php:89 -msgid "unread message(s)" -msgstr "непрочитано сообщение(я)" - -#: ../../operation/messages/message_list.php:97 -msgid "There are no messages." -msgstr "" - -#: ../../operation/messages/message_list.php:123 -#: ../../operation/messages/message_edit.php:82 -#: ../../operation/messages/message_edit.php:169 -msgid "Destination" -msgstr "Место назначения" - -#: ../../operation/messages/message_list.php:125 -#: ../../operation/messages/message_edit.php:79 -#: ../../operation/messages/message_edit.php:160 -msgid "Sender" -msgstr "Отправитель" - -#: ../../operation/messages/message_list.php:126 -#: ../../operation/messages/message_edit.php:85 -#: ../../operation/messages/message_edit.php:207 -#: ../../godmode/setup/news.php:161 ../../godmode/setup/news.php:220 -msgid "Subject" -msgstr "Тема" - -#: ../../operation/messages/message_list.php:136 -msgid "Click to read" -msgstr "Нажмите чтобы прочитать" - -#: ../../operation/messages/message_list.php:141 -msgid "Mark as unread" -msgstr "Пометить как непрочитанное" - -#: ../../operation/messages/message_list.php:148 -#: ../../operation/messages/message_list.php:153 -msgid "Message unread - click to read" -msgstr "Непрочитанное сообщение - нажмите, чтобы прочитать" - -#: ../../operation/messages/message_list.php:180 -msgid "No Subject" -msgstr "Нет Темы" - -#: ../../operation/messages/message_edit.php:60 -msgid "This message does not exist in the system" -msgstr "Это сообщение не существует в системе" - -#: ../../operation/messages/message_edit.php:80 -msgid "at" -msgstr "в" - -#: ../../operation/messages/message_edit.php:104 -msgid "wrote" -msgstr "написано" - -#: ../../operation/messages/message_edit.php:119 -msgid "Reply" -msgstr "Ответить" - -#: ../../operation/messages/message_edit.php:136 -#, php-format -msgid "Message successfully sent to user %s" -msgstr "Сообщение успешно отправлены пользователю %s" - -#: ../../operation/messages/message_edit.php:137 -#, php-format -msgid "Error sending message to user %s" -msgstr "Ошибка при отправке сообщения пользователю %s" - -#: ../../operation/messages/message_edit.php:145 -msgid "Message successfully sent" -msgstr "Сообщение успешно отправлено" - -#: ../../operation/messages/message_edit.php:146 -#, php-format -msgid "Error sending message to group %s" -msgstr "Ошибка при отправке сообщения в группу %s" - -#: ../../operation/messages/message_edit.php:203 -msgid "Select user" -msgstr "Выберите пользователя" - -#: ../../operation/messages/message_edit.php:204 -msgid "OR" -msgstr "ИЛИ" - -#: ../../operation/messages/message_edit.php:205 -msgid "Select group" -msgstr "Выбрать группу" - -#: ../../operation/search_main.php:52 -msgid "Agents found" -msgstr "Агенты найдены" - -#: ../../operation/search_main.php:54 ../../operation/search_main.php:57 -#: ../../operation/search_main.php:68 ../../operation/search_main.php:71 -#: ../../operation/search_main.php:74 ../../operation/search_main.php:77 -#: ../../operation/search_main.php:80 -#, php-format -msgid "%s Found" -msgstr "%s Найдено" - -#: ../../operation/search_main.php:55 -msgid "Modules found" -msgstr "Модули найдены" - -#: ../../operation/search_main.php:66 -msgid "Users found" -msgstr "Пользователи найдены" - -#: ../../operation/search_main.php:69 -msgid "Graphs found" -msgstr "Графики найдены" - -#: ../../operation/search_main.php:72 -msgid "Reports found" -msgstr "Отчеты найдены" - -#: ../../operation/search_main.php:75 -msgid "Maps found" -msgstr "Карты найдены" - -#: ../../operation/search_main.php:78 -msgid "Helps found" -msgstr "" - -#: ../../operation/search_main.php:88 -#, php-format -msgid "Show %s of %s. View all matches" -msgstr "Показать %s of %s. Просмотреть все совпадения" - -#: ../../operation/snmpconsole/snmp_view.php:83 -#: ../../operation/snmpconsole/snmp_statistics.php:64 -#: ../../godmode/snmpconsole/snmp_alert.php:72 -#: ../../godmode/snmpconsole/snmp_alert.php:76 -#: ../../godmode/snmpconsole/snmp_alert.php:80 -#: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../godmode/snmpconsole/snmp_filters.php:38 -#: ../../godmode/snmpconsole/snmp_filters.php:42 -msgid "SNMP Console" -msgstr "SNMP Консоль" - -#: ../../operation/snmpconsole/snmp_view.php:404 -msgid "" -"Search by any alphanumeric field in the trap.\n" -"\t\tREMEMBER trap sources need to be searched by IP Address" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:411 -msgid "Search by trap type" -msgstr "Поиск по типу прерывания" - -#: ../../operation/snmpconsole/snmp_view.php:425 -msgid "Group by Enterprise String/IP" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:457 -#: ../../operation/snmpconsole/snmp_statistics.php:116 -msgid "There are no SNMP traps in database" -msgstr "Здесь нет прерываний SNMP в базе данных" - -#: ../../operation/snmpconsole/snmp_view.php:503 -#: ../../godmode/snmpconsole/snmp_alert.php:536 -#: ../../godmode/snmpconsole/snmp_alert.php:1051 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:72 -msgid "Enterprise String" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:513 -msgid "Trap subtype" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:578 -#: ../../operation/snmpconsole/snmp_statistics.php:156 -msgid "View agent details" -msgstr "Просмотреть агент деталей" - -#: ../../operation/snmpconsole/snmp_view.php:670 -msgid "Variable bindings:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:683 -msgid "See more details" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:696 -msgid "Enterprise String:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:734 -msgid "Trap type:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:762 -msgid "Count:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:766 -msgid "First trap:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:770 -msgid "Last trap:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:790 -msgid "No matching traps found" -msgstr "Соответствующих трапов не найдено" - -#: ../../operation/snmpconsole/snmp_statistics.php:127 -msgid "Traps received by source" -msgstr "" - -#: ../../operation/snmpconsole/snmp_statistics.php:141 -#: ../../operation/snmpconsole/snmp_statistics.php:199 -msgid "Number" -msgstr "" - -#: ../../operation/snmpconsole/snmp_statistics.php:185 -msgid "Traps received by Enterprise String" -msgstr "" - -#: ../../operation/snmpconsole/snmp_statistics.php:198 -msgid "Trap Enterprise String" -msgstr "" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:66 -msgid "" -"MIB files will be installed on the system. Please note that a MIB may depend " -"on other MIB. To customize trap definitions use the SNMP trap editor." -msgstr "" - -#: ../../operation/snmpconsole/snmp_browser.php:92 -msgid "SNMP Browser" -msgstr "Браузер SNMP" - -#: ../../operation/gis_maps/render_view.php:133 -msgid "Refresh: " -msgstr "Обновить: " - -#: ../../operation/gis_maps/render_view.php:142 -msgid "Show agents by state: " -msgstr "Показывать агенты по положению: " - -#: ../../operation/gis_maps/gis_map.php:29 -#: ../../godmode/gis_maps/configure_gis_map.php:204 -msgid "GIS Maps list" -msgstr "" - -#: ../../operation/gis_maps/gis_map.php:173 -#: ../../operation/gis_maps/index.php:70 -msgid "No maps found" -msgstr "Карты не найдены" - -#: ../../operation/gis_maps/gis_map.php:192 -#: ../../godmode/gis_maps/index.php:135 -msgid "Caution: Do you want delete the map?" -msgstr "Внимание: Вы хотите удалить карту?" - -#: ../../operation/gis_maps/gis_map.php:199 -#: ../../godmode/gis_maps/index.php:142 -msgid "Do you want to set default the map?" -msgstr "Вы хотите установить карту по умолчанию?" - -#: ../../operation/gis_maps/gis_map.php:207 -#: ../../godmode/gis_maps/index.php:150 -msgid "There was error on setup the default map." -msgstr "Найдена ошибка при настройке карты по умолчанию" - -#: ../../operation/gis_maps/ajax.php:217 ../../operation/gis_maps/ajax.php:254 -msgid "Position (Lat, Long, Alt)" -msgstr "Позиция (Шир, Длина, Долгота)" - -#: ../../operation/gis_maps/ajax.php:218 -msgid "Start contact" -msgstr "Начальный контакт" - -#: ../../operation/gis_maps/ajax.php:220 -msgid "Num reports" -msgstr "Нум отчетов" - -#: ../../operation/gis_maps/ajax.php:222 -#: ../../operation/agentes/gis_view.php:186 -msgid "Manual placement" -msgstr "Руководство для размещения" - -#: ../../operation/gis_maps/ajax.php:258 -msgid "Default position of map." -msgstr "Положение карты по умолчанию." - -#: ../../operation/agentes/exportdata.php:82 -#: ../../operation/agentes/exportdata.excel.php:67 -#: ../../operation/agentes/exportdata.csv.php:68 -msgid "Invalid time specified" -msgstr "Указано неверное время" - -#: ../../operation/agentes/exportdata.php:209 -#: ../../operation/agentes/exportdata.excel.php:164 -#: ../../operation/agentes/exportdata.csv.php:181 -msgid "No modules specified" -msgstr "Нет указанных модулей" - -#: ../../operation/agentes/exportdata.php:267 -msgid "No modules of type string. You can not calculate their average" -msgstr "Нет модулей типа строка. Вы не можете рассчитать их среднее" - -#: ../../operation/agentes/exportdata.php:318 -msgid "Export type" -msgstr "тип экспорта" - -#: ../../operation/agentes/exportdata.php:323 -msgid "MS Excel" -msgstr "MS Excel" - -#: ../../operation/agentes/exportdata.php:324 -msgid "Average per hour/day" -msgstr "В среднем за час/день" - -#: ../../operation/agentes/snapshot_view.php:66 -msgid "Current data at" -msgstr "Текущие данные в" - -#: ../../operation/agentes/interface_traffic_graph_win.php:48 -#: ../../operation/agentes/stat_win.php:44 -msgid "There was a problem connecting with the node" -msgstr "" - -#: ../../operation/agentes/interface_traffic_graph_win.php:66 -msgid "In" -msgstr "" - -#: ../../operation/agentes/interface_traffic_graph_win.php:67 -msgid "Out" -msgstr "" - -#: ../../operation/agentes/interface_traffic_graph_win.php:191 -#: ../../operation/agentes/stat_win.php:252 -msgid "Pandora FMS Graph configuration menu" -msgstr "Меню конфигурации Графа Pandora FMS" - -#: ../../operation/agentes/interface_traffic_graph_win.php:193 -#: ../../operation/agentes/stat_win.php:254 -msgid "Please, make your changes and apply with the <i>Reload</i> button" -msgstr "" -"Пожалуйста внесите свои изменения и подтвердите, нажав <i>Перезагрузка</i>" - -#: ../../operation/agentes/interface_traffic_graph_win.php:210 -#: ../../operation/agentes/stat_win.php:281 -msgid "Refresh time" -msgstr "Время обновления" - -#: ../../operation/agentes/interface_traffic_graph_win.php:223 -#: ../../operation/agentes/stat_win.php:322 -#: ../../operation/agentes/graphs.php:146 -#: ../../operation/reporting/graph_viewer.php:195 -msgid "Time range" -msgstr "Период времени" - -#: ../../operation/agentes/interface_traffic_graph_win.php:229 -#: ../../operation/agentes/stat_win.php:310 -#: ../../operation/agentes/graphs.php:137 -msgid "Zoom factor" -msgstr "Фактор увеличения" - -#: ../../operation/agentes/interface_traffic_graph_win.php:256 -#: ../../operation/agentes/stat_win.php:404 -msgid "Reload" -msgstr "Перезагрузить" - -#: ../../operation/agentes/custom_fields.php:52 -msgid "No fields defined" -msgstr "Нет заданных полей" - -#: ../../operation/agentes/custom_fields.php:59 -#: ../../godmode/alerts/alert_view.php:441 -#: ../../godmode/alerts/alert_view.php:531 -#: ../../godmode/agentes/fields_manager.php:95 -msgid "Field" -msgstr "Поле" - -#: ../../operation/agentes/custom_fields.php:61 -#: ../../godmode/agentes/configure_field.php:51 -#: ../../godmode/agentes/fields_manager.php:96 -msgid "Display on front" -msgstr "Разместить спереди" - -#: ../../operation/agentes/custom_fields.php:62 -#: ../../godmode/agentes/configure_field.php:51 -#: ../../godmode/agentes/fields_manager.php:96 -msgid "" -"The fields with display on front enabled will be displayed into the agent " -"details" -msgstr "Поля, расположенные спереди будут отображаться в агенте данных" - -#: ../../operation/agentes/estado_monitores.php:35 -msgid "Tag's information" -msgstr "Информация Тега" - -#: ../../operation/agentes/estado_monitores.php:81 -msgid "Relationship information" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:124 -msgid "" -"To see the list of modules paginated, enable this option in the Styles " -"Configuration." -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:125 -msgid "Full list of monitors" -msgstr "Полный список мониторов" - -#: ../../operation/agentes/estado_monitores.php:150 -msgid "List of modules" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:342 -#: ../../operation/agentes/status_monitor.php:1320 -#: ../../operation/tree.php:357 -msgid "Module: " -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:420 -msgid "Status:" -msgstr "Статус:" - -#: ../../operation/agentes/estado_monitores.php:426 -msgid "Not Normal" -msgstr "Не Нормальный" - -#: ../../operation/agentes/estado_monitores.php:434 -#: ../../operation/agentes/networkmap.php:453 -msgid "Free text for search (*):" -msgstr "Свободный текст для поиска (*):" - -#: ../../operation/agentes/estado_monitores.php:435 -msgid "Search by module name, list matches." -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:449 -msgid "Reset" -msgstr "Перезагрузить" - -#: ../../operation/agentes/gis_view.php:55 -#: ../../godmode/agentes/agent_conf_gis.php:40 -msgid "" -"There is no default map. Please go to the setup for to set a default map." -msgstr "" -"Карты по умолчанию нет. Пожалуйста, перейдите на установки чтобы установить " -"дефолт карту." - -#: ../../operation/agentes/gis_view.php:86 -#: ../../godmode/agentes/agent_conf_gis.php:50 -msgid "" -"There is no GIS data for this agent, so it's positioned in default position " -"of map." -msgstr "" -"Там нет GIS данных для этого агента, поэтому они находятся в режиме по " -"умолчанию карты." - -#: ../../operation/agentes/gis_view.php:91 -msgid "Last position in " -msgstr "Последняя позиция в " - -#: ../../operation/agentes/gis_view.php:98 -msgid "Period to show data as path" -msgstr "Период для отображения данных как путь" - -#: ../../operation/agentes/gis_view.php:102 -msgid "Refresh path" -msgstr "Обновить путь" - -#: ../../operation/agentes/gis_view.php:105 -msgid "Positional data from the last" -msgstr "Позиционные данные из последнего" - -#: ../../operation/agentes/gis_view.php:144 -msgid "This agent doesn't have any GIS data." -msgstr "Этот агент не имеет никаких данных ГИС." - -#: ../../operation/agentes/gis_view.php:172 +#: ../../extensions/realtime_graphs.php:118 #, php-format -msgid "%s Km" -msgstr "%s Km" - -#: ../../operation/agentes/gis_view.php:178 -#: ../../godmode/setup/gis_step_2.php:300 -msgid "Longitude" -msgstr "Долгота" - -#: ../../operation/agentes/gis_view.php:179 -#: ../../godmode/setup/gis_step_2.php:296 -msgid "Latitude" -msgstr "Широта" - -#: ../../operation/agentes/gis_view.php:180 -#: ../../godmode/setup/gis_step_2.php:304 -msgid "Altitude" -msgstr "Высота над уровнем моря" - -#: ../../operation/agentes/gis_view.php:184 -msgid "Distance" -msgstr "Расстояние" - -#: ../../operation/agentes/gis_view.php:185 -msgid "# of Packages" -msgstr "# of Пакеты" - -#: ../../operation/agentes/gis_view.php:189 -msgid "positional data" -msgstr "данные о местоположении" - -#: ../../operation/agentes/agent_fields.php:38 -#: ../../operation/agentes/status_monitor.php:530 -msgid "Agent custom fields" -msgstr "Поля пользовательского агента" - -#: ../../operation/agentes/ver_agente.php:715 -msgid "Sons" -msgstr "Потомки" - -#: ../../operation/agentes/ver_agente.php:853 -#: ../../godmode/agentes/configurar_agente.php:349 -msgid "GIS data" -msgstr "Данные ГИС" - -#: ../../operation/agentes/ver_agente.php:921 -msgid "Log Viewer" -msgstr "" - -#: ../../operation/agentes/ver_agente.php:1025 -#: ../../godmode/agentes/configurar_agente.php:519 -msgid "Gis" -msgstr "гис" - -#: ../../operation/agentes/group_view.php:100 -msgid "Summary of the status groups" -msgstr "" - -#: ../../operation/agentes/group_view.php:151 -msgid "Not Init" -msgstr "Не инициализировано" - -#: ../../operation/agentes/group_view.php:391 -#: ../../operation/agentes/estado_agente.php:589 -#: ../../godmode/agentes/modificar_agente.php:572 -msgid "There are no defined agents" -msgstr "Здесь нет заданных агентов" - -#: ../../operation/agentes/datos_agente.php:165 -msgid "Received data from" -msgstr "Данные получены из" - -#: ../../operation/agentes/datos_agente.php:172 -msgid "Main database" -msgstr "Главная база данных" - -#: ../../operation/agentes/datos_agente.php:173 -msgid "" -"Switch between the main database and the history database to retrieve module " -"data" -msgstr "" -"Переключение между основной базой данных и базой данных истории для " -"извлечения данных модуля" - -#: ../../operation/agentes/datos_agente.php:202 -#: ../../operation/agentes/alerts_status.functions.php:97 -msgid "Free text for search" -msgstr "свободныйтекст для поиска" - -#: ../../operation/agentes/estado_agente.php:153 -msgid "Sucessfully deleted agent" -msgstr "Агент успешно удален" - -#: ../../operation/agentes/estado_agente.php:155 -msgid "There was an error message deleting the agent" -msgstr "Сообщение об ошибке удаления агента" - -#: ../../operation/agentes/status_events.php:31 -#: ../../operation/agentes/status_events.php:32 -msgid "Latest events for this agent" -msgstr "Последние событие этого агента" - -#: ../../operation/agentes/stat_win.php:112 -msgid "There was a problem locating the source of the graph" -msgstr "Обнаружена проблема обнаружения источника графа" - -#: ../../operation/agentes/stat_win.php:289 -msgid "Avg. Only" -msgstr "Только усредненное" - -#: ../../operation/agentes/stat_win.php:304 -msgid "Begin time" -msgstr "" - -#: ../../operation/agentes/stat_win.php:329 -#: ../../operation/agentes/graphs.php:150 -msgid "Show events" -msgstr "Показывать события" - -#: ../../operation/agentes/stat_win.php:340 -msgid "" -"Show events is disabled because this Pandora node is set the event " -"replication." -msgstr "" -"Показать события, которые отключены поскольку этот узел Pandora установлен " -"случаем репликации." - -#: ../../operation/agentes/stat_win.php:346 -#: ../../operation/agentes/graphs.php:152 -msgid "Show alerts" -msgstr "Показывать угрозы" - -#: ../../operation/agentes/stat_win.php:352 -msgid "Show event graph" -msgstr "Показать событие графика" - -#: ../../operation/agentes/stat_win.php:361 -msgid "Show percentil 95º" -msgstr "" - -#: ../../operation/agentes/tactical.php:134 -msgid "Report of State" -msgstr "" - -#: ../../operation/agentes/networkmap_list.php:364 -msgid "The session may be expired" -msgstr "" - -#: ../../operation/agentes/networkmap_list.php:386 -msgid "None selected" -msgstr "" - -#: ../../operation/agentes/networkmap.php:136 -msgid "Network map created successfully" -msgstr "Карта сети успешно создана" - -#: ../../operation/agentes/networkmap.php:137 -msgid "Could not create network map" -msgstr "Не удалось создать карту сети" - -#: ../../operation/agentes/networkmap.php:233 -msgid "Network map saved successfully" -msgstr "Карта сети успешно сохранена" - -#: ../../operation/agentes/networkmap.php:234 -msgid "Could not save network map" -msgstr "Не удается сохранить карту сети" - -#: ../../operation/agentes/networkmap.php:249 -msgid "There was an error loading the network map" -msgstr "" - -#: ../../operation/agentes/networkmap.php:328 -msgid "Delete map" -msgstr "Удалить карту" - -#: ../../operation/agentes/networkmap.php:360 -#: ../../godmode/gis_maps/configure_gis_map.php:454 -#: ../../godmode/gis_maps/configure_gis_map.php:461 -msgid "Save map" -msgstr "Сохранить карту" - -#: ../../operation/agentes/networkmap.php:385 -msgid "Topology view" -msgstr "Просмотр топологии" - -#: ../../operation/agentes/networkmap.php:393 -msgid "Policies view" -msgstr "Просмотр политики" - -#: ../../operation/agentes/networkmap.php:397 -msgid "Dynamic view" -msgstr "" - -#: ../../operation/agentes/networkmap.php:401 -msgid "Radial dynamic view" -msgstr "" - -#: ../../operation/agentes/networkmap.php:444 -msgid "Store group" -msgstr "" - -#: ../../operation/agentes/networkmap.php:477 -msgid "Depth" -msgstr "Глубина" - -#: ../../operation/agentes/networkmap.php:483 -msgid "Show interfaces" -msgstr "Показать интерфейсы" - -#: ../../operation/agentes/networkmap.php:495 -msgid "Only modules with alerts" -msgstr "Только модули с оповещениями" - -#: ../../operation/agentes/networkmap.php:502 -msgid "Hide policy modules" -msgstr "Спрятать пилитику модулей" - -#: ../../operation/agentes/networkmap.php:544 -msgid "Only run with it is filter for any group" -msgstr "работать только с этим фильтром для любой группы" - -#: ../../operation/agentes/networkmap.php:551 -msgid "L2 network interfaces" -msgstr "" - -#: ../../operation/agentes/alerts_status.functions.php:33 -msgid "Error processing alert(s)" -msgstr "Ошибка обработки оповещения(й)" - -#: ../../operation/agentes/alerts_status.functions.php:91 -#: ../../operation/agentes/status_monitor.php:470 -msgid "No tags" -msgstr "Нет тегов" - -#: ../../operation/agentes/alerts_status.functions.php:99 -msgid "Filter by agent name, module name, template name or action name" -msgstr "" -"Фильтр по имени агента, имени модуля, имени шаблона или названию действия" - -#: ../../operation/agentes/estado_generalagente.php:42 -msgid "The agent has not assigned server. Maybe agent does not run fine." -msgstr "Агент не назначен сервером. Может быть, агент не работает нормально." - -#: ../../operation/agentes/estado_generalagente.php:120 -msgid "" -"Agent statuses are re-calculated by the server, they are not shown in real " -"time." -msgstr "" -"Статусы агента пересчитаны на сервере, они не показаны в реальном времени." +msgid "%s Server CPU" +msgstr "%s CPU сервера" -#: ../../operation/agentes/estado_generalagente.php:197 -msgid "Agent contact" -msgstr "Контакт агента" - -#: ../../operation/agentes/estado_generalagente.php:219 -msgid "Next contact" -msgstr "Следующий контакт" - -#: ../../operation/agentes/estado_generalagente.php:242 -msgid "Agent info" -msgstr "Информация агента" - -#: ../../operation/agentes/estado_generalagente.php:386 -msgid "Active incident on this agent" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:390 -#: ../../operation/incidents/incident_detail.php:419 -#: ../../godmode/setup/news.php:222 -msgid "Author" -msgstr "Автор" - -#: ../../operation/agentes/estado_generalagente.php:536 -msgid "Events info (24hr.)" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:615 -msgid "Refresh data" -msgstr "Обновить данные" - -#: ../../operation/agentes/alerts_status.php:106 -msgid "Full list of alerts" -msgstr "Полный список оповещений" - -#: ../../operation/agentes/alerts_status.php:138 -msgid "Insufficient permissions to validate alerts" -msgstr "Недостаточно прав для проверки оповещений" - -#: ../../operation/agentes/alerts_status.php:390 -#: ../../godmode/alerts/alert_list.list.php:156 -msgid "Alert control filter" -msgstr "Фильтр по руководству оповещениями" - -#: ../../operation/agentes/alerts_status.php:588 -msgid "No alerts found" -msgstr "Оповещения не найдены" - -#: ../../operation/agentes/status_monitor.php:45 -msgid "Monitor view" -msgstr "Обзор монитора" - -#: ../../operation/agentes/status_monitor.php:414 -msgid "Monitor status" -msgstr "Статус монитора" - -#: ../../operation/agentes/status_monitor.php:521 -msgid "Advanced Options" -msgstr "" - -#: ../../operation/agentes/status_monitor.php:1274 -msgid "This group doesn't have any monitor" -msgstr "Эта группа не имеет монитора" - -#: ../../operation/agentes/graphs.php:87 -msgid "Other modules" -msgstr "" - -#: ../../operation/agentes/graphs.php:92 -msgid "Modules network no proc" -msgstr "" - -#: ../../operation/agentes/graphs.php:153 -msgid "the combined graph does not show the alerts into this graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:155 -msgid "Show as one combined graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:157 -msgid "one combined graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:160 -msgid "several graphs for each module" -msgstr "" - -#: ../../operation/agentes/graphs.php:167 -msgid "Save as custom graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:173 -msgid "Filter graphs" -msgstr "Фильтр графиков" - -#: ../../operation/agentes/graphs.php:185 -msgid "Combined graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:229 -#: ../../operation/agentes/graphs.php:232 -msgid "Name custom graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:254 -msgid "Save custom graph" -msgstr "" - -#: ../../operation/agentes/graphs.php:275 -msgid "Custom graph create from the tab graphs in the agent." -msgstr "" - -#: ../../operation/servers/recon_view.php:36 -#: ../../operation/servers/recon_view.php:51 -msgid "Recon View" -msgstr "Обзор рекона" - -#: ../../operation/servers/recon_view.php:89 -#: ../../godmode/servers/manage_recontask_form.php:217 -msgid "Task name" -msgstr "Название задачи" - -#: ../../operation/servers/recon_view.php:107 -#: ../../operation/incidents/incident_detail.php:261 -msgid "Updated at" -msgstr "Обновлено в" - -#: ../../operation/servers/recon_view.php:140 -msgid "Pending" -msgstr "Ожидание" - -#: ../../operation/servers/recon_view.php:145 -#: ../../godmode/servers/manage_recontask.php:310 -msgid "Network recon task" -msgstr "Сеть рекон задачи" - -#: ../../operation/servers/recon_view.php:173 -msgid "has no recon tasks assigned" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:107 -#: ../../operation/netflow/nf_live_view.php:132 -#: ../../operation/netflow/nf_live_view.php:136 -msgid "Netflow live view" -msgstr "Обзор живого сетевого потока" - -#: ../../operation/netflow/nf_live_view.php:120 +#: ../../extensions/realtime_graphs.php:120 #, php-format -msgid "nfdump binary (%s) not found!" -msgstr "nfdump двоичные (%s) не найдены!" - -#: ../../operation/netflow/nf_live_view.php:125 -msgid "Make sure nfdump version 1.6.8 or newer is installed!" -msgstr "Убедитесь, что версия 1.6.8 nfdump никогда не устанавливалась!" - -#: ../../operation/netflow/nf_live_view.php:148 -msgid "Error creating filter" -msgstr "Ошибка при создании фильтра" - -#: ../../operation/netflow/nf_live_view.php:151 -msgid "Filter created successfully" -msgstr "Фильтр создан успешно" - -#: ../../operation/netflow/nf_live_view.php:166 -msgid "Filter updated successfully" -msgstr "Фильтр обновлен успешно" - -#: ../../operation/netflow/nf_live_view.php:167 -msgid "Error updating filter" -msgstr "Ошибка при обновлении фильтра" - -#: ../../operation/netflow/nf_live_view.php:189 -msgid "Draw live filter" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:221 -msgid "Connection" -msgstr "Подключение" - -#: ../../operation/netflow/nf_live_view.php:245 -msgid "The interval will be divided in chunks the length of the resolution." -msgstr "Интервал будет разделен на куски длины разрешения." - -#: ../../operation/netflow/nf_live_view.php:254 -#: ../../godmode/netflow/nf_item_list.php:150 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1131 -msgid "Max. values" -msgstr "Максимальные значения" - -#: ../../operation/netflow/nf_live_view.php:264 -#: ../../godmode/setup/setup_netflow.php:70 -msgid "IP address resolution can take a lot of time" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:267 -msgid "IP address resolution" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:267 -#: ../../godmode/setup/setup_netflow.php:69 -msgid "Resolve the IP addresses to get their hostnames." -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:317 -msgid "Select a filter" -msgstr "" - -#: ../../operation/netflow/nf_live_view.php:331 -#: ../../godmode/netflow/nf_edit_form.php:210 -msgid "Dst Ip" -msgstr "IP-адрес пункта назначения" - -#: ../../operation/netflow/nf_live_view.php:331 -#: ../../godmode/netflow/nf_edit_form.php:210 -msgid "" -"Destination IP. A comma separated list of destination ip. If we leave the " -"field blank, will show all ip. Example filter by " -"ip:<br>25.46.157.214,160.253.135.249" -msgstr "" -"IP-адрес пункта назначения. Запятая разделяет список IP-адресов пункта " -"назначения. Если вы оставите поле пустым, будут показаны все IP-адреса. " -"Например, фильтра по IP:<br>25.46.157.214,160.253.135.249" - -#: ../../operation/netflow/nf_live_view.php:340 -#: ../../godmode/netflow/nf_edit_form.php:213 -msgid "Src Ip" -msgstr "Ip-адрес источника" - -#: ../../operation/netflow/nf_live_view.php:340 -#: ../../godmode/netflow/nf_edit_form.php:213 -msgid "" -"Source IP. A comma separated list of source ip. If we leave the field blank, " -"will show all ip. Example filter by ip:<br>25.46.157.214,160.253.135.249" -msgstr "" -"IP-адрес источника. Запятая разделяет список IP-адресов источника. Если вы " -"оставите поле пустым, будут показаны все IP-адреса. Например, фильтра по " -"IP:<br>25.46.157.214,160.253.135.249" - -#: ../../operation/netflow/nf_live_view.php:352 -#: ../../operation/netflow/nf_live_view.php:381 -#: ../../godmode/netflow/nf_edit_form.php:216 -#: ../../godmode/netflow/nf_edit_form.php:226 -msgid "Dst Port" -msgstr "Порт назначения" - -#: ../../operation/netflow/nf_live_view.php:352 -#: ../../godmode/netflow/nf_edit_form.php:216 -msgid "" -"Destination port. A comma separated list of destination ports. If we leave " -"the field blank, will show all ports. Example filter by ports 80 and " -"22:<br>80,22" -msgstr "" -"Порт назначения. Запятая разделяет список портов назначения. Если оставить " -"это поле пустым, будут показаны все порты. Пример фильтра по портам 80 и " -"22:<br>80,22" - -#: ../../operation/netflow/nf_live_view.php:361 -#: ../../operation/netflow/nf_live_view.php:381 -#: ../../godmode/netflow/nf_edit_form.php:219 -#: ../../godmode/netflow/nf_edit_form.php:226 -msgid "Src Port" -msgstr "Порт источника" - -#: ../../operation/netflow/nf_live_view.php:361 -#: ../../godmode/netflow/nf_edit_form.php:219 -msgid "" -"Source port. A comma separated list of source ports. If we leave the field " -"blank, will show all ports. Example filter by ports 80 and 22:<br>80,22" -msgstr "" -"Порт источника. Запятая разделяет список портов источника. Если оставить это " -"поле пустым, будут показаны все порты. Пример фильтра по портам 80 и " -"22:<br>80,22" - -#: ../../operation/netflow/nf_live_view.php:379 -#: ../../godmode/netflow/nf_edit_form.php:225 -msgid "Aggregate by" -msgstr "Объединено по" - -#: ../../operation/netflow/nf_live_view.php:381 -#: ../../godmode/netflow/nf_edit_form.php:226 -msgid "Src Ip Address" -msgstr "Ip-адрес источника" - -#: ../../operation/netflow/nf_live_view.php:381 -#: ../../godmode/netflow/nf_edit_form.php:226 -msgid "Dst Ip Address" -msgstr "Ip-адрес назначения" - -#: ../../operation/netflow/nf_live_view.php:384 -#: ../../godmode/netflow/nf_edit_form.php:230 -msgid "Output format" -msgstr "Выходной формат" - -#: ../../operation/netflow/nf_live_view.php:385 -msgid "Bytes per second" -msgstr "Байт в секунду" - -#: ../../operation/netflow/nf_live_view.php:385 -#: ../../godmode/netflow/nf_edit_form.php:231 -msgid "Kilobytes" -msgstr "Килобайты" - -#: ../../operation/netflow/nf_live_view.php:385 -#: ../../godmode/netflow/nf_edit_form.php:231 -msgid "Megabytes" -msgstr "Мегабайты" - -#: ../../operation/netflow/nf_live_view.php:385 -#: ../../godmode/netflow/nf_edit_form.php:231 -msgid "Kilobytes per second" -msgstr "Килобайтов в секунду" - -#: ../../operation/netflow/nf_live_view.php:385 -#: ../../godmode/netflow/nf_edit_form.php:231 -msgid "Megabytes per second" -msgstr "Мегабайтов в секунду" +msgid "Pending packages from %s Server" +msgstr "Ожидающие пакеты с сервера %s" -#: ../../operation/netflow/nf_live_view.php:396 -msgid "Draw" -msgstr "Рисовать" - -#: ../../operation/netflow/nf_live_view.php:400 -msgid "Save as new filter" -msgstr "Сохранить как новый фильтр" - -#: ../../operation/netflow/nf_live_view.php:401 -msgid "Update current filter" -msgstr "Обновить текущий фильтр" - -#: ../../operation/netflow/nf_live_view.php:415 -msgid "No filter selected" -msgstr "" - -#: ../../operation/visual_console/render_view.php:117 -#: ../../godmode/reporting/visual_console_builder.php:654 -msgid "Services wizard" -msgstr "" - -#: ../../operation/visual_console/render_view.php:174 -#: ../../operation/visual_console/public_console.php:97 -msgid "Autorefresh time" -msgstr "Частота обновления" - -#: ../../operation/visual_console/render_view.php:217 -#: ../../operation/visual_console/render_view.php:266 -#: ../../operation/visual_console/public_console.php:157 -msgid "Until refresh" -msgstr "до обновления" - -#: ../../operation/visual_console/public_console.php:114 -#: ../../general/header.php:144 -msgid "QR code of the page" -msgstr "" - -#: ../../operation/tree.php:88 +#: ../../extensions/realtime_graphs.php:124 #, php-format -msgid "Sort the agents by %s" -msgstr "" - -#: ../../operation/tree.php:91 -msgid "tags" -msgstr "теги" - -#: ../../operation/tree.php:97 -msgid "groups" -msgstr "группы" - -#: ../../operation/tree.php:100 -msgid "module groups" -msgstr "модули групп" - -#: ../../operation/tree.php:107 -msgid "policies" -msgstr "правила" - -#: ../../operation/tree.php:138 -msgid "Agent status" -msgstr "Статус агента" - -#: ../../operation/tree.php:140 -msgid "Search agent" -msgstr "Поиск агента" - -#: ../../operation/tree.php:165 -msgid "Search module" -msgstr "" - -#: ../../operation/tree.php:189 -msgid "Tree search" -msgstr "" - -#: ../../operation/tree.php:281 -msgid "Critical agents" -msgstr "" - -#: ../../operation/tree.php:286 -msgid "Warning agents" -msgstr "" - -#: ../../operation/tree.php:291 -msgid "Unknown agents" -msgstr "" - -#: ../../operation/tree.php:296 -msgid "Not init agents" -msgstr "" - -#: ../../operation/tree.php:301 -msgid "Normal agents" -msgstr "" - -#: ../../operation/search_graphs.php:33 -#: ../../operation/reporting/graph_viewer.php:288 -#: ../../godmode/reporting/graphs.php:142 -msgid "Graph name" -msgstr "Название графика" - -#: ../../operation/incidents/incident_statistics.php:36 -msgid "Incidents by priority" -msgstr "Инциденты по важности" - -#: ../../operation/incidents/incident_statistics.php:39 -msgid "Incidents by group" -msgstr "Инциденты по группам" - -#: ../../operation/incidents/incident_statistics.php:42 -msgid "Incidents by user" -msgstr "инциденты по пользователям" - -#: ../../operation/incidents/incident_statistics.php:45 -msgid "Incidents by source" -msgstr "Инциденты по инсточнику" - -#: ../../operation/incidents/incident.php:67 -msgid "Successfully reclaimed ownership" -msgstr "Права собственности успешно восстановлены" - -#: ../../operation/incidents/incident.php:68 -msgid "Could not reclame ownership" -msgstr "Права собственности не могут быть восстановлены" - -#: ../../operation/incidents/incident.php:138 -msgid "Error creating incident" -msgstr "Ошибка при создании инцидента" - -#: ../../operation/incidents/incident.php:228 -msgid "Incidents:" -msgstr "" - -#: ../../operation/incidents/incident.php:229 -msgid "All incidents" -msgstr "все инциденты" - -#: ../../operation/incidents/incident.php:251 -msgid "Priorities:" -msgstr "" +msgid "%s Server Disk IO Wait" +msgstr "%s Ожидание сервера Disk IO" -#: ../../operation/incidents/incident.php:252 -msgid "All priorities" -msgstr "Все приоритеты" - -#: ../../operation/incidents/incident.php:256 -msgid "Users:" -msgstr "" - -#: ../../operation/incidents/incident.php:272 -msgid "Agents:" -msgstr "" - -#: ../../operation/incidents/incident.php:274 -#: ../../godmode/db/db_purge.php:167 -msgid "All agents" -msgstr "Все агенты" - -#: ../../operation/incidents/incident.php:279 -msgid "Groups:" -msgstr "" - -#: ../../operation/incidents/incident.php:285 -msgid "Free text:" -msgstr "" - -#: ../../operation/incidents/incident.php:286 -msgid "Search by incident name or description, list matches." -msgstr "" - -#: ../../operation/incidents/incident.php:394 -msgid "Delete incidents" -msgstr "Удалить инциденты" - -#: ../../operation/incidents/incident.php:398 -msgid "Become owner" -msgstr "Стать владельцем" - -#: ../../operation/incidents/incident.php:406 -#: ../../operation/incidents/incident_detail.php:238 -msgid "Create incident" -msgstr "создать инцидент" - -#: ../../operation/incidents/incident_detail.php:160 -msgid "File could not be saved due to database error" -msgstr "Файл не может быть сохранена из-за ошибки базы данных" - -#: ../../operation/incidents/incident_detail.php:174 -msgid "File could not be uploaded" -msgstr "файл не может быть загружен" - -#: ../../operation/incidents/incident_detail.php:259 -msgid "Opened at" -msgstr "открыто на" - -#: ../../operation/incidents/incident_detail.php:376 -msgid "Update incident" -msgstr "Обновить инцидент" - -#: ../../operation/incidents/incident_detail.php:382 -msgid "Submit" -msgstr "Отправить данные на сервер" - -#: ../../operation/incidents/incident_detail.php:396 -#: ../../operation/incidents/incident_detail.php:400 -msgid "Add note" -msgstr "Добавить заметку" - -#: ../../operation/incidents/incident_detail.php:432 -msgid "Notes attached to incident" -msgstr "Примечания приклепленны к инциденту" - -#: ../../operation/incidents/incident_detail.php:481 -msgid "Attached files" -msgstr "Вложенные файлы" - -#: ../../operation/incidents/incident_detail.php:499 -#: ../../operation/incidents/incident_detail.php:503 -msgid "Add attachment" -msgstr "Добавить вложение" - -#: ../../operation/search_helps.php:22 -msgid "Zero results found." -msgstr "" - -#: ../../operation/search_helps.php:23 +#: ../../extensions/realtime_graphs.php:128 #, php-format -msgid "" -"You can find more help in the <a style=\"text-decoration: underline;\" " -"href=\"%s\">Pandora's wiki</a>" -msgstr "" - -#: ../../operation/search_helps.php:37 -msgid "Matches" -msgstr "" - -#: ../../operation/search_results.php:143 -msgid "Helps" -msgstr "" - -#: ../../operation/search_users.php:50 ../../godmode/users/user_list.php:276 -msgid "Profile" -msgstr "Профиль" - -#: ../../operation/search_users.php:64 -#: ../../godmode/users/configure_user.php:465 -#: ../../godmode/users/user_list.php:414 -msgid "Administrator" -msgstr "Администратор" - -#: ../../operation/search_users.php:69 -#: ../../godmode/users/configure_user.php:470 -msgid "Standard User" -msgstr "Обычный пользователь" - -#: ../../operation/search_users.php:82 ../../godmode/users/user_list.php:458 -msgid "The user doesn't have any assigned profile/group" -msgstr "У пользователь нет закрепленного за ним профиля/группы" - -#: ../../operation/reporting/graph_viewer.php:136 -#: ../../godmode/reporting/graph_builder.php:192 -msgid "Graph editor" -msgstr "Графический редактор" - -#: ../../operation/reporting/graph_viewer.php:142 -#: ../../godmode/reporting/graph_builder.php:195 -msgid "View graph" -msgstr "Просмотреть график" - -#: ../../operation/reporting/graph_viewer.php:174 -msgid "No data." -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:204 -#: ../../operation/reporting/graph_viewer.php:219 -msgid "Graph defined" -msgstr "Определенный график" - -#: ../../operation/reporting/graph_viewer.php:220 -msgid "Zoom x1" -msgstr "Увеличить x1" - -#: ../../operation/reporting/graph_viewer.php:221 -msgid "Zoom x2" -msgstr "Увеличить x2" +msgid "%s Server Apache load" +msgstr "%s Загрузка сервера Apache" -#: ../../operation/reporting/graph_viewer.php:222 -msgid "Zoom x3" -msgstr "Увеличить x3" - -#: ../../operation/reporting/graph_viewer.php:270 -#: ../../operation/reporting/reporting_viewer.php:317 -msgid "Invalid date selected" -msgstr "Выбрана неверная дата" - -#: ../../operation/reporting/graph_viewer.php:277 -msgid "Custom graph viewer" -msgstr "Осмоторщик пользовательского графика" - -#: ../../operation/reporting/graph_viewer.php:304 -#: ../../operation/reporting/custom_reporting.php:32 -msgid "There are no defined reportings" -msgstr "Здесь нет ни одного репортажа" - -#: ../../operation/reporting/reporting_viewer.php:77 -#: ../../godmode/netflow/nf_item_list.php:39 -msgid "Report list" -msgstr "Перечень отчетов" - -#: ../../operation/reporting/reporting_viewer.php:98 -#: ../../godmode/reporting/reporting_builder.php:1841 -msgid "View report" -msgstr "Просмотр отчёта" - -#: ../../operation/reporting/reporting_viewer.php:152 -msgid "View Report" -msgstr "" - -#: ../../operation/reporting/reporting_viewer.php:191 -msgid "Set initial date" -msgstr "Установить начальную дату" - -#: ../../operation/reporting/reporting_viewer.php:217 -msgid "Invalid date selected. Initial date must be before end date." -msgstr "" - -#: ../../godmode/menu.php:28 -msgid "Resources" -msgstr "" - -#: ../../godmode/menu.php:46 -msgid "Module categories" -msgstr "" - -#: ../../godmode/menu.php:50 -msgid "Module types" -msgstr "Модуль виды" - -#: ../../godmode/menu.php:59 ../../godmode/netflow/nf_edit_form.php:66 -#: ../../godmode/netflow/nf_edit_form.php:71 -#: ../../godmode/netflow/nf_edit.php:48 ../../godmode/netflow/nf_edit.php:52 -msgid "Netflow filters" -msgstr "Фильтры сетевого потока" - -#: ../../godmode/menu.php:76 -msgid "Manage agents groups" -msgstr "" - -#: ../../godmode/menu.php:101 ../../godmode/agentes/configurar_agente.php:297 -msgid "Module templates" -msgstr "Модуль шаблоны" - -#: ../../godmode/menu.php:110 -msgid "Bulk operations" -msgstr "" - -#: ../../godmode/menu.php:115 ../../godmode/massive/massive_operations.php:165 -msgid "Agents operations" -msgstr "Агенты операций" - -#: ../../godmode/menu.php:116 ../../godmode/massive/massive_operations.php:170 -msgid "Modules operations" -msgstr "Модули операций" - -#: ../../godmode/menu.php:117 ../../godmode/massive/massive_operations.php:175 -msgid "Plugins operations" -msgstr "" - -#: ../../godmode/menu.php:119 ../../godmode/massive/massive_operations.php:160 -msgid "Users operations" -msgstr "Пользовательские операции" - -#: ../../godmode/menu.php:121 ../../godmode/massive/massive_operations.php:155 -msgid "Alerts operations" -msgstr "Оповещения об операциях" - -#: ../../godmode/menu.php:137 -msgid "List of Alerts" -msgstr "" - -#: ../../godmode/menu.php:159 ../../godmode/menu.php:160 -#: ../../godmode/alerts/alert_special_days.php:43 -msgid "Special days list" -msgstr "Список определенных дней" - -#: ../../godmode/menu.php:179 -msgid "Event filters" -msgstr "Фильтры событий" - -#: ../../godmode/menu.php:183 -msgid "Custom events" -msgstr "Пользовательские события" - -#: ../../godmode/menu.php:199 -msgid "Manage servers" -msgstr "Управление серверами" - -#: ../../godmode/menu.php:209 -#: ../../godmode/servers/manage_recontask_form.php:269 -msgid "Recon script" -msgstr "Рекон скрипт" - -#: ../../godmode/menu.php:233 -msgid "General Setup" -msgstr "" - -#: ../../godmode/menu.php:248 ../../godmode/setup/setup.php:90 -#: ../../godmode/setup/setup.php:121 -msgid "Visual styles" -msgstr "Визуальные стили" - -#: ../../godmode/menu.php:261 ../../godmode/setup/gis.php:32 -msgid "Map conections GIS" -msgstr "Подключение ГИС данных к карте" - -#: ../../godmode/menu.php:265 ../../godmode/setup/os.php:139 -msgid "Edit OS" -msgstr "Редактировать OS" - -#: ../../godmode/menu.php:276 -msgid "Admin tools" -msgstr "" - -#: ../../godmode/menu.php:282 -msgid "System audit log" -msgstr "Журнал системного аудита" - -#: ../../godmode/menu.php:284 ../../godmode/menu.php:409 -#: ../../general/links_menu.php:20 -msgid "Links" -msgstr "Ссылки" - -#: ../../godmode/menu.php:286 -msgid "Update manager" -msgstr "Управление обновлением" - -#: ../../godmode/menu.php:294 -msgid "DB maintenance" -msgstr "Обслуживание DB" - -#: ../../godmode/menu.php:299 -msgid "DB information" -msgstr "Информация базы данных" - -#: ../../godmode/menu.php:300 ../../godmode/db/db_purge.php:38 -msgid "Database purge" -msgstr "Очистка базы данных" - -#: ../../godmode/menu.php:302 -msgid "Database audit" -msgstr "Аудит базы данных" - -#: ../../godmode/menu.php:303 -msgid "Database event" -msgstr "Событие базы данных" - -#: ../../godmode/menu.php:307 -msgid "Diagnostic info" -msgstr "Диагностическая информация" - -#: ../../godmode/menu.php:310 -msgid "Site news" -msgstr "Новости сайта" - -#: ../../godmode/menu.php:316 ../../godmode/agentes/configurar_agente.php:367 -#: ../../godmode/agentes/configurar_agente.php:531 -msgid "SNMP Wizard" -msgstr "Master SNMP" - -#: ../../godmode/menu.php:327 -msgid "Extension manager" -msgstr "" - -#: ../../godmode/extensions.php:146 -msgid "Godmode Function" -msgstr "Функция Godmode" - -#: ../../godmode/extensions.php:147 -msgid "Godmode Menu" -msgstr "Меню Godmode" - -#: ../../godmode/extensions.php:148 -msgid "Operation Menu" -msgstr "Операционное меню" - -#: ../../godmode/extensions.php:149 -msgid "Operation Function" -msgstr "Операционные функции" - -#: ../../godmode/extensions.php:150 -msgid "Login Function" -msgstr "Функция логина" - -#: ../../godmode/extensions.php:151 -msgid "Agent operation tab" -msgstr "Агент операционной таблицы" - -#: ../../godmode/extensions.php:152 -msgid "Agent godmode tab" -msgstr "Агент godmode таблицы" - -#: ../../godmode/events/event_filter.php:154 -#: ../../godmode/netflow/nf_edit.php:162 -msgid "There are no defined filters" -msgstr "Здесь нет заданных фильтров" - -#: ../../godmode/events/event_responses.php:52 -msgid "Response added succesfully" -msgstr "Ответ добавлен успешно" - -#: ../../godmode/events/event_responses.php:55 -msgid "Response cannot be added" -msgstr "Ответ не может быть добавлен" - -#: ../../godmode/events/event_responses.php:81 -msgid "Response updated succesfully" -msgstr "Ответ успешно обновлен" - -#: ../../godmode/events/event_responses.php:84 -msgid "Response cannot be updated" -msgstr "Ответ не может быть обновлен" - -#: ../../godmode/events/event_responses.php:93 -msgid "Response deleted succesfully" -msgstr "Ответ успешно удален" - -#: ../../godmode/events/event_responses.php:96 -msgid "Response cannot be deleted" -msgstr "Ответ не может быть удален" - -#: ../../godmode/events/event_responses.editor.php:63 -msgid "Edit event responses" -msgstr "" - -#: ../../godmode/events/event_responses.editor.php:93 -msgid "For Command type Modal Window mode is enforced" -msgstr "Для типа команды Модальное Окно режим соблюден" - -#: ../../godmode/events/event_responses.editor.php:94 -msgid "Modal window" -msgstr "Модальное окно" - -#: ../../godmode/events/event_responses.editor.php:94 -msgid "New window" -msgstr "Новое окно" - -#: ../../godmode/events/event_responses.editor.php:114 -#: ../../godmode/events/event_responses.editor.php:121 -#: ../../godmode/events/event_responses.editor.php:124 -#: ../../godmode/alerts/configure_alert_command.php:150 -#: ../../godmode/alerts/configure_alert_action.php:128 -#: ../../godmode/servers/plugin.php:338 ../../godmode/servers/plugin.php:344 -#: ../../godmode/servers/plugin.php:687 -#: ../../godmode/servers/recon_script.php:370 -#: ../../godmode/massive/massive_edit_plugins.php:437 -msgid "Command" -msgstr "Команда" +#: ../../extensions/realtime_graphs.php:132 +#, php-format +msgid "%s Server MySQL load" +msgstr "%s Загрузка сервера MySQL" -#: ../../godmode/events/event_responses.list.php:38 -msgid "No responses found" -msgstr "Ответы не найдены" +#: ../../extensions/realtime_graphs.php:136 +#, php-format +msgid "%s Server load" +msgstr "%s Загрузка сервера" -#: ../../godmode/events/event_responses.list.php:76 -msgid "Create response" -msgstr "Создать ответ" +#: ../../extensions/realtime_graphs.php:139 +msgid "SNMP Interface throughput" +msgstr "Пропускная способность интерфейса SNMP" -#: ../../godmode/events/custom_events.php:133 -msgid "Load default event fields" -msgstr "Загрузить поля событий по умолчанию" +#: ../../extensions/realtime_graphs.php:190 +msgid "Refresh interval" +msgstr "Интервал обновления" -#: ../../godmode/events/custom_events.php:133 -msgid "Default event fields will be loaded. Do you want to continue?" -msgstr "Поля событий по умолчанию были загружены. Вы хотите продолжить?" +#: ../../extensions/realtime_graphs.php:201 +#: ../../godmode/modules/manage_network_components_form_wizard.php:132 +msgid "Incremental" +msgstr "Инкрементный" + +#: ../../extensions/realtime_graphs.php:206 +msgid "Clear graph" +msgstr "Очистить график" + +#: ../../extensions/realtime_graphs.php:233 +#: ../../godmode/agentes/module_manager_editor_network.php:43 +msgid "Use this OID" +msgstr "Используйте этот OID" + +#: ../../extensions/users_connected.php:37 +#: ../../extensions/users_connected.php:162 +msgid "Users connected" +msgstr "Пользователи подключены" + +#: ../../extensions/users_connected.php:90 +msgid "No other users connected" +msgstr "Нет других подключенных пользовтелей" + +#: ../../extensions/users_connected.php:102 +msgid "Last login" +msgstr "Последний вход в систему" + +#: ../../godmode/modules/manage_nc_groups_form.php:54 +msgid "Update Group Component" +msgstr "Обновить компонент группы" + +#: ../../godmode/modules/manage_nc_groups_form.php:56 +msgid "Create Group Component" +msgstr "Создать групповой компонент" + +#: ../../godmode/modules/manage_nc_groups_form.php:71 +#: ../../godmode/groups/configure_group.php:156 +#: ../../godmode/groups/group_list.php:800 +#: ../../godmode/agentes/agent_manager.php:622 +#: ../../godmode/massive/massive_edit_agents.php:542 +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +#: ../../include/functions_visual_map_editor.php:956 +#: ../../include/rest-api/models/VisualConsole/Item.php:2115 +#: ../../operation/agentes/ver_agente.php:1146 +#: ../../operation/agentes/estado_generalagente.php:413 +msgid "Parent" +msgstr "Родитель" + +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +#: ../../include/class/ModuleTemplates.class.php:199 +#: ../../include/class/ModuleTemplates.class.php:217 +#: ../../include/class/ModuleTemplates.class.php:227 +msgid "Module template management" +msgstr "Управление шаблоном модуля" + +#: ../../godmode/modules/manage_network_templates_form.php:59 +msgid "Successfully deleted module from profile" +msgstr "Модуль успешно удален из профиля" -#: ../../godmode/events/events.php:41 -#: ../../godmode/netflow/nf_edit_form.php:55 -msgid "Filter list" -msgstr "Фильтровать список" +#: ../../godmode/modules/manage_network_templates_form.php:60 +msgid "Error deleting module from profile" +msgstr "Ошибка при удалении модуля из профиля" -#: ../../godmode/events/event_edit_filter.php:159 -#: ../../godmode/netflow/nf_edit_form.php:132 ../../godmode/setup/news.php:88 -#: ../../godmode/modules/manage_nc_groups.php:99 +#: ../../godmode/modules/manage_network_templates_form.php:79 +msgid "Successfully added module to profile" +msgstr "Модуль успешно добавлен в профиль" + +#: ../../godmode/modules/manage_network_templates_form.php:80 +msgid "Error adding module to profile" +msgstr "Ошибка при добавлении модуля к профилю" + +#: ../../godmode/modules/manage_network_templates_form.php:107 +msgid "Successfully updated network profile" +msgstr "Успешное обновление сетевого профиля" + +#: ../../godmode/modules/manage_network_templates_form.php:108 +msgid "Error updating network profile" +msgstr "Ошибка при обновлении сетевого профиля" + +#: ../../godmode/modules/manage_network_templates_form.php:126 +msgid "Successfully added network profile" +msgstr "Сетевой профиль успешно добавлен" + +#: ../../godmode/modules/manage_network_templates_form.php:127 +msgid "Error adding network profile" +msgstr "Ошибка при добавлении сетевого профиля" + +#: ../../godmode/modules/manage_network_templates_form.php:133 +msgid "Cannot create a template without name" +msgstr "Нельзя создать шаблон без имени" + +#: ../../godmode/modules/manage_network_templates_form.php:207 +msgid "No modules for this profile" +msgstr "Нет модулей для этого профиля" + +#: ../../godmode/modules/manage_network_templates_form.php:248 +#: ../../operation/snmpconsole/snmp_browser.php:142 +#: ../../operation/snmpconsole/snmp_browser.php:161 +msgid "Add modules" +msgstr "Добавить модули" + +#: ../../godmode/modules/manage_nc_groups.php:40 +msgid "Component group management" +msgstr "управление группой компонентов" + +#: ../../godmode/modules/manage_nc_groups.php:64 +msgid "Could not be created. Blank name" +msgstr "Не может быть создано. Имя не заполнено" + +#: ../../godmode/modules/manage_nc_groups.php:113 +#: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:108 +#: ../../godmode/events/event_edit_filter.php:210 msgid "Not updated. Error updating data" msgstr "Не обновлено. Ошибка при обновлении данных" -#: ../../godmode/events/event_edit_filter.php:190 -msgid "Update Filter" -msgstr "" - -#: ../../godmode/events/event_edit_filter.php:193 -msgid "Create Filter" -msgstr "" - -#: ../../godmode/events/event_edit_filter.php:207 +#: ../../godmode/modules/manage_nc_groups.php:274 msgid "" -"This group will be use to restrict the visibility of this filter with ACLs" +"This node is configured with centralized mode. This page is for read only. " +"Go to metaconsole to manage the component groups." msgstr "" -"Эта группа будет использоваться для ограничения видимости данного фильтра с " -"ACL" +"Этот узел настроен в централизованном режиме. Эта страница предназначена " +"только для чтения. Перейдите в метаконсоль для управления группами " +"компонентов." -#: ../../godmode/events/event_edit_filter.php:273 -msgid "Choose between the users who have validated an event. " -msgstr "Выберите между пользователями с утвержденными событиями. " +#: ../../godmode/modules/manage_nc_groups.php:289 +msgid "There are no defined component groups" +msgstr "Здесь нет определенных компонентов группы" -#: ../../godmode/users/configure_user.php:144 -#: ../../godmode/users/user_list.php:493 +#: ../../godmode/modules/manage_network_components_form_network.php:72 +msgid "SNMP Enterprise String" +msgstr "Цепь SNMP Enterprise" + +#: ../../godmode/modules/manage_network_components_form_network.php:191 +#: ../../godmode/modules/manage_network_components_form_wizard.php:311 +msgid "Name OID" +msgstr "Имя OID" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:41 +#: ../../godmode/agentes/module_manager_editor_wmi.php:87 +msgid "Namespace" +msgstr "Пространство имён" + +#: ../../godmode/modules/manage_network_components_form.php:348 +msgid "Update Network Component" +msgstr "Обновить сетевого компонента" + +#: ../../godmode/modules/manage_network_components_form.php:350 +msgid "Create Network Component" +msgstr "Создать сетевой компонент" + +#: ../../godmode/modules/manage_network_components.php:283 +msgid "Remote component management" +msgstr "Удаленное управление компонентами" + +#: ../../godmode/modules/manage_network_components.php:398 +msgid "Could not be created because the component exists" +msgstr "Не удалось создать, так как компонент существует" + +#: ../../godmode/modules/manage_network_components.php:637 +msgid "Search by name, description, tcp send or tcp rcv, list matches." +msgstr "" +"Поиск по имени, описанию, отправке TCP или TCP RCV, список совпадений." + +#: ../../godmode/modules/manage_network_components.php:728 +msgid "Max/Min" +msgstr "Макс/Мин" + +#: ../../godmode/modules/manage_network_components.php:765 +#: ../../include/class/ModuleTemplates.class.php:1231 +msgid "Network module" +msgstr "Сетевые модули" + +#: ../../godmode/modules/manage_network_components.php:776 +#: ../../include/class/ModuleTemplates.class.php:1242 +msgid "WMI module" +msgstr "WMI Модуль" + +#: ../../godmode/modules/manage_network_components.php:787 +#: ../../include/class/ModuleTemplates.class.php:1253 +msgid "Plug-in module" +msgstr "Сменный модуль" + +#: ../../godmode/modules/manage_network_components.php:798 +msgid "Wizard module" +msgstr "Модуль помощника" + +#: ../../godmode/modules/manage_network_components.php:864 +msgid "There are no defined network components" +msgstr "Здесь нет определенных сетевых компонентов" + +#: ../../godmode/modules/manage_network_components.php:874 +msgid "Create a new network component" +msgstr "Создать новый сетевой комтонент" + +#: ../../godmode/modules/manage_network_components.php:875 +msgid "Create a new plugin component" +msgstr "Создать новый сменный компонент" + +#: ../../godmode/modules/manage_network_components.php:876 +msgid "Create a new WMI component" +msgstr "Создать новый WMI компонент" + +#: ../../godmode/modules/manage_network_components.php:877 +msgid "Create a new wizard component" +msgstr "Создайте новый компонент мастера" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:89 +msgid "Add a macro oid" +msgstr "Добавить макрос oid" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:107 +msgid "Remove last macro oid" +msgstr "Удалить последний макрос oid" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:131 +msgid "Numeric" +msgstr "Числовой" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:133 +msgid "Boolean" +msgstr "Boolean" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:134 +msgid "Alphanumeric" +msgstr "Буквенно-цифровой" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:254 +msgid "Add by default" +msgstr "Добавить по умолчанию" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:282 +msgid "Module protocol" +msgstr "Протокол модуля" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:298 +msgid "Protocol" +msgstr "Протокол" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:314 +msgid "Manufacturer ID" +msgstr "Идентификатор производителя" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:346 +msgid "Component Group" +msgstr "Группа компонентов" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:364 +msgid "Module unit" +msgstr "Блок модуля" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:441 +msgid "Scan Type" +msgstr "Тип сканирования" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:455 +#: ../../godmode/agentes/planned_downtime.list.php:160 +msgid "Execution type" +msgstr "Тип исполнения" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:475 +msgid "Value OID" +msgstr "Значение OID" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:492 +msgid "Macros OID" +msgstr "Макросы OID" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:500 +#: ../../godmode/modules/manage_network_components_form_wizard.php:685 +msgid "Value operation" +msgstr "Операции со значениями" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:517 +#: ../../godmode/modules/manage_network_components_form_wizard.php:702 +msgid "Satellite execution" +msgstr "Работа Satellite" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:534 +#: ../../godmode/modules/manage_network_components_form_wizard.php:719 +msgid "Server plugin" +msgstr "Серверный плагин" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:572 +msgid "WMI class" +msgstr "Класс WMI" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:589 +msgid "Query key field" +msgstr "Ключевое поле запроса" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:606 +msgid "Query extra fields" +msgstr "Дополнительные поля запроса" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:614 +msgid "Query filters" +msgstr "Фильтры запроса" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:638 +#: ../../godmode/agentes/planned_downtime.list.php:402 +#: ../../godmode/agentes/planned_downtime.editor.php:591 +#: ../../include/functions_reporting_html.php:5619 +msgid "Execution" +msgstr "Выполнение" + +#: ../../godmode/modules/manage_network_components_form_wizard.php:657 +msgid "Field value" +msgstr "Значение поля" + +#: ../../godmode/modules/module_list.php:26 +msgid "Defined modules" +msgstr "Определенные модули" + +#: ../../godmode/modules/module_list.php:48 +msgid "Problem modifying module" +msgstr "Проблема изменения модуля" + +#: ../../godmode/modules/module_list.php:50 +msgid "Module updated successfully" +msgstr "Модуль успешно обновлен" + +#: ../../godmode/modules/manage_network_templates.php:77 +msgid "Template successfully deleted" +msgstr "Шаблон успешно удален" + +#: ../../godmode/modules/manage_network_templates.php:78 +msgid "Error deleting template" +msgstr "Ошибка при удалении шаблона" + +#: ../../godmode/modules/manage_network_templates.php:112 +msgid "This template does not exist" +msgstr "Данный шаблон не существует" + +#: ../../godmode/modules/manage_network_templates.php:292 +msgid "There are no defined network profiles" +msgstr "Здесь нет определенных сетевых профилей" + +#: ../../godmode/db/db_main.php:74 +msgid "Current database maintenance setup" +msgstr "Текущие настройки по обслуживанию базы данных" + +#: ../../godmode/db/db_main.php:80 +msgid "Database setup" +msgstr "Настройка базы данных" + +#: ../../godmode/db/db_main.php:84 +msgid "Max. time before compact data" +msgstr "Максимальное время перед сжатием данных" + +#: ../../godmode/db/db_main.php:90 +msgid "Max. time before purge" +msgstr "Максимальное время перед очисткой" + +#: ../../godmode/db/db_main.php:98 +#: ../../include/class/Diagnostics.class.php:228 +msgid "Database size stats" +msgstr "статистика пазмеров базы данных" + +#: ../../godmode/db/db_main.php:108 +#: ../../include/class/Diagnostics.class.php:563 +#: ../../include/functions_reporting.php:12901 +msgid "Total events" +msgstr "Всего событий" + +#: ../../godmode/db/db_main.php:114 +msgid "Total data items (tagente_datos)" +msgstr "Все элементы данных (tagente_datos)" + +#: ../../godmode/db/db_main.php:127 +msgid "Total log4x items (tagente_datos_log4x)" +msgstr "Все log4x элементы (tagente_datos_log4x)" + +#: ../../godmode/db/db_main.php:140 +msgid "Total data string items (tagente_datos_string)" +msgstr "Все элементы строк данных (tagente_datos_string)" + +#: ../../godmode/db/db_main.php:146 +msgid "Total modules configured" +msgstr "Всего сконфигурированные модули" + +#: ../../godmode/db/db_main.php:154 +msgid "Total agent access records" +msgstr "Все записи доступа к агенту" + +#: ../../godmode/db/db_main.php:166 +msgid "Database sanity" +msgstr "Проверка базы данных" + +#: ../../godmode/db/db_main.php:170 +msgid "Total uknown agents" +msgstr "Всего неизвестных агентов" + +#: ../../godmode/db/db_main.php:176 +msgid "Total non-init modules" +msgstr "Все не инициализированные модули" + +#: ../../godmode/db/db_main.php:185 +msgid "Last time on DB maintance" +msgstr "Последний раз на DB обслуживание" + +#: ../../godmode/db/db_main.php:208 +#, php-format msgid "" -"The current authentication scheme doesn't support creating users from " -"Pandora FMS" +"Please make sure your %s Server settings are correct and that the database " +"maintenance daemon is running. It's very important to keep your database up " +"to date in order to get the best performance and results from %s." msgstr "" -"Текущая схема идентификации не поддерживает создание пользователей Pandora " -"FMS" +"Убедитесь, что настройки вашего сервера %s верны и что запущен daemon " +"обслуживания базы данных. Очень важно поддерживать базу данных в актуальном " +"состоянии, чтобы получить наилучшую производительность и результаты от %s." -#: ../../godmode/users/configure_user.php:180 +#: ../../godmode/groups/configure_group.php:84 +#: ../../godmode/groups/configure_modu_group.php:46 +msgid "There was a problem loading group" +msgstr "Найдена проблема при загрузке группы" + +#: ../../godmode/groups/configure_group.php:103 +msgid "Update group" +msgstr "Обновить группу" + +#: ../../godmode/groups/configure_group.php:105 +#: ../../godmode/groups/group_list.php:914 +msgid "Create group" +msgstr "Создать группу" + +#: ../../godmode/groups/configure_group.php:124 +msgid "Update Group" +msgstr "Обновить группу" + +#: ../../godmode/groups/configure_group.php:126 +msgid "Create Group" +msgstr "Создать Группу" + +#: ../../godmode/groups/configure_group.php:164 +msgid "You have not access to the parent." +msgstr "У вас нет доступа к создателю." + +#: ../../godmode/groups/configure_group.php:212 +msgid "Group Password" +msgstr "Пароль группы" + +#: ../../godmode/groups/configure_group.php:216 +msgid "Enable alert use in this group." +msgstr "Включите использование предупреждений в этой группе." + +#: ../../godmode/groups/configure_group.php:220 +msgid "Propagate ACL" +msgstr "Распространять ACL" + +#: ../../godmode/groups/configure_group.php:220 +msgid "Propagate the same ACL security into the child subgroups." +msgstr "Разместить защиту ACL в детские подгруппы." + +#: ../../godmode/groups/configure_group.php:232 +#: ../../include/functions_events.php:4990 +msgid "Contact" +msgstr "Контакт" + +#: ../../godmode/groups/configure_group.php:232 +msgid "Contact information accessible through the _groupcontact_ macro" +msgstr "Контактная информация доступна через the _groupcontact_ macro" + +#: ../../godmode/groups/configure_group.php:236 +msgid "Information accessible through the _group_other_ macro" +msgstr "Информация доступна через the _group_other_ macro" + +#: ../../godmode/groups/configure_group.php:245 +msgid "Max agents allowed" +msgstr "Максимально допустимое количество агентов" + +#: ../../godmode/groups/configure_group.php:245 +msgid "Set the maximum of agents allowed for this group. 0 is unlimited." +msgstr "" +"Установите максимальное количество агентов, разрешенных для этой группы. 0 - " +"неограниченно." + +#: ../../godmode/groups/configure_group.php:287 +msgid "" +"WARNING: You\\'re trying to create a group in a node member of a " +"metaconsole.\\n\\nThis group and all of this contents will not be visible in " +"the metaconsole.\\n\\nIf you want to create a visible group, you must do it " +"from the metaconsole and propagate to the node. " +msgstr "" +"ВНИМАНИЕ: Вы\\ пытаетесь создать группу в узле, входящем в метаконсоль.\\n\\" +"nЭта группа и все ее содержимое не будут видны в метаконсоли.\\n\\nЕсли вы " +"хотите создать видимую группу, вы должны сделать это из метаконсоли и " +"распространить на узел. " + +#: ../../godmode/groups/group_list.php:301 +msgid "Tree Group view" +msgstr "Просмотр дерева группы" + +#: ../../godmode/groups/group_list.php:325 +msgid "Credential Store" +msgstr "Хранилище Учетных Данных" + +#: ../../godmode/groups/group_list.php:331 +#, php-format +msgid "Groups defined in %s" +msgstr "Группы, определенные в %s" + +#: ../../godmode/groups/group_list.php:340 ../../godmode/menu.php:201 +msgid "Credential store" +msgstr "Хранилище учетных данных" + +#: ../../godmode/groups/group_list.php:353 +msgid "Edit or delete groups can cause problems with synchronization" +msgstr "" +"Редактирование или удаление групп может вызвать проблемы с синхронизацией" + +#: ../../godmode/groups/group_list.php:422 +#: ../../godmode/groups/modu_group_list.php:101 +msgid "Group successfully created" +msgstr "Группа успешно создана" + +#: ../../godmode/groups/group_list.php:424 +#: ../../godmode/groups/modu_group_list.php:104 +msgid "There was a problem creating group" +msgstr "Найдена проблема при создании группы" + +#: ../../godmode/groups/group_list.php:427 +#: ../../godmode/groups/group_list.php:499 +msgid "Each group must have a different name" +msgstr "Каждая группа должна иметь свое имя" + +#: ../../godmode/groups/group_list.php:430 +#: ../../godmode/groups/group_list.php:502 +msgid "Group must have a name" +msgstr "Группа должна иметь имя" + +#: ../../godmode/groups/group_list.php:494 +#: ../../godmode/groups/modu_group_list.php:137 +msgid "Group successfully updated" +msgstr "Группа успешно обновлена" + +#: ../../godmode/groups/group_list.php:496 +#: ../../godmode/groups/modu_group_list.php:140 +msgid "There was a problem modifying group" +msgstr "Найдена проблема при изменении группы" + +#: ../../godmode/groups/group_list.php:556 +#, php-format +msgid "" +"The group %s could not be deleted because it is not empty in the nodes" +msgstr "" +"Группа %s не может быть удалена, поскольку узел используется в этой группе" + +#: ../../godmode/groups/group_list.php:630 +msgid "" +"The group has not been deleted in the metaconsole due to an error in the " +"node database" +msgstr "Группа не была удалена в метаконсоли из-за ошибки в базе данных узла" + +#: ../../godmode/groups/group_list.php:639 +#, php-format +msgid "The group %s has been deleted in the nodes" +msgstr "Группа %s была удалена в узлах" + +#: ../../godmode/groups/group_list.php:671 +#: ../../godmode/groups/modu_group_list.php:211 +msgid "Group successfully deleted" +msgstr "Группа успешно удалена" + +#: ../../godmode/groups/group_list.php:674 +#: ../../godmode/groups/modu_group_list.php:209 +msgid "There was a problem deleting group" +msgstr "Найдена проблема при удалении группы" + +#: ../../godmode/groups/group_list.php:681 +#, php-format +msgid "The group is not empty. It is use in %s." +msgstr "Данная группа занята. Она используется в %s." + +#: ../../godmode/groups/group_list.php:727 +#: ../../godmode/groups/group_list.php:905 +msgid "There are no defined groups" +msgstr "Нет заданных групп" + +#: ../../godmode/groups/group_list.php:861 +msgid "Are you sure? This group will also be deleted in all the nodes." +msgstr "Вы уверены? Эта группа также будет удалена во всех узлах." + +#: ../../godmode/groups/group_list.php:867 +msgid "" +"The child groups will be updated to use the parent id of the deleted group" +msgstr "" +"Дочерние группы будут обновлены для использования родительского " +"идентификатора удаленной группы" + +#: ../../godmode/groups/configure_modu_group.php:28 +msgid "Module group management" +msgstr "Управление группой модулей" + +#: ../../godmode/groups/modu_group_list.php:71 +#, php-format +msgid "Module groups defined in %s" +msgstr "Группы модулей определены в %s" + +#: ../../godmode/groups/modu_group_list.php:109 +#: ../../godmode/groups/modu_group_list.php:145 +msgid "Each module group must have a different name" +msgstr "Каждый модуль группы должен иметь свое имя" + +#: ../../godmode/groups/modu_group_list.php:113 +#: ../../godmode/groups/modu_group_list.php:149 +msgid "Module group must have a name" +msgstr "Модуль группы должен иметь имя" + +#: ../../godmode/groups/modu_group_list.php:265 +msgid "There are no defined module groups" +msgstr "Нет ни одной группы модулей" + +#: ../../godmode/groups/modu_group_list.php:273 +msgid "Create module group" +msgstr "Создать группу модулей" + +#: ../../godmode/extensions.php:28 +msgid "Defined extensions" +msgstr "Определенные расширения" + +#: ../../godmode/extensions.php:33 +msgid "There are no extensions defined" +msgstr "Здесь нет определенных расширений" + +#: ../../godmode/extensions.php:141 +msgid "Godmode Function" +msgstr "Функция Godmode" + +#: ../../godmode/extensions.php:142 +msgid "Godmode Menu" +msgstr "Меню Godmode" + +#: ../../godmode/extensions.php:143 +msgid "Operation Menu" +msgstr "Операционное меню" + +#: ../../godmode/extensions.php:144 +msgid "Operation Function" +msgstr "Операционные функции" + +#: ../../godmode/extensions.php:145 +msgid "Login Function" +msgstr "Функция логина" + +#: ../../godmode/extensions.php:146 +msgid "Agent operation tab" +msgstr "Агент операционной таблицы" + +#: ../../godmode/extensions.php:147 +msgid "Agent godmode tab" +msgstr "Агент godmode таблицы" + +#: ../../godmode/update_manager/update_manager.setup.php:244 +msgid "Registration ID:" +msgstr "Регистрационный идентификатор:" + +#: ../../godmode/update_manager/update_manager.setup.php:248 +msgid "Cancel registration:" +msgstr "Отменить регистрацию:" + +#: ../../godmode/update_manager/update_manager.setup.php:253 +msgid "Unregister" +msgstr "Удалить аккаунт" + +#: ../../godmode/update_manager/update_manager.setup.php:260 +msgid "Pandora FMS community reminder" +msgstr "Напоминание о сообществе Pandora FMS" + +#: ../../godmode/update_manager/update_manager.setup.php:260 +msgid "" +"Every 8 days, a message is displayed to admin users to remember to register " +"this Pandora instance" +msgstr "" +"Каждые 8 дней отображается сообщение для пользователей-администраторов, " +"чтобы не забыть зарегистрировать этот экземпляр Pandora" + +#: ../../godmode/update_manager/update_manager.online.php:62 +#, php-format +msgid "" +"Your PHP has set memory limit in %s. To use Update Manager Online, please " +"set it to %s" +msgstr "" +"Ваш PHP установил ограничение памяти в %s. Чтобы использовать Update Manager " +"Online, пожалуйста, установите значение %s" + +#: ../../godmode/update_manager/update_manager.online.php:75 +#, php-format +msgid "" +"Your PHP has post_max_size limited to %s. To use Update Manager Online, " +"please set it to %s" +msgstr "" +"В вашем PHP размер post_max_size ограничен %s. Чтобы использовать Update " +"Manager Online, пожалуйста, установите значение %s" + +#: ../../godmode/update_manager/update_manager.online.php:88 +#, php-format +msgid "" +"Your PHP has set maximum allowed size for uploaded files limit in %s. To use " +"Update Manager Online, please set it to %s" +msgstr "" +"Ваш PHP установил максимально допустимый размер загружаемых файлов в %s. " +"Чтобы использовать Update Manager Online, пожалуйста, установите его на %s" + +#: ../../godmode/update_manager/update_manager.online.php:99 +#: ../../godmode/update_manager/update_manager.offline.php:52 +msgid "The license has expired. Please contact Artica at info@artica.es" +msgstr "" +"Срок действия лицензии истек. Пожалуйста, свяжитесь с компанией Artica по " +"адресу info@artica.es." + +#: ../../godmode/update_manager/update_manager.online.php:109 +msgid "Update Manager Online requires registration" +msgstr "Update Manager Online требует регистрации" + +#: ../../godmode/update_manager/update_manager.online.php:140 +msgid "The latest version of package installed is:" +msgstr "Установлена последняя версия пакета:" + +#: ../../godmode/update_manager/update_manager.online.php:148 +msgid "Checking for the newest package." +msgstr "Проверка наличия самого нового пакета." + +#: ../../godmode/update_manager/update_manager.online.php:152 +msgid "Downloading for the newest package." +msgstr "Скачивание самого нового пакета." + +#: ../../godmode/update_manager/update_manager.online.php:193 +#: ../../general/alert_enterprise.php:160 +msgid "" +"WARNING: You are just one click away from an automated update. This may " +"result in a damaged system, including loss of data and operativity. Check " +"you have a recent backup. OpenSource updates are automatically created " +"packages, and there is no WARRANTY or SUPPORT. If you need professional " +"support and warranty, please upgrade to Enterprise Version." +msgstr "" +"ВНИМАНИЕ: Вы находитесь всего в одном клике от автоматического обновления. " +"Это может привести к повреждению системы, включая потерю данных и " +"оперативности. Убедитесь, что у вас есть последняя резервная копия. " +"Обновления OpenSource - это автоматически созданные пакеты, и в них нет " +"ГАРАНТИИ и ПОДДЕРЖКИ. Если вам нужна профессиональная поддержка и гарантия, " +"пожалуйста, перейдите на версию Enterprise." + +#: ../../godmode/update_manager/update_manager.offline.php:73 +msgid "Drop the package here or" +msgstr "Сбросьте пакет здесь или" + +#: ../../godmode/update_manager/update_manager.offline.php:74 +msgid "browse it" +msgstr "перейдите к" + +#: ../../godmode/update_manager/update_manager.offline.php:75 +msgid "The package has been uploaded successfully." +msgstr "Пакет был успешно загружен." + +#: ../../godmode/update_manager/update_manager.offline.php:76 +#, php-format +msgid "" +"Please keep in mind that this package is going to override your actual %s " +"files and that it's recommended to conduct a backup before continuing the " +"updating process." +msgstr "" +"Пожалуйста, имейте в виду, что этот пакет будет заменять ваши текущие файлы " +"%s, поэтому рекомендуется создать резервную копию перед продолжением " +"процесса обновления." + +#: ../../godmode/update_manager/update_manager.offline.php:77 +msgid "Click on the file below to begin." +msgstr "Нажмите на файл ниже, чтобы начать." + +#: ../../godmode/update_manager/update_manager.offline.php:78 +msgid "Updating" +msgstr "обновление" + +#: ../../godmode/update_manager/update_manager.offline.php:79 +msgid "Package updated successfully." +msgstr "Пакет обновлен успешно." + +#: ../../godmode/update_manager/update_manager.offline.php:80 +msgid "Package not updated." +msgstr "Пакет не обновлен." + +#: ../../godmode/update_manager/update_manager.offline.php:81 +msgid "If there are any database change, it will be applied." +msgstr "Если есть какие-либо изменения в базе данных, они будут применены." + +#: ../../godmode/update_manager/update_manager.offline.php:112 +msgid "This update does not correspond to the next version of Pandora" +msgstr "Это обновление не соответствует следующей версии Pandora" + +#: ../../godmode/update_manager/update_manager.php:41 +msgid "Offline update manager" +msgstr "Offline менеджер обновлений" + +#: ../../godmode/update_manager/update_manager.php:47 +msgid "Online update manager" +msgstr "Online менеджер обновлений" + +#: ../../godmode/update_manager/update_manager.php:53 +msgid "Update manager » Setup" +msgstr "Менеджер обновлений Â\" Настройка" + +#: ../../godmode/update_manager/update_manager.php:57 +msgid "Update manager » Offline" +msgstr "Менеджер обновлений Â\" Offline" + +#: ../../godmode/update_manager/update_manager.php:61 +msgid "Update manager » Online" +msgstr "Менеджер обновлений Â\" Online" + +#: ../../godmode/users/profile_list.php:69 +#: ../../godmode/users/configure_profile.php:65 +#, php-format +msgid "Profiles defined on %s" +msgstr "Профили установлены на %s" + +#: ../../godmode/users/profile_list.php:94 +#: ../../godmode/users/user_list.php:303 +msgid "There was a problem deleting the profile" +msgstr "Ошибка при удалении профиля" + +#: ../../godmode/users/profile_list.php:221 +msgid "There was a problem updating this profile" +msgstr "Проблема при обновлении этого профиля" + +#: ../../godmode/users/profile_list.php:224 +msgid "Profile name cannot be empty" +msgstr "Название профиля не может быть пустым" + +#: ../../godmode/users/profile_list.php:270 +#: ../../godmode/users/profile_list.php:273 +msgid "There was a problem creating this profile" +msgstr "Проблема при создании этого профиля" + +#: ../../godmode/users/profile_list.php:407 +msgid "There are no defined profiles" +msgstr "Здесь нет заданных профилей" + +#: ../../godmode/users/configure_profile.php:131 +msgid "Create profile" +msgstr "Создать профиль" + +#: ../../godmode/users/configure_profile.php:136 +msgid "There was a problem loading profile" +msgstr "Ошибка при загрузке файла" + +#: ../../godmode/users/configure_profile.php:205 +msgid "Update profile" +msgstr "Обновить профиль" + +#: ../../godmode/users/configure_profile.php:215 +msgid "Update Profile" +msgstr "Обновить профиль" + +#: ../../godmode/users/configure_profile.php:217 +msgid "Create Profile" +msgstr "Создать профиль" + +#: ../../godmode/users/configure_profile.php:238 +msgid "View agents" +msgstr "Просмотр агентов" + +#: ../../godmode/users/configure_profile.php:242 +msgid "Disable agents" +msgstr "Отключить агентов" + +#: ../../godmode/users/configure_profile.php:246 +msgid "Edit agents" +msgstr "Редактировать агентов" + +#: ../../godmode/users/configure_profile.php:253 +msgid "Edit alerts" +msgstr "Редактировать оповещения" + +#: ../../godmode/users/configure_profile.php:268 +msgid "Edit events" +msgstr "Редактировать события" + +#: ../../godmode/users/configure_profile.php:272 +#: ../../godmode/events/events.php:116 ../../godmode/events/events.php:124 +#: ../../operation/events/events.php:847 +msgid "Manage events" +msgstr "Управление событиями" + +#: ../../godmode/users/configure_profile.php:279 +msgid "View reports" +msgstr "Просмотреть отчеты" + +#: ../../godmode/users/configure_profile.php:283 +msgid "Edit reports" +msgstr "Редактировать отчеты" + +#: ../../godmode/users/configure_profile.php:287 +msgid "Manage reports" +msgstr "Управление отчётами" + +#: ../../godmode/users/configure_profile.php:294 +msgid "View network maps" +msgstr "Просмотр сетевых карт" + +#: ../../godmode/users/configure_profile.php:298 +msgid "Edit network maps" +msgstr "Редактировать сетевые карты" + +#: ../../godmode/users/configure_profile.php:302 +msgid "Manage network maps" +msgstr "Управление сетевыми картами" + +#: ../../godmode/users/configure_profile.php:309 +#: ../../include/functions_menu.php:509 +msgid "View visual console" +msgstr "Посмотреть визуальные консоли" + +#: ../../godmode/users/configure_profile.php:313 +msgid "Edit visual console" +msgstr "Редактировать визуальную консоль" + +#: ../../godmode/users/configure_profile.php:317 +msgid "Manage visual console" +msgstr "Управление визуальной консолью" + +#: ../../godmode/users/configure_profile.php:324 +msgid "View incidents" +msgstr "Просмотр событий" + +#: ../../godmode/users/configure_profile.php:328 +msgid "Edit incidents" +msgstr "редактировать инцидент" + +#: ../../godmode/users/configure_profile.php:332 +msgid "Manage incidents" +msgstr "Управление проишествиями" + +#: ../../godmode/users/configure_profile.php:344 +msgid "Manage users" +msgstr "Управление пользователями" + +#: ../../godmode/users/configure_profile.php:351 +msgid "Manage database" +msgstr "Управление базой данных" + +#: ../../godmode/users/configure_profile.php:358 +#, php-format +msgid "%s management" +msgstr "управление %s" + +#: ../../godmode/users/user_list.php:223 +#, php-format +msgid "Users defined on %s" +msgstr "Пользователи, определенные на %s" + +#: ../../godmode/users/user_list.php:249 +#: ../../godmode/users/configure_user.php:149 +#, php-format +msgid "Deleted user %s" +msgstr "Удаленный пользователь %s" + +#: ../../godmode/users/user_list.php:256 ../../godmode/users/user_list.php:294 +#: ../../godmode/users/configure_user.php:156 +msgid "There was a problem deleting the user" +msgstr "Ошибка при удалении пользователя" + +#: ../../godmode/users/user_list.php:270 +#: ../../godmode/users/configure_user.php:171 +#, php-format +msgid "Deleted user %s from metaconsole" +msgstr "Удаленный пользователь %s из мета консоли" + +#: ../../godmode/users/user_list.php:282 +#: ../../godmode/users/configure_user.php:182 +#, php-format +msgid "Deleted user %s from %s" +msgstr "Удаленный пользователь %s из %s" + +#: ../../godmode/users/user_list.php:288 +#: ../../godmode/users/configure_user.php:188 +#, php-format +msgid "Successfully deleted from %s" +msgstr "Успешно удалено из %s" + +#: ../../godmode/users/user_list.php:289 +#: ../../godmode/users/configure_user.php:189 +#, php-format +msgid "There was a problem deleting the user from %s" +msgstr "Найдена проблема при удалении пользоватея из %s" + +#: ../../godmode/users/user_list.php:319 +msgid "There was a problem disabling user" +msgstr "Проблема при отключении пользователя" + +#: ../../godmode/users/user_list.php:325 +msgid "There was a problem enabling user" +msgstr "Проблема при подключении пользователя" + +#: ../../godmode/users/user_list.php:417 +msgid "Profile / Group" +msgstr "Профиль / Группа" + +#: ../../godmode/users/user_list.php:583 +#: ../../godmode/users/configure_user.php:952 +#: ../../operation/search_users.php:52 +msgid "Administrator" +msgstr "Администратор" + +#: ../../godmode/users/user_list.php:632 +msgid "Other profiles are also assigned." +msgstr "Также назначаются другие профили." + +#: ../../godmode/users/user_list.php:632 +msgid "" +"Other profiles you cannot manage are also assigned. These profiles are not " +"shown. You cannot enable/disable or delete this user." +msgstr "" +"Также назначаются другие профили, которыми вы не можете управлять. Эти " +"профили не отображаются. Вы не можете включить/выключить или удалить этого " +"пользователя." + +#: ../../godmode/users/user_list.php:637 +#: ../../include/functions_reporting.php:3875 +#: ../../include/functions_reporting.php:3922 +#: ../../operation/search_users.php:76 +msgid "The user doesn't have any assigned profile/group" +msgstr "У пользователь нет закрепленного за ним профиля/группы" + +#: ../../godmode/users/user_list.php:655 +msgid "Deleting User" +msgstr "Удаление пользователя" + +#: ../../godmode/users/user_list.php:657 +msgid "Delete from all consoles" +msgstr "Удалить из всех консолей" + +#: ../../godmode/users/user_list.php:657 +#, php-format +msgid "Deleting User %s from all consoles" +msgstr "Удаление пользователя %s из всех консолей" + +#: ../../godmode/users/user_list.php:676 +#: ../../godmode/users/configure_user.php:206 +msgid "Create user" +msgstr "Создать пользователя" + +#: ../../godmode/users/user_list.php:679 +#: ../../godmode/users/configure_user.php:314 +#, php-format +msgid "" +"The current authentication scheme doesn't support creating users on %s" +msgstr "" +"Текущая схема аутентификации не поддерживает создание пользователей на %s" + +#: ../../godmode/users/configure_user.php:204 +msgid "Update user" +msgstr "Обновить пользователя" + +#: ../../godmode/users/configure_user.php:242 +#: ../../operation/users/user_edit_header.php:117 +msgid "User detail editor" +msgstr "Редактор деталей пользователя" + +#: ../../godmode/users/configure_user.php:389 msgid "User ID cannot be empty" msgstr "ID пользователя не может быть пустым" -#: ../../godmode/users/configure_user.php:187 +#: ../../godmode/users/configure_user.php:396 +msgid "Invalid user ID: leading or trailing blank spaces not allowed" +msgstr "" +"Неверный идентификатор пользователя: ведущие или последующие пробелы не " +"допускаются" + +#: ../../godmode/users/configure_user.php:404 msgid "Passwords cannot be empty" msgstr "Пароль не может быть пустым!" -#: ../../godmode/users/configure_user.php:194 +#: ../../godmode/users/configure_user.php:411 msgid "Passwords didn't match" msgstr "Пароли не сошлись!" -#: ../../godmode/users/configure_user.php:243 +#: ../../godmode/users/configure_user.php:464 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." msgstr "" +"Строгий ACL не рекомендуется для пользователей-администраторов, так как " +"может пострадать работа." -#: ../../godmode/users/configure_user.php:301 -#: ../../godmode/users/configure_user.php:311 -#: ../../godmode/users/configure_user.php:339 -#: ../../godmode/users/configure_user.php:345 -#: ../../godmode/users/configure_user.php:373 -msgid "Error updating user info (no change?)" -msgstr "Ошибка при обновлении информации о пользователе (без изменений?)" - -#: ../../godmode/users/configure_user.php:315 -msgid "Passwords does not match" -msgstr "Пароли не сходятся" - -#: ../../godmode/users/configure_user.php:363 -msgid "" -"Strict ACL is not recommended for this user. Performance could be affected." -msgstr "" - -#: ../../godmode/users/configure_user.php:395 +#: ../../godmode/users/configure_user.php:499 +#: ../../godmode/users/configure_user.php:774 msgid "Profile added successfully" msgstr "Профиль успешно добавлен" -#: ../../godmode/users/configure_user.php:396 +#: ../../godmode/users/configure_user.php:500 +#: ../../godmode/users/configure_user.php:775 msgid "Profile cannot be added" msgstr "Профиль не может быть добавлен" -#: ../../godmode/users/configure_user.php:422 +#: ../../godmode/users/configure_user.php:612 +#: ../../godmode/users/configure_user.php:636 +#: ../../godmode/users/configure_user.php:706 +#: ../../godmode/users/configure_user.php:713 +#: ../../godmode/users/configure_user.php:744 +#: ../../operation/users/user_edit.php:206 +#: ../../operation/users/user_edit.php:249 +msgid "User info successfully updated" +msgstr "Информация о пользователе успешно обновлена" + +#: ../../godmode/users/configure_user.php:613 +#: ../../godmode/users/configure_user.php:637 +#: ../../godmode/users/configure_user.php:707 +#: ../../godmode/users/configure_user.php:714 +#: ../../godmode/users/configure_user.php:745 +msgid "Error updating user info (no change?)" +msgstr "Ошибка при обновлении информации о пользователе (без изменений?)" + +#: ../../godmode/users/configure_user.php:642 +msgid "Password of the active user is required to perform password change" +msgstr "Для смены пароля требуется пароль действительного пользователя" + +#: ../../godmode/users/configure_user.php:644 +msgid "Password of active user is not correct" +msgstr "Пароль действительного пользователя неверен" + +#: ../../godmode/users/configure_user.php:660 +msgid "Passwords does not match" +msgstr "Пароли не сходятся" + +#: ../../godmode/users/configure_user.php:734 +msgid "" +"Strict ACL is not recommended for this user. Performance could be affected." +msgstr "" +"Строгий ACL не рекомендуется для этого пользователя. Это может повлиять на " +"производительность." + +#: ../../godmode/users/configure_user.php:813 msgid "Update User" -msgstr "" +msgstr "Обновить пользователя" -#: ../../godmode/users/configure_user.php:425 +#: ../../godmode/users/configure_user.php:815 msgid "Create User" -msgstr "" +msgstr "Создать пользователя" -#: ../../godmode/users/configure_user.php:461 +#: ../../godmode/users/configure_user.php:867 +#: ../../operation/users/user_edit.php:273 +msgid "Full (display) name" +msgstr "Полное (отображать) имя" + +#: ../../godmode/users/configure_user.php:884 +#: ../../operation/users/user_edit.php:413 +msgid "Timezone" +msgstr "Часовой пояс" + +#: ../../godmode/users/configure_user.php:885 +#: ../../operation/users/user_edit.php:413 +msgid "The timezone must be that of the associated server." +msgstr "" +"Часовой пояс должен соответствовать часовому поясу связанного сервера." + +#: ../../godmode/users/configure_user.php:918 +#: ../../operation/users/user_edit.php:299 +msgid "Password confirmation" +msgstr "Подтверждение пароля" + +#: ../../godmode/users/configure_user.php:936 +msgid "Own password confirmation" +msgstr "Подтверждение собственного пароля" + +#: ../../godmode/users/configure_user.php:945 msgid "Global Profile" msgstr "Глобальный профиль" -#: ../../godmode/users/configure_user.php:466 +#: ../../godmode/users/configure_user.php:953 msgid "" "This user has permissions to manage all. An admin user should not requiere " "additional group permissions, except for using Enterprise ACL." msgstr "" +"Этот пользователь имеет права на управление всем. Пользователь admin не " +"должен требовать дополнительных групповых разрешений, за исключением " +"использования Enterprise ACL." -#: ../../godmode/users/configure_user.php:471 +#: ../../godmode/users/configure_user.php:967 +#: ../../operation/search_users.php:61 +msgid "Standard User" +msgstr "Обычный пользователь" + +#: ../../godmode/users/configure_user.php:968 msgid "" "This user has separated permissions to view data in his group agents, create " "incidents belong to his groups, add notes in another incidents, create " @@ -26519,3636 +31062,2213 @@ msgstr "" "добавлять замечания в других инцидентах, создавать собственные задания или " "отзывы, и другие задачи на различных профилях" -#: ../../godmode/users/configure_user.php:513 +#: ../../godmode/users/configure_user.php:989 +#: ../../operation/users/user_edit.php:292 +msgid "E-mail" +msgstr "Электронная почта" + +#: ../../godmode/users/configure_user.php:1005 +#: ../../operation/users/user_edit.php:294 +msgid "Phone number" +msgstr "Номер телефона" + +#: ../../godmode/users/configure_user.php:1040 +#: ../../operation/users/user_edit.php:404 +msgid "Skin" +msgstr "Обложка" + +#: ../../godmode/users/configure_user.php:1049 +msgid "Search custom field view" +msgstr "Искать поле пользовательского просмотра" + +#: ../../godmode/users/configure_user.php:1049 +msgid "Load by default the selected view in custom field view" +msgstr "" +"Загрузка по умолчанию выбранного просмотра в просмотре пользовательского поля" + +#: ../../godmode/users/configure_user.php:1066 msgid "Use global conf" msgstr "Использовать глобальные конф" -#: ../../godmode/users/configure_user.php:528 +#: ../../godmode/users/configure_user.php:1071 +#: ../../operation/users/user_edit.php:354 +msgid "Home screen" +msgstr "Главный экран" + +#: ../../godmode/users/configure_user.php:1072 +#: ../../operation/users/user_edit.php:354 +msgid "" +"User can customize the home page. By default, will display 'Agent Detail'. " +"Example: Select 'Other' and type " +"index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 to show " +"agent detail view" +msgstr "" +"Пользователь может настроить главную страницу. По умолчанию будет " +"отображаться 'Agent Detail'. Пример: Выберите \"Другое\" и введите " +"index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=1, чтобы " +"показать подробное описание агента." + +#: ../../godmode/users/configure_user.php:1079 +#: ../../godmode/events/events.php:41 ../../operation/users/user_edit.php:358 +#: ../../operation/events/events.php:790 +msgid "Event list" +msgstr "Список событий" + +#: ../../godmode/users/configure_user.php:1082 +#: ../../operation/users/user_edit.php:361 +#: ../../operation/agentes/alerts_status.php:193 ../../operation/menu.php:63 +msgid "Alert detail" +msgstr "Детали оповещения" + +#: ../../godmode/users/configure_user.php:1083 +msgid "External link" +msgstr "Внешняя ссылка" + +#: ../../godmode/users/configure_user.php:1176 msgid "Metaconsole access" msgstr "Доступ к метаконсоли" -#: ../../godmode/users/configure_user.php:536 +#: ../../godmode/users/configure_user.php:1194 msgid "Not Login" msgstr "Нет Логина" -#: ../../godmode/users/configure_user.php:537 +#: ../../godmode/users/configure_user.php:1196 msgid "The user with not login set only can access to API." msgstr "Пользователь без логина может только получить доступ к API." -#: ../../godmode/users/configure_user.php:540 -msgid "Strict ACL" -msgstr "" +#: ../../godmode/users/configure_user.php:1206 +msgid "Session Time" +msgstr "Время сессии" -#: ../../godmode/users/configure_user.php:541 +#: ../../godmode/users/configure_user.php:1208 msgid "" -"With this option enabled, the user will can access to accurate information. " -"It is not recommended for admin users because performance could be affected" +"This is defined in minutes, If you wish a permanent session should putting -" +"1 in this field." msgstr "" +"Этот параметр задается в минутах, Если вы хотите, чтобы сессия была " +"постоянной, поставьте в этом поле -1." -#: ../../godmode/users/configure_user.php:547 +#: ../../godmode/users/configure_user.php:1234 +msgid "Default event filter" +msgstr "Фильтр событий по умолчанию" + +#: ../../godmode/users/configure_user.php:1247 +#: ../../include/functions_config.php:451 +msgid "Disabled newsletter" +msgstr "newsletter Выключено" + +#: ../../godmode/users/configure_user.php:1262 +msgid "eHorus user access enabled" +msgstr "Доступ пользователей eHorus разрешен" + +#: ../../godmode/users/configure_user.php:1270 +#: ../../include/functions_config.php:1608 +msgid "eHorus user" +msgstr "Пользователь eHorus" + +#: ../../godmode/users/configure_user.php:1279 +#: ../../include/functions_config.php:1612 +msgid "eHorus password" +msgstr "Пароль eHorus" + +#: ../../godmode/users/configure_user.php:1302 +msgid "User must be created before activating double authentication." +msgstr "Пользователь должен быть создан до активации двойной аутентификации." + +#: ../../godmode/users/configure_user.php:1312 +#: ../../operation/users/user_edit.php:434 +msgid "Show information" +msgstr "Показать информацию" + +#: ../../godmode/users/configure_user.php:1328 msgid "Enable agents managment" msgstr "Включить агенты управления" -#: ../../godmode/users/configure_user.php:554 +#: ../../godmode/users/configure_user.php:1336 msgid "Assigned node" msgstr "Назначенный узел" -#: ../../godmode/users/configure_user.php:554 +#: ../../godmode/users/configure_user.php:1336 msgid "Server where the agents created of this user will be placed" msgstr "Сервер, где агенты созданы этим пользователем будет размещен" -#: ../../godmode/users/configure_user.php:566 +#: ../../godmode/users/configure_user.php:1345 msgid "Enable node access" msgstr "Включить узел доступа" -#: ../../godmode/users/configure_user.php:566 +#: ../../godmode/users/configure_user.php:1345 msgid "With this option enabled, the user will can access to nodes console" msgstr "" "Если эта опция включена, пользователь может получить доступ к узлам консоли" -#: ../../godmode/users/configure_profile.php:49 -#: ../../godmode/users/profile_list.php:53 -msgid "Profiles defined in Pandora" -msgstr "Профили определённые в Pandora" +#: ../../godmode/users/configure_user.php:1561 +msgid "yes" +msgstr "да" -#: ../../godmode/users/configure_profile.php:113 -msgid "Create profile" -msgstr "Создать профиль" +#: ../../godmode/users/configure_user.php:1564 +msgid "no" +msgstr "нет" -#: ../../godmode/users/configure_profile.php:119 -msgid "There was a problem loading profile" -msgstr "Ошибка при загрузке файла" +#: ../../godmode/users/configure_user.php:1568 +msgid "please select profile and group" +msgstr "пожалуйста, выберите профиль и группу" -#: ../../godmode/users/configure_profile.php:219 -msgid "Update profile" -msgstr "Обновить профиль" +#: ../../godmode/users/configure_user.php:1594 +msgid "Deleting last profile will delete this user" +msgstr "Удаление последнего профиля приведет к удалению этого пользователя" -#: ../../godmode/users/configure_profile.php:229 -msgid "Update Profile" -msgstr "" - -#: ../../godmode/users/configure_profile.php:231 -msgid "Create Profile" -msgstr "" - -#: ../../godmode/users/configure_profile.php:248 -msgid "View incidents" -msgstr "Просмотр событий" - -#: ../../godmode/users/configure_profile.php:252 -msgid "Edit incidents" -msgstr "редактировать инцидент" - -#: ../../godmode/users/configure_profile.php:256 -msgid "Manage incidents" -msgstr "Управление проишествиями" - -#: ../../godmode/users/configure_profile.php:262 -msgid "View agents" -msgstr "Просмотр агентов" - -#: ../../godmode/users/configure_profile.php:266 -msgid "Edit agents" -msgstr "Редактировать агентов" - -#: ../../godmode/users/configure_profile.php:270 -msgid "Disable agents" -msgstr "Отключить агентов" - -#: ../../godmode/users/configure_profile.php:276 -msgid "Edit alerts" -msgstr "Редактировать оповещения" - -#: ../../godmode/users/configure_profile.php:286 -msgid "Manage users" -msgstr "Управление пользователями" - -#: ../../godmode/users/configure_profile.php:292 -msgid "Manage database" -msgstr "" - -#: ../../godmode/users/configure_profile.php:302 -msgid "Edit events" -msgstr "Редактировать события" - -#: ../../godmode/users/configure_profile.php:312 -#: ../../general/shortcut_bar.php:217 -msgid "View reports" -msgstr "Просмотреть отчеты" - -#: ../../godmode/users/configure_profile.php:316 -msgid "Edit reports" -msgstr "Редактировать отчеты" - -#: ../../godmode/users/configure_profile.php:320 -msgid "Manage reports" -msgstr "Управление отчётами" - -#: ../../godmode/users/configure_profile.php:326 -msgid "View network maps" -msgstr "" - -#: ../../godmode/users/configure_profile.php:330 -msgid "Edit network maps" -msgstr "" - -#: ../../godmode/users/configure_profile.php:334 -msgid "Manage network maps" -msgstr "" - -#: ../../godmode/users/configure_profile.php:344 -msgid "Edit visual console" -msgstr "" - -#: ../../godmode/users/configure_profile.php:354 -msgid "Pandora management" -msgstr "Управление Pandora" - -#: ../../godmode/users/user_list.php:121 -msgid "Users defined in Pandora" -msgstr "Пользователей, определенные в Pandora" - -#: ../../godmode/users/user_list.php:143 -#, php-format -msgid "Deleted user %s" -msgstr "Удаленный пользователь %s" - -#: ../../godmode/users/user_list.php:148 ../../godmode/users/user_list.php:181 -msgid "There was a problem deleting the user" -msgstr "Ошибка при удалении пользователя" - -#: ../../godmode/users/user_list.php:163 -#, php-format -msgid "Deleted user %s from metaconsole" -msgstr "Удаленный пользователь %s из мета консоли" - -#: ../../godmode/users/user_list.php:172 -#, php-format -msgid "Deleted user %s from %s" -msgstr "Удаленный пользователь %s из %s" - -#: ../../godmode/users/user_list.php:175 -#, php-format -msgid "Successfully deleted from %s" -msgstr "Успешно удалено из %s" - -#: ../../godmode/users/user_list.php:176 -#, php-format -msgid "There was a problem deleting the user from %s" -msgstr "Найдена проблема при удалении пользоватея из %s" - -#: ../../godmode/users/user_list.php:189 -#: ../../godmode/users/profile_list.php:88 -msgid "There was a problem deleting the profile" -msgstr "Ошибка при удалении профиля" - -#: ../../godmode/users/user_list.php:204 -msgid "There was a problem disabling user" -msgstr "Проблема при отключении пользователя" - -#: ../../godmode/users/user_list.php:209 -msgid "There was a problem enabling user" -msgstr "Проблема при подключении пользователя" - -#: ../../godmode/users/user_list.php:231 ../../godmode/users/user_list.php:233 -msgid "Search by username, fullname or email" -msgstr "" - -#: ../../godmode/users/user_list.php:249 -msgid "Users control filter" -msgstr "" - -#: ../../godmode/users/user_list.php:406 ../../godmode/tag/edit_tag.php:200 -#: ../../godmode/tag/tag.php:204 -msgid "Phone" -msgstr "Телефон" - -#: ../../godmode/users/user_list.php:471 -msgid "Deleting User" -msgstr "Удаление пользователя" - -#: ../../godmode/users/user_list.php:473 -msgid "Delete from all consoles" -msgstr "Удалить из всех консолей" - -#: ../../godmode/users/user_list.php:473 -#, php-format -msgid "Deleting User %s from all consoles" -msgstr "Удаление пользователя %s из всех консолей" - -#: ../../godmode/users/user_list.php:489 -msgid "Create user" -msgstr "Создать пользователя" - -#: ../../godmode/users/profile_list.php:80 +#: ../../godmode/users/configure_user.php:1631 msgid "" -"Unsucessful delete profile. Because the profile is used by some admin users." +"User will be created without profiles assigned and won't be able to log in, " +"are you sure?" msgstr "" +"Пользователь будет создан без назначенных профилей и не сможет войти в " +"систему, вы уверены?" -#: ../../godmode/users/profile_list.php:226 -msgid "There was a problem updating this profile" -msgstr "Проблема при обновлении этого профиля" +#: ../../godmode/users/configure_user.php:1797 +#: ../../operation/users/user_edit.php:1044 +msgid "Double autentication information" +msgstr "Информация о двойной аутентификации" -#: ../../godmode/users/profile_list.php:230 -msgid "Profile name cannot be empty" -msgstr "Название профиля не может быть пустым" +#: ../../godmode/users/configure_user.php:1887 +#: ../../operation/users/user_edit.php:1133 +msgid "The double authentication will be deactivated" +msgstr "Двойная аутентификация будет деактивирована" -#: ../../godmode/users/profile_list.php:282 -#: ../../godmode/users/profile_list.php:286 -msgid "There was a problem creating this profile" -msgstr "Проблема при создании этого профиля" +#: ../../godmode/users/configure_user.php:1888 +#: ../../operation/users/user_edit.php:1134 +msgid "Deactivate" +msgstr "Деактивировать" -#: ../../godmode/users/profile_list.php:320 -msgid "Network maps reading" -msgstr "" +#: ../../godmode/users/configure_user.php:1925 +#: ../../operation/users/user_edit.php:1166 +msgid "The double autentication was deactivated successfully" +msgstr "Двойная аутентификация была успешно деактивирована" -#: ../../godmode/users/profile_list.php:321 -msgid "Network maps writing" -msgstr "" +#: ../../godmode/users/configure_user.php:1929 +#: ../../godmode/users/configure_user.php:1933 +#: ../../operation/users/user_edit.php:1169 +#: ../../operation/users/user_edit.php:1173 +msgid "There was an error deactivating the double autentication" +msgstr "Произошла ошибка при деактивации двойной аутентификации" -#: ../../godmode/users/profile_list.php:322 -msgid "Network maps management" -msgstr "" +#: ../../godmode/agentes/agent_template.php:67 +#: ../../include/functions_api.php:14546 +msgid "Created by template " +msgstr "Создано по шаблону " -#: ../../godmode/users/profile_list.php:323 -msgid "Visual console reading" -msgstr "" +#: ../../godmode/agentes/agent_template.php:154 +msgid "Error adding modules" +msgstr "Ошибка при добавлении модулей" -#: ../../godmode/users/profile_list.php:324 -msgid "Visual console writing" -msgstr "" +#: ../../godmode/agentes/agent_template.php:156 +msgid "Error adding modules. The following errors already exists: " +msgstr "Ошибка при добавлении модулей. Следующие ошибки уже существует: " -#: ../../godmode/users/profile_list.php:325 -msgid "Visual console management" -msgstr "" +#: ../../godmode/agentes/agent_template.php:161 +#: ../../include/functions_api.php:14640 +msgid "Modules successfully added" +msgstr "Модули успешно добавлены" -#: ../../godmode/users/profile_list.php:398 -msgid "There are no defined profiles" -msgstr "Здесь нет заданных профилей" +#: ../../godmode/agentes/agent_template.php:186 +msgid "Assign" +msgstr "Назначить" -#: ../../godmode/category/edit_category.php:43 -#: ../../godmode/category/edit_category.php:50 -#: ../../godmode/category/category.php:44 -#: ../../godmode/category/category.php:51 -msgid "List categories" -msgstr "Список категорий" +#: ../../godmode/agentes/agent_template.php:267 +#: ../../mobile/operation/modules.php:759 +msgid "No modules" +msgstr "Нет модулей" -#: ../../godmode/category/edit_category.php:57 -#: ../../godmode/category/edit_category.php:60 -#: ../../godmode/category/category.php:58 -#: ../../godmode/category/category.php:61 -msgid "Categories configuration" -msgstr "Конфигурация категорий" +#: ../../godmode/agentes/module_manager_editor_wmi.php:87 +msgid "Optional. WMI namespace. If unsure leave blank." +msgstr "Необязательно. Поле имен WMI. Если нет уверенности, оставьте пустым." -#: ../../godmode/category/edit_category.php:57 -msgid "Editor" -msgstr "Редактор" - -#: ../../godmode/category/edit_category.php:76 -msgid "Error updating category" -msgstr "Ошибка при обновлении категории" - -#: ../../godmode/category/edit_category.php:80 -msgid "Successfully updated category" -msgstr "Категория успешно обновлена" - -#: ../../godmode/category/edit_category.php:99 -msgid "Error creating category" -msgstr "Ошибка при создании категории" - -#: ../../godmode/category/edit_category.php:105 -msgid "Successfully created category" -msgstr "Категория успешно создана" - -#: ../../godmode/category/edit_category.php:137 -msgid "Update category" -msgstr "" - -#: ../../godmode/category/edit_category.php:146 -#: ../../godmode/category/category.php:150 -msgid "Create category" -msgstr "Создать категорию" - -#: ../../godmode/category/category.php:72 -msgid "Error deleting category" -msgstr "Ошибка при удалении категории" - -#: ../../godmode/category/category.php:76 -msgid "Successfully deleted category" -msgstr "Категория успешно удалена" - -#: ../../godmode/category/category.php:110 -msgid "Category name" -msgstr "Название категории" - -#: ../../godmode/category/category.php:141 -msgid "No categories found" -msgstr "Категории не найдены" - -#: ../../godmode/snmpconsole/snmp_alert.php:72 -msgid "Update alert" -msgstr "Обновить оповещения" - -#: ../../godmode/snmpconsole/snmp_alert.php:80 -msgid "Alert overview" -msgstr "Оповещение обзора" - -#: ../../godmode/snmpconsole/snmp_alert.php:227 -msgid "There was a problem creating the alert" -msgstr "Проблема при создании оповещения" - -#: ../../godmode/snmpconsole/snmp_alert.php:295 -msgid "There was a problem updating the alert" -msgstr "Проблема при обновлении оповещения" - -#: ../../godmode/snmpconsole/snmp_alert.php:455 -msgid "There was a problem deleting the alert" -msgstr "Проблема при удалении оповещения" - -#: ../../godmode/snmpconsole/snmp_alert.php:575 -#: ../../godmode/snmpconsole/snmp_alert.php:585 -#: ../../godmode/snmpconsole/snmp_alert.php:595 -#: ../../godmode/snmpconsole/snmp_alert.php:607 -#: ../../godmode/snmpconsole/snmp_alert.php:619 -#: ../../godmode/snmpconsole/snmp_alert.php:631 -#: ../../godmode/snmpconsole/snmp_alert.php:643 -#: ../../godmode/snmpconsole/snmp_alert.php:653 -#: ../../godmode/snmpconsole/snmp_alert.php:663 -#: ../../godmode/snmpconsole/snmp_alert.php:673 -#: ../../godmode/snmpconsole/snmp_alert.php:683 -#: ../../godmode/snmpconsole/snmp_alert.php:692 -#: ../../godmode/snmpconsole/snmp_alert.php:701 -#: ../../godmode/snmpconsole/snmp_alert.php:710 -#: ../../godmode/snmpconsole/snmp_alert.php:719 -#: ../../godmode/snmpconsole/snmp_alert.php:728 -#: ../../godmode/snmpconsole/snmp_alert.php:737 -#: ../../godmode/snmpconsole/snmp_alert.php:745 -#: ../../godmode/snmpconsole/snmp_alert.php:753 -#: ../../godmode/snmpconsole/snmp_alert.php:761 -msgid "Variable bindings/Data" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:840 -#: ../../godmode/snmpconsole/snmp_alert.php:1045 -msgid "Alert action" -msgstr "Действие оповещания" - -#: ../../godmode/snmpconsole/snmp_alert.php:894 +#: ../../godmode/agentes/module_manager_editor_wmi.php:151 msgid "" -"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -"Single value, each Variable bindings/Datas." +"Optional. Substring to look for in the WQL query result. The module returns " +"1 if found, 0 if not." msgstr "" +"Необязательно. Подстрока, которую следует искать в результатах WQL-запроса. " +"Модуль возвращает 1, если подстрока найдена, 0 - если нет." -#: ../../godmode/snmpconsole/snmp_alert.php:913 -msgid "Alert SNMP control filter" -msgstr "Фильтр контроля SNMP оповещений" - -#: ../../godmode/snmpconsole/snmp_alert.php:1006 -msgid "There are no SNMP alerts" -msgstr "Нет SNMP оповещений" - -#: ../../godmode/snmpconsole/snmp_alert.php:1054 -msgid "Custom Value/Enterprise String" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:1059 -msgid "TF." -msgstr "TF." - -#: ../../godmode/snmpconsole/snmp_alert.php:1143 -msgid "ID Alert SNMP" -msgstr "" - -#: ../../godmode/snmpconsole/snmp_alert.php:1367 -msgid "Add action " -msgstr "" - -#: ../../godmode/snmpconsole/snmp_filters.php:42 -msgid "Filter overview" -msgstr "Фильтр обзора" - -#: ../../godmode/snmpconsole/snmp_filters.php:51 -msgid "There was a problem updating the filter" -msgstr "Проблема при обновлении фильтра" - -#: ../../godmode/snmpconsole/snmp_filters.php:63 -msgid "There was a problem creating the filter" -msgstr "Проблема при создании фильтра" - -#: ../../godmode/snmpconsole/snmp_filters.php:73 -msgid "There was a problem deleting the filter" -msgstr "Проблема при удалении фильтра" - -#: ../../godmode/snmpconsole/snmp_filters.php:98 +#: ../../godmode/agentes/module_manager_editor_wmi.php:164 msgid "" -"This field contains a substring, could be part of a IP address, a numeric " -"OID, or a plain substring" +"Column number to retrieve from the WQL query result (starting from zero)." msgstr "" +"Номер столбца для извлечения из результата WQL-запроса (начиная с нуля)." -#: ../../godmode/snmpconsole/snmp_trap_generator.php:37 -msgid "SNMP Trap generator" -msgstr "SNMP генератор прерывания" +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../include/functions_treeview.php:326 +#: ../../operation/agentes/status_monitor.php:1252 +#: ../../operation/agentes/estado_generalagente.php:424 +msgid "Last status change" +msgstr "Последнее изменение статуса" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -msgid "Empty parameters" -msgstr "Незаполненные параметры" +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +msgid "Show monitor detail fields" +msgstr "Показать поля детализации монитора" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:56 -msgid "Successfully generated" -msgstr "Успешно сформировано" +#: ../../godmode/agentes/configurar_agente.php:232 +#: ../../godmode/agentes/configurar_agente.php:1031 +msgid "No agent alias specified" +msgstr "Алиас агента не указан" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:57 -#, php-format -msgid "Could not be generated: %s" -msgstr "Не может быть сформировано: %s" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:81 -msgid "SNMP Type" -msgstr "SNMP Вид" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:89 -msgid "Generate trap" -msgstr "Генератор прерывания" - -#: ../../godmode/gis_maps/index.php:65 -#: ../../godmode/gis_maps/configure_gis_map.php:212 -msgid "GIS Maps builder" -msgstr "Разработчик GIS карт" - -#: ../../godmode/gis_maps/index.php:70 -#: ../../godmode/reporting/map_builder.php:207 -msgid "Map name" -msgstr "Имя карты" - -#: ../../godmode/gis_maps/configure_gis_map.php:100 -msgid "Map successfully created" -msgstr "Карта успешно создана" - -#: ../../godmode/gis_maps/configure_gis_map.php:101 -msgid "Map could not be created" -msgstr "Карта не может быть создана" - -#: ../../godmode/gis_maps/configure_gis_map.php:192 -msgid "Map successfully update" -msgstr "Карта успешно обновлена" - -#: ../../godmode/gis_maps/configure_gis_map.php:193 -msgid "Map could not be updated" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:209 -msgid "View GIS" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:319 -msgid "Map Name" -msgstr "Название карты" - -#: ../../godmode/gis_maps/configure_gis_map.php:319 -msgid "Descriptive name for the map" -msgstr "Описательное имя карты" - -#: ../../godmode/gis_maps/configure_gis_map.php:338 -msgid "Add Map connection" -msgstr "Добавить Карта соединения" - -#: ../../godmode/gis_maps/configure_gis_map.php:338 -msgid "" -"At least one map connection must be defined, it will be possible to change " -"between the connections in the map" -msgstr "" -"Как минимум одна карта соединения должна быть определена, затем можно будет " -"внести изменения между соединениями на карте" - -#: ../../godmode/gis_maps/configure_gis_map.php:356 -msgid "Group that owns the map" -msgstr "Группа, которой принадлежит карта" - -#: ../../godmode/gis_maps/configure_gis_map.php:359 -msgid "Default zoom" -msgstr "Масштаб по умолчанию" - -#: ../../godmode/gis_maps/configure_gis_map.php:359 -msgid "Default zoom level when opening the map" -msgstr "Масштаб по умолчанию при открытии карты" - -#: ../../godmode/gis_maps/configure_gis_map.php:362 -msgid "Center Latitude" -msgstr "Центр широты" - -#: ../../godmode/gis_maps/configure_gis_map.php:365 -msgid "Center Longitude" -msgstr "Центр Долгота" - -#: ../../godmode/gis_maps/configure_gis_map.php:368 -msgid "Center Altitude" -msgstr "Центр высоты" - -#: ../../godmode/gis_maps/configure_gis_map.php:371 -msgid "Default Latitude" -msgstr "Широта по умолчанию" - -#: ../../godmode/gis_maps/configure_gis_map.php:374 -msgid "Default Longitude" -msgstr "Долгота по умолчанию" - -#: ../../godmode/gis_maps/configure_gis_map.php:377 -msgid "Default Altitude" -msgstr "Высота по умолчанию" - -#: ../../godmode/gis_maps/configure_gis_map.php:382 -msgid "Layers" -msgstr "Уровни" - -#: ../../godmode/gis_maps/configure_gis_map.php:382 -msgid "" -"Each layer can show agents from one group or the agents added to that layer " -"or both." -msgstr "" -"Каждый уровень может показывать агентов одной группы или агентов, " -"добавленных к этому уровню или то и другое." - -#: ../../godmode/gis_maps/configure_gis_map.php:388 -msgid "List of layers" -msgstr "Список уровней" - -#: ../../godmode/gis_maps/configure_gis_map.php:388 -msgid "It is possible to edit, delete and reorder the layers." -msgstr "Это можно редактировать, удалять и изменять порядок уровней." - -#: ../../godmode/gis_maps/configure_gis_map.php:389 -msgid "New layer" -msgstr "Новый уровень" - -#: ../../godmode/gis_maps/configure_gis_map.php:397 -msgid "Layer name" -msgstr "Имя уровня" - -#: ../../godmode/gis_maps/configure_gis_map.php:399 -msgid "Visible" -msgstr "Видимый" - -#: ../../godmode/gis_maps/configure_gis_map.php:403 -msgid "Show agents from group" -msgstr "Показать агенты группы" - -#: ../../godmode/gis_maps/configure_gis_map.php:415 -msgid "Add agent" -msgstr "Добавить агента" - -#: ../../godmode/gis_maps/configure_gis_map.php:431 -msgid "List of Agents to be shown in the layer" -msgstr "Список агентов будет показан на уровне" - -#: ../../godmode/gis_maps/configure_gis_map.php:438 -#: ../../godmode/gis_maps/configure_gis_map.php:614 -#: ../../godmode/gis_maps/configure_gis_map.php:625 -msgid "Save Layer" -msgstr "Сохранить уровень" - -#: ../../godmode/gis_maps/configure_gis_map.php:457 -msgid "Update map" -msgstr "Обновить карту" - -#: ../../godmode/gis_maps/configure_gis_map.php:658 -#: ../../godmode/gis_maps/configure_gis_map.php:714 -msgid "Update Layer" -msgstr "Обновить уровень" - -#: ../../godmode/gis_maps/configure_gis_map.php:780 -msgid "Do you want to use the default data from the connection?" -msgstr "Вы хотите использовать данные по умолчанию из соединения?" - -#: ../../godmode/gis_maps/configure_gis_map.php:815 -msgid "The connection" -msgstr "Соединение" - -#: ../../godmode/gis_maps/configure_gis_map.php:815 -msgid "just added previously." -msgstr "только что были добавлены." - -#: ../../godmode/alerts/alert_commands.php:242 -msgid "Alert commands" -msgstr "команды оповещений" - -#: ../../godmode/alerts/alert_commands.php:365 -msgid "No alert commands configured" -msgstr "Команды оповещений не сконфигурированы" - -#: ../../godmode/alerts/configure_alert_special_days.php:52 -msgid "Configure special day" -msgstr "Сконфигурировать особый день" - -#: ../../godmode/alerts/configure_alert_special_days.php:76 -#: ../../godmode/alerts/alert_special_days.php:162 -msgid "Same day of the week" -msgstr "Тот же день недели" - -#: ../../godmode/alerts/configure_alert_command.php:42 -msgid "Configure alert command" -msgstr "Настроить команду оповещения" - -#: ../../godmode/alerts/configure_alert_command.php:127 -msgid "Update Command" -msgstr "" - -#: ../../godmode/alerts/configure_alert_command.php:130 -#: ../../godmode/alerts/configure_alert_action.php:136 -msgid "Create Command" -msgstr "Создать команду" - -#: ../../godmode/alerts/configure_alert_command.php:160 -#, php-format -msgid "Field %s description" -msgstr "Поле %s описание" - -#: ../../godmode/alerts/configure_alert_command.php:175 -#, php-format -msgid "Field %s values" -msgstr "Поле %s значения" - -#: ../../godmode/alerts/alert_special_days.php:230 -msgid "No special days configured" -msgstr "Особые дни не сконфигурированы" - -#: ../../godmode/alerts/configure_alert_template.php:495 -#: ../../godmode/alerts/alert_list.builder.php:101 -msgid "Create Template" -msgstr "Создать шаблон" - -#: ../../godmode/alerts/configure_alert_template.php:532 -#: ../../godmode/alerts/alert_view.php:298 -msgid "Use special days list" -msgstr "Использовать список особых дней" - -#: ../../godmode/alerts/configure_alert_template.php:556 -#: ../../godmode/alerts/alert_list.builder.php:116 -msgid "Default action" -msgstr "Действие по умолчанию" - -#: ../../godmode/alerts/configure_alert_template.php:580 -msgid "" -"In case you fill any Field 1, Field 2 or Field 3 above, those will replace " -"the corresponding fields of this associated \"Default action\"." -msgstr "" -"В случае, если вы заполните любое поле-поле 1, поле 2, поле 3 или другие, то " -"соответствующие поля, сопоставленные с «Действием по умолчанию» будут " -"заменены." - -#: ../../godmode/alerts/configure_alert_template.php:582 -msgid "Condition type" -msgstr "Вид условий" - -#: ../../godmode/alerts/configure_alert_template.php:589 -msgid "Trigger when matches the value" -msgstr "Активируется, когда совпадает со значением" - -#: ../../godmode/alerts/configure_alert_template.php:601 -msgid "The regular expression is valid" -msgstr "Обычное выражение действительно" - -#: ../../godmode/alerts/configure_alert_template.php:606 -msgid "The regular expression is not valid" -msgstr "Обычное выражение не действительно" - -#: ../../godmode/alerts/configure_alert_template.php:647 -msgid "Alert recovery" -msgstr "Оповещение восстановления" - -#: ../../godmode/alerts/configure_alert_template.php:655 -#: ../../godmode/alerts/alert_view.php:438 -#: ../../godmode/alerts/alert_view.php:532 -msgid "Firing fields" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:656 -msgid "Recovery fields" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:734 -msgid "No wizard" -msgstr "Нет мастера настроек" - -#: ../../godmode/alerts/configure_alert_template.php:804 -#, php-format -msgid "The alert would fire when the value doesn\\'t match %s" -msgstr "Оповещение будет срабатывать, когда значения не совпадают %s" - -#: ../../godmode/alerts/configure_alert_template.php:809 -#: ../../godmode/alerts/alert_view.php:170 -msgid "The alert would fire when the value is below <span id=\"min\"></span>" -msgstr "" -"Оповещение будет срабатывать, когда значения ниже <span id=\"min\"></span>" - -#: ../../godmode/alerts/configure_alert_template.php:810 -#: ../../godmode/alerts/alert_view.php:174 -msgid "The alert would fire when the value is above <span id=\"max\"></span>" -msgstr "" -"Оповещение будет срабатывать, когда значения выше <span id=\"max\"></span>" - -#: ../../godmode/alerts/configure_alert_template.php:813 -#: ../../godmode/alerts/alert_view.php:179 -msgid "The alert would fire when the module value changes" -msgstr "Оповещение будет срабатывать при изменении значений модуля" - -#: ../../godmode/alerts/configure_alert_template.php:814 -#: ../../godmode/alerts/alert_view.php:182 -msgid "The alert would fire when the module value does not change" -msgstr "Оповещение будет срабатывать, когда значения модуля не изменены" - -#: ../../godmode/alerts/configure_alert_template.php:815 -#: ../../godmode/alerts/alert_view.php:192 -msgid "The alert would fire when the module is in unknown status" -msgstr "" -"Оповещение будет срабатывать, когда модуль находится в неизвестном статусе" - -#: ../../godmode/alerts/configure_alert_template.php:816 -msgid "" -"The alert template cannot have the same value for min and max thresholds." -msgstr "" - -#: ../../godmode/alerts/alert_list.php:77 -msgid "Already added" -msgstr "Уже добавлено" - -#: ../../godmode/alerts/alert_list.php:284 -#: ../../godmode/alerts/alert_view.php:61 -#: ../../godmode/alerts/alert_view.php:62 -#: ../../godmode/alerts/alert_view.php:63 -msgid "List alerts" -msgstr "Список оповещений" - -#: ../../godmode/alerts/alert_list.php:288 -msgid "Builder alert" -msgstr "Разработчик оповещений" - -#: ../../godmode/alerts/alert_templates.php:359 -msgid "No alert templates defined" -msgstr "Шаблоны оповщений не найдены" - -#: ../../godmode/alerts/alert_list.list.php:117 -msgid "Field content" -msgstr "Содержание поля" - -#: ../../godmode/alerts/alert_list.list.php:126 -msgid "Enabled / Disabled" -msgstr "Включить / Выключить" - -#: ../../godmode/alerts/alert_list.list.php:495 -#: ../../godmode/alerts/alert_view.php:356 -msgid "" -"The default actions will be executed every time that the alert is fired and " -"no other action is executed" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:540 -msgid "Delete action" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:696 -msgid "View alert advanced details" -msgstr "Просмотреть уведомление передовые детали" - -#: ../../godmode/alerts/alert_list.list.php:707 -msgid "No alerts defined" -msgstr "Оповещения не определены" - -#: ../../godmode/alerts/configure_alert_action.php:57 -#: ../../godmode/alerts/configure_alert_action.php:66 -msgid "Configure alert action" -msgstr "Сконфигурировать предупредительные действия" - -#: ../../godmode/alerts/configure_alert_action.php:98 -msgid "Update Action" -msgstr "" - -#: ../../godmode/alerts/configure_alert_action.php:148 -#: ../../godmode/alerts/alert_view.php:420 -msgid "Firing" -msgstr "Запуск" - -#: ../../godmode/alerts/configure_alert_action.php:149 -msgid "Recovery" -msgstr "Восстановление" - -#: ../../godmode/alerts/configure_alert_action.php:153 -#: ../../godmode/alerts/alert_view.php:508 -#: ../../godmode/alerts/alert_view.php:595 -#: ../../godmode/servers/plugin.php:331 -msgid "Command preview" -msgstr "Комманда просмотр" - -#: ../../godmode/alerts/alert_view.php:310 -msgid "Number of alerts" -msgstr "Количество предупреждений" - -#: ../../godmode/alerts/alert_view.php:325 -msgid "Firing conditions" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:348 -#: ../../godmode/alerts/alert_view.php:370 -msgid "Every time that the alert is fired" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:414 -msgid "" -"Select the desired action and mode to see the Firing/Recovery fields for " -"this action" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:417 -msgid "Select the action" -msgstr "Выберите действие" - -#: ../../godmode/alerts/alert_view.php:421 -msgid "Recovering" -msgstr "Восстановление" - -#: ../../godmode/alerts/alert_view.php:439 -msgid "" -"Fields passed to the command executed by this action when the alert is fired" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:442 -#: ../../godmode/alerts/alert_view.php:531 -msgid "Fields configured on the command associated to the action" -msgstr "Поля, настроенные на команды, связанные с действием" - -#: ../../godmode/alerts/alert_view.php:443 -msgid "Template fields" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:444 -msgid "Triggering fields configured in template" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:445 -msgid "Action fields" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:446 -msgid "Triggering fields configured in action" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:448 -msgid "Executed on firing" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:449 -#: ../../godmode/alerts/alert_view.php:532 -msgid "Fields used on execution when the alert is fired" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:516 -msgid "The alert recovering is disabled on this template." -msgstr "" - -#: ../../godmode/alerts/alert_view.php:529 -msgid "Recovering fields" -msgstr "Восстанавливающиеся поля" - -#: ../../godmode/alerts/alert_view.php:529 -msgid "" -"Fields passed to the command executed by this action when the alert is " -"recovered" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:533 -msgid "Template recovery fields" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:533 -msgid "Recovery fields configured in alert template" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:534 -msgid "Action recovery fields" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:534 -msgid "Recovery fields configured in alert action" -msgstr "Поля восстановления настроены в действии оповещения" - -#: ../../godmode/alerts/alert_view.php:535 -msgid "Executed on recovery" -msgstr "" - -#: ../../godmode/alerts/alert_view.php:535 -msgid "Fields used on execution when the alert is recovered" -msgstr "" - -#: ../../godmode/alerts/alert_list.builder.php:78 -msgid "Latest value" -msgstr "Последнее значение" - -#: ../../godmode/alerts/alert_list.builder.php:141 -msgid "Add alert" -msgstr "Дабавить оповещение" - -#: ../../godmode/alerts/alert_actions.php:66 -#: ../../godmode/alerts/alert_actions.php:92 -#: ../../godmode/alerts/alert_actions.php:110 -#: ../../godmode/alerts/alert_actions.php:127 -#: ../../godmode/alerts/alert_actions.php:207 -#: ../../godmode/alerts/alert_actions.php:218 -#: ../../godmode/alerts/alert_actions.php:287 -#: ../../godmode/alerts/alert_actions.php:306 -#: ../../godmode/alerts/alert_actions.php:319 -msgid "Alert actions" -msgstr "Предупредительные действия" - -#: ../../godmode/alerts/alert_actions.php:398 -msgid "No alert actions configured" -msgstr "Предупредительные действия не сконфигурированы" - -#: ../../godmode/agentes/agent_incidents.php:67 -msgid "No incidents associated to this agent" -msgstr "Нет инцидентов, связанных с этим агентом" - -#: ../../godmode/agentes/agent_manager.php:155 -msgid "The agent's name must be the same as the one defined at the console" -msgstr "Имя агент должен быть таким же, как то, которое определено в консоли" - -#: ../../godmode/agentes/agent_manager.php:158 -msgid "QR Code Agent view" -msgstr "Просмотр QR-код агента" - -#: ../../godmode/agentes/agent_manager.php:191 -msgid "You can remotely edit this agent configuration" -msgstr "Вы можете дистанционно редактировать этот агент конфигурации" - -#: ../../godmode/agentes/agent_manager.php:198 -msgid "Delete agent" -msgstr "Удалить агента" - -#: ../../godmode/agentes/agent_manager.php:227 -msgid "Only it is show when<br />the agent is saved." -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:241 -#: ../../godmode/massive/massive_edit_agents.php:275 -msgid "Cascade protection" -msgstr "Каскадная защита" - -#: ../../godmode/agentes/agent_manager.php:296 -#: ../../godmode/agentes/module_manager_editor_common.php:314 -#: ../../godmode/groups/configure_group.php:167 -#: ../../godmode/massive/massive_edit_agents.php:333 -msgid "Custom ID" -msgstr "Пользовательский ID" - -#: ../../godmode/agentes/agent_manager.php:300 -#: ../../godmode/massive/massive_edit_agents.php:337 -msgid "Module definition" -msgstr "Модуль определения" - -#: ../../godmode/agentes/agent_manager.php:302 -#: ../../godmode/massive/massive_edit_agents.php:339 -msgid "Learning mode" -msgstr "Режим обучения" - -#: ../../godmode/agentes/agent_manager.php:305 -#: ../../godmode/massive/massive_edit_agents.php:340 -msgid "Normal mode" -msgstr "Обычный режим" - -#: ../../godmode/agentes/agent_manager.php:313 -#: ../../godmode/massive/massive_edit_agents.php:346 -msgid "Active" -msgstr "Активен" - -#: ../../godmode/agentes/agent_manager.php:320 -#: ../../godmode/agentes/agent_manager.php:342 -#: ../../godmode/massive/massive_edit_agents.php:356 -msgid "Not available" -msgstr "Недоступно" - -#: ../../godmode/agentes/agent_manager.php:351 -#: ../../godmode/massive/massive_edit_agents.php:382 -msgid "Agent icon" -msgstr "Значок агента" - -#: ../../godmode/agentes/agent_manager.php:351 -msgid "Agent icon for GIS Maps." -msgstr "Значок агента для карт GIS." - -#: ../../godmode/agentes/agent_manager.php:380 -#: ../../godmode/agentes/agent_conf_gis.php:78 -#: ../../godmode/massive/massive_edit_agents.php:391 -msgid "Ignore new GIS data:" -msgstr "Игнорировать новые ГИС данные:" - -#: ../../godmode/agentes/agent_manager.php:395 -#: ../../godmode/massive/massive_edit_agents.php:398 -msgid "The agent still runs but the alerts and events will be stop" -msgstr "" -"Агент по-прежнему работает, но оповещения и события будут остановлены" - -#: ../../godmode/agentes/modificar_agente.php:62 -msgid "Agents defined in Pandora" -msgstr "Заданный агент в Pandora" - -#: ../../godmode/agentes/modificar_agente.php:87 -msgid "Success deleted agent." -msgstr "Агент удален успешно" - -#: ../../godmode/agentes/modificar_agente.php:87 -msgid "Could not be deleted." -msgstr "Не удается удалить." - -#: ../../godmode/agentes/modificar_agente.php:94 -msgid "Maybe the files conf or md5 could not be deleted" -msgstr "Может быть конфигурационный файл или md5 не удален" - -#: ../../godmode/agentes/modificar_agente.php:144 -msgid "Show Agents" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:146 -msgid "Everyone" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:147 -msgid "Only disabled" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:148 -msgid "Only enabled" -msgstr "" - -#: ../../godmode/agentes/modificar_agente.php:425 -msgid "Remote agent configuration" -msgstr "Удаление конфигурации агента" - -#: ../../godmode/agentes/modificar_agente.php:425 -msgid "R" -msgstr "R" - -#: ../../godmode/agentes/modificar_agente.php:523 -msgid "Edit remote config" -msgstr "Редактировать удаленную конфигурацию" - -#: ../../godmode/agentes/modificar_agente.php:550 -msgid "Enable agent" -msgstr "Включить агента" - -#: ../../godmode/agentes/modificar_agente.php:555 -msgid "Disable agent" -msgstr "Отключить агента" - -#: ../../godmode/agentes/module_manager_editor_plugin.php:44 -msgid "Plugin server module" -msgstr "Плагин сервисного модуля" - -#: ../../godmode/agentes/module_manager_editor_common.php:68 -msgid "Using module component" -msgstr "Использование модуля компонента" - -#: ../../godmode/agentes/module_manager_editor_common.php:237 -#: ../../godmode/agentes/module_manager_editor_common.php:257 -msgid "Min. " -msgstr "Мин. " - -#: ../../godmode/agentes/module_manager_editor_common.php:351 -#: ../../godmode/agentes/module_manager.php:674 -msgid "" -"The policy modules of data type will only update their intervals when policy " -"is applied." -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:375 -msgid "Any value below this number is discarted." -msgstr "Любое значение ниже этого числа отбрасывается." - -#: ../../godmode/agentes/module_manager_editor_common.php:377 -msgid "Any value over this number is discarted." -msgstr "Любое значение выше этого числа отбрасывается." - -#: ../../godmode/agentes/module_manager_editor_common.php:380 -#: ../../godmode/massive/massive_edit_modules.php:501 -msgid "Export target" -msgstr "Контрольные цифры по экспорту" - -#: ../../godmode/agentes/module_manager_editor_common.php:390 -msgid "" -"In case you use an Export server you can link this module and export data to " -"one these." -msgstr "" -"В случае, если вы используете сервер экспорта вы можете соединить этот " -"модуль и данные экспорта в одно." - -#: ../../godmode/agentes/module_manager_editor_common.php:409 -#: ../../godmode/massive/massive_edit_modules.php:521 -msgid "FF interval" -msgstr "FF интервал" - -#: ../../godmode/agentes/module_manager_editor_common.php:412 -#: ../../godmode/massive/massive_edit_modules.php:522 -msgid "Module execution flip flop time interval (in secs)." -msgstr "Модуль выполнения за интервал времени флип-флоп (в секундах)." - -#: ../../godmode/agentes/module_manager_editor_common.php:507 -msgid "Tags from policy" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:520 -msgid "The module still stores data but the alerts and events will be stop" -msgstr "" -"Модуль по-прежнему хранит данные, но оповещения и события будет останавливать" - -#: ../../godmode/agentes/module_manager_editor_common.php:539 -msgid "Cron" -msgstr "Крон" - -#: ../../godmode/agentes/module_manager_editor_common.php:540 -msgid "" -"If cron is set the module interval is ignored and the module runs on the " -"specified date and time" -msgstr "" -"Если крон, установленный модулем интервала игнорируется и модуль работает " -"по определенной дате и времени" - -#: ../../godmode/agentes/module_manager_editor_common.php:544 -#: ../../godmode/massive/massive_edit_modules.php:575 -msgid "Timeout" -msgstr "Время ожидания истекло" - -#: ../../godmode/agentes/module_manager_editor_common.php:545 -#: ../../godmode/massive/massive_edit_modules.php:579 -msgid "Seconds that agent will wait for the execution of the module." -msgstr "Секунды,которые агент будет ожидать для выполнения модуля." - -#: ../../godmode/agentes/module_manager_editor_common.php:547 -msgid "Retries" -msgstr "Попытки" - -#: ../../godmode/agentes/module_manager_editor_common.php:548 -msgid "Number of retries that the module will attempt to run." -msgstr "Количество попыток для запуска модуля." - -#: ../../godmode/agentes/module_manager_editor_common.php:587 -#: ../../godmode/agentes/module_manager_editor.php:467 -msgid "Custom macros" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:619 -msgid "Add relationship" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:637 -msgid "Changes" -msgstr "Изменения" - -#: ../../godmode/agentes/module_manager_editor_common.php:637 -msgid "Activate this to prevent the relation from being updated or deleted" -msgstr "" -"Активируйте это, чтобы предотвратить отношение от обновления или удаления" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:173 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:297 -msgid "No agent selected or the agent does not exist" -msgstr "Агент не выбран или агент не существует" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:280 -msgid "Successfully modules created" -msgstr "Модули успешно созданы" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:293 -msgid "Some required fields are missed" -msgstr "Некоторые обязательные поля пропущены" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:293 -msgid "name" -msgstr "имя" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:298 -msgid "Processing error" -msgstr "Ошибка обработки" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:344 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:704 -#: ../../godmode/agentes/module_manager_editor_network.php:82 -#: ../../godmode/modules/manage_network_components_form_network.php:50 -msgid "SNMP community" -msgstr "Сообщество SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:347 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:707 -#: ../../godmode/agentes/module_manager_editor_network.php:94 -#: ../../godmode/massive/massive_edit_modules.php:463 -#: ../../godmode/modules/manage_network_components_form_network.php:40 -msgid "SNMP version" -msgstr "Версия SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:368 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:728 -msgid "privacy pass" -msgstr "конфиденциальный доступ" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:388 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:748 -msgid "SNMP Walk" -msgstr "SNMP инвентаризация" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:392 -msgid "Unable to do SNMP walk" -msgstr "Не удается сделать SNMP инвентаризацию" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:425 -msgid "Interfaces" -msgstr "Интерфейсы" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:437 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:863 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:370 -msgid "Create modules" -msgstr "Создать модули" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:93 -msgid "Prediction server module" -msgstr "Предварительная подготовка сервера модуля" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:96 -msgid "Source module" -msgstr "Источник модуля" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:124 -#: ../../godmode/agentes/module_manager_editor_prediction.php:149 -msgid "Select Module" -msgstr "Выбрать модуль" - -#: ../../godmode/agentes/agent_conf_gis.php:53 -msgid "" -"When you change the Agent position, the agent automatically activates the " -"'Ignore new GIS data' option" -msgstr "" - -#: ../../godmode/agentes/agent_conf_gis.php:60 -msgid "Agent position" -msgstr "Агент расположения" - -#: ../../godmode/agentes/agent_conf_gis.php:66 -msgid "Latitude: " -msgstr "Широта: " - -#: ../../godmode/agentes/agent_conf_gis.php:70 -msgid "Longitude: " -msgstr "Долгота: " - -#: ../../godmode/agentes/agent_conf_gis.php:74 -msgid "Altitude: " -msgstr "Высота: " - -#: ../../godmode/agentes/planned_downtime.editor.php:41 -#: ../../godmode/agentes/planned_downtime.list.php:52 -#: ../../general/firts_task/planned_downtime.php:25 -msgid "Planned Downtime" -msgstr "Запланированный простой" - -#: ../../godmode/agentes/planned_downtime.editor.php:109 -#: ../../godmode/agentes/planned_downtime.editor.php:181 -#: ../../godmode/agentes/planned_downtime.editor.php:910 -msgid "This elements cannot be modified while the downtime is being executed" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:312 -msgid "Cannot be modified while the downtime is being executed" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:479 -msgid "Quiet: Modules will not generate events or fire alerts." -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:480 -msgid "Disable Agents: Disables the selected agents." -msgstr "Отключение агентов: Отключает выбранных агентов." - -#: ../../godmode/agentes/planned_downtime.editor.php:481 -msgid "Disable Alerts: Disable alerts for the selected agents." -msgstr "" -"Отключение Предупреждений: Отключить предупреждения для выбранных агентов." - -#: ../../godmode/agentes/planned_downtime.editor.php:483 -#: ../../godmode/agentes/planned_downtime.list.php:426 -msgid "Disabled Agents" -msgstr "Заблокированные агенты" - -#: ../../godmode/agentes/planned_downtime.editor.php:484 -#: ../../godmode/agentes/planned_downtime.list.php:427 -msgid "Disabled only Alerts" -msgstr "Заблокированны только оповещания" - -#: ../../godmode/agentes/planned_downtime.editor.php:488 -#: ../../godmode/agentes/planned_downtime.list.php:151 -msgid "Once" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:489 -#: ../../godmode/agentes/planned_downtime.list.php:151 -#: ../../godmode/agentes/planned_downtime.list.php:432 -msgid "Periodically" -msgstr "Периодически" - -#: ../../godmode/agentes/planned_downtime.editor.php:494 -msgid "Configure the time" -msgstr "Настроить время" - -#: ../../godmode/agentes/planned_downtime.editor.php:525 -msgid "Type Periodicity:" -msgstr "Тип Периодичности:" - -#: ../../godmode/agentes/planned_downtime.editor.php:563 -msgid "From day:" -msgstr "С первого дня:" - -#: ../../godmode/agentes/planned_downtime.editor.php:569 -msgid "To day:" -msgstr "До дня:" - -#: ../../godmode/agentes/planned_downtime.editor.php:580 -msgid "From hour:" -msgstr "С часа:" - -#: ../../godmode/agentes/planned_downtime.editor.php:588 -msgid "To hour:" -msgstr "До часа:" - -#: ../../godmode/agentes/planned_downtime.editor.php:631 -msgid "Available agents" -msgstr "Свободные агенты" - -#: ../../godmode/agentes/planned_downtime.editor.php:683 -msgid "Available modules:" -msgstr "Свободные модули:" - -#: ../../godmode/agentes/planned_downtime.editor.php:684 -msgid "Only for type Quiet for downtimes." -msgstr "Только для типа тихо для простоя." - -#: ../../godmode/agentes/planned_downtime.editor.php:698 -msgid "Agents planned for this downtime" -msgstr "Запланированные агенты для этого простой" - -#: ../../godmode/agentes/planned_downtime.editor.php:713 -msgid "There are no agents" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.editor.php:748 -msgid "All alerts" -msgstr "Все оповещания" - -#: ../../godmode/agentes/planned_downtime.editor.php:751 -msgid "Entire agent" -msgstr "Весь агент" - -#: ../../godmode/agentes/planned_downtime.editor.php:755 -#: ../../godmode/agentes/planned_downtime.editor.php:860 -msgid "All modules" -msgstr "Все модули" - -#: ../../godmode/agentes/planned_downtime.editor.php:758 -#: ../../godmode/agentes/planned_downtime.editor.php:852 -#: ../../godmode/agentes/planned_downtime.editor.php:856 -msgid "Some modules" -msgstr "Некоторые модули" - -#: ../../godmode/agentes/planned_downtime.editor.php:824 -msgid "Add Module:" -msgstr "Добавить модуль:" - -#: ../../godmode/agentes/planned_downtime.editor.php:1040 -msgid "Please select a module." -msgstr "Пожалуйста, выберите модуль." - -#: ../../godmode/agentes/planned_downtime.editor.php:1172 -msgid "" -"WARNING: If you edit this planned downtime, the data of future SLA reports " -"may be altered" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 -msgid "The SNMP remote plugin doesnt seem to be installed" -msgstr "Удаленный SNMP плагин, кажется, не был установлен" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 -msgid "It is necessary to use some features" -msgstr "Необходимо использовать некоторые функции" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 -msgid "" -"Please, install the SNMP remote plugin (The name of the plugin must be " -"snmp_remote.pl)" -msgstr "" -"Пожалуйста, установите удаленный SNMP плагин (Название плагина должны быть " -"snmp_remote.pl)" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:252 -msgid "Remote system doesnt support host SNMP information" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:331 -msgid "The number of bytes read from this device since boot" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:333 -msgid "The number of bytes written to this device since boot" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:335 -msgid "The number of read accesses from this device since boot" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:337 -msgid "The number of write accesses from this device since boot" -msgstr "" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:512 -#, php-format -msgid "Check if the process %s is running or not" -msgstr "Проверьте, процесс %s запущен или нет" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:583 -msgid "Disk use information" -msgstr "Информация об использовании диска" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:654 -#, php-format -msgid "%s modules created succesfully" -msgstr "%s модули созданы успешно" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:659 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:664 -#, php-format -msgid "Error creating %s modules" -msgstr "Ошибка при создании %s модулей" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:669 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:235 -#, php-format -msgid "%s modules already exist" -msgstr "%s модули уже существуют" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:678 -msgid "Modules created succesfully" +#: ../../godmode/agentes/configurar_agente.php:235 +msgid "Agent cannot be created due to the maximum agent limit for this group" msgstr "" +"Агент не может быть создан из-за максимального лимита агентов для этой группы" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:752 -msgid "" -"If the device is a network device, try with the SNMP Interfaces wizard" -msgstr "" -"Если устройство является сетевым устройством, попробуйте с SNMP интерфейсом " -"мастера" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:780 -msgid "Devices" -msgstr "Устройства" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:781 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:302 -msgid "Processes" -msgstr "Процессы" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:782 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:303 -msgid "Free space on disk" -msgstr "Свободное место на диске" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:783 -msgid "Temperature sensors" -msgstr "Датчики температуры" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:784 -msgid "Other SNMP data" -msgstr "Другие данные SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:786 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:306 -msgid "Wizard mode" -msgstr "Пошаговый режим (Wizard)" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:805 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:810 -msgid "SNMP remote plugin is necessary for this feature" -msgstr "Удаленный плагин SNMP необходим для этой функции" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:842 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:844 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:846 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:848 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:851 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:349 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:351 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:353 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:355 -msgid "Add to modules list" -msgstr "Добавить в список модулей" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:853 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:359 -msgid "Remove from modules list" -msgstr "Удалить из списка модулей" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:920 -msgid "Device" -msgstr "Устройство" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:968 -msgid "Temperature" -msgstr "Температура" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1015 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:492 -msgid "Modules list is empty" -msgstr "Список модулей пуст" - -#: ../../godmode/agentes/module_manager_editor_data.php:17 -msgid "Data server module" -msgstr "Модуль сервера данных" - -#: ../../godmode/agentes/planned_downtime.list.php:44 -msgid "An error occurred while migrating the malformed planned downtimes" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:45 -msgid "Please run the migration again or contact with the administrator" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:77 -msgid "An error occurred stopping the planned downtime" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:99 -msgid "This planned downtime is running" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:152 -msgid "Execution type" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:154 -msgid "Show past downtimes" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:356 -#: ../../godmode/agentes/planned_downtime.export_csv.php:199 -msgid "No planned downtime" -msgstr "Нет запланированных простоев" - -#: ../../godmode/agentes/planned_downtime.list.php:389 -msgid "Name #Ag." -msgstr "Имя #Сред." - -#: ../../godmode/agentes/planned_downtime.list.php:398 -#: ../../godmode/agentes/planned_downtime.list.php:454 -msgid "Stop downtime" -msgstr "Остановить время простоя" - -#: ../../godmode/agentes/planned_downtime.list.php:431 -msgid "once" -msgstr "один раз" - -#: ../../godmode/agentes/planned_downtime.list.php:440 -msgid "Not running" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:533 -msgid "" -"WARNING: If you delete this planned downtime, it will not be taken into " -"account in future SLA reports" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:539 -msgid "WARNING: There are malformed planned downtimes" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.list.php:539 -msgid "Do you want to migrate automatically the malformed items?" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_network.php:58 -msgid "Network server module" -msgstr "Сетевой сервер модуля" - -#: ../../godmode/agentes/module_manager_editor_network.php:112 -msgid "SNMP OID" -msgstr "SNMP OID" - -#: ../../godmode/agentes/module_manager_editor_network.php:130 -#: ../../godmode/modules/manage_network_components_form_network.php:90 -msgid "TCP send" -msgstr "передача TCP" - -#: ../../godmode/agentes/module_manager_editor_network.php:136 -#: ../../godmode/modules/manage_network_components_form_network.php:97 -msgid "TCP receive" -msgstr "получение TCP" - -#: ../../godmode/agentes/module_manager_editor_network.php:177 -#: ../../godmode/agentes/module_manager_editor_network.php:186 -#: ../../godmode/massive/massive_edit_modules.php:470 -#: ../../godmode/massive/massive_edit_modules.php:474 -msgid "The pass length must be eight character minimum." -msgstr "Длина пароля должна состоять минимум из восьми символов." - -#: ../../godmode/agentes/module_manager_editor.php:440 -#, php-format -msgid "DEBUG: Invalid module type specified in %s:%s" -msgstr "ОЫЛАДКА: Неверный тип модуля указан в %s:%s" - -#: ../../godmode/agentes/module_manager_editor.php:441 -msgid "" -"Most likely you have recently upgraded from an earlier version of Pandora " -"and either <br />\n" -"\t\t\t\t1) forgot to use the database converter<br />\n" -"\t\t\t\t2) used a bad version of the database converter (see Bugreport " -"#2124706 for the solution)<br />\n" -"\t\t\t\t3) found a new bug - please report a way to duplicate this error" -msgstr "" -"Вероятно вы недавно обновили предыдущую версию Pandora и скорее всего<br />\n" -"\t\t\t\t1) забыли применить конвертор базы данных<br />\n" -"\t\t\t\t2) использовали неверный конвертер базы данных (см. Отчёт об Ошибке " -"# 2124706 для решения)<br />\n" -"\t\t\t\t3) обнаружили новую ошибку - пожалуйста, сообщите для возможности " -"дублирования этой ошибки<br />" - -#: ../../godmode/agentes/module_manager_editor.php:469 -msgid "Module relations" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor.php:518 -msgid "No module to predict" -msgstr "Нет модуля для прогнозирования" - -#: ../../godmode/agentes/module_manager_editor.php:519 -msgid "No plug-in provided" -msgstr "Плагин не предоставлен" - -#: ../../godmode/agentes/module_manager_editor.php:542 -msgid "" -"Error, The field name and name in module_name in data configuration are " -"different." -msgstr "Ошибка, имя поля и имя модуля_имя конфигурационных данных различны." - -#: ../../godmode/agentes/module_manager.php:70 -msgid "Create a new data server module" -msgstr "Создать новые данные сервисного модуля" - -#: ../../godmode/agentes/module_manager.php:72 -msgid "Create a new network server module" -msgstr "Создать новую сеть сервисного модуля" - -#: ../../godmode/agentes/module_manager.php:74 -msgid "Create a new plugin server module" -msgstr "Создать новый плагин сервисного модуля" - -#: ../../godmode/agentes/module_manager.php:76 -msgid "Create a new WMI server module" -msgstr "Создать новый WMI сервисного модуля" - -#: ../../godmode/agentes/module_manager.php:78 -msgid "Create a new prediction server module" -msgstr "Создать новый прогноз сервисного модуля" - -#: ../../godmode/agentes/module_manager.php:134 -msgid "Get more modules in Pandora FMS Library" -msgstr "Получить больше модулей в Pandora FMS библиотеке" - -#: ../../godmode/agentes/module_manager.php:161 -msgid "Nice try buddy" -msgstr "Хорошая попытка приятеля" - -#: ../../godmode/agentes/module_manager.php:258 -#, php-format -msgid "There was a problem deleting %s modules, none deleted." -msgstr "Была проблема при удалением %s модулей, ничего не удалено." - -#: ../../godmode/agentes/module_manager.php:263 -msgid "All Modules deleted succesfully" -msgstr "Все Модули удалены успешно" - -#: ../../godmode/agentes/module_manager.php:267 -#, php-format -msgid "There was a problem only deleted %s modules of %s total." -msgstr "Была проблема только при удаленнии %s модулей от общего числа %s." - -#: ../../godmode/agentes/module_manager.php:710 -msgid "Normalize" -msgstr "Нормализовать" - -#: ../../godmode/agentes/module_manager.php:716 -msgid "Normalize (Disabled)" -msgstr "Нормализация (отключено)" - -#: ../../godmode/agentes/module_manager.php:730 -msgid "Create network component (Disabled)" -msgstr "Создать сетевой компонент (отключено)" - -#: ../../godmode/agentes/configurar_agente.php:186 -#: ../../godmode/agentes/configurar_agente.php:709 -msgid "There is already an agent in the database with this name" -msgstr "Агент с таким именем уже существует в базе данных" +#: ../../godmode/agentes/configurar_agente.php:358 +msgid "Could not be created, because name already exists" +msgstr "Не удалось создать, так как имя уже существует" #: ../../godmode/agentes/configurar_agente.php:360 -msgid "Agent wizard" -msgstr "Агент мастера" +msgid "Could not be created, because IP already exists" +msgstr "Не удалось создать, так как IP уже существует" -#: ../../godmode/agentes/configurar_agente.php:372 -#: ../../godmode/agentes/configurar_agente.php:534 -msgid "SNMP Interfaces wizard" -msgstr "Мастер интерфейсов SNMP" +#: ../../godmode/agentes/configurar_agente.php:443 ../../godmode/menu.php:149 +#: ../../godmode/wizards/HostDevices.class.php:1077 +msgid "Module templates" +msgstr "Модуль шаблоны" -#: ../../godmode/agentes/configurar_agente.php:377 -#: ../../godmode/agentes/configurar_agente.php:537 -msgid "WMI Wizard" -msgstr "Мастер WMI" +#: ../../godmode/agentes/configurar_agente.php:508 +#: ../../operation/agentes/ver_agente.php:1384 +msgid "GIS data" +msgstr "Данные ГИС" -#: ../../godmode/agentes/configurar_agente.php:545 +#: ../../godmode/agentes/configurar_agente.php:580 +#: ../../godmode/agentes/configurar_agente.php:741 +#: ../../operation/agentes/ver_agente.php:1404 ../../operation/menu.php:469 +#: ../../operation/incidents/incident_statistics.php:27 +#: ../../general/first_task/incidents.php:28 +msgid "Incidents" +msgstr "Инциденты" + +#: ../../godmode/agentes/configurar_agente.php:736 +msgid "Gis" +msgstr "гис" + +#: ../../godmode/agentes/configurar_agente.php:778 msgid "SNMP explorer" msgstr "Проводник SNMP" -#: ../../godmode/agentes/configurar_agente.php:560 +#: ../../godmode/agentes/configurar_agente.php:809 +#: ../../godmode/agentes/configurar_agente.php:831 ../../godmode/menu.php:103 +msgid "Resources" +msgstr "Ресурсы" + +#: ../../godmode/agentes/configurar_agente.php:819 msgid "Agent manager" msgstr "Менеджер-агент" -#: ../../godmode/agentes/configurar_agente.php:583 -#: ../../godmode/servers/modificar_server.php:134 +#: ../../godmode/agentes/configurar_agente.php:859 +#: ../../godmode/servers/modificar_server.php:220 msgid "Conf file deleted successfully" msgstr "Конфигурационный файл успешно удален" -#: ../../godmode/agentes/configurar_agente.php:584 -#: ../../godmode/servers/modificar_server.php:135 +#: ../../godmode/agentes/configurar_agente.php:860 +#: ../../godmode/servers/modificar_server.php:221 msgid "Could not delete conf file" msgstr "Не удается удалить конфигурационный файл" -#: ../../godmode/agentes/configurar_agente.php:621 -#: ../../godmode/agentes/configurar_agente.php:626 +#: ../../godmode/agentes/configurar_agente.php:877 +#: ../../godmode/agentes/configurar_agente.php:1026 +#: ../../include/class/ExternalTools.class.php:721 +msgid "The ip or dns name entered cannot be resolved" +msgstr "Введенное ip или dns имя не может быть разрешено" + +#: ../../godmode/agentes/configurar_agente.php:904 +#: ../../godmode/agentes/configurar_agente.php:908 msgid "No data to normalize" msgstr "Нет данных для нормализации" -#: ../../godmode/agentes/configurar_agente.php:630 +#: ../../godmode/agentes/configurar_agente.php:913 #, php-format msgid "Deleted data above %f" -msgstr "" +msgstr "Удалены данные свыше %f" -#: ../../godmode/agentes/configurar_agente.php:631 +#: ../../godmode/agentes/configurar_agente.php:914 #, php-format msgid "Error normalizing module %s" msgstr "Ошибка модуля нормализации %s" -#: ../../godmode/agentes/configurar_agente.php:751 +#: ../../godmode/agentes/configurar_agente.php:1041 +#, php-format +msgid "The group id %d is incorrect." +msgstr "Идентификатор группы %d неверен." + +#: ../../godmode/agentes/configurar_agente.php:1043 +msgid "Agent cannot be updated due to the maximum agent limit for this group" +msgstr "" +"Агент не может быть обновлен из-за максимального лимита агентов для этой " +"группы" + +#: ../../godmode/agentes/configurar_agente.php:1045 +msgid "Duplicate main IP address" +msgstr "Дублирование основного IP-адреса" + +#: ../../godmode/agentes/configurar_agente.php:1101 msgid "There was a problem updating the agent" msgstr "Проблема при обновлении агента" -#: ../../godmode/agentes/configurar_agente.php:791 +#: ../../godmode/agentes/configurar_agente.php:1235 msgid "There was a problem loading the agent" msgstr "Проблема при загрузке агента" -#: ../../godmode/agentes/configurar_agente.php:1118 +#: ../../godmode/agentes/configurar_agente.php:1743 msgid "" "There was a problem updating module. Another module already exists with the " "same name." msgstr "" "Проблема при обновлении модуля. Другой модуль уже существует с таким именем." -#: ../../godmode/agentes/configurar_agente.php:1121 +#: ../../godmode/agentes/configurar_agente.php:1747 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" "Проблема при обновлении модуля. Некоторые обязательные поля пропущены: (имя)" -#: ../../godmode/agentes/configurar_agente.php:1124 +#: ../../godmode/agentes/configurar_agente.php:1751 msgid "There was a problem updating module. \"No change\"" msgstr "Проблема при обновлении модуля. \"Без изменений\"" -#: ../../godmode/agentes/configurar_agente.php:1129 +#: ../../godmode/agentes/configurar_agente.php:1757 msgid "There was a problem updating module. Processing error" msgstr "Проблема при обновлении модуля. Ошибка обработки" -#: ../../godmode/agentes/configurar_agente.php:1149 +#: ../../godmode/agentes/configurar_agente.php:1786 msgid "Module successfully updated" msgstr "Модуль успешно обновлен" -#: ../../godmode/agentes/configurar_agente.php:1253 +#: ../../godmode/agentes/configurar_agente.php:1931 msgid "" "There was a problem adding module. Another module already exists with the " "same name." msgstr "" "Проблема при добавлении модуля. Другой модуль уже существует с таким именем." -#: ../../godmode/agentes/configurar_agente.php:1256 +#: ../../godmode/agentes/configurar_agente.php:1935 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" "Проблема при добавлении модуля. Некоторые обязательные поля пропущены: (имя)" -#: ../../godmode/agentes/configurar_agente.php:1261 +#: ../../godmode/agentes/configurar_agente.php:1941 msgid "There was a problem adding module. Processing error" msgstr "Проблема при добавлении модуля. Ошибка обработки" -#: ../../godmode/agentes/configurar_agente.php:1279 -#: ../../godmode/reporting/graph_builder.php:230 +#: ../../godmode/agentes/configurar_agente.php:1970 +#: ../../godmode/reporting/graph_builder.php:385 msgid "Module added successfully" msgstr "Модуль успешно добавлен" -#: ../../godmode/agentes/configurar_agente.php:1397 +#: ../../godmode/agentes/configurar_agente.php:2218 msgid "There was a problem deleting the module" msgstr "Ошибка при удалении модуля" -#: ../../godmode/agentes/configurar_agente.php:1400 +#: ../../godmode/agentes/configurar_agente.php:2222 msgid "Module deleted succesfully" msgstr "Модуль удален" -#: ../../godmode/agentes/configurar_agente.php:1582 -#: ../../godmode/agentes/configurar_agente.php:1592 +#: ../../godmode/agentes/configurar_agente.php:2349 +#: ../../include/functions_api.php:10449 +#, php-format +msgid "Save by %s Console" +msgstr "Сохранить с %s Консолью" + +#: ../../godmode/agentes/configurar_agente.php:2367 +#: ../../include/functions_api.php:10450 +#, php-format +msgid "Update by %s Console" +msgstr "Обновить с %s Консолью" + +#: ../../godmode/agentes/configurar_agente.php:2383 +#: ../../include/functions_api.php:10451 +#, php-format +msgid "Insert by %s Console" +msgstr "Вставить с %s Консолью" + +#: ../../godmode/agentes/configurar_agente.php:2452 +#: ../../godmode/agentes/configurar_agente.php:2464 msgid "Invalid tab specified" msgstr "Указана неверная вкладка" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:112 +#: ../../godmode/agentes/module_manager_editor_prediction.php:96 +msgid "Source module" +msgstr "Источник модуля" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:133 +#: ../../godmode/agentes/module_manager_editor_prediction.php:151 +msgid "Select Module" +msgstr "Выбрать модуль" + +#: ../../godmode/agentes/module_manager_editor.php:691 +msgid "Invalid module type" +msgstr "Недопустимый тип модуля" + +#: ../../godmode/agentes/module_manager_editor.php:735 +msgid "Module relations" +msgstr "Связь между модулями" + +#: ../../godmode/agentes/module_manager_editor.php:825 +msgid "No module to predict" +msgstr "Нет модуля для прогнозирования" + +#: ../../godmode/agentes/module_manager_editor.php:835 +msgid "No plug-in provided" +msgstr "Плагин не предоставлен" + +#: ../../godmode/agentes/module_manager_editor.php:845 +msgid "No server provided" +msgstr "Сервер не предоставлен" + +#: ../../godmode/agentes/module_manager_editor.php:876 +msgid "" +"Error, The field name and name in module_name in data configuration are " +"different." +msgstr "Ошибка, имя поля и имя модуля_имя конфигурационных данных различны." + +#: ../../godmode/agentes/module_manager_editor.php:914 +msgid "The File APIs are not fully supported in this browser." +msgstr "Файловые API не полностью поддерживаются в этом браузере." + +#: ../../godmode/agentes/module_manager_editor.php:915 +msgid "Couldn`t find the fileinput element." +msgstr "Элемент входного файла не найден" + +#: ../../godmode/agentes/module_manager_editor.php:916 +msgid "" +"This browser doesn`t seem to support the files property of file inputs." +msgstr "" +"Похоже, что этот браузер не поддерживает файлы, принадлежащие входному файлу." + +#: ../../godmode/agentes/module_manager_editor.php:917 +msgid "Please select a file before clicking Load" +msgstr "Пожалуйста, выберите файл, прежде чем нажать кнопку Загрузить" + +#: ../../godmode/agentes/modificar_agente.php:80 #, php-format -msgid "Free space on %s" -msgstr "Свободное место на %s" +msgid "Agents defined in %s" +msgstr "Агенты, определенные в %s" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:205 -#, php-format -msgid "%s service modules created succesfully" -msgstr "%s сервисные модули созданы успешно" +#: ../../godmode/agentes/modificar_agente.php:90 +#: ../../godmode/massive/massive_operations.php:397 +msgid "" +"This node is configured with centralized mode. To delete an agent go to " +"metaconsole." +msgstr "" +"Этот узел настроен в централизованном режиме. Для удаления агента перейдите " +"в метаконсоль." -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:208 -#, php-format -msgid "Error creating %s service modules" -msgstr "Ошибка при создании %s сервисных модулей" +#: ../../godmode/agentes/modificar_agente.php:134 +msgid "Success deleted agent." +msgstr "Агент удален успешно" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:213 -#, php-format -msgid "%s process modules created succesfully" -msgstr "%s процессорные модули созданы успешно" +#: ../../godmode/agentes/modificar_agente.php:135 +msgid "Could not be deleted." +msgstr "Не удается удалить." -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:216 -#, php-format -msgid "Error creating %s process modules" -msgstr "Ошибка при создании %s процессорных модулей" +#: ../../godmode/agentes/modificar_agente.php:150 +msgid "Maybe the files conf or md5 could not be deleted" +msgstr "Может быть конфигурационный файл или md5 не удален" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:221 -#, php-format -msgid "%s disk space modules created succesfully" -msgstr "%s модули дискового пространства созданы успешно" +#: ../../godmode/agentes/modificar_agente.php:284 +msgid "Show Agents" +msgstr "Показать Агентов" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:224 -#, php-format -msgid "Error creating %s disk space modules" -msgstr "Ошибка при создании %s модулей дискового пространства" +#: ../../godmode/agentes/modificar_agente.php:286 +msgid "Everyone" +msgstr "Все" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:229 -#, php-format -msgid "%s modules created from components succesfully" -msgstr "%s модули созданы из компонентов успешно" +#: ../../godmode/agentes/modificar_agente.php:300 +msgid "Operative System" +msgstr "Оперативная Система" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:232 -#, php-format -msgid "Error creating %s modules from components" -msgstr "Ошибка при создании %s модулей из компонентов" +#: ../../godmode/agentes/modificar_agente.php:331 +msgid "" +"Search filter by alias, name, description, IP address or custom fields " +"content" +msgstr "" +"Фильтр поиска по алиас, по имени, описанию, IP-адресу или содержанию " +"пользовательских полей" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:258 -#: ../../godmode/agentes/module_manager_editor_wmi.php:44 -#: ../../godmode/modules/manage_network_components_form_wmi.php:42 -msgid "Namespace" -msgstr "Пространство имён" +#: ../../godmode/agentes/modificar_agente.php:614 +msgid "Remote agent configuration" +msgstr "Удаление конфигурации агента" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:275 -msgid "WMI Explore" -msgstr "WMI Проводник" +#: ../../godmode/agentes/modificar_agente.php:614 +msgid "R" +msgstr "R" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:279 -msgid "Unable to do WMI explorer" -msgstr "Не удается сделать WMI проводник" +#: ../../godmode/agentes/modificar_agente.php:824 +msgid "Edit remote config" +msgstr "Редактировать удаленную конфигурацию" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:304 -msgid "WMI components" -msgstr "Компоненты WMI" +#: ../../godmode/agentes/modificar_agente.php:874 +msgid "You are going to enable a cluster agent. Are you sure?" +msgstr "Вы собираетесь включить агент кластера. Вы уверены?" -#: ../../godmode/agentes/agent_template.php:69 -msgid "Created by template " -msgstr "Создано по шаблону " +#: ../../godmode/agentes/modificar_agente.php:877 +msgid "Enable agent" +msgstr "Включить агента" -#: ../../godmode/agentes/agent_template.php:152 -msgid "Error adding modules" -msgstr "Ошибка при добавлении модулей" +#: ../../godmode/agentes/modificar_agente.php:884 +msgid "You are going to disable a cluster agent. Are you sure?" +msgstr "Вы собираетесь отключить агента кластера. Вы уверены?" -#: ../../godmode/agentes/agent_template.php:154 -msgid "Error adding modules. The following errors already exists: " -msgstr "Ошибка при добавлении модулей. Следующие ошибки уже существует: " +#: ../../godmode/agentes/modificar_agente.php:887 +msgid "Disable agent" +msgstr "Отключить агента" -#: ../../godmode/agentes/agent_template.php:157 -msgid "Modules successfully added" -msgstr "Модули успешно добавлены" +#: ../../godmode/agentes/modificar_agente.php:897 +msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" +msgstr "ВНИМАНИЕ! - Вы собираетесь удалить агента кластера. Вы уверены?" -#: ../../godmode/agentes/agent_template.php:184 -msgid "Assign" -msgstr "Назначить" +#: ../../godmode/agentes/agent_conf_gis.php:38 +#: ../../operation/agentes/gis_view.php:56 +msgid "" +"There is no default map. Please go to the setup for to set a default map." +msgstr "" +"Карты по умолчанию нет. Пожалуйста, перейдите на установки чтобы установить " +"дефолт карту." -#: ../../godmode/agentes/configure_field.php:36 -msgid "Update agent custom field" -msgstr "Обновить агент пользовательского поля" +#: ../../godmode/agentes/agent_conf_gis.php:50 +msgid "" +"There is no GIS data for this agent, so it's positioned in default position " +"of map." +msgstr "" +"Там нет GIS данных для этого агента, поэтому они находятся в режиме по " +"умолчанию карты." -#: ../../godmode/agentes/configure_field.php:39 -msgid "Create agent custom field" -msgstr "Создать агент пользовательского поля" +#: ../../godmode/agentes/agent_conf_gis.php:58 +msgid "" +"When you change the Agent position, the agent automatically activates the " +"'Ignore new GIS data' option" +msgstr "" +"Когда вы меняете позицию агента, агент автоматически активирует опцию " +"\"Игнорировать новые данные GIS\"." -#: ../../godmode/agentes/fields_manager.php:31 +#: ../../godmode/agentes/agent_conf_gis.php:67 +msgid "Agent position" +msgstr "Агент расположения" + +#: ../../godmode/agentes/agent_conf_gis.php:73 +msgid "Latitude: " +msgstr "Широта: " + +#: ../../godmode/agentes/agent_conf_gis.php:90 +msgid "Longitude: " +msgstr "Долгота: " + +#: ../../godmode/agentes/agent_conf_gis.php:107 +msgid "Altitude: " +msgstr "Высота: " + +#: ../../godmode/agentes/agent_conf_gis.php:124 +#: ../../godmode/massive/massive_edit_agents.php:722 +msgid "Ignore new GIS data:" +msgstr "Игнорировать новые ГИС данные:" + +#: ../../godmode/agentes/planned_downtime.list.php:47 +msgid "An error occurred while migrating the malformed planned downtimes" +msgstr "" +"Произошла ошибка при миграции неправильно сформированных запланированных " +"остановок" + +#: ../../godmode/agentes/planned_downtime.list.php:47 +msgid "Please run the migration again or contact with the administrator" +msgstr "" +"Пожалуйста, запустите миграцию снова или свяжитесь с администратором." + +#: ../../godmode/agentes/planned_downtime.list.php:55 +msgid "Scheduled Downtime" +msgstr "Запланированная остановка" + +#: ../../godmode/agentes/planned_downtime.list.php:83 +msgid "An error occurred stopping the planned downtime" +msgstr "Произошла ошибка при прекращении запланированной остановки" + +#: ../../godmode/agentes/planned_downtime.list.php:106 +msgid "This planned downtime is running" +msgstr "Данная запланированная остановка находится в работе" + +#: ../../godmode/agentes/planned_downtime.list.php:157 +#: ../../godmode/agentes/planned_downtime.editor.php:594 +msgid "Once" +msgstr "Однократно" + +#: ../../godmode/agentes/planned_downtime.list.php:158 +#: ../../godmode/agentes/planned_downtime.list.php:446 +#: ../../godmode/agentes/planned_downtime.editor.php:595 +msgid "Periodically" +msgstr "Периодически" + +#: ../../godmode/agentes/planned_downtime.list.php:162 +msgid "Show past downtimes" +msgstr "Показать прошлые остановки" + +#: ../../godmode/agentes/planned_downtime.list.php:365 +#: ../../godmode/agentes/planned_downtime.export_csv.php:199 +msgid "No planned downtime" +msgstr "Нет запланированных остановок" + +#: ../../godmode/agentes/planned_downtime.list.php:398 +msgid "Name #Ag." +msgstr "Имя #Сред." + +#: ../../godmode/agentes/planned_downtime.list.php:407 +#: ../../godmode/agentes/planned_downtime.list.php:482 +#: ../../godmode/agentes/planned_downtime.list.php:484 +msgid "Stop downtime" +msgstr "Прервать время остановки" + +#: ../../godmode/agentes/planned_downtime.list.php:438 +#: ../../godmode/agentes/planned_downtime.editor.php:577 +msgid "Disabled Agents" +msgstr "Заблокированные агенты" + +#: ../../godmode/agentes/planned_downtime.list.php:439 +#: ../../godmode/agentes/planned_downtime.editor.php:578 +msgid "Disabled only Alerts" +msgstr "Заблокированны только оповещания" + +#: ../../godmode/agentes/planned_downtime.list.php:445 +msgid "once" +msgstr "один раз" + +#: ../../godmode/agentes/planned_downtime.list.php:460 +msgid "Not running" +msgstr "Не запущено" + +#: ../../godmode/agentes/planned_downtime.list.php:575 +msgid "" +"WARNING: If you delete this planned downtime, it will not be taken into " +"account in future SLA reports" +msgstr "" +"ВНИМАНИЕ: Если вы удалите это запланированное время остановки, оно не будет " +"учитываться в будущих отчетах SLA." + +#: ../../godmode/agentes/planned_downtime.list.php:581 +msgid "WARNING: There are malformed planned downtimes" +msgstr "" +"ВНИМАНИЕ: Существуют неправильно сформированные запланированные остановки" + +#: ../../godmode/agentes/planned_downtime.list.php:581 +msgid "Do you want to migrate automatically the malformed items?" +msgstr "" +"Хотите ли вы автоматически произвести миграцию неправильно сформированных " +"элементов?" + +#: ../../godmode/agentes/planned_downtime.editor.php:207 +#: ../../godmode/agentes/planned_downtime.editor.php:1099 +#: ../../godmode/agentes/planned_downtime.editor.php:1234 +msgid "This elements cannot be modified while the downtime is being executed" +msgstr "Эти элементы не могут быть изменены во время выполнения остановки" + +#: ../../godmode/agentes/planned_downtime.editor.php:240 +#: ../../include/functions_planned_downtimes.php:40 +#: ../../include/functions_planned_downtimes.php:742 +msgid "" +"Not created. Error inserting data. Start time must be higher than the " +"current time" +msgstr "" +"Не создан. Произошла ошибка при вставке данных. Время начала должно быть " +"выше, чем текущее время" + +#: ../../godmode/agentes/planned_downtime.editor.php:244 +#: ../../godmode/agentes/planned_downtime.editor.php:248 +#: ../../godmode/agentes/planned_downtime.editor.php:255 +#: ../../godmode/agentes/planned_downtime.editor.php:259 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:747 +#: ../../include/functions_planned_downtimes.php:754 +#: ../../include/functions_planned_downtimes.php:762 +#: ../../include/functions_planned_downtimes.php:770 +#: ../../include/functions_planned_downtimes.php:775 +#: ../../include/functions_planned_downtimes.php:780 +#: ../../include/functions_planned_downtimes.php:785 +#: ../../include/functions_planned_downtimes.php:790 +#: ../../include/functions_planned_downtimes.php:795 +#: ../../include/functions_planned_downtimes.php:800 +msgid "Not created. Error inserting data" +msgstr "Не создано. Ошибка вставки данных" + +#: ../../godmode/agentes/planned_downtime.editor.php:244 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:754 +msgid "The end date must be higher than the start date" +msgstr "Дата окончания должна быть больше даты начала" + +#: ../../godmode/agentes/planned_downtime.editor.php:248 +#: ../../include/functions_planned_downtimes.php:747 +msgid "The end date must be higher than the current time" +msgstr "Дата окончания должна быть выше, чем текущее время" + +#: ../../godmode/agentes/planned_downtime.editor.php:255 +#: ../../godmode/agentes/planned_downtime.editor.php:704 +#: ../../godmode/agentes/planned_downtime.editor.php:717 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:762 +msgid "The end time must be higher than the start time" +msgstr "Время окончания должно быть больше, чем время начала" + +#: ../../godmode/agentes/planned_downtime.editor.php:259 +#: ../../godmode/agentes/planned_downtime.editor.php:689 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:770 +msgid "The end day must be higher than the start day" +msgstr "Конечный день должен быть выше, чем начальный день" + +#: ../../godmode/agentes/planned_downtime.editor.php:311 +#: ../../include/functions_planned_downtimes.php:98 +#: ../../include/functions_planned_downtimes.php:814 +msgid "Each planned downtime must have a different name" +msgstr "Каждая запланированная остановка должна иметь разное имя" + +#: ../../godmode/agentes/planned_downtime.editor.php:316 +#: ../../godmode/agentes/planned_downtime.editor.php:348 +#: ../../include/functions_planned_downtimes.php:103 +#: ../../include/functions_planned_downtimes.php:820 +msgid "Planned downtime must have a name" +msgstr "Запланированная остановка должна иметь имя" + +#: ../../godmode/agentes/planned_downtime.editor.php:571 +msgid "Quiet: Modules will not generate events or fire alerts." +msgstr "" +"Тихий режим: Модули не будут генерировать события или запускать " +"предупреждения." + +#: ../../godmode/agentes/planned_downtime.editor.php:571 +msgid "Disable Agents: Disables the selected agents." +msgstr "Отключение агентов: Отключает выбранных агентов." + +#: ../../godmode/agentes/planned_downtime.editor.php:571 +msgid "Disable Alerts: Disable alerts for the selected agents." +msgstr "" +"Отключение Предупреждений: Отключить предупреждения для выбранных агентов." + +#: ../../godmode/agentes/planned_downtime.editor.php:610 +msgid "Configure the time" +msgstr "Настроить время" + +#: ../../godmode/agentes/planned_downtime.editor.php:616 +#: ../../include/functions_reporting_html.php:86 +#: ../../include/functions_reporting_html.php:5003 +msgid "From:" +msgstr "От:" + +#: ../../godmode/agentes/planned_downtime.editor.php:620 +#: ../../include/functions_reporting_html.php:86 +#: ../../include/functions_reporting_html.php:5003 +msgid "To:" +msgstr "Куда:" + +#: ../../godmode/agentes/planned_downtime.editor.php:629 +msgid "Type Periodicity:" +msgstr "Тип Периодичности:" + +#: ../../godmode/agentes/planned_downtime.editor.php:661 +msgid "From day:" +msgstr "С первого дня:" + +#: ../../godmode/agentes/planned_downtime.editor.php:675 +msgid "To day:" +msgstr "До дня:" + +#: ../../godmode/agentes/planned_downtime.editor.php:694 +msgid "From hour:" +msgstr "С часа:" + +#: ../../godmode/agentes/planned_downtime.editor.php:707 +msgid "To hour:" +msgstr "До часа:" + +#: ../../godmode/agentes/planned_downtime.editor.php:783 +msgid "Group filter" +msgstr "Фильтр группы" + +#: ../../godmode/agentes/planned_downtime.editor.php:817 +msgid "Available modules:" +msgstr "Свободные модули:" + +#: ../../godmode/agentes/planned_downtime.editor.php:818 +msgid "Only for type Quiet for downtimes." +msgstr "Только для типа Тихо для остановки." + +#: ../../godmode/agentes/planned_downtime.editor.php:876 +msgid "Agents planned for this downtime" +msgstr "Запланированные агенты для этой остановки" + +#: ../../godmode/agentes/planned_downtime.editor.php:894 +msgid "There are no agents" +msgstr "Нет агентов" + +#: ../../godmode/agentes/planned_downtime.editor.php:936 +msgid "All alerts" +msgstr "Все оповещания" + +#: ../../godmode/agentes/planned_downtime.editor.php:938 +msgid "Entire agent" +msgstr "Весь агент" + +#: ../../godmode/agentes/planned_downtime.editor.php:941 +#: ../../godmode/agentes/planned_downtime.editor.php:1051 +msgid "All modules" +msgstr "Все модули" + +#: ../../godmode/agentes/planned_downtime.editor.php:943 +#: ../../godmode/agentes/planned_downtime.editor.php:1043 +#: ../../godmode/agentes/planned_downtime.editor.php:1047 +msgid "Some modules" +msgstr "Некоторые модули" + +#: ../../godmode/agentes/planned_downtime.editor.php:1011 +msgid "Add Module:" +msgstr "Добавить модуль:" + +#: ../../godmode/agentes/planned_downtime.editor.php:1364 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3854 +msgid "Please select a module." +msgstr "Пожалуйста, выберите модуль." + +#: ../../godmode/agentes/planned_downtime.editor.php:1499 +msgid "" +"WARNING: If you edit this planned downtime, the data of future SLA reports " +"may be altered" +msgstr "" +"ВНИМАНИЕ: Если вы отредактируете это запланированное время остановки, данные " +"будущих отчетов SLA могут быть изменены" + +#: ../../godmode/agentes/fields_manager.php:30 msgid "Agents custom fields manager" msgstr "Агенты пользовательских полей менеджера" -#: ../../godmode/agentes/fields_manager.php:44 +#: ../../godmode/agentes/fields_manager.php:46 +#: ../../include/ajax/custom_fields.php:737 msgid "The name must not be empty" msgstr "Имя не должно быть пустым" -#: ../../godmode/agentes/fields_manager.php:47 +#: ../../godmode/agentes/fields_manager.php:48 msgid "The name must be unique" msgstr "Имя должно быть уникальным" -#: ../../godmode/agentes/fields_manager.php:52 +#: ../../godmode/agentes/fields_manager.php:59 msgid "Field successfully created" msgstr "Поле успешно создано" -#: ../../godmode/agentes/fields_manager.php:69 +#: ../../godmode/agentes/fields_manager.php:80 msgid "Field successfully updated" msgstr "Поле успешно обновлено" -#: ../../godmode/agentes/fields_manager.php:72 +#: ../../godmode/agentes/fields_manager.php:82 msgid "There was a problem modifying field" msgstr "Проблема при изменении поля" -#: ../../godmode/agentes/fields_manager.php:82 +#: ../../godmode/agentes/fields_manager.php:94 msgid "There was a problem deleting field" msgstr "Проблема при удалении поля" -#: ../../godmode/agentes/fields_manager.php:84 +#: ../../godmode/agentes/fields_manager.php:96 msgid "Field successfully deleted" msgstr "Поле успешно удалено" -#: ../../godmode/agentes/fields_manager.php:138 +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:92 +#: ../../operation/agentes/custom_fields.php:67 +msgid "Display on front" +msgstr "Разместить спереди" + +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../godmode/agentes/configure_field.php:93 +#: ../../operation/agentes/custom_fields.php:67 +msgid "" +"The fields with display on front enabled will be displayed into the agent " +"details" +msgstr "Поля, расположенные спереди будут отображаться в агенте данных" + +#: ../../godmode/agentes/fields_manager.php:168 msgid "Create field" msgstr "Создать поле" -#: ../../godmode/agentes/module_manager_editor_wmi.php:29 -msgid "WMI server module" -msgstr "Серверный модуль WMI" +#: ../../godmode/agentes/module_manager_editor_network.php:266 +msgid "SNMP walk" +msgstr "SNMP ход" -#: ../../godmode/agentes/module_manager_editor_wmi.php:59 -#: ../../godmode/modules/manage_network_components_form_wmi.php:32 -msgid "WMI query" -msgstr "Запрос WMI" +#: ../../godmode/agentes/module_manager_editor_network.php:472 +msgid "Windows remote" +msgstr "Windows Дистанционный" -#: ../../godmode/agentes/module_manager_editor_wmi.php:67 -#: ../../godmode/modules/manage_network_components_form_wmi.php:34 -msgid "Key string" -msgstr "Ключевая строка" +#: ../../godmode/agentes/module_manager_editor_network.php:475 +msgid "Connection method" +msgstr "Метод соединения" -#: ../../godmode/agentes/module_manager_editor_wmi.php:70 -#: ../../godmode/modules/manage_network_components_form_wmi.php:40 -msgid "Field number" -msgstr "Номер поля" +#: ../../godmode/agentes/agent_manager.php:223 +#: ../../operation/agentes/estado_agente.php:196 ../../operation/menu.php:54 +msgid "Agent detail" +msgstr "Агент детализации" -#: ../../godmode/servers/modificar_server.php:35 -msgid "Update Server" -msgstr "Обновить Сервер" +#: ../../godmode/agentes/agent_manager.php:238 +msgid "Delete agent" +msgstr "Удалить агента" -#: ../../godmode/servers/modificar_server.php:61 -msgid "Remote Configuration" -msgstr "" +#: ../../godmode/agentes/agent_manager.php:269 +msgid "QR Code Agent view" +msgstr "Просмотр QR-код агента" -#: ../../godmode/servers/modificar_server.php:66 -msgid "Pandora servers" -msgstr "Pandora серверы" +#: ../../godmode/agentes/agent_manager.php:290 +msgid "Use alias as name" +msgstr "Использовать алиас в качестве имени" -#: ../../godmode/servers/modificar_server.php:112 -msgid "Server updated successfully" -msgstr "Сервер обновлен успешно" +#: ../../godmode/agentes/agent_manager.php:298 +#: ../../godmode/setup/setup_general.php:457 +msgid "Unique IP" +msgstr "Уникальный IP" -#: ../../godmode/servers/modificar_server.php:115 -msgid "There was a problem updating the server" -msgstr "Проблема при обновлении сервера" +#: ../../godmode/agentes/agent_manager.php:332 +msgid "Primary group" +msgstr "Основная группа" -#: ../../godmode/servers/plugin.php:53 -msgid "Network Components" -msgstr "" +#: ../../godmode/agentes/agent_manager.php:574 +#: ../../godmode/massive/massive_edit_agents.php:744 +msgid "Safe operation mode" +msgstr "Безопасный режим операций" -#: ../../godmode/servers/plugin.php:216 -msgid "Plugin creation" -msgstr "Создание плагина" +#: ../../godmode/agentes/agent_manager.php:597 +#: ../../godmode/massive/massive_edit_agents.php:690 +msgid "Not available" +msgstr "Недоступно" -#: ../../godmode/servers/plugin.php:219 -msgid "Plugin update" -msgstr "Обновление плагина" +#: ../../godmode/agentes/agent_manager.php:615 +msgid "Cascade protection services" +msgstr "Сервис каскадной защиты" -#: ../../godmode/servers/plugin.php:249 -msgid "Plugin type" -msgstr "Тип плагина" +#: ../../godmode/agentes/agent_manager.php:642 +#: ../../godmode/massive/massive_edit_agents.php:555 +msgid "Cascade protection" +msgstr "Каскадная защита" -#: ../../godmode/servers/plugin.php:250 ../../godmode/servers/plugin.php:709 -msgid "Standard" -msgstr "Стандартный" +#: ../../godmode/agentes/agent_manager.php:658 +#: ../../godmode/massive/massive_edit_agents.php:670 +msgid "Module definition" +msgstr "Модуль определения" -#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:711 -msgid "Nagios" -msgstr "Nagios" +#: ../../godmode/agentes/agent_manager.php:663 +#: ../../godmode/massive/massive_edit_agents.php:672 +msgid "Learning mode" +msgstr "Режим обучения" -#: ../../godmode/servers/plugin.php:256 -msgid "Max. timeout" -msgstr "timeout" +#: ../../godmode/agentes/agent_manager.php:673 +#: ../../godmode/massive/massive_edit_agents.php:673 +msgid "Normal mode" +msgstr "Обычный режим" -#: ../../godmode/servers/plugin.php:256 +#: ../../godmode/agentes/agent_manager.php:683 +#: ../../godmode/massive/massive_edit_agents.php:674 +msgid "Autodisable mode" +msgstr "Режим автоотключения" + +#: ../../godmode/agentes/agent_manager.php:700 +msgid "Disabled mode" +msgstr "Режим выключен" + +#: ../../godmode/agentes/agent_manager.php:705 +#: ../../godmode/agentes/agent_manager.php:722 +#: ../../include/functions_treeview.php:766 +#: ../../operation/agentes/ver_agente.php:1423 +#: ../../operation/agentes/estado_generalagente.php:483 +msgid "Url address" +msgstr "Url адрес" + +#: ../../godmode/agentes/agent_manager.php:747 +#: ../../godmode/massive/massive_edit_agents.php:718 +msgid "Agent icon" +msgstr "Значок агента" + +#: ../../godmode/agentes/agent_manager.php:797 +msgid "Update new GIS data:" +msgstr "Обновление новых данных GIS:" + +#: ../../godmode/agentes/agent_manager.php:859 +msgid "Click to display" +msgstr "Нажмите для отображения" + +#: ../../godmode/agentes/agent_manager.php:1107 +msgid "Primary group cannot be secondary too." +msgstr "Первичная группа не может быть и вторичной тоже." + +#: ../../godmode/agentes/agent_manager.php:1238 +msgid "Secondary group cannot be primary too." +msgstr "Вторичная группа не может быть и первичной тоже." + +#: ../../godmode/agentes/agent_incidents.php:22 +#: ../../operation/incidents/incident_statistics.php:30 +#: ../../operation/incidents/configure_integriaims_incident.php:40 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:30 +#: ../../operation/incidents/list_integriaims_incidents.php:41 msgid "" -"This value only will be applied if is minor than the server general " -"configuration plugin timeout" +"In order to access ticket management system, integration with Integria IMS " +"must be enabled and properly configured" msgstr "" -"Данное значение будет применяться тольло если оно меньше чем время ожидания " -"сервера общей конфигурации плагина" +"Для того чтобы получить доступ к системе управления билетами, интеграция с " +"Integria IMS должна быть включена и правильно настроена" -#: ../../godmode/servers/plugin.php:256 +#: ../../godmode/agentes/agent_incidents.php:69 +msgid "No incidents associated to this agent" +msgstr "Нет инцидентов, связанных с этим агентом" + +#: ../../godmode/agentes/agent_incidents.php:90 +msgid "Incident" +msgstr "инцидент" + +#: ../../godmode/agentes/configure_field.php:38 +msgid "Update agent custom field" +msgstr "Обновить агент пользовательского поля" + +#: ../../godmode/agentes/configure_field.php:40 +msgid "Create agent custom field" +msgstr "Создать агент пользовательского поля" + +#: ../../godmode/agentes/configure_field.php:52 +#: ../../godmode/agentes/configure_field.php:56 +#: ../../godmode/agentes/configure_field.php:60 +#: ../../godmode/agentes/configure_field.php:64 +msgid "Agent Custom Fields Information" +msgstr "Информация о пользовательских полях агента" + +#: ../../godmode/agentes/configure_field.php:53 msgid "" -"If you set a 0 seconds timeout, the server plugin timeout will be used" +"You cannot set the Password type until you clear the combo values and click " +"on update button." msgstr "" -"Если вы установили время ожидания 0 секунд, время ожидания сервера плагина " -"будет использоваться" +"Вы не сможете установить тип пароля, пока не очистите комбинированные " +"значения и не нажмете кнопку обновления." -#: ../../godmode/servers/plugin.php:312 -msgid "Plugin command" -msgstr "Комманда плагина" +#: ../../godmode/agentes/configure_field.php:57 +msgid "" +"You cannot unset the enable combo until you clear the combo values and click " +"on update." +msgstr "" +"Вы не сможете отключить включенную комбинацию, пока не удалите значения " +"комбинации и не нажмете кнопку обновить." -#: ../../godmode/servers/plugin.php:323 -msgid "Plug-in parameters" -msgstr "Параметры плагинов" +#: ../../godmode/agentes/configure_field.php:61 +msgid "If you select Enabled combo the Password type will be disabled." +msgstr "Если вы выберете Включенная комбинация, тип Пароля будет отключен." -#: ../../godmode/servers/plugin.php:414 -#: ../../godmode/servers/recon_script.php:174 -msgid "Hide value" -msgstr "Скрыть значение" +#: ../../godmode/agentes/configure_field.php:65 +msgid "If you select Passord type the Enabled combo will be disabled." +msgstr "При выборе типа Пароля, Включенная комбинация будет отключена." -#: ../../godmode/servers/plugin.php:414 -#: ../../godmode/servers/recon_script.php:174 -msgid "This field will show up as dots like a password" -msgstr "Данное поле будет отображаться в виде точек, как пароль" +#: ../../godmode/agentes/configure_field.php:81 +msgid "Pass type" +msgstr "Тип пароля" -#: ../../godmode/servers/plugin.php:474 ../../godmode/servers/plugin.php:481 -msgid "Parameters macros" -msgstr "Параметры макросов" +#: ../../godmode/agentes/configure_field.php:82 +msgid "" +"The fields with pass type enabled will be displayed like html input type " +"pass in html" +msgstr "" +"Поля с включенным типом пароля будут отображаться звездочками в HTML." -#: ../../godmode/servers/plugin.php:514 -msgid "Plugins registered in Pandora FMS" -msgstr "Плагины, зарегистрированные в Pandora FMS" +#: ../../godmode/agentes/configure_field.php:103 +msgid "Enabled combo" +msgstr "Включенная комбинация" -#: ../../godmode/servers/plugin.php:519 -msgid "You need to create your own plugins with Windows compatibility" -msgstr "Необходимо создать собственные плагины, совместимые с Windows" +#: ../../godmode/agentes/configure_field.php:115 +msgid "Combo values" +msgstr "Комбинированные значения" -#: ../../godmode/servers/plugin.php:579 -msgid "Problem updating plugin" -msgstr "Ошибка при обновлении плагина" +#: ../../godmode/agentes/configure_field.php:116 +msgid "Set values separated by comma" +msgstr "Установить значения, разделенные запятой" -#: ../../godmode/servers/plugin.php:582 -msgid "Plugin updated successfully" -msgstr "Плагин обновлен успешно" +#: ../../godmode/agentes/module_manager_editor_common.php:90 +msgid "Using module component" +msgstr "Использование модуля компонента" -#: ../../godmode/servers/plugin.php:637 -msgid "Problem creating plugin" -msgstr "Ошибка при создании плагина" +#: ../../godmode/agentes/module_manager_editor_common.php:388 +msgid "Warning threshold" +msgstr "Порог предостережения об опасности" -#: ../../godmode/servers/plugin.php:640 -msgid "Plugin created successfully" -msgstr "Плагин создан успешно" +#: ../../godmode/agentes/module_manager_editor_common.php:390 +#: ../../godmode/agentes/module_manager_editor_common.php:443 +msgid "Min. " +msgstr "Мин. " -#: ../../godmode/servers/plugin.php:650 -msgid "Problem deleting plugin" -msgstr "Ошибка при удалении плагина" +#: ../../godmode/agentes/module_manager_editor_common.php:441 +msgid "Critical threshold" +msgstr "Критический порог" -#: ../../godmode/servers/plugin.php:653 -msgid "Plugin deleted successfully" -msgstr "Плагин удален успешно" +#: ../../godmode/agentes/module_manager_editor_common.php:627 +msgid "Dynamic Threshold Interval" +msgstr "Динамический пороговый интервал" -#: ../../godmode/servers/plugin.php:732 -msgid "All the modules that are using this plugin will be deleted" -msgstr "Все модули, которые используются данным плагином будут удалены" +#: ../../godmode/agentes/module_manager_editor_common.php:654 +msgid "Dynamic Threshold Min. " +msgstr "Динамический Порог Мин. " -#: ../../godmode/servers/plugin.php:739 -msgid "There are no plugins in the system" -msgstr "Нет плагинов в системе" +#: ../../godmode/agentes/module_manager_editor_common.php:667 +msgid "Dynamic Threshold Max. " +msgstr "Динамический Порог Макс. " -#: ../../godmode/servers/plugin.php:751 +#: ../../godmode/agentes/module_manager_editor_common.php:680 +msgid "Dynamic Threshold Two Tailed: " +msgstr "Динамический Порог 2 раза не удался: " + +#: ../../godmode/agentes/module_manager_editor_common.php:691 +msgid "Not needed" +msgstr "Не требуется" + +#: ../../godmode/agentes/module_manager_editor_common.php:989 +msgid "Tags from policy" +msgstr "Теги из политики" + +#: ../../godmode/agentes/module_manager_editor_common.php:1029 +msgid "Cascade Protection Services" +msgstr "Каскадные службы защиты" + +#: ../../godmode/agentes/module_manager_editor_common.php:1063 +#: ../../godmode/agentes/module_manager_editor_common.php:1071 +#: ../../godmode/agentes/module_manager_editor_common.php:1080 +msgid "Cron from" +msgstr "Cron из" + +#: ../../godmode/agentes/module_manager_editor_common.php:1067 +#: ../../godmode/agentes/module_manager_editor_common.php:1075 +#: ../../godmode/agentes/module_manager_editor_common.php:1084 +msgid "Cron to" +msgstr "Cron в" + +#: ../../godmode/agentes/module_manager_editor_common.php:1120 +msgid "Module parent" +msgstr "Родительский модуль" + +#: ../../godmode/agentes/module_manager_editor_common.php:1218 +#: ../../godmode/agentes/module_manager_editor_common.php:1329 +msgid "Direct" +msgstr "Прямой" + +#: ../../godmode/agentes/module_manager_editor_common.php:1219 +#: ../../godmode/agentes/module_manager_editor_common.php:1329 +#: ../../include/functions_reporting_html.php:3362 +#: ../../include/functions_reporting_html.php:3448 +#: ../../include/functions_reporting_html.php:3521 +#: ../../include/functions_reporting_html.php:3530 +#: ../../include/functions_reporting_html.php:3654 +#: ../../include/functions_reporting_html.php:3663 +#: ../../include/functions_reporting_html.php:3981 +#: ../../include/functions_reporting_html.php:3987 +msgid "Failover" +msgstr "Коммутация" + +#: ../../godmode/agentes/module_manager_editor_common.php:1220 +msgid "Rel. type" +msgstr "Rel. тип" + +#: ../../godmode/agentes/module_manager_editor_common.php:1235 +msgid "Add relationship" +msgstr "Добавить взаимосвязь" + +#: ../../godmode/agentes/module_manager_editor_common.php:1260 +msgid "Changes" +msgstr "Изменения" + +#: ../../godmode/agentes/module_manager.php:108 +msgid "Create a new data server module" +msgstr "Создать новые данные сервисного модуля" + +#: ../../godmode/agentes/module_manager.php:110 +msgid "Create a new network server module" +msgstr "Создать новую сеть сервисного модуля" + +#: ../../godmode/agentes/module_manager.php:114 +msgid "Create a new plugin server module" +msgstr "Создать новый плагин сервисного модуля" + +#: ../../godmode/agentes/module_manager.php:118 +msgid "Create a new WMI server module" +msgstr "Создать новый WMI сервисного модуля" + +#: ../../godmode/agentes/module_manager.php:122 +msgid "Create a new prediction server module" +msgstr "Создать новый прогноз сервисного модуля" + +#: ../../godmode/agentes/module_manager.php:166 +#: ../../operation/agentes/estado_monitores.php:582 +msgid "Show in hierachy mode" +msgstr "Показать в режиме иерархии" + +#: ../../godmode/agentes/module_manager.php:185 +msgid "<p>Type</p>" +msgstr "<p>Тип</p>" + +#: ../../godmode/agentes/module_manager.php:215 +msgid "Get more modules on Monitoring Library" +msgstr "Получите больше модулей в Библиотеке Мониторинга" + +#: ../../godmode/agentes/module_manager.php:249 +msgid "Nice try buddy" +msgstr "Хорошая попытка приятеля" + +#: ../../godmode/agentes/module_manager.php:403 +#: ../../godmode/agentes/module_manager.php:443 #, php-format -msgid "List of modules and components created by \"%s\" " -msgstr "" - -#: ../../godmode/servers/plugin.php:859 ../../godmode/servers/plugin.php:875 -msgid "Some modules or components are using the plugin" -msgstr "" - -#: ../../godmode/servers/plugin.php:860 msgid "" -"The modules or components should be updated manually or using the bulk " -"operations for plugins after this change" +"There was a problem completing the operation. Applied to 0/%d modules." msgstr "" +"Возникла проблема при завершении операции. Применяется к 0/%d модулям." -#: ../../godmode/servers/plugin.php:862 -msgid "Are you sure you want to perform this action?" -msgstr "" +#: ../../godmode/agentes/module_manager.php:409 +#: ../../godmode/agentes/module_manager.php:449 +msgid "Operation finished successfully." +msgstr "Операция завершена успешно." -#: ../../godmode/servers/plugin.php:876 -msgid "Are you sure you want to unlock this item?" -msgstr "" - -#: ../../godmode/servers/plugin.php:896 +#: ../../godmode/agentes/module_manager.php:413 +#: ../../godmode/agentes/module_manager.php:453 +#, php-format msgid "" -"The plugin command cannot be updated because some modules or components are " -"using the plugin." +"There was a problem completing the operation. Applied to %d/%d modules." msgstr "" -"Комманды плагина не могут быть обновлены, поскольку некоторые модули или " -"компоненты используются данным плагином." +"Возникла проблема при завершении операции. Применяется к %d/%d модулям." -#: ../../godmode/servers/plugin.php:902 -msgid "" -"The plugin macros cannot be updated because some modules or components are " -"using the plugin" -msgstr "" +#: ../../godmode/agentes/module_manager.php:730 +#: ../../godmode/reporting/map_builder.php:427 +#: ../../godmode/reporting/map_builder.php:444 +#: ../../include/ajax/module.php:560 +#: ../../operation/agentes/datos_agente.php:296 +msgid "No available data to show" +msgstr "Нет доступных данных для показа" -#: ../../godmode/servers/manage_recontask_form.php:188 -msgid "" -"By default, in Windows, Pandora FMS only support Standard network sweep, not " -"custom scripts" -msgstr "" +#: ../../godmode/agentes/module_manager.php:798 +msgid "Del." +msgstr "Удал." -#: ../../godmode/servers/manage_recontask_form.php:223 -msgid "" -"You must select a Recon Server for the Task, otherwise the Recon Task will " -"never run" -msgstr "" -"Вы должны выбрать Рекон сервер для Задачи, в противном случае Рекон Задача " -"не будет работать" +#: ../../godmode/agentes/module_manager.php:972 +#: ../../godmode/agentes/module_manager.php:980 +#: ../../include/ajax/module.php:1084 ../../include/ajax/module.php:1092 +msgid "Adopted" +msgstr "Приёмные" -#: ../../godmode/servers/manage_recontask_form.php:231 -msgid "Network sweep" -msgstr "Сеть развертки" +#: ../../godmode/agentes/module_manager.php:1110 +msgid "Normalize" +msgstr "Нормализовать" -#: ../../godmode/servers/manage_recontask_form.php:248 -msgid "Manual interval means that it will be executed only On-demand" -msgstr "" +#: ../../godmode/agentes/module_manager.php:1120 +msgid "Normalize (Disabled)" +msgstr "Нормализация (отключено)" -#: ../../godmode/servers/manage_recontask_form.php:255 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "Минимальный рекомендуемый интервал для Рекон Задачи - 5 минут" +#: ../../godmode/agentes/module_manager.php:1135 +#: ../../include/functions_snmp_browser.php:638 +msgid "Create network component" +msgstr "Создать сетевой компонент" -#: ../../godmode/servers/manage_recontask_form.php:260 -msgid "Module template" -msgstr "Модуль шаблона" +#: ../../godmode/agentes/module_manager.php:1144 +msgid "Create network component (Disabled)" +msgstr "Создать сетевой компонент (отключено)" -#: ../../godmode/servers/manage_recontask_form.php:294 -#: ../../godmode/servers/manage_recontask.php:287 -msgid "Ports" -msgstr "Порты" +#: ../../godmode/agentes/module_manager.php:1204 +msgid "Execute action" +msgstr "Выполнить действие" -#: ../../godmode/servers/manage_recontask_form.php:297 -msgid "" -"Ports defined like: 80 or 80,443,512 or even 0-1024 (Like Nmap command line " -"format). If dont want to do a sweep using portscan, left it in blank" -msgstr "" -"Портов, которые определены как: 80 или 80,443,512 или даже 0-1024 (в формате " -"командной строки Nmap). Если не хотите делать развертки с использованием " -"сканирования портов, оставил его незаполненной" +#: ../../godmode/netflow/nf_item_list.php:36 +#: ../../operation/reporting/reporting_viewer.php:80 +msgid "Report list" +msgstr "Перечень отчетов" -#: ../../godmode/servers/manage_recontask_form.php:308 -msgid "Choose if the discovery of a new system creates an incident or not." -msgstr "Выбрать, если открытие новой системы создает инцидент или нет." - -#: ../../godmode/servers/manage_recontask_form.php:311 -msgid "SNMP Default community" -msgstr "SNMP сообщества по умолчанию" - -#: ../../godmode/servers/manage_recontask_form.php:317 -msgid "Explanation" -msgstr "Объяснение" - -#: ../../godmode/servers/manage_recontask_form.php:358 -msgid "OS detection" -msgstr "OS определение" - -#: ../../godmode/servers/manage_recontask_form.php:362 -msgid "Name resolution" -msgstr "Разрешение имен" - -#: ../../godmode/servers/manage_recontask_form.php:366 -msgid "Parent detection" -msgstr "Первоначальное обнаружение" - -#: ../../godmode/servers/manage_recontask_form.php:370 -msgid "Parent recursion" -msgstr "Исходная рекурсия" - -#: ../../godmode/servers/manage_recontask_form.php:371 -msgid "" -"Maximum number of parent hosts that will be created if parent detection is " -"enabled." -msgstr "" -"Максимальное количество исходного хоста которые будет создано, если " -"первоначальное обнаружение разрешает." - -#: ../../godmode/servers/servers.build_table.php:142 -msgid "Reset module status and fired alert counts" -msgstr "Восстановить статус модуля и настроить число оповещений" - -#: ../../godmode/servers/servers.build_table.php:148 -msgid "Claim back SNMP modules" -msgstr "Затребовать обратно SNMP модули" - -#: ../../godmode/servers/recon_script.php:73 -msgid "Recon script creation" -msgstr "Создание рекон скрипта" - -#: ../../godmode/servers/recon_script.php:75 -msgid "Recon script update" -msgstr "Обновить рекон скрипт" - -#: ../../godmode/servers/recon_script.php:101 -msgid "Script fullpath" -msgstr "Полный путь скрипта" - -#: ../../godmode/servers/recon_script.php:228 -msgid "Recon scripts registered in Pandora FMS" -msgstr "Рекон скрипты, зарегистрированные в Pandora FMS" - -#: ../../godmode/servers/recon_script.php:271 -msgid "Problem updating" -msgstr "Ошибка при обновлении" - -#: ../../godmode/servers/recon_script.php:317 -msgid "Problem creating" -msgstr "Ошибка при создании" - -#: ../../godmode/servers/recon_script.php:331 -msgid "Problem deleting reconscript" -msgstr "Ошибка при удалении рекон скрипта" - -#: ../../godmode/servers/recon_script.php:334 -msgid "reconscript deleted successfully" -msgstr "Рекон скрипт удален успешно" - -#: ../../godmode/servers/recon_script.php:378 -msgid "There are no recon scripts in the system" -msgstr "Нет рекон скриптов в системе" - -#: ../../godmode/servers/manage_recontask.php:55 -msgid "Successfully deleted recon task" -msgstr "Успешно удалена рекон задача" - -#: ../../godmode/servers/manage_recontask.php:58 -msgid "Error deleting recon task" -msgstr "Ошибка при удалении рекон задачи" - -#: ../../godmode/servers/manage_recontask.php:68 -#: ../../godmode/servers/manage_recontask.php:177 -msgid "Successfully updated recon task" -msgstr "Рекон задача успешно обновлена" - -#: ../../godmode/servers/manage_recontask.php:75 -#: ../../godmode/servers/manage_recontask.php:180 -msgid "Error updating recon task" -msgstr "Ошибка при обновлении рекон задачи" - -#: ../../godmode/servers/manage_recontask.php:161 -#: ../../godmode/servers/manage_recontask.php:231 -msgid "Wrong format in Subnet field" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:227 -msgid "Recon-task name already exists and incorrect format in Subnet field" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:235 -#: ../../godmode/servers/manage_recontask.php:244 -msgid "Recon-task name already exists" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:258 -msgid "Successfully created recon task" -msgstr "Рекон задача успешно создана" - -#: ../../godmode/servers/manage_recontask.php:261 -msgid "Error creating recon task" -msgstr "Ошибка при создании рекон задачи" - -#: ../../godmode/servers/manage_recontask.php:376 -msgid "There are no recon task configured" -msgstr "Нет настроенной рекон задачи" - -#: ../../godmode/netflow/nf_edit_form.php:59 -#: ../../godmode/netflow/nf_edit_form.php:67 -msgid "Add filter" -msgstr "Добавить фильтр" - -#: ../../godmode/netflow/nf_edit_form.php:62 -msgid "Netflow Filter" -msgstr "Фильтр сетевого потока" - -#: ../../godmode/netflow/nf_edit_form.php:206 -msgid "Filter:" -msgstr "Фильтр:" - -#: ../../godmode/netflow/nf_item_list.php:44 -#: ../../godmode/netflow/nf_item_list.php:54 +#: ../../godmode/netflow/nf_item_list.php:39 +#: ../../godmode/netflow/nf_item_list.php:47 msgid "Report items" msgstr "Итемы отчета" -#: ../../godmode/netflow/nf_item_list.php:49 +#: ../../godmode/netflow/nf_item_list.php:42 msgid "Edit report" msgstr "Редактировать отчет" -#: ../../godmode/netflow/nf_item_list.php:58 +#: ../../godmode/netflow/nf_item_list.php:62 msgid "Netflow reports" msgstr "Отчеты сетевых потоков" -#: ../../godmode/netflow/nf_item_list.php:59 +#: ../../godmode/netflow/nf_item_list.php:66 msgid "Item list" msgstr "Список элементов" -#: ../../godmode/netflow/nf_item_list.php:151 +#: ../../godmode/netflow/nf_item_list.php:185 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2087 +#: ../../operation/netflow/nf_live_view.php:322 +msgid "Max. values" +msgstr "Максимальные значения" + +#: ../../godmode/netflow/nf_item_list.php:186 +#: ../../operation/agentes/graphs.php:233 msgid "Chart type" msgstr "Тип графика" -#: ../../godmode/netflow/nf_item_list.php:255 +#: ../../godmode/netflow/nf_item_list.php:286 msgid "There are no defined items" msgstr "Здесь нет оределенных элементов" -#: ../../godmode/netflow/nf_edit.php:39 +#: ../../godmode/netflow/nf_edit.php:38 msgid "Manage Netflow Filter" msgstr "Управление фильтром сетевого потока" -#: ../../godmode/groups/configure_modu_group.php:29 -msgid "Module group management" -msgstr "Управление группой модулей" +#: ../../godmode/netflow/nf_edit.php:57 ../../godmode/netflow/nf_edit.php:63 +#: ../../godmode/netflow/nf_edit_form.php:73 +#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:97 +msgid "Netflow filters" +msgstr "Фильтры сетевого потока" -#: ../../godmode/groups/group_list.php:158 -msgid "Edit or delete groups can cause problems with synchronization" +#: ../../godmode/netflow/nf_edit.php:212 +#: ../../godmode/events/event_filter.php:215 +msgid "There are no defined filters" +msgstr "Здесь нет заданных фильтров" + +#: ../../godmode/netflow/nf_edit_form.php:53 ../../godmode/events/events.php:54 +msgid "Filter list" +msgstr "Фильтровать список" + +#: ../../godmode/netflow/nf_edit_form.php:55 +#: ../../godmode/netflow/nf_edit_form.php:77 +msgid "Add filter" +msgstr "Добавить фильтр" + +#: ../../godmode/netflow/nf_edit_form.php:58 +msgid "Netflow Filter" +msgstr "Фильтр сетевого потока" + +#: ../../godmode/netflow/nf_edit_form.php:187 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:598 +#: ../../include/ajax/events.php:658 ../../operation/events/events_list.php:414 +#: ../../operation/events/events_list.php:467 +msgid "Update filter" +msgstr "Обновить фильтр" + +#: ../../godmode/netflow/nf_edit_form.php:234 +msgid "Filter:" +msgstr "Фильтр:" + +#: ../../godmode/netflow/nf_edit_form.php:238 +#: ../../operation/netflow/nf_live_view.php:406 +msgid "Dst Ip" +msgstr "IP-адрес пункта назначения" + +#: ../../godmode/netflow/nf_edit_form.php:238 +#: ../../operation/netflow/nf_live_view.php:406 +msgid "" +"Destination IP. A comma separated list of destination ip. If we leave the " +"field blank, will show all ip. Example filter by " +"ip:<br>25.46.157.214,160.253.135.249" msgstr "" +"IP-адрес пункта назначения. Запятая разделяет список IP-адресов пункта " +"назначения. Если вы оставите поле пустым, будут показаны все IP-адреса. " +"Например, фильтра по IP:<br>25.46.157.214,160.253.135.249" -#: ../../godmode/groups/group_list.php:164 -msgid "Groups defined in Pandora" -msgstr "Группы, определенные в Pandora" +#: ../../godmode/netflow/nf_edit_form.php:241 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "Src Ip" +msgstr "Ip-адрес источника" -#: ../../godmode/groups/group_list.php:208 -#: ../../godmode/groups/modu_group_list.php:74 -msgid "Group successfully created" -msgstr "Группа успешно создана" +#: ../../godmode/netflow/nf_edit_form.php:241 +#: ../../operation/netflow/nf_live_view.php:414 +msgid "" +"Source IP. A comma separated list of source ip. If we leave the field blank, " +"will show all ip. Example filter by ip:<br>25.46.157.214,160.253.135.249" +msgstr "" +"IP-адрес источника. Запятая разделяет список IP-адресов источника. Если вы " +"оставите поле пустым, будут показаны все IP-адреса. Например, фильтра по " +"IP:<br>25.46.157.214,160.253.135.249" -#: ../../godmode/groups/group_list.php:211 -#: ../../godmode/groups/modu_group_list.php:77 -msgid "There was a problem creating group" -msgstr "Найдена проблема при создании группы" +#: ../../godmode/netflow/nf_edit_form.php:244 +#: ../../godmode/netflow/nf_edit_form.php:257 +#: ../../operation/netflow/nf_live_view.php:342 +#: ../../operation/netflow/nf_live_view.php:425 +msgid "Dst Port" +msgstr "Порт назначения" -#: ../../godmode/groups/group_list.php:215 -msgid "Each group must have a different name" -msgstr "Каждая группа должна иметь свое имя" +#: ../../godmode/netflow/nf_edit_form.php:244 +#: ../../operation/netflow/nf_live_view.php:425 +msgid "" +"Destination port. A comma separated list of destination ports. If we leave " +"the field blank, will show all ports. Example filter by ports 80 and " +"22:<br>80,22" +msgstr "" +"Порт назначения. Запятая разделяет список портов назначения. Если оставить " +"это поле пустым, будут показаны все порты. Пример фильтра по портам 80 и " +"22:<br>80,22" -#: ../../godmode/groups/group_list.php:220 -msgid "Group must have a name" -msgstr "Группа должна иметь имя" +#: ../../godmode/netflow/nf_edit_form.php:247 +#: ../../godmode/netflow/nf_edit_form.php:256 +#: ../../operation/netflow/nf_live_view.php:341 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "Src Port" +msgstr "Порт источника" -#: ../../godmode/groups/group_list.php:263 -#: ../../godmode/groups/modu_group_list.php:105 -msgid "Group successfully updated" -msgstr "Группа успешно обновлена" +#: ../../godmode/netflow/nf_edit_form.php:247 +#: ../../operation/netflow/nf_live_view.php:433 +msgid "" +"Source port. A comma separated list of source ports. If we leave the field " +"blank, will show all ports. Example filter by ports 80 and 22:<br>80,22" +msgstr "" +"Порт источника. Запятая разделяет список портов источника. Если оставить это " +"поле пустым, будут показаны все порты. Пример фильтра по портам 80 и " +"22:<br>80,22" -#: ../../godmode/groups/group_list.php:266 -#: ../../godmode/groups/modu_group_list.php:108 -msgid "There was a problem modifying group" -msgstr "Найдена проблема при изменении группы" +#: ../../godmode/netflow/nf_edit_form.php:252 +#: ../../operation/netflow/nf_live_view.php:336 +msgid "Aggregate by" +msgstr "Объединено по" -#: ../../godmode/groups/group_list.php:291 +#: ../../godmode/netflow/nf_edit_form.php:254 +#: ../../operation/netflow/nf_live_view.php:339 +msgid "Src Ip Address" +msgstr "Ip-адрес источника" + +#: ../../godmode/netflow/nf_edit_form.php:255 +#: ../../operation/netflow/nf_live_view.php:340 +msgid "Dst Ip Address" +msgstr "Ip-адрес назначения" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:37 +msgid "SNMP Trap generator" +msgstr "SNMP генератор прерывания" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:55 +msgid "Empty parameters" +msgstr "Незаполненные параметры" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:61 +msgid "Successfully generated" +msgstr "Успешно сформировано" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:62 #, php-format -msgid "The group is not empty. It is use in %s." -msgstr "Данная группа занята. Она используется в %s." +msgid "Could not be generated: %s" +msgstr "Не может быть сформировано: %s" -#: ../../godmode/groups/group_list.php:295 -#: ../../godmode/groups/modu_group_list.php:137 -msgid "Group successfully deleted" -msgstr "Группа успешно удалена" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:72 +msgid "Host address" +msgstr "Адрес сервера" -#: ../../godmode/groups/group_list.php:298 -#: ../../godmode/groups/modu_group_list.php:135 -msgid "There was a problem deleting group" -msgstr "Найдена проблема при удалении группы" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:82 +#: ../../include/functions_snmp_browser.php:727 +msgid "Community" +msgstr "Сообщество" -#: ../../godmode/groups/group_list.php:387 -msgid "There are no defined groups" -msgstr "Нет заданных групп" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:92 +#: ../../godmode/snmpconsole/snmp_alert.php:809 +#: ../../godmode/snmpconsole/snmp_alert.php:1327 +#: ../../operation/snmpconsole/snmp_view.php:861 +msgid "Enterprise String" +msgstr "Цепь Enterprise" -#: ../../godmode/groups/group_list.php:393 -#: ../../godmode/groups/configure_group.php:92 -msgid "Create group" -msgstr "Создать группу" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:122 +msgid "SNMP Type" +msgstr "SNMP Вид" -#: ../../godmode/groups/configure_group.php:90 -msgid "Update group" -msgstr "Обновить группу" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:155 +msgid "Generate trap" +msgstr "Генератор прерывания" -#: ../../godmode/groups/configure_group.php:104 -msgid "Update Group" +#: ../../godmode/snmpconsole/snmp_alert.php:83 +#: ../../godmode/snmpconsole/snmp_alert.php:91 +#: ../../godmode/snmpconsole/snmp_alert.php:99 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/snmpconsole/snmp_filters.php:41 +#: ../../operation/snmpconsole/snmp_statistics.php:85 +#: ../../operation/snmpconsole/snmp_view.php:703 +#: ../../operation/snmpconsole/snmp_view.php:801 +msgid "SNMP Console" +msgstr "SNMP Консоль" + +#: ../../godmode/snmpconsole/snmp_alert.php:99 +msgid "Alert overview" +msgstr "Оповещение обзора" + +#: ../../godmode/snmpconsole/snmp_alert.php:274 +msgid "There was a problem creating the alert" +msgstr "Проблема при создании оповещения" + +#: ../../godmode/snmpconsole/snmp_alert.php:404 +msgid "There was a problem updating the alert" +msgstr "Проблема при обновлении оповещения" + +#: ../../godmode/snmpconsole/snmp_alert.php:711 +msgid "There was a problem duplicating the alert" +msgstr "Возникла проблема с дублированием оповещения" + +#: ../../godmode/snmpconsole/snmp_alert.php:714 +msgid "Successfully Duplicate" +msgstr "Успешное дублирование" + +#: ../../godmode/snmpconsole/snmp_alert.php:732 +msgid "There was a problem deleting the alert" +msgstr "Проблема при удалении оповещения" + +#: ../../godmode/snmpconsole/snmp_alert.php:809 +msgid "Matches substrings. End the string with $ for exact matches." msgstr "" +"Совпадение подстроки. Завершите строку символом $ для точного совпадения." -#: ../../godmode/groups/configure_group.php:106 -msgid "Create Group" -msgstr "" +#: ../../godmode/snmpconsole/snmp_alert.php:869 +#: ../../godmode/snmpconsole/snmp_alert.php:876 +#: ../../godmode/snmpconsole/snmp_alert.php:885 +#: ../../godmode/snmpconsole/snmp_alert.php:894 +#: ../../godmode/snmpconsole/snmp_alert.php:903 +#: ../../godmode/snmpconsole/snmp_alert.php:912 +#: ../../godmode/snmpconsole/snmp_alert.php:921 +#: ../../godmode/snmpconsole/snmp_alert.php:929 +#: ../../godmode/snmpconsole/snmp_alert.php:937 +#: ../../godmode/snmpconsole/snmp_alert.php:945 +#: ../../godmode/snmpconsole/snmp_alert.php:953 +#: ../../godmode/snmpconsole/snmp_alert.php:961 +#: ../../godmode/snmpconsole/snmp_alert.php:969 +#: ../../godmode/snmpconsole/snmp_alert.php:977 +#: ../../godmode/snmpconsole/snmp_alert.php:985 +#: ../../godmode/snmpconsole/snmp_alert.php:993 +#: ../../godmode/snmpconsole/snmp_alert.php:1001 +#: ../../godmode/snmpconsole/snmp_alert.php:1009 +#: ../../godmode/snmpconsole/snmp_alert.php:1017 +#: ../../godmode/snmpconsole/snmp_alert.php:1025 +msgid "Variable bindings/Data" +msgstr "Связывание переменных/данные" -#: ../../godmode/groups/configure_group.php:142 -msgid "You have not access to the parent." -msgstr "" - -#: ../../godmode/groups/configure_group.php:164 -msgid "Propagate ACL" -msgstr "Распространять ACL" - -#: ../../godmode/groups/configure_group.php:164 -msgid "Propagate the same ACL security into the child subgroups." -msgstr "Разместить защиту ACL в детские подгруппы." - -#: ../../godmode/groups/configure_group.php:173 -msgid "Contact" -msgstr "Контакт" - -#: ../../godmode/groups/configure_group.php:173 -msgid "Contact information accessible through the _groupcontact_ macro" -msgstr "Контактная информация доступна через the _groupcontact_ macro" - -#: ../../godmode/groups/configure_group.php:176 -msgid "Information accessible through the _group_other_ macro" -msgstr "Информация доступна через the _group_other_ macro" - -#: ../../godmode/groups/configure_group.php:221 +#: ../../godmode/snmpconsole/snmp_alert.php:1175 msgid "" -"WARNING: You\\'re trying to create a group in a node member of a " -"metaconsole.\\n\\nThis group and all of this contents will not be visible in " -"the metaconsole.\\n\\nIf you want to create a visible group, you must do it " -"from the metaconsole and propagate to the node. " +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " +"Single value, each Variable bindings/Datas." msgstr "" +"Поиск по этим полям описания: OID, Пользовательское Значение, Агент SNMP " +"(IP), Индивидуальное Значение, каждая Привязка Переменных/данные." -#: ../../godmode/groups/modu_group_list.php:54 -msgid "Module groups defined in Pandora" -msgstr "Группы модулей, определенных в Pandora" +#: ../../godmode/snmpconsole/snmp_alert.php:1194 +msgid "Alert SNMP control filter" +msgstr "Фильтр контроля SNMP оповещений" -#: ../../godmode/groups/modu_group_list.php:81 -#: ../../godmode/groups/modu_group_list.php:112 -msgid "Each module group must have a different name" -msgstr "Каждый модуль группы должен иметь свое имя" +#: ../../godmode/snmpconsole/snmp_alert.php:1279 +msgid "There are no SNMP alerts" +msgstr "Нет SNMP оповещений" -#: ../../godmode/groups/modu_group_list.php:85 -#: ../../godmode/groups/modu_group_list.php:116 -msgid "Module group must have a name" -msgstr "Модуль группы должен иметь имя" +#: ../../godmode/snmpconsole/snmp_alert.php:1330 +msgid "Custom Value/Enterprise String" +msgstr "Пользовательское значение/Enterprise цепь" -#: ../../godmode/groups/modu_group_list.php:203 -msgid "There are no defined module groups" -msgstr "Нет ни одной группы модулей" +#: ../../godmode/snmpconsole/snmp_alert.php:1335 +#: ../../include/functions_reporting_html.php:4553 +#: ../../include/functions_reporting_html.php:4675 +#: ../../include/functions_treeview.php:454 +msgid "Times fired" +msgstr "Число запусков" -#: ../../godmode/groups/modu_group_list.php:208 -msgid "Create module group" -msgstr "Создать группу модулей" +#: ../../godmode/snmpconsole/snmp_alert.php:1335 +msgid "TF." +msgstr "TF." -#: ../../godmode/update_manager/update_manager.setup.php:51 -msgid "Succesful Update the url config vars." -msgstr "" +#: ../../godmode/snmpconsole/snmp_alert.php:1424 +msgid "ID Alert SNMP" +msgstr "ID Предупреждение SNMP" -#: ../../godmode/update_manager/update_manager.setup.php:52 -msgid "Unsuccesful Update the url config vars." -msgstr "" +#: ../../godmode/snmpconsole/snmp_alert.php:1674 +msgid "Add action " +msgstr "Добавить действие " -#: ../../godmode/update_manager/update_manager.setup.php:63 -msgid "URL update manager:" -msgstr "URL менеджер обновлений" +#: ../../godmode/snmpconsole/snmp_filters.php:41 +msgid "Filter overview" +msgstr "Фильтр обзора" -#: ../../godmode/update_manager/update_manager.setup.php:65 -msgid "URL update manager" -msgstr "" +#: ../../godmode/snmpconsole/snmp_filters.php:87 +msgid "There was a problem updating the filter" +msgstr "Проблема при обновлении фильтра" -#: ../../godmode/update_manager/update_manager.setup.php:67 -msgid "Proxy server:" -msgstr "" +#: ../../godmode/snmpconsole/snmp_filters.php:105 +#: ../../godmode/snmpconsole/snmp_filters.php:131 +msgid "Description is empty" +msgstr "Описание не заполнено" -#: ../../godmode/update_manager/update_manager.setup.php:69 -msgid "Proxy server" -msgstr "прокси сервер" +#: ../../godmode/snmpconsole/snmp_filters.php:108 +msgid "Filter is empty" +msgstr "Фильтр не заполнен" -#: ../../godmode/update_manager/update_manager.setup.php:71 -msgid "Proxy port:" -msgstr "" +#: ../../godmode/snmpconsole/snmp_filters.php:128 +msgid "Filters are empty" +msgstr "Фильтры не заполнены" -#: ../../godmode/update_manager/update_manager.setup.php:73 -msgid "Proxy port" -msgstr "прокси порт" +#: ../../godmode/snmpconsole/snmp_filters.php:138 +msgid "There was a problem creating the filter" +msgstr "Проблема при создании фильтра" -#: ../../godmode/update_manager/update_manager.setup.php:75 -msgid "Proxy user:" -msgstr "" +#: ../../godmode/snmpconsole/snmp_filters.php:157 +msgid "There was a problem deleting the filter" +msgstr "Проблема при удалении фильтра" -#: ../../godmode/update_manager/update_manager.setup.php:77 -msgid "Proxy user" -msgstr "пользователь прокси" - -#: ../../godmode/update_manager/update_manager.setup.php:79 -msgid "Proxy password:" -msgstr "" - -#: ../../godmode/update_manager/update_manager.setup.php:81 -msgid "Proxy password" -msgstr "пароль прокси" - -#: ../../godmode/update_manager/update_manager.php:32 -msgid "Offline update manager" -msgstr "" - -#: ../../godmode/update_manager/update_manager.php:36 -msgid "Online update manager" -msgstr "" - -#: ../../godmode/update_manager/update_manager.php:41 -msgid "Update manager » Setup" -msgstr "" - -#: ../../godmode/update_manager/update_manager.php:44 -msgid "Update manager » Offline" -msgstr "" - -#: ../../godmode/update_manager/update_manager.php:47 -msgid "Update manager » Online" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:29 -msgid "Drop the package here or" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:30 -msgid "browse it" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:31 -msgid "The package has been uploaded successfully." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:32 +#: ../../godmode/snmpconsole/snmp_filters.php:200 +#: ../../godmode/snmpconsole/snmp_filters.php:210 msgid "" -"Remember that this package will override the actual Pandora FMS files and it " -"is recommended to do a backup before continue with the update." +"This field contains a substring, could be part of a IP address, a numeric " +"OID, or a plain substring" msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:33 -msgid "Click on the file below to begin." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:34 -msgid "Updating" -msgstr "обновление" - -#: ../../godmode/update_manager/update_manager.offline.php:35 -msgid "Package updated successfully." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:36 -msgid "" -"If there are any database change, it will be applied on the next login." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:37 -msgid "Package not updated." -msgstr "" - -#: ../../godmode/update_manager/update_manager.online.php:25 -#, php-format -msgid "The last version of package installed is: %d" -msgstr "" - -#: ../../godmode/update_manager/update_manager.online.php:34 -#, php-format -msgid "" -"Your PHP has set memory limit in %s. For avoid problems with big updates " -"please set to 500M" -msgstr "" - -#: ../../godmode/update_manager/update_manager.online.php:41 -#, php-format -msgid "" -"Your PHP has set post parameter max size limit in %s. For avoid problems " -"with big updates please set to 100M" -msgstr "" - -#: ../../godmode/update_manager/update_manager.online.php:48 -#, php-format -msgid "" -"Your PHP has set maximum allowed size for uploaded files limit in %s. For " -"avoid problems with big updates please set to 100M" -msgstr "" - -#: ../../godmode/update_manager/update_manager.online.php:56 -msgid "" -"The new <a href=\"http://updatemanager.sourceforge.net\">Update Manager</a> " -"client is shipped with Pandora FMS It helps system administrators to update " -"their Pandora FMS automatically, since the Update Manager does the task of " -"getting new modules, new plugins and new features (even full migrations " -"tools for future versions) automatically." -msgstr "" -"Новый <a href=\"http://updatemanager.sourceforge.net\"> Менеджер Обновлений " -"</a> клиента поставляется с Pandora FMS Это помогает системным " -"администраторам обновлять свои Pandora FMS автоматически, так как Менеджер " -"Обновлений выполняет задачу получения новых модулей, новых плагинов и новых " -"возможностей (даже полных инструментов миграции для будущих версий) " -"автоматически." - -#: ../../godmode/update_manager/update_manager.online.php:59 -msgid "" -"Update Manager is one of the most advanced features of Pandora FMS " -"Enterprise version, for more information visit <a " -"href=\"http://pandorafms.com\">http://pandorafms.com</a>." -msgstr "" -"Менеджер Обновлений является одним из самых передовых функций версии " -"предприятия Pandora FMS , для получения дополнительной информации посетите " -"<a href=\"http://pandorafms.com\">http://pandorafms.com</a>." - -#: ../../godmode/update_manager/update_manager.online.php:62 -msgid "" -"Update Manager sends anonymous information about Pandora FMS usage (number " -"of agents and modules running). To disable it, remove remote server address " -"from Update Manager plugin setup." -msgstr "" -"Менеджер Обновлений отправляет анонимную информацию о использовании Pandora " -"FMS (число работающих агентов и модулей). Чтобы отключить ее, удалить адрес " -"удаленного сервера настроики плагина Менеджера Обновлений." - -#: ../../godmode/update_manager/update_manager.online.php:71 -msgid "Checking for the newest package." -msgstr "" - -#: ../../godmode/update_manager/update_manager.online.php:75 -msgid "Downloading for the newest package." -msgstr "" - -#: ../../godmode/db/db_info.php:32 ../../godmode/db/db_refine.php:33 -#: ../../godmode/db/db_purge.php:37 ../../godmode/db/db_event.php:21 -#: ../../godmode/db/db_audit.php:19 -msgid "Database maintenance" -msgstr "Обслуживание базы данных" - -#: ../../godmode/db/db_info.php:32 -msgid "Database information" -msgstr "Сведения о базе данных" - -#: ../../godmode/db/db_info.php:34 -msgid "Module data received" -msgstr "" - -#: ../../godmode/db/db_refine.php:42 -msgid "Maximum is equal to minimum" -msgstr "Максимум равно минимуму" - -#: ../../godmode/db/db_refine.php:56 -msgid "Filtering data module" -msgstr "Фильтрование данных модуля" - -#: ../../godmode/db/db_refine.php:76 -msgid "Filtering completed" -msgstr "Фильтрование завершено" - -#: ../../godmode/db/db_refine.php:88 -msgid "No agent selected" -msgstr "Агент не выбран" - -#: ../../godmode/db/db_refine.php:92 -msgid "Get Info" -msgstr "Получить информацию" - -#: ../../godmode/db/db_refine.php:105 -msgid "Purge data out of these limits" -msgstr "Очистка данных вне этих пределов" - -#: ../../godmode/db/db_refine.php:107 ../../godmode/db/db_refine.php:109 -msgid "Minimum" -msgstr "Минимум" - -#: ../../godmode/db/db_refine.php:112 ../../godmode/db/db_refine.php:114 -msgid "Maximum" -msgstr "Максимум" - -#: ../../godmode/db/db_purge.php:43 -msgid "Get data from agent" -msgstr "Получить данные из агента" - -#: ../../godmode/db/db_purge.php:75 -#, php-format -msgid "Purge task launched for agent %s :: Data older than %s" -msgstr "Очистка задачи, запущенной для агента %s :: Данные старше чем %s" - -#: ../../godmode/db/db_purge.php:78 -msgid "" -"Please be patient. This operation can take a long time depending on the " -"amount of modules." -msgstr "" -"Пожалуйста, подождите. Эта операция может занять продолжительное время в " -"зависимости от количества модулей." - -#: ../../godmode/db/db_purge.php:92 -#, php-format -msgid "Deleting records for module %s" -msgstr "Удаление записей для модуля %s" - -#: ../../godmode/db/db_purge.php:140 -#, php-format -msgid "Total errors: %s" -msgstr "Всего ошибок: %s" - -#: ../../godmode/db/db_purge.php:141 ../../godmode/db/db_purge.php:144 -#, php-format -msgid "Total records deleted: %s" -msgstr "Все записи удалены: %s" - -#: ../../godmode/db/db_purge.php:149 -msgid "Deleting records for all agents" -msgstr "Удаление записей для всех агентов" - -#: ../../godmode/db/db_purge.php:166 -msgid "Choose agent" -msgstr "Выбрать агента" - -#: ../../godmode/db/db_purge.php:172 -msgid "Select the agent you want information about" -msgstr "Выберите агента, о котором вам нужна информация" - -#: ../../godmode/db/db_purge.php:174 -msgid "Get data" -msgstr "Получить данные" - -#: ../../godmode/db/db_purge.php:175 -msgid "Click here to get the data from the agent specified in the select box" -msgstr "" -"Нажмите здесь, чтобы получить данные из заданного агента в выбранной ячейке" - -#: ../../godmode/db/db_purge.php:179 -#, php-format -msgid "Information on agent %s in the database" -msgstr "Информация о агенте %s в базе данных" - -#: ../../godmode/db/db_purge.php:182 -msgid "Information on all agents in the database" -msgstr "Информация о всех агентах в базе данных" - -#: ../../godmode/db/db_purge.php:317 -msgid "Packets less than three months old" -msgstr "Пакеты, созданные менее чем три месяца назад" - -#: ../../godmode/db/db_purge.php:319 -msgid "Packets less than one month old" -msgstr "Пакеты, созданные менее чем месяц назад" - -#: ../../godmode/db/db_purge.php:321 -msgid "Packets less than two weeks old" -msgstr "Пакеты, созданные менее чем две недели назад" - -#: ../../godmode/db/db_purge.php:323 -msgid "Packets less than one week old" -msgstr "Пакеты, созданные менее чем неделю назад" - -#: ../../godmode/db/db_purge.php:325 -msgid "Packets less than three days old" -msgstr "Пакеты, созданные менее чем три дня назад" - -#: ../../godmode/db/db_purge.php:327 -msgid "Packets less than one day old" -msgstr "Пакеты, созданные менее дня назад" - -#: ../../godmode/db/db_purge.php:329 -msgid "Total number of packets" -msgstr "Общее количество пакетов" - -#: ../../godmode/db/db_purge.php:335 ../../godmode/db/db_event.php:73 -#: ../../godmode/db/db_audit.php:92 -msgid "Purge data" -msgstr "Стереть данные" - -#: ../../godmode/db/db_purge.php:340 -msgid "Purge data over 3 months" -msgstr "Очистка данных за 3 месяца" - -#: ../../godmode/db/db_purge.php:341 -msgid "Purge data over 1 month" -msgstr "Очистка данных за 1 месяц" - -#: ../../godmode/db/db_purge.php:342 -msgid "Purge data over 2 weeks" -msgstr "Очистка данных за 2 недели" - -#: ../../godmode/db/db_purge.php:343 -msgid "Purge data over 1 week" -msgstr "Очистка данных за 1 неделю" - -#: ../../godmode/db/db_purge.php:344 -msgid "Purge data over 3 days" -msgstr "Очистка данных за три дня" - -#: ../../godmode/db/db_purge.php:345 -msgid "Purge data over 1 day" -msgstr "Очистка данных за один день" - -#: ../../godmode/db/db_purge.php:346 -msgid "All data until now" -msgstr "Все данные на данный момент" - -#: ../../godmode/db/db_purge.php:350 -msgid "Purge" -msgstr "Очистить" - -#: ../../godmode/db/db_event.php:22 -msgid "Event database cleanup" -msgstr "Очистка событий базы данных" - -#: ../../godmode/db/db_event.php:40 -msgid "Successfully deleted old events" -msgstr "Устаревшие событий успешно удалены" - -#: ../../godmode/db/db_event.php:43 -msgid "Error deleting old events" -msgstr "Ошибка при удалении устаревших событий" - -#: ../../godmode/db/db_event.php:62 ../../godmode/db/db_audit.php:81 -msgid "Records" -msgstr "Записей" - -#: ../../godmode/db/db_event.php:64 ../../godmode/db/db_audit.php:84 -msgid "First date" -msgstr "Первые данные" - -#: ../../godmode/db/db_event.php:67 -msgid "Latest data" -msgstr "Последние данные" - -#: ../../godmode/db/db_event.php:81 -msgid "Purge event data over 90 days" -msgstr "Удалить события старее 90 дней" - -#: ../../godmode/db/db_event.php:82 -msgid "Purge event data over 30 days" -msgstr "Стереть события старее 30 дней" - -#: ../../godmode/db/db_event.php:83 -msgid "Purge event data over 14 days" -msgstr "Стереть события старее 14 дней" - -#: ../../godmode/db/db_event.php:84 -msgid "Purge event data over 7 days" -msgstr "Стереть события старее 7 дней" - -#: ../../godmode/db/db_event.php:85 -msgid "Purge event data over 3 days" -msgstr "Стереть события старее 3 дней" - -#: ../../godmode/db/db_event.php:86 -msgid "Purge event data over 1 day" -msgstr "Стереть события старее 1 дня" - -#: ../../godmode/db/db_event.php:87 -msgid "Purge all event data" -msgstr "Стереть все события" - -#: ../../godmode/db/db_event.php:92 ../../godmode/db/db_audit.php:107 -msgid "Do it!" -msgstr "Выполнить!" - -#: ../../godmode/db/db_main.php:69 -msgid "Current database maintenance setup" -msgstr "Текущие настройки по обслуживанию базы данных" - -#: ../../godmode/db/db_main.php:76 -msgid "Database setup" -msgstr "Настройка базы данных" - -#: ../../godmode/db/db_main.php:80 -msgid "Max. time before compact data" -msgstr "Максимальное время перед сжатием данных" - -#: ../../godmode/db/db_main.php:86 -msgid "Max. time before purge" -msgstr "Максимальное время перед очисткой" - -#: ../../godmode/db/db_main.php:95 -msgid "Database size stats" -msgstr "статистика пазмеров базы данных" - -#: ../../godmode/db/db_main.php:111 -msgid "Total data items (tagente_datos)" -msgstr "Все элементы данных (tagente_datos)" - -#: ../../godmode/db/db_main.php:123 -msgid "Total log4x items (tagente_datos_log4x)" -msgstr "Все log4x элементы (tagente_datos_log4x)" - -#: ../../godmode/db/db_main.php:135 -msgid "Total data string items (tagente_datos_string)" -msgstr "Все элементы строк данных (tagente_datos_string)" - -#: ../../godmode/db/db_main.php:141 -msgid "Total modules configured" -msgstr "Всего сконфигурированные модули" - -#: ../../godmode/db/db_main.php:149 -msgid "Total agent access records" -msgstr "Все записи доступа к агенту" - -#: ../../godmode/db/db_main.php:160 -msgid "Database sanity" -msgstr "Проверка базы данных" - -#: ../../godmode/db/db_main.php:164 -msgid "Total uknown agents" -msgstr "Всего неизвестных агентов" - -#: ../../godmode/db/db_main.php:170 -msgid "Total non-init modules" -msgstr "Все неинициализированные модули" - -#: ../../godmode/db/db_main.php:179 -msgid "Last time on DB maintance" -msgstr "Последний раз на DB обслуживание" - -#: ../../godmode/db/db_main.php:200 -msgid "" -"Please check your Pandora Server setup and be sure that database maintenance " -"daemon is running. It's very important to keep up-to-date database to get " -"the best performance and results in Pandora" -msgstr "" -"Пожалуйста, ознакомьтесь с Установочным сервером Pandora и убедитесь, что " -"демон обслуживания базы данных работает. Это очень важно, чтобы база данных " -"отвечала современным требованиям для достижения лучших показателей и " -"результатов в Pandora" - -#: ../../godmode/db/db_audit.php:19 -msgid "Database audit purge" -msgstr "Очистка аудита баз данных" - -#: ../../godmode/db/db_audit.php:70 -msgid "Success data deleted" -msgstr "Данные успешно удалены" - -#: ../../godmode/db/db_audit.php:72 -msgid "Error deleting data" -msgstr "Ошибка при удалении данных" - -#: ../../godmode/db/db_audit.php:88 -msgid "Latest date" -msgstr "Последнее число" - -#: ../../godmode/db/db_audit.php:97 -msgid "Purge audit data over 90 days" -msgstr "Очистить данные аудита за срок, более 90 дней" - -#: ../../godmode/db/db_audit.php:98 -msgid "Purge audit data over 30 days" -msgstr "Очистить данные аудита за срок, более 30 дней" - -#: ../../godmode/db/db_audit.php:99 -msgid "Purge audit data over 14 days" -msgstr "Очистить данные аудита за срок, более 14 дней" - -#: ../../godmode/db/db_audit.php:100 -msgid "Purge audit data over 7 days" -msgstr "Очистить данные аудита за срок, более 7 дней" - -#: ../../godmode/db/db_audit.php:101 -msgid "Purge audit data over 3 days" -msgstr "Очистить данные аудита за срок, более 3 дней" - -#: ../../godmode/db/db_audit.php:102 -msgid "Purge audit data over 1 day" -msgstr "Очистить данные аудита за срок, более 1 дней" - -#: ../../godmode/db/db_audit.php:103 -msgid "Purge all audit data" -msgstr "Очистить все данные аудита" - -#: ../../godmode/admin_access_logs.php:33 -msgid "Pandora audit" -msgstr "Pandora аудит" - -#: ../../godmode/admin_access_logs.php:33 -msgid "Review Logs" -msgstr "Просмотр журналов" - -#: ../../godmode/admin_access_logs.php:303 -msgid "Export to CSV " -msgstr "" - -#: ../../godmode/setup/setup_netflow.php:42 -msgid "Directory where netflow data will be stored." -msgstr "Каталог, в котором данные сетевого потока будут храниться." - -#: ../../godmode/setup/setup_netflow.php:46 -msgid "Specifies the time interval in seconds to rotate netflow data files." -msgstr "" -"Задает временной интервал в секундах для чередования файлов данных сетевого " -"потока." - -#: ../../godmode/setup/setup_netflow.php:58 -msgid "" -"Maximum number of points that a netflow area chart will display. The higher " -"the resolution the performance. Values between 50 and 100 are recommended." -msgstr "" -"Максимальное количество баллов, которые область графика сетевого потока " -"будут отображать. Высокое разрешение производительности. Значения между 50 и " -"100 рекомендуются." - -#: ../../godmode/setup/setup_netflow.php:65 -msgid "Sets the maximum lifetime for netflow data in days." -msgstr "" -"Устанавливает максимальный срок жизни для данных сетевого потока в днях." - -#: ../../godmode/setup/os.list.php:69 -msgid "There are no defined operating systems" -msgstr "Здесь нет определенных операционных систем" - -#: ../../godmode/setup/news.php:28 -msgid "Site news management" -msgstr "Управление новостями сайта" - -#: ../../godmode/setup/news.php:130 ../../godmode/setup/links.php:86 -msgid "Name error" -msgstr "Ошибка в имени" - -#: ../../godmode/setup/news.php:167 -msgid "Modal screen" -msgstr "" - -#: ../../godmode/setup/news.php:170 -msgid "Expire" -msgstr "" - -#: ../../godmode/setup/news.php:173 ../../godmode/setup/news.php:224 -msgid "Expiration" -msgstr "" - -#: ../../godmode/setup/news.php:215 -msgid "There are no defined news" -msgstr "Здесь нет но одной новостей" - -#: ../../godmode/setup/news.php:242 -msgid "Modal" -msgstr "" - -#: ../../godmode/setup/news.php:245 -msgid "Board" -msgstr "" - -#: ../../godmode/setup/news.php:256 -msgid "Expired" -msgstr "" - -#: ../../godmode/setup/links.php:27 -msgid "Link management" -msgstr "управление ссылками" - -#: ../../godmode/setup/links.php:39 -msgid "There was a problem creating link" -msgstr "Ошибка при создании ссылки" - -#: ../../godmode/setup/links.php:56 -msgid "There was a problem modifying link" -msgstr "Ошибка при изменении ссылки" - -#: ../../godmode/setup/links.php:67 -msgid "There was a problem deleting link" -msgstr "Ошибка при удалении ссылки" - -#: ../../godmode/setup/links.php:106 ../../godmode/setup/links.php:136 -msgid "Link name" -msgstr "Название ссылки" - -#: ../../godmode/setup/links.php:132 -msgid "There isn't links" -msgstr "Нет ссылок" - -#: ../../godmode/setup/os.php:70 -msgid "Fail creating OS" -msgstr "Сбой создания ОS" - -#: ../../godmode/setup/os.php:77 -msgid "Success creating OS" -msgstr "OS успешно создано" - -#: ../../godmode/setup/os.php:97 -msgid "Success updatng OS" -msgstr "OS успешно обновлено" - -#: ../../godmode/setup/os.php:97 -msgid "Error updating OS" -msgstr "Ошибка при обновлении OS" - -#: ../../godmode/setup/os.php:116 -msgid "There are agents with this OS." -msgstr "Есть агенты с этой OS." - -#: ../../godmode/setup/os.php:121 -msgid "Success deleting" -msgstr "Успешно удаляется" - -#: ../../godmode/setup/os.php:121 -msgid "Error deleting" -msgstr "Ошибка удаления" - -#: ../../godmode/setup/os.php:130 -msgid "List OS" -msgstr "Список OS" - -#: ../../godmode/setup/os.php:134 -msgid "Builder OS" -msgstr "Разработчик OS" - -#: ../../godmode/setup/gis_step_2.php:39 -msgid "Create new map connection" -msgstr "Создать новою карту связи" - -#: ../../godmode/setup/gis_step_2.php:58 -msgid "Edit map connection" -msgstr "Редактировать карту связи" - -#: ../../godmode/setup/gis_step_2.php:150 -msgid "Connection Name" -msgstr "Название подключения" - -#: ../../godmode/setup/gis_step_2.php:150 -msgid "Descriptive name for the connection" -msgstr "Описательное имя для соединения" - -#: ../../godmode/setup/gis_step_2.php:153 -msgid "Group that owns the connection" -msgstr "Группа, которой принадлежит соединение" - -#: ../../godmode/setup/gis_step_2.php:156 -msgid "Number of zoom levels" -msgstr "Количество уровней увеличения" - -#: ../../godmode/setup/gis_step_2.php:160 -msgid "Default zoom level" -msgstr "Уровень увеличения по умолчанию" - -#: ../../godmode/setup/gis_step_2.php:160 -msgid "Zoom level used when the map is opened" -msgstr "Уровень увеличения используемое при открытии карты" - -#: ../../godmode/setup/gis_step_2.php:163 -msgid "Basic configuration" -msgstr "Базовая конфигурация" - -#: ../../godmode/setup/gis_step_2.php:168 -msgid "Open Street Maps" -msgstr "Карты Open Street" - -#: ../../godmode/setup/gis_step_2.php:169 -msgid "Google Maps" -msgstr "Карты Google" - -#: ../../godmode/setup/gis_step_2.php:170 -msgid "Static Image" -msgstr "Статичное изображение" - -#: ../../godmode/setup/gis_step_2.php:172 -msgid "Please select the connection type" -msgstr "Пожалуйста, выберите тип подключения" - -#: ../../godmode/setup/gis_step_2.php:174 -msgid "Map connection type" -msgstr "Тип карты связи" - -#: ../../godmode/setup/gis_step_2.php:210 -msgid "Tile Server URL" -msgstr "Плитка URL сервера" - -#: ../../godmode/setup/gis_step_2.php:216 -msgid "Google Physical" -msgstr "Google Физические" - -#: ../../godmode/setup/gis_step_2.php:217 -msgid "Google Hybrid" -msgstr "Google гибридные" - -#: ../../godmode/setup/gis_step_2.php:218 -msgid "Google Satelite" -msgstr "Google спутниковые" - -#: ../../godmode/setup/gis_step_2.php:222 -msgid "Google Map Type" -msgstr "Google Тип Карты:" - -#: ../../godmode/setup/gis_step_2.php:226 -msgid "Google Maps Key" -msgstr "Google Ключ Карты" - -#: ../../godmode/setup/gis_step_2.php:235 -msgid "Image URL" -msgstr "URL изображения" - -#: ../../godmode/setup/gis_step_2.php:239 -msgid "Corners of the area of the image" -msgstr "Углы области изображения" - -#: ../../godmode/setup/gis_step_2.php:242 -msgid "Left" -msgstr "Слева" - -#: ../../godmode/setup/gis_step_2.php:248 -msgid "Right" -msgstr "Справа" - -#: ../../godmode/setup/gis_step_2.php:250 -msgid "Top" -msgstr "Сверху" - -#: ../../godmode/setup/gis_step_2.php:254 -msgid "Image Size" -msgstr "Размеры изображения" - -#: ../../godmode/setup/gis_step_2.php:279 -msgid "" -"Preview to select the center of the map and the default position of an agent " -"without gis data" -msgstr "" -"Предварительно просмотрите перед тем как выбрать центр карты и положение по " -"умолчанию агента без данных ГИС" - -#: ../../godmode/setup/gis_step_2.php:280 -msgid "Load preview map" -msgstr "Загрузите предварительный просмотр карты" - -#: ../../godmode/setup/gis_step_2.php:289 -msgid "Map Center" -msgstr "Центр Карты" - -#: ../../godmode/setup/gis_step_2.php:289 -msgid "Position to center the map when the map is opened" -msgstr "Положение по центру карты при открытии карты" - -#: ../../godmode/setup/gis_step_2.php:290 -msgid "Default position for agents without GIS data" -msgstr "Положение по умолчанию для агентов без данных ГИС" - -#: ../../godmode/setup/gis_step_2.php:292 -msgid "Change in the map" -msgstr "Изменения в карте" - -#: ../../godmode/setup/gis_step_2.php:292 -msgid "This selects what to change by clicking on the map" -msgstr "Данный параметр выбирает, чтобы изменить при нажатие на карту" - -#: ../../godmode/setup/gis_step_2.php:353 -#: ../../godmode/setup/gis_step_2.php:446 -msgid "Center" -msgstr "По-центру" - -#: ../../godmode/setup/gis_step_2.php:413 -msgid "Refresh preview map" -msgstr "Обновить просмотр карты" - -#: ../../godmode/setup/setup.php:137 -msgid "Correct update the setup options" -msgstr "Исправить обновления параметров настройки" - -#: ../../godmode/setup/setup_general.php:57 -msgid "Directory where agent remote configuration is stored." -msgstr "Каталог, в котором хранится агент удаленной конфигурации." - -#: ../../godmode/setup/setup_general.php:146 -msgid "URL and/or Integria password are incorrect" -msgstr "URL и/или Integria пароль неверны" - -#: ../../godmode/setup/setup_general.php:203 -msgid "" -"Must have the same time zone as the system or database to avoid mismatches " -"of time." -msgstr "" -"Должны находиться в том же часовом поясе, что система или база данных для " -"избежания несоответствия времени." - -#: ../../godmode/setup/setup_general.php:215 -#: ../../godmode/setup/setup_general.php:220 -#: ../../godmode/setup/setup_general.php:225 -msgid "Play sound" -msgstr "Воспроизводить звук" - -#: ../../godmode/setup/setup_general.php:233 -msgid "" -"When it is set as \"yes\" in some important sections check if the user have " -"gone from url Pandora." -msgstr "" -"Когда это установлено, как \"да\" в некоторых важных разделах - проверьте, " -"если пользователь вышел из url Pandora." - -#: ../../godmode/setup/setup_general.php:241 -msgid "" -"If set to yes no events or alerts will be generated, but agents will " -"continue receiving data." -msgstr "" -"Если установлено значение да - ни события или предупреждения не будут " -"созданы, но агенты продолжат прием данных." - -#: ../../godmode/setup/setup_general.php:250 -msgid "The string modules with several lines show as command output" -msgstr "Строка модуля с несколькими линиями показана как вывод команды" - -#: ../../godmode/setup/setup_general.php:254 -msgid "Directory where the server logs are stored." -msgstr "Каталог, в котором хранятся системные журналы сервера" - -#: ../../godmode/setup/setup_general.php:259 -msgid "Full mode" -msgstr "" - -#: ../../godmode/setup/setup_general.php:260 -msgid "On demand" -msgstr "" - -#: ../../godmode/setup/setup_general.php:261 -msgid "Expert" -msgstr "" - -#: ../../godmode/setup/setup_general.php:264 -msgid "" -"Configuration of our clippy, 'full mode' show the icon in the header and the " -"contextual helps and it is noise, 'on demand' it is equal to full but it is " -"not noise and 'expert' the icons in the header and the context is not." -msgstr "" - -#: ../../godmode/setup/setup_general.php:271 -msgid "The planned downtimes created in the past will affect the SLA reports" -msgstr "" - -#: ../../godmode/setup/setup_general.php:276 -#, php-format -msgid "" -"Your PHP environment is setted with %d max_input_vars. Maybe you must not " -"set this value with upper values." -msgstr "" - -#: ../../godmode/setup/setup_general.php:284 -msgid "General options" +"Это поле содержит подстроку, которая может быть частью IP-адреса, числовым " +"OID или простой подстрокой." + +#: ../../godmode/snmpconsole/snmp_filters.php:202 +msgid "Click to remove the filter" +msgstr "Нажмите, чтобы удалить фильтр" + +#: ../../godmode/snmpconsole/snmp_filters.php:233 +#: ../../godmode/snmpconsole/snmp_filters.php:234 +msgid "Click to add new filter" +msgstr "Нажмите, чтобы добавить новый фильтр" + +#: ../../godmode/menu.php:41 +msgid "Network scan" +msgstr "Сканирование сети" + +#: ../../godmode/menu.php:43 +msgid "Custom network scan" +msgstr "Пользовательское сканирование сети" + +#: ../../godmode/menu.php:47 +msgid "Manage scan scripts" +msgstr "Управление сценариями сканирования" + +#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:204 +msgid "Host & devices" +msgstr "Хост и устройства" + +#: ../../godmode/menu.php:83 +msgid "Module categories" +msgstr "Категории модулей" + +#: ../../godmode/menu.php:87 +msgid "Module types" +msgstr "Модуль виды" + +#: ../../godmode/menu.php:111 +msgid "Manage agents groups" +msgstr "Управление группами агентов" + +#: ../../godmode/menu.php:151 ../../include/class/ConfigPEN.class.php:337 +#: ../../include/class/ConfigPEN.class.php:345 +msgid "Private Enterprise Numbers" +msgstr "Личные номера Enterprise" + +#: ../../godmode/menu.php:155 +msgid "Remote components" +msgstr "Дистанционные компоненты" + +#: ../../godmode/menu.php:179 ../../godmode/massive/massive_operations.php:317 +msgid "Bulk operations" +msgstr "Массовые операции" + +#: ../../godmode/menu.php:184 ../../godmode/massive/massive_operations.php:241 +msgid "Agents operations" +msgstr "Агенты операций" + +#: ../../godmode/menu.php:185 ../../godmode/massive/massive_operations.php:252 +msgid "Modules operations" +msgstr "Модули операций" + +#: ../../godmode/menu.php:186 ../../godmode/massive/massive_operations.php:263 +msgid "Plugins operations" +msgstr "Операции с плагинами" + +#: ../../godmode/menu.php:188 ../../godmode/massive/massive_operations.php:230 +msgid "Users operations" +msgstr "Пользовательские операции" + +#: ../../godmode/menu.php:191 ../../godmode/massive/massive_operations.php:219 +msgid "Alerts operations" +msgstr "Оповещения об операциях" + +#: ../../godmode/menu.php:221 +msgid "List of Alerts" +msgstr "Список предупреждений" + +#: ../../godmode/menu.php:236 ../../godmode/menu.php:237 +#: ../../godmode/alerts/alert_special_days.php:45 +msgid "Special days list" +msgstr "Список определенных дней" + +#: ../../godmode/menu.php:241 ../../include/functions_menu.php:543 +msgid "SNMP alerts" +msgstr "Оповещения SNMP" + +#: ../../godmode/menu.php:253 +msgid "Event filters" +msgstr "Фильтры событий" + +#: ../../godmode/menu.php:258 +msgid "Custom events" +msgstr "Пользовательские события" + +#: ../../godmode/menu.php:281 +msgid "Manage servers" +msgstr "Управление серверами" + +#: ../../godmode/menu.php:315 +#: ../../include/class/OrderInterpreter.class.php:141 +msgid "General Setup" msgstr "Общие настройки" -#: ../../godmode/setup/setup_general.php:343 +#: ../../godmode/menu.php:340 ../../godmode/setup/setup.php:174 +#: ../../godmode/setup/setup.php:274 +#: ../../operation/agentes/ver_agente.php:1506 +msgid "eHorus" +msgstr "eHorus" + +#: ../../godmode/menu.php:343 ../../godmode/setup/setup.php:162 +#: ../../godmode/setup/setup.php:280 ../../godmode/setup/setup_integria.php:573 +msgid "Integria IMS" +msgstr "Integria IMS" + +#: ../../godmode/menu.php:348 ../../godmode/setup/setup.php:201 +#: ../../godmode/setup/setup.php:297 +msgid "Notifications" +msgstr "Уведомления" + +#: ../../godmode/menu.php:351 +msgid "Websocket Engine" +msgstr "Двигатель Websocket" + +#: ../../godmode/menu.php:354 ../../godmode/setup/setup.php:221 +#: ../../godmode/setup/setup.php:308 +#: ../../operation/agentes/ver_agente.php:1592 +msgid "External Tools" +msgstr "Внешние инструменты" + +#: ../../godmode/menu.php:358 ../../godmode/setup/setup.php:292 +msgid "Map conections GIS" +msgstr "Подключение ГИС данных к карте" + +#: ../../godmode/menu.php:362 ../../godmode/setup/os.php:188 +msgid "Edit OS" +msgstr "Редактировать OS" + +#: ../../godmode/menu.php:373 +msgid "Admin tools" +msgstr "Инструменты администрирования" + +#: ../../godmode/menu.php:381 +msgid "System audit log" +msgstr "Журнал системного аудита" + +#: ../../godmode/menu.php:385 +msgid "Diagnostic info" +msgstr "Диагностическая информация" + +#: ../../godmode/menu.php:390 +msgid "Site news" +msgstr "Новости сайта" + +#: ../../godmode/menu.php:396 +msgid "DB Schema Check" +msgstr "Проверка схемы БД" + +#: ../../godmode/menu.php:399 +msgid "DB Interface" +msgstr "Интерфейс БД" + +#: ../../godmode/menu.php:485 +msgid "Extension manager view" +msgstr "Просмотр менеджера расширений" + +#: ../../godmode/menu.php:489 +msgid "Extension manager" +msgstr "Менеджер расширений" + +#: ../../godmode/menu.php:520 +msgid "Update manager" +msgstr "Управление обновлением" + +#: ../../godmode/menu.php:526 +msgid "Update Manager offline" +msgstr "Менеджер обновлений оффлайн" + +#: ../../godmode/menu.php:530 +msgid "Update Manager online" +msgstr "Менеджер обновлений онлайн" + +#: ../../godmode/menu.php:532 +msgid "Update Manager options" +msgstr "Опции менеджера обновлений" + +#: ../../godmode/menu.php:540 +msgid "Module library" +msgstr "Библиотека модулей" + +#: ../../godmode/menu.php:548 +#: ../../godmode/module_library/module_library_view.php:51 +#: ../../godmode/module_library/module_library_view.php:86 +msgid "Categories" +msgstr "Категории" + +#: ../../godmode/gis_maps/configure_gis_map.php:151 +msgid "Map successfully created" +msgstr "Карта успешно создана" + +#: ../../godmode/gis_maps/configure_gis_map.php:152 +msgid "Map could not be created" +msgstr "Карта не может быть создана" + +#: ../../godmode/gis_maps/configure_gis_map.php:254 +msgid "Map successfully update" +msgstr "Карта успешно обновлена" + +#: ../../godmode/gis_maps/configure_gis_map.php:255 +msgid "Map could not be updated" +msgstr "Не удалось обновить карту" + +#: ../../godmode/gis_maps/configure_gis_map.php:271 +#: ../../operation/gis_maps/gis_map.php:30 +msgid "GIS Maps list" +msgstr "Список GIS-карт" + +#: ../../godmode/gis_maps/configure_gis_map.php:283 +msgid "View GIS" +msgstr "Просмотр GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:291 +msgid "GIS Maps builder" +msgstr "Разработчик GIS карт" + +#: ../../godmode/gis_maps/configure_gis_map.php:340 +msgid "Do you want to use the default data from the connection?" +msgstr "Вы хотите использовать данные по умолчанию из соединения?" + +#: ../../godmode/gis_maps/configure_gis_map.php:374 +msgid "The connection" +msgstr "Соединение" + +#: ../../godmode/gis_maps/configure_gis_map.php:374 +msgid "just added previously." +msgstr "только что были добавлены." + +#: ../../godmode/gis_maps/configure_gis_map.php:437 +msgid "Map Name" +msgstr "Название карты" + +#: ../../godmode/gis_maps/configure_gis_map.php:456 +msgid "Add Map connection" +msgstr "Добавить Карта соединения" + +#: ../../godmode/gis_maps/configure_gis_map.php:506 +msgid "Default zoom" +msgstr "Масштаб по умолчанию" + +#: ../../godmode/gis_maps/configure_gis_map.php:509 +msgid "Center Latitude" +msgstr "Центр широты" + +#: ../../godmode/gis_maps/configure_gis_map.php:512 +msgid "Center Longitude" +msgstr "Центр Долгота" + +#: ../../godmode/gis_maps/configure_gis_map.php:515 +msgid "Center Altitude" +msgstr "Центр высоты" + +#: ../../godmode/gis_maps/configure_gis_map.php:518 +msgid "Default Latitude" +msgstr "Широта по умолчанию" + +#: ../../godmode/gis_maps/configure_gis_map.php:521 +msgid "Default Longitude" +msgstr "Долгота по умолчанию" + +#: ../../godmode/gis_maps/configure_gis_map.php:524 +msgid "Default Altitude" +msgstr "Высота по умолчанию" + +#: ../../godmode/gis_maps/configure_gis_map.php:529 +#: ../../godmode/setup/gis_step_2.php:357 +msgid "Layers" +msgstr "Уровни" + +#: ../../godmode/gis_maps/configure_gis_map.php:538 +msgid "List of layers" +msgstr "Список уровней" + +#: ../../godmode/gis_maps/configure_gis_map.php:539 +msgid "New layer" +msgstr "Новый уровень" + +#: ../../godmode/gis_maps/configure_gis_map.php:545 +msgid "Layer name" +msgstr "Имя уровня" + +#: ../../godmode/gis_maps/configure_gis_map.php:547 +msgid "Visible" +msgstr "Видимый" + +#: ../../godmode/gis_maps/configure_gis_map.php:551 +msgid "Show agents from group" +msgstr "Показать агенты группы" + +#: ../../godmode/gis_maps/configure_gis_map.php:563 +msgid "Add agent" +msgstr "Добавить агента" + +#: ../../godmode/gis_maps/configure_gis_map.php:582 +msgid "List of Agents to be shown in the layer" +msgstr "Список агентов будет показан на уровне" + +#: ../../godmode/gis_maps/configure_gis_map.php:611 +msgid "Use the data of this agent" +msgstr "Используйте данные этого агента" + +#: ../../godmode/gis_maps/configure_gis_map.php:619 +msgid "List of groups to be shown in the layer" +msgstr "Список групп, которые должны быть показаны в слое" + +#: ../../godmode/gis_maps/configure_gis_map.php:626 +msgid "Save Layer" +msgstr "Сохранить уровень" + +#: ../../godmode/gis_maps/configure_gis_map.php:642 +#: ../../godmode/gis_maps/configure_gis_map.php:649 +msgid "Save map" +msgstr "Сохранить карту" + +#: ../../godmode/gis_maps/configure_gis_map.php:644 +msgid "Update map" +msgstr "Обновить карту" + +#: ../../godmode/gis_maps/configure_gis_map.php:1027 +msgid "Using data from" +msgstr "Используя данные из" + +#: ../../godmode/gis_maps/configure_gis_map.php:1185 +msgid "Empty layer names are not supported" +msgstr "Пустые имена слоев не поддерживаются" + +#: ../../godmode/massive/massive_copy_modules.php:192 +msgid "Copy alerts" +msgstr "Копировать оповещения" + +#: ../../godmode/massive/massive_copy_modules.php:195 +#: ../../godmode/massive/massive_delete_modules.php:453 +#: ../../godmode/massive/massive_edit_modules.php:408 +msgid "Filter Modules" +msgstr "Фильтровать Модули" + +#: ../../godmode/massive/massive_copy_modules.php:229 +msgid "No alerts for this agent" +msgstr "Нет оповещений для этого агента" + +#: ../../godmode/massive/massive_copy_modules.php:291 +#: ../../godmode/massive/massive_delete_modules.php:525 +msgid "Filter Agents" +msgstr "Фильтровать Агентов" + +#: ../../godmode/massive/massive_copy_modules.php:308 +msgid "To agent(s)" +msgstr "К агенту(ам)" + +#: ../../godmode/massive/massive_copy_modules.php:557 +msgid "No operation selected" +msgstr "Нет выбранной операции" + +#: ../../godmode/massive/massive_copy_modules.php:567 +#: ../../include/functions_agents.php:794 +msgid "No destiny agent(s) to copy" +msgstr "Нет предназначенного агента(ов) для копирования" + +#: ../../godmode/massive/massive_operations.php:53 +msgid "Bulk alert add" +msgstr "Добавление массового оповещения" + +#: ../../godmode/massive/massive_operations.php:54 +msgid "Bulk alert delete" +msgstr "Добавить массовое предупреждение" + +#: ../../godmode/massive/massive_operations.php:55 +msgid "Bulk alert actions add" +msgstr "Добавить массовые действия по предупреждению" + +#: ../../godmode/massive/massive_operations.php:56 +msgid "Bulk alert actions delete" +msgstr "Удалить массовые действия по предупреждению" + +#: ../../godmode/massive/massive_operations.php:57 +msgid "Bulk alert enable/disable" +msgstr "Включение/выключение массового предупреждения" + +#: ../../godmode/massive/massive_operations.php:58 +msgid "Bulk alert setting standby" +msgstr "Конфигурация массовых предупреждений в режиме ожидания" + +#: ../../godmode/massive/massive_operations.php:62 +msgid "Bulk agent edit" +msgstr "Массовое редактирование агентов" + +#: ../../godmode/massive/massive_operations.php:63 +msgid "Bulk agent delete" +msgstr "Массовое удаление агентов" + +#: ../../godmode/massive/massive_operations.php:68 +msgid "Bulk profile add" +msgstr "Массовое добавление профилей" + +#: ../../godmode/massive/massive_operations.php:69 +msgid "Bulk profile delete" +msgstr "Массовое удаление профилей" + +#: ../../godmode/massive/massive_operations.php:76 +msgid "Bulk module edit" +msgstr "Массовое редактирование модуля" + +#: ../../godmode/massive/massive_operations.php:77 +msgid "Bulk module copy" +msgstr "Массовое копирование модуля" + +#: ../../godmode/massive/massive_operations.php:78 +msgid "Bulk module delete" +msgstr "Массовое удаление модуля" + +#: ../../godmode/massive/massive_operations.php:82 +msgid "Bulk plugin edit" +msgstr "Массовое редактирование плагина" + +#: ../../godmode/massive/massive_operations.php:379 +#, php-format msgid "" -"If Enterprise ACL System is enabled without rules you will lose access to " -"Pandora FMS Console (even admin). Do you want to continue?" +"No changes have been made because they exceed the maximum allowed (%d). Make " +"fewer changes or contact the administrator." msgstr "" -"Если предприятие системы ACL включено без правил, вы потеряете доступ к " -"консоли Pandora FMS (даже администратор). Вы хотите продолжить?" +"Изменения не были внесены, поскольку они превышают максимально допустимое " +"значение (%d). Внесите меньше изменений или обратитесь к администратору." -#: ../../godmode/setup/license.php:27 -msgid "License management" -msgstr "" +#: ../../godmode/massive/massive_operations.php:417 +msgid "The blank fields will not be updated" +msgstr "Пустые поля не будет обновляться" -#: ../../godmode/setup/performance.php:47 +#: ../../godmode/massive/massive_standby_alerts.php:199 +msgid "Not standby alerts" +msgstr "Нет оповещений в режиме ожидания" + +#: ../../godmode/massive/massive_standby_alerts.php:228 +#: ../../godmode/massive/massive_standby_alerts.php:232 +msgid "Set standby selected alerts" +msgstr "Установить режим ожидания для выбранных оповещений" + +#: ../../godmode/massive/massive_standby_alerts.php:234 +msgid "Standby alerts" +msgstr "Оповещения в режиме ожидания" + +#: ../../godmode/massive/massive_delete_action_alerts.php:75 +msgid "Could not be deleted. No agents selected" +msgstr "Не может быть удалено. Нет выбранных агентов" + +#: ../../godmode/massive/massive_delete_action_alerts.php:122 +msgid "Could not be deleted. No alerts selected" +msgstr "Не может быть удалено. Нет выбранных оповещений" + +#: ../../godmode/massive/massive_delete_action_alerts.php:169 +msgid "Could not be deleted. No action selected" +msgstr "Не может быть удалено. Нет выбранных действий" + +#: ../../godmode/massive/massive_delete_action_alerts.php:218 +#: ../../godmode/massive/massive_add_action_alerts.php:206 +msgid "Agents with templates" +msgstr "Агенты с шаблонами" + +#: ../../godmode/massive/massive_delete_action_alerts.php:227 +#: ../../godmode/massive/massive_add_action_alerts.php:212 +#: ../../godmode/alerts/alert_templates.php:136 +#: ../../godmode/alerts/alert_templates.php:188 +#: ../../godmode/alerts/alert_templates.php:211 +#: ../../godmode/alerts/alert_templates.php:232 +msgid "Alert templates" +msgstr "Шаблоны оповещений" + +#: ../../godmode/massive/massive_delete_action_alerts.php:235 +#: ../../godmode/massive/massive_delete_modules.php:552 +#: ../../godmode/massive/massive_add_action_alerts.php:220 +#: ../../godmode/massive/massive_edit_modules.php:518 +msgid "Show unknown and not init modules" +msgstr "Показать неизвестные и не инициированные модули" + +#: ../../godmode/massive/massive_delete_modules.php:82 +msgid "No module selected" +msgstr "Модуль не выбран" + +#: ../../godmode/massive/massive_delete_modules.php:156 msgid "" -"If the compaction or purge of the data is more frequent than the events " -"deletion, anomalies in module graphs could appear" -msgstr "" +"There was an error deleting the modules, the operation has been cancelled" +msgstr "Найдена ошибка при удалении модулей, операция была отменена" -#: ../../godmode/setup/performance.php:62 -msgid "" -"Configure a purge period more frequent than a compact data period has no " -"sense" -msgstr "" +#: ../../godmode/massive/massive_delete_modules.php:313 +#: ../../godmode/massive/massive_edit_modules.php:292 +msgid "Selection mode" +msgstr "Режим выбора" -#: ../../godmode/setup/performance.php:80 -msgid "Data will be compacted in intervals of the specified length." -msgstr "Данные будут сжаты в интервалы определенной длины." +#: ../../godmode/massive/massive_delete_modules.php:314 +#: ../../godmode/massive/massive_edit_modules.php:293 +msgid "Select modules first " +msgstr "Сначала выберите модули " -#: ../../godmode/setup/performance.php:87 -msgid "Last day" -msgstr "Последний день" +#: ../../godmode/massive/massive_delete_modules.php:315 +#: ../../godmode/massive/massive_edit_modules.php:294 +msgid "Select agents first " +msgstr "Сначала выберите агентов " -#: ../../godmode/setup/performance.php:89 -msgid "10 days" -msgstr "10 дней" +#: ../../godmode/massive/massive_delete_modules.php:338 +#: ../../godmode/massive/massive_edit_modules.php:313 +msgid "Select all modules of this type" +msgstr "Выбрать все модули данного типа" -#: ../../godmode/setup/performance.php:91 -msgid "2 weeks" -msgstr "2 недели" +#: ../../godmode/massive/massive_delete_modules.php:382 +#: ../../godmode/massive/massive_edit_modules.php:359 +msgid "Select all modules of this group" +msgstr "Выбрать все модули этой группы" -#: ../../godmode/setup/performance.php:101 -msgid "" -"If realtime statistics are disabled, statistics interval resfresh will be " -"set here." -msgstr "" -"Если статистик реального времени отключена, статистика интервала " -"перезагрузки будет установлен здесь." +#: ../../godmode/massive/massive_delete_modules.php:431 +#: ../../godmode/massive/massive_edit_modules.php:370 +#: ../../godmode/events/custom_events.php:115 +#: ../../include/functions_events.php:293 +#: ../../operation/events/events.build_table.php:340 +msgid "Module Status" +msgstr "Статус Модуля" -#: ../../godmode/setup/performance.php:108 -msgid "" -"This number is the maximum number of files in attachment directory. If this " -"number is reached then a warning message will appear in the header " -"notification space." -msgstr "" -"Это число показывает максимальным количество файлов в приложении каталога. " -"Если это число будет достигнуто, то появится предупреждающее сообщение в " -"заголовке для уведомления." +#: ../../godmode/massive/massive_delete_modules.php:472 +#: ../../godmode/massive/massive_edit_modules.php:424 +msgid "Select all modules" +msgstr "Выберите все модули" -#: ../../godmode/setup/performance.php:117 -msgid "Database maintenance options" -msgstr "Варианты обслуживания базы данных" +#: ../../godmode/massive/massive_delete_modules.php:474 +#: ../../godmode/massive/massive_edit_modules.php:426 +msgid "When select modules" +msgstr "При выборе модулей" -#: ../../godmode/setup/setup_auth.php:57 -msgid "Local Pandora FMS" -msgstr "Местное Pandora FMS" +#: ../../godmode/massive/massive_delete_modules.php:478 +#: ../../godmode/massive/massive_edit_modules.php:430 +msgid "Show common agents" +msgstr "Показать общие агенты" -#: ../../godmode/setup/setup_auth.php:57 -msgid "ldap" -msgstr "ldap" +#: ../../godmode/massive/massive_delete_modules.php:479 +#: ../../godmode/massive/massive_edit_modules.php:431 +msgid "Show all agents" +msgstr "Показать все агенты" -#: ../../godmode/setup/setup_auth.php:69 -msgid "" -"Enable this option if you want to fallback to local authentication when " -"remote (ldap etc...) authentication failed." -msgstr "" +#: ../../godmode/massive/massive_delete_modules.php:544 +#: ../../godmode/massive/massive_edit_modules.php:510 +msgid "Select all agents" +msgstr "Выберите всех агентов" -#: ../../godmode/setup/setup_auth.php:202 -msgid "" -"If this option is enabled, the users can use double authentication with " -"their accounts" -msgstr "" +#: ../../godmode/massive/massive_delete_modules.php:590 +#: ../../godmode/massive/massive_edit_modules.php:1204 +msgid "Please, select an agent first" +msgstr "Пожалуйста, сначала выберите агента" -#: ../../godmode/setup/setup_auth.php:214 -msgid "Session timeout (mins)" -msgstr "" +#: ../../godmode/massive/massive_add_alerts.php:105 +#: ../../godmode/massive/massive_delete_alerts.php:108 +msgid "No alert selected" +msgstr "Оповещения не выбраны" -#: ../../godmode/setup/setup_auth.php:215 -msgid "This is defined in minutes" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:75 -msgid "This interval will affect to Visual Console pages" -msgstr "Этот интервал будет влиять на страницы Визуальной Консоли" - -#: ../../godmode/setup/setup_visuals.php:79 -msgid "Paginated module view" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:103 -msgid "Behaviour configuration" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:123 -msgid "Colors" -msgstr "Цвета" - -#: ../../godmode/setup/setup_visuals.php:124 -msgid "Faces" -msgstr "Стороны" - -#: ../../godmode/setup/setup_visuals.php:125 -msgid "Colors and text" -msgstr "Цвета и текст" - -#: ../../godmode/setup/setup_visuals.php:133 -msgid "You can place your custom images into the folder images/backgrounds/" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:175 -msgid "Style configuration" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:190 -msgid "" -"This enabling this, you get a label with agent name in GIS maps. If you have " -"lots of agents in the map, will be unreadable. Disabled by default." -msgstr "" -"Это включение этого, вы получаете метку с именем агента в картах ГИС. Если у " -"вас есть много агентов в карте, то будет нечитаемо. Отключается по умолчанию." - -#: ../../godmode/setup/setup_visuals.php:202 -msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" -msgstr "" -"Значок агент для карт ГИС. Если установлено значение \"Нет\", значок группы " -"будет использоваться" - -#: ../../godmode/setup/setup_visuals.php:211 -msgid "GIS configuration" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:256 -msgid "" -"When the agent name have a lot of characters, in some places in Pandora " -"Console it is necesary truncate to N characters." -msgstr "" -"Когда в имени агента есть много символов, в некоторых местах в Консоли " -"Pandora необходимо сократить N символы." - -#: ../../godmode/setup/setup_visuals.php:257 -#: ../../godmode/setup/setup_visuals.php:265 -msgid "Small:" -msgstr "Маленький:" - -#: ../../godmode/setup/setup_visuals.php:259 -#: ../../godmode/setup/setup_visuals.php:267 -msgid "Normal:" -msgstr "Нормальный:" - -#: ../../godmode/setup/setup_visuals.php:264 -msgid "" -"When the module name have a lot of characters, in some places in Pandora " -"Console it is necesary truncate to N characters." -msgstr "" -"Когда в имени модуля есть много символов, в некоторых местах в Консоли " -"Pandora необходимо сократить N символы." - -#: ../../godmode/setup/setup_visuals.php:271 -msgid "" -"When the description name have a lot of characters, in some places in " -"Pandora Console it is necesary truncate to N characters." -msgstr "" -"Когда в имени описания есть много символов, в некоторых местах в Консоли " -"Pandora необходимо сократить N символы." - -#: ../../godmode/setup/setup_visuals.php:276 -msgid "" -"When the item title name have a lot of characters, in some places in Pandora " -"Console it is necesary truncate to N characters." -msgstr "" -"Когда в имени артикла названия есть много символов, в некоторых местах в " -"консоли Pandora необходимо сократить число N символов." - -#: ../../godmode/setup/setup_visuals.php:282 -msgid "Font and Text configuration" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:336 -msgid "Graph resolution (1-low, 5-high)" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:365 -msgid "The data number of the module graphs will be rounded and shortened" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:375 -msgid "Type of module charts" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:385 -msgid "Charts configuration" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:400 -msgid "" -"This interval will affect to the lines between elements on the Visual Console" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:498 -msgid "Show QR Code icon in the header" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:510 -msgid "Custom directory where the graphviz binaries are stored." -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:563 -msgid "Custom values post process" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:577 -msgid "Delete custom values" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:597 -msgid "Interval values" -msgstr "интервал значений" - -#: ../../godmode/setup/setup_visuals.php:622 -msgid "Other configuration" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:803 -msgid "Logo preview" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:843 -msgid "Background preview" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:887 -msgid "Gis icons preview" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:942 -msgid "Status set preview" -msgstr "" - -#: ../../godmode/setup/gis.php:62 -msgid "Map connection name" -msgstr "Имя карты соединения" - -#: ../../godmode/setup/gis.php:83 -msgid "Do you wan delete this connection?" -msgstr "Удалить это подключение?" - -#: ../../godmode/massive/massive_delete_agents.php:57 +#: ../../godmode/massive/massive_delete_agents.php:75 #, php-format msgid "" "There was an error deleting the agent, the operation has been cancelled " @@ -30157,529 +33277,2064 @@ msgstr "" "Найдена ошибка при удалении агента, операция была отменена Не удается " "удалить агент %s" -#: ../../godmode/massive/massive_delete_agents.php:63 +#: ../../godmode/massive/massive_delete_agents.php:85 #, php-format msgid "Successfully deleted (%s)" msgstr "Успешно удалено (%s)" -#: ../../godmode/massive/massive_delete_agents.php:108 -#: ../../godmode/massive/massive_delete_alerts.php:215 -#: ../../godmode/massive/massive_standby_alerts.php:139 -#: ../../godmode/massive/massive_delete_modules.php:441 -#: ../../godmode/massive/massive_copy_modules.php:74 -#: ../../godmode/massive/massive_copy_modules.php:185 -#: ../../godmode/massive/massive_add_alerts.php:154 -#: ../../godmode/massive/massive_edit_agents.php:208 -#: ../../godmode/massive/massive_add_action_alerts.php:139 -#: ../../godmode/massive/massive_edit_modules.php:284 -#: ../../godmode/massive/massive_delete_action_alerts.php:141 -#: ../../godmode/massive/massive_enable_disable_alerts.php:138 -msgid "Group recursion" -msgstr "Группа рекурсии" +#: ../../godmode/massive/massive_delete_agents.php:168 +#: ../../godmode/massive/massive_edit_agents.php:459 +msgid "Show agents" +msgstr "Показать агентов" -#: ../../godmode/massive/massive_delete_agents.php:159 -#: ../../godmode/massive/massive_delete_alerts.php:265 -#: ../../godmode/massive/massive_delete_modules.php:710 -#: ../../godmode/massive/massive_copy_modules.php:424 -#: ../../godmode/massive/massive_add_alerts.php:213 -#: ../../godmode/massive/massive_edit_agents.php:480 -#: ../../godmode/massive/massive_add_action_alerts.php:204 -#: ../../godmode/massive/massive_edit_modules.php:622 -msgid "" -"Unsucessful sending the data, please contact with your administrator or make " -"with less elements." -msgstr "" - -#: ../../godmode/massive/massive_delete_alerts.php:78 -#: ../../godmode/massive/massive_add_alerts.php:78 -msgid "No alert selected" -msgstr "Оповещения не выбраны" - -#: ../../godmode/massive/massive_standby_alerts.php:154 -msgid "Not standby alerts" -msgstr "Нет оповещений в режиме ожидания" - -#: ../../godmode/massive/massive_standby_alerts.php:165 -#: ../../godmode/massive/massive_standby_alerts.php:169 -msgid "Set standby selected alerts" -msgstr "Установить режим ожидания для выбранных оповещений" - -#: ../../godmode/massive/massive_standby_alerts.php:171 -msgid "Standby alerts" -msgstr "Оповещения в режиме ожидания" - -#: ../../godmode/massive/massive_delete_modules.php:56 -msgid "No module selected" -msgstr "Модуль не выбран" - -#: ../../godmode/massive/massive_delete_modules.php:230 -msgid "" -"There was an error deleting the modules, the operation has been cancelled" -msgstr "Найдена ошибка при удалении модулей, операция была отменена" - -#: ../../godmode/massive/massive_delete_modules.php:396 -#: ../../godmode/massive/massive_edit_modules.php:238 -msgid "Selection mode" -msgstr "Режим выбора" - -#: ../../godmode/massive/massive_delete_modules.php:397 -#: ../../godmode/massive/massive_edit_modules.php:239 -msgid "Select modules first" -msgstr "Выберите сначала модули" - -#: ../../godmode/massive/massive_delete_modules.php:399 -#: ../../godmode/massive/massive_edit_modules.php:241 -msgid "Select agents first" -msgstr "Выберите сначала агентов" - -#: ../../godmode/massive/massive_delete_modules.php:414 -#: ../../godmode/massive/massive_edit_modules.php:257 -msgid "Select all modules of this type" -msgstr "Выбрать все модули данного типа" - -#: ../../godmode/massive/massive_delete_modules.php:443 -#: ../../godmode/massive/massive_edit_modules.php:286 -msgid "Select all modules of this group" -msgstr "Выбрать все модули этой группы" - -#: ../../godmode/massive/massive_delete_modules.php:471 -#: ../../godmode/massive/massive_edit_modules.php:297 -msgid "When select modules" -msgstr "При выборе модулей" - -#: ../../godmode/massive/massive_delete_modules.php:474 -#: ../../godmode/massive/massive_edit_modules.php:300 -msgid "Show common agents" -msgstr "Показать общие агенты" - -#: ../../godmode/massive/massive_delete_modules.php:475 -#: ../../godmode/massive/massive_edit_modules.php:301 -msgid "Show all agents" -msgstr "Показать все агенты" - -#: ../../godmode/massive/massive_copy_modules.php:141 -msgid "Copy alerts" -msgstr "Копировать оповещения" - -#: ../../godmode/massive/massive_copy_modules.php:150 -msgid "No modules for this agent" -msgstr "Нет модулей для этого агента" - -#: ../../godmode/massive/massive_copy_modules.php:159 -msgid "No alerts for this agent" -msgstr "Нет оповещений для этого агента" - -#: ../../godmode/massive/massive_copy_modules.php:217 -msgid "To agent(s)" -msgstr "К агенту(ам)" - -#: ../../godmode/massive/massive_copy_modules.php:442 -msgid "No operation selected" -msgstr "Нет выбранной операции" - -#: ../../godmode/massive/massive_delete_profiles.php:61 -msgid "Not deleted. You must select an existing user" -msgstr "Не удалено. Вы должны выбрать существующего пользователя" - -#: ../../godmode/massive/massive_delete_profiles.php:87 -msgid "Profiles deleted successfully" -msgstr "Профили удалены успешно" - -#: ../../godmode/massive/massive_delete_profiles.php:88 -msgid "Profiles cannot be deleted" -msgstr "Профили не могут быть удалены" - -#: ../../godmode/massive/massive_edit_plugins.php:151 +#: ../../godmode/massive/massive_edit_plugins.php:177 msgid "Error retrieving the plugin macros" -msgstr "" +msgstr "Ошибка при извлечении макросов плагина" -#: ../../godmode/massive/massive_edit_plugins.php:158 +#: ../../godmode/massive/massive_edit_plugins.php:185 msgid "Error retrieving the modified macros" -msgstr "" +msgstr "Ошибка при извлечении измененных макросов" -#: ../../godmode/massive/massive_edit_plugins.php:172 +#: ../../godmode/massive/massive_edit_plugins.php:208 msgid "Error retrieving the module plugin macros" -msgstr "" +msgstr "Ошибка при извлечении макросов плагина модуля" -#: ../../godmode/massive/massive_edit_plugins.php:190 +#: ../../godmode/massive/massive_edit_plugins.php:226 msgid "Error retrieving the module plugin macros data" -msgstr "" +msgstr "Ошибка при извлечении данных макросов плагина модуля" -#: ../../godmode/massive/massive_edit_plugins.php:224 +#: ../../godmode/massive/massive_edit_plugins.php:264 msgid "Error building the new macros" -msgstr "" +msgstr "Ошибка при создании новых макросов" -#: ../../godmode/massive/massive_edit_plugins.php:253 +#: ../../godmode/massive/massive_edit_plugins.php:293 #, php-format msgid "%d modules updated" -msgstr "" +msgstr "Обновлено %d модулей" -#: ../../godmode/massive/massive_edit_plugins.php:272 +#: ../../godmode/massive/massive_edit_plugins.php:314 msgid "There are not registered plugins" -msgstr "" +msgstr "Нет зарегистрированных плагинов" -#: ../../godmode/massive/massive_edit_plugins.php:421 +#: ../../godmode/massive/massive_edit_plugins.php:459 msgid "Invalid plugin data" -msgstr "" +msgstr "Неверные данные плагина" -#: ../../godmode/massive/massive_edit_plugins.php:528 +#: ../../godmode/massive/massive_edit_plugins.php:566 msgid "Clear" -msgstr "" +msgstr "Очистить" -#: ../../godmode/massive/massive_edit_plugins.php:556 +#: ../../godmode/massive/massive_edit_plugins.php:594 msgid "Invalid macros array" -msgstr "" +msgstr "Макроматрица Недопустима" -#: ../../godmode/massive/massive_edit_plugins.php:581 +#: ../../godmode/massive/massive_edit_plugins.php:619 msgid "Multiple values" -msgstr "" +msgstr "Множественные значения" -#: ../../godmode/massive/massive_edit_plugins.php:613 -#: ../../godmode/massive/massive_edit_plugins.php:750 -#: ../../godmode/massive/massive_edit_plugins.php:766 +#: ../../godmode/massive/massive_edit_plugins.php:651 +#: ../../godmode/massive/massive_edit_plugins.php:787 +#: ../../godmode/massive/massive_edit_plugins.php:803 msgid "Invalid agents array" -msgstr "" +msgstr "Матрица агентов недопустима" -#: ../../godmode/massive/massive_edit_plugins.php:629 +#: ../../godmode/massive/massive_edit_plugins.php:667 msgid "Invalid agent element" -msgstr "" +msgstr "Элемент агентов недопустим" -#: ../../godmode/massive/massive_edit_plugins.php:640 +#: ../../godmode/massive/massive_edit_plugins.php:678 msgid "Invalid modules array" -msgstr "" +msgstr "Матрица модулей недопустима" -#: ../../godmode/massive/massive_edit_plugins.php:668 +#: ../../godmode/massive/massive_edit_plugins.php:706 msgid "Invalid module element" -msgstr "" +msgstr "Элемент модуля недопустим" -#: ../../godmode/massive/massive_edit_plugins.php:876 +#: ../../godmode/massive/massive_edit_plugins.php:915 msgid "There are no modules using this plugin" -msgstr "" +msgstr "Нет модулей, использующих этот плагин" -#: ../../godmode/massive/massive_edit_plugins.php:955 +#: ../../godmode/massive/massive_edit_plugins.php:1000 msgid "There was a problem loading the module plugin macros data" -msgstr "" +msgstr "Возникла проблема с загрузкой данных макросов плагина модуля" -#: ../../godmode/massive/massive_add_tags.php:43 -msgid "No tags selected" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:95 -msgid "No values changed" -msgstr "Значения не изменены" - -#: ../../godmode/massive/massive_edit_agents.php:124 -msgid "Configuration files deleted successfully" -msgstr "Конфигурационные файлы успешно удалены" - -#: ../../godmode/massive/massive_edit_agents.php:125 -msgid "Configuration files cannot be deleted" -msgstr "Конфигурационные файлы не могут быть удалены" - -#: ../../godmode/massive/massive_edit_agents.php:183 -msgid "Agents updated successfully" -msgstr "Агенты успешно обновлены" - -#: ../../godmode/massive/massive_edit_agents.php:184 -msgid "Agents cannot be updated" -msgstr "Агенты не могут быть обновлены" - -#: ../../godmode/massive/massive_edit_agents.php:352 -msgid "Delete available remote configurations" -msgstr "Удалить свободные дистанционные конфигурации" - -#: ../../godmode/massive/massive_edit_agents.php:384 -msgid "Without status" -msgstr "Без статуса" - -#: ../../godmode/massive/massive_delete_tags.php:107 -msgid "No tag selected" -msgstr "" - -#: ../../godmode/massive/massive_add_profiles.php:72 -msgid "Profiles added successfully" -msgstr "Профили успешно добавлены" - -#: ../../godmode/massive/massive_add_profiles.php:73 -msgid "Profiles cannot be added" -msgstr "Профили не могут быть добавлены" - -#: ../../godmode/massive/massive_add_action_alerts.php:85 -msgid "No alerts selected" -msgstr "Нет выбранных оповещений" - -#: ../../godmode/massive/massive_add_action_alerts.php:105 -msgid "No action selected" -msgstr "Нет выбранного действия" - -#: ../../godmode/massive/massive_add_action_alerts.php:142 -#: ../../godmode/massive/massive_delete_action_alerts.php:145 -msgid "Agents with templates" -msgstr "Агенты с шаблонами" - -#: ../../godmode/massive/massive_edit_modules.php:456 -msgid "SMNP community" -msgstr "SMNP сообщество" - -#: ../../godmode/massive/massive_edit_modules.php:540 -msgid "Policy linking status" -msgstr "Политика соединения статуса" - -#: ../../godmode/massive/massive_edit_modules.php:540 -msgid "This field only has sense in modules adopted by a policy." -msgstr "Это поле имеет смысл только в модулях принятой политики." - -#: ../../godmode/massive/massive_edit_modules.php:541 -msgid "Linked" -msgstr "Связано" - -#: ../../godmode/massive/massive_edit_modules.php:571 -msgid "The module still store data but the alerts and events will be stop" -msgstr "" -"Модуль по-прежнему хранит данные, но оповещения и события будут остановлены" - -#: ../../godmode/massive/massive_operations.php:36 -msgid "Bulk alert add" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:37 -msgid "Bulk alert delete" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:38 -msgid "Bulk alert actions add" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:39 -msgid "Bulk alert actions delete" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:40 -msgid "Bulk alert enable/disable" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:41 -msgid "Bulk alert setting standby" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:44 -msgid "Bulk agent edit" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:45 -msgid "Bulk agent delete" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:49 -msgid "Bulk profile add" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:50 -msgid "Bulk profile delete" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:57 -msgid "Bulk module delete" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:58 -msgid "Bulk module edit" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:59 -msgid "Bulk module copy" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:62 -msgid "Bulk plugin edit" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:231 -msgid "Please wait..." -msgstr "Пожалуйста, подождите..." - -#: ../../godmode/massive/massive_operations.php:268 -msgid "The blank fields will not be updated" -msgstr "Пустые поля не будет обновляться" - -#: ../../godmode/massive/massive_delete_action_alerts.php:56 -msgid "Could not be deleted. No agents selected" -msgstr "Не может быть удалено. Нет выбранных агентов" - -#: ../../godmode/massive/massive_delete_action_alerts.php:72 -msgid "Could not be deleted. No alerts selected" -msgstr "Не может быть удалено. Нет выбранных оповещений" - -#: ../../godmode/massive/massive_delete_action_alerts.php:111 -msgid "Could not be deleted. No action selected" -msgstr "Не может быть удалено. Нет выбранных действий" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:154 +#: ../../godmode/massive/massive_enable_disable_alerts.php:187 msgid "Enabled alerts" msgstr "Включенные оповещения" -#: ../../godmode/massive/massive_enable_disable_alerts.php:165 +#: ../../godmode/massive/massive_enable_disable_alerts.php:216 msgid "Disable selected alerts" msgstr "Выключить выбранные оповещения" -#: ../../godmode/massive/massive_enable_disable_alerts.php:169 +#: ../../godmode/massive/massive_enable_disable_alerts.php:220 msgid "Enable selected alerts" msgstr "Включить выбранные оповещения" -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 +#: ../../godmode/massive/massive_enable_disable_alerts.php:222 msgid "Disabled alerts" msgstr "Отключенные оповещения" -#: ../../godmode/modules/manage_nc_groups.php:40 -msgid "Component group management" -msgstr "управление группой компонентов" +#: ../../godmode/massive/massive_edit_agents.php:155 +msgid "No values changed" +msgstr "Значения не изменены" -#: ../../godmode/modules/manage_nc_groups.php:58 -msgid "Could not be created. Blank name" -msgstr "Не может быть создано. Имя не заполнено" +#: ../../godmode/massive/massive_edit_agents.php:200 +msgid "Configuration files deleted successfully" +msgstr "Конфигурационные файлы успешно удалены" -#: ../../godmode/modules/manage_nc_groups.php:237 -msgid "There are no defined component groups" -msgstr "Здесь нет определенных компонентов группы" +#: ../../godmode/massive/massive_edit_agents.php:201 +msgid "Configuration files cannot be deleted" +msgstr "Конфигурационные файлы не могут быть удалены" -#: ../../godmode/modules/manage_network_components.php:42 -msgid "Network component management" -msgstr "Управление сетевыми компонентами" +#: ../../godmode/massive/massive_edit_agents.php:396 +#, php-format +msgid "Agents updated successfully (%d)" +msgstr "Агенты успешно обновлены (%d)" -#: ../../godmode/modules/manage_network_components.php:492 -msgid "Search by name, description, tcp send or tcp rcv, list matches." +#: ../../godmode/massive/massive_edit_agents.php:397 +msgid "Agents cannot be updated (maybe there was no field to update)" msgstr "" +"Агенты не могут быть обновлены (возможно, не было поля для обновления)" -#: ../../godmode/modules/manage_network_components.php:544 -msgid "Max/Min" -msgstr "Макс/Мин" - -#: ../../godmode/modules/manage_network_components.php:570 -msgid "Network module" -msgstr "Сетевые модули" - -#: ../../godmode/modules/manage_network_components.php:574 -msgid "WMI module" -msgstr "WMI Модуль" - -#: ../../godmode/modules/manage_network_components.php:578 -msgid "Plug-in module" -msgstr "Сменный модуль" - -#: ../../godmode/modules/manage_network_components.php:609 -msgid "There are no defined network components" -msgstr "Здесь нет определенных сетевых компонентов" - -#: ../../godmode/modules/manage_network_components.php:616 -msgid "Create a new network component" -msgstr "Создать новый сетевой комтонент" - -#: ../../godmode/modules/manage_network_components.php:617 -msgid "Create a new plugin component" -msgstr "Создать новый сменный компонент" - -#: ../../godmode/modules/manage_network_components.php:618 -msgid "Create a new WMI component" -msgstr "Создать новый WMI компонент" - -#: ../../godmode/modules/manage_network_templates.php:30 -#: ../../godmode/modules/manage_network_templates_form.php:32 -msgid "Module template management" -msgstr "Управление шаблоном модуля" - -#: ../../godmode/modules/manage_network_templates.php:52 -msgid "Template successfully deleted" -msgstr "Шаблон успешно удален" - -#: ../../godmode/modules/manage_network_templates.php:53 -msgid "Error deleting template" -msgstr "Ошибка при удалении шаблона" - -#: ../../godmode/modules/manage_network_templates.php:85 -msgid "This template does not exist" -msgstr "Данный шаблон не существует" - -#: ../../godmode/modules/manage_network_templates.php:223 -msgid "There are no defined network profiles" -msgstr "Здесь нет определенных сетевых профилей" - -#: ../../godmode/modules/manage_nc_groups_form.php:53 -msgid "Update Group Component" +#: ../../godmode/massive/massive_edit_agents.php:679 +msgid "" +"If the remote configuration is enabled, it will also go into standby mode " +"when disabling it." msgstr "" +"Если дистанционная конфигурация включена, то при ее отключении она также " +"перейдет в режим ожидания." -#: ../../godmode/modules/manage_nc_groups_form.php:56 -msgid "Create Group Component" +#: ../../godmode/massive/massive_edit_agents.php:680 +msgid "Active" +msgstr "Активен" + +#: ../../godmode/massive/massive_edit_agents.php:686 +msgid "Delete available remote configurations" +msgstr "Удалить свободные дистанционные конфигурации" + +#: ../../godmode/massive/massive_edit_agents.php:719 +msgid "Without status" +msgstr "Без статуса" + +#: ../../godmode/massive/massive_edit_agents.php:719 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:349 +msgid "Bad" +msgstr "Плохо" + +#: ../../godmode/massive/massive_edit_agents.php:729 +msgid "The agent still runs but the alerts and events will be stop" msgstr "" +"Агент по-прежнему работает, но оповещения и события будут остановлены" -#: ../../godmode/modules/module_list.php:28 -msgid "Defined modules" -msgstr "Определенные модули" - -#: ../../godmode/modules/module_list.php:50 -msgid "Problem modifying module" -msgstr "Проблема изменения модуля" - -#: ../../godmode/modules/module_list.php:52 -msgid "Module updated successfully" -msgstr "Модуль успешно обновлен" - -#: ../../godmode/modules/manage_network_components_form_network.php:47 -msgid "SNMP Enterprise String" +#: ../../godmode/massive/massive_edit_agents.php:746 +#, php-format +msgid "" +"This mode allow %s to disable all modules \n" +"of this agent while the selected module is on CRITICAL status" msgstr "" +"Этот режим позволяет %s отключить все модули \n" +"этого агента, пока выбранный модуль находится в состоянии КРИТИЧЕСКОЕ" -#: ../../godmode/modules/manage_network_components_form.php:241 -msgid "Update Network Component" +#: ../../godmode/massive/massive_delete_profiles.php:102 +msgid "Profiles deleted successfully" +msgstr "Профили удалены успешно" + +#: ../../godmode/massive/massive_delete_profiles.php:103 +msgid "Profiles cannot be deleted" +msgstr "Профили не могут быть удалены" + +#: ../../godmode/massive/massive_delete_alerts.php:286 +msgid "Show alerts on disabled modules" +msgstr "Показывать предупреждения об отключенных модулях" + +#: ../../godmode/massive/massive_add_action_alerts.php:134 +msgid "No alerts selected" +msgstr "Нет выбранных оповещений" + +#: ../../godmode/massive/massive_add_action_alerts.php:160 +msgid "No actions selected" +msgstr "Действия не выбраны" + +#: ../../godmode/massive/massive_add_profiles.php:97 +msgid "Profiles added successfully" +msgstr "Профили успешно добавлены" + +#: ../../godmode/massive/massive_add_profiles.php:98 +msgid "Profiles cannot be added" +msgstr "Профили не могут быть добавлены" + +#: ../../godmode/massive/massive_edit_modules.php:137 +msgid "Error updating the modules from a module type" +msgstr "Ошибка обновления модулей из типа модуля" + +#: ../../godmode/massive/massive_edit_modules.php:160 +msgid "Error updating the modules from an agent group" +msgstr "Ошибка обновления модулей из группы агентов" + +#: ../../godmode/massive/massive_edit_modules.php:178 +msgid "Error updating the modules (maybe there was no field to update)" +msgstr "Ошибка обновления модулей (возможно, не было поля для обновления)" + +#: ../../godmode/massive/massive_edit_modules.php:494 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:401 +msgid "Filter agents" +msgstr "Фильтровать агентов" + +#: ../../godmode/admin_access_logs.php:60 +#, php-format +msgid "%s audit" +msgstr "%s аудит" + +#: ../../godmode/admin_access_logs.php:60 +msgid "Review Logs" +msgstr "Просмотр журналов" + +#: ../../godmode/admin_access_logs.php:212 +#: ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:5194 +#: ../../include/functions.php:3053 +#: ../../operation/snmpconsole/snmp_statistics.php:172 +#: ../../general/logon_ok.php:248 +msgid "Source IP" +msgstr "IP источника" + +#: ../../godmode/alerts/configure_alert_command.php:43 +msgid "Configure alert command" +msgstr "Настроить команду оповещения" + +#: ../../godmode/alerts/configure_alert_command.php:162 +#: ../../godmode/alerts/alert_actions.php:218 +#: ../../godmode/alerts/alert_commands.php:617 +#: ../../godmode/alerts/alert_templates.php:264 +#: ../../godmode/alerts/configure_alert_action.php:107 +#: ../../godmode/alerts/configure_alert_template.php:375 +msgid "" +"This node is configured with centralized mode. All alerts templates " +"information is read only. Go to metaconsole to manage it." msgstr "" +"Этот узел настроен в централизованном режиме. Вся информация шаблонов " +"предупреждений доступна только для чтения. Для управления ею перейдите в " +"метаконсоль." -#: ../../godmode/modules/manage_network_components_form.php:244 -msgid "Create Network Component" +#: ../../godmode/alerts/configure_alert_command.php:171 +msgid "Update Command" +msgstr "Обновить команду" + +#: ../../godmode/alerts/configure_alert_command.php:171 +#: ../../godmode/alerts/configure_alert_action.php:256 +msgid "Create Command" +msgstr "Создать команду" + +#: ../../godmode/alerts/configure_alert_command.php:261 +#, php-format +msgid "Field %s description" +msgstr "Поле %s описание" + +#: ../../godmode/alerts/configure_alert_command.php:289 +#, php-format +msgid "Field %s values" +msgstr "Поле %s значения" + +#: ../../godmode/alerts/configure_alert_command.php:291 +msgid "value1,tag1;value2,tag2;value3,tag3" +msgstr "значение1,тег1;значение2,тег2;значение3,тег3" + +#: ../../godmode/alerts/configure_alert_command.php:327 +msgid "Hide" +msgstr "Скрыть" + +#: ../../godmode/alerts/alert_actions.php:74 +msgid "Alert actions" +msgstr "Предупредительные действия" + +#: ../../godmode/alerts/alert_actions.php:390 +msgid "" +"You cannot edit this action, You don't have the permission to edit All group." msgstr "" +"Вы не можете редактировать это действие, у вас нет разрешения на " +"редактирование группы \"Все\"." -#: ../../godmode/modules/manage_network_templates_form.php:54 -msgid "Successfully deleted module from profile" -msgstr "Модуль успешно удален из профиля" +#: ../../godmode/alerts/alert_actions.php:401 +msgid "" +"The action and the command associated with it do not have the same group. " +"Please contact an administrator to fix it." +msgstr "" +"Действие и связанная с ним команда не имеют одинаковой группы. Обратитесь к " +"администратору, чтобы исправить это." -#: ../../godmode/modules/manage_network_templates_form.php:55 -msgid "Error deleting module from profile" -msgstr "Ошибка при удалении модуля из профиля" +#: ../../godmode/alerts/alert_actions.php:459 +msgid "No alert actions configured" +msgstr "Предупредительные действия не сконфигурированы" -#: ../../godmode/modules/manage_network_templates_form.php:70 -msgid "Successfully added module to profile" -msgstr "Модуль успешно добавлен в профиль" +#: ../../godmode/alerts/alert_list.list.php:117 +msgid "Field content" +msgstr "Содержание поля" -#: ../../godmode/modules/manage_network_templates_form.php:71 -msgid "Error adding module to profile" -msgstr "Ошибка при добавлении модуля к профилю" +#: ../../godmode/alerts/alert_list.list.php:129 +#: ../../mobile/operation/alerts.php:46 +#: ../../operation/agentes/alerts_status.functions.php:93 +msgid "All (Enabled)" +msgstr "Все (Подключены)" -#: ../../godmode/modules/manage_network_templates_form.php:94 -msgid "Successfully updated network profile" -msgstr "Успешное обновление сетевого профиля" +#: ../../godmode/alerts/alert_list.list.php:132 +#: ../../mobile/operation/alerts.php:49 +#: ../../operation/agentes/alerts_status.functions.php:96 +#: ../../operation/snmpconsole/snmp_view.php:250 +#: ../../operation/snmpconsole/snmp_view.php:1270 +msgid "Not fired" +msgstr "Не запущено" -#: ../../godmode/modules/manage_network_templates_form.php:95 -msgid "Error updating network profile" -msgstr "Ошибка при обновлении сетевого профиля" +#: ../../godmode/alerts/alert_list.list.php:172 +#: ../../operation/agentes/alerts_status.php:489 +msgid "Alert control filter" +msgstr "Фильтр по руководству оповещениями" -#: ../../godmode/modules/manage_network_templates_form.php:110 -msgid "Successfully added network profile" -msgstr "Сетевой профиль успешно добавлен" +#: ../../godmode/alerts/alert_list.list.php:653 +#: ../../godmode/alerts/alert_view.php:362 +msgid "" +"The default actions will be executed every time that the alert is fired and " +"no other action is executed" +msgstr "" +"Действия по умолчанию будут выполняться каждый раз, когда возникает " +"предупреждение и никакие другие действия не выполняются" -#: ../../godmode/modules/manage_network_templates_form.php:111 -msgid "Error adding network profile" -msgstr "Ошибка при добавлении сетевого профиля" +#: ../../godmode/alerts/alert_list.list.php:911 +msgid "View alert advanced details" +msgstr "Просмотреть уведомление передовые детали" -#: ../../godmode/modules/manage_network_templates_form.php:116 -msgid "Cannot create a template without name" -msgstr "Нельзя создать шаблон без имени" +#: ../../godmode/alerts/alert_list.list.php:927 +#: ../../include/functions_reporting_html.php:2668 +msgid "No alerts defined" +msgstr "Оповещения не определены" -#: ../../godmode/modules/manage_network_templates_form.php:184 -msgid "No modules for this profile" -msgstr "Нет модулей для этого профиля" +#: ../../godmode/alerts/alert_commands.php:139 +msgid "" +"For sending emails, text must be HTML format, if you want to use plain text, " +"type it between the following labels: <pre></pre>" +msgstr "" +"Для отправки электронной почты текст должен быть в формате HTML, если вы " +"хотите использовать обычный текст, введите его между следующими метками: " +"<pre></pre>" -#: ../../godmode/reporting/visual_console_builder.data.php:91 +#: ../../godmode/alerts/alert_commands.php:215 +#: ../../godmode/alerts/alert_commands.php:246 +msgid "Text/plain" +msgstr "Текст/простой" + +#: ../../godmode/alerts/alert_commands.php:217 +#: ../../godmode/alerts/alert_commands.php:248 +msgid "For sending emails only text plain" +msgstr "Для отправки электронной почты только простой текст" + +#: ../../godmode/alerts/alert_commands.php:231 +#: ../../godmode/alerts/alert_commands.php:262 +msgid "Text/html" +msgstr "Текст/html" + +#: ../../godmode/alerts/alert_commands.php:470 +msgid "Permissions warning" +msgstr "Предостережение о разрешениях" + +#: ../../godmode/alerts/alert_commands.php:473 +msgid "" +"Command management is limited to administrator users or user profiles with " +"permissions PM" +msgstr "" +"Управление командами ограничено пользователями-администраторами или " +"профилями пользователей с правами PM" + +#: ../../godmode/alerts/alert_commands.php:490 +msgid "Alert commands" +msgstr "команды оповещений" + +#: ../../godmode/alerts/alert_commands.php:548 +#: ../../include/functions_alerts.php:2783 +msgid "No name specified" +msgstr "Не указано имя" + +#: ../../godmode/alerts/alert_commands.php:552 +#: ../../include/functions_alerts.php:2778 +msgid "No command specified" +msgstr "Не указана команда" + +#: ../../godmode/alerts/alert_commands.php:601 +msgid " (copy)" +msgstr " (копия)" + +#: ../../godmode/alerts/alert_commands.php:712 +msgid "No alert commands configured" +msgstr "Команды оповещений не сконфигурированы" + +#: ../../godmode/alerts/configure_alert_special_days.php:56 +msgid "Configure special day" +msgstr "Сконфигурировать особый день" + +#: ../../godmode/alerts/configure_alert_special_days.php:112 +#: ../../godmode/alerts/alert_special_days.php:280 +msgid "Same day of the week" +msgstr "Тот же день недели" + +#: ../../godmode/alerts/alert_templates.php:406 +msgid "" +"You cannot edit this alert template, You don't have the permission to edit " +"All group." +msgstr "" +"Вы не можете редактировать этот шаблон предупреждения, у вас нет прав на " +"редактирование группы \"Все\"." + +#: ../../godmode/alerts/alert_templates.php:467 +msgid "No alert templates defined" +msgstr "Шаблоны оповщений не найдены" + +#: ../../godmode/alerts/configure_alert_action.php:74 +#: ../../godmode/alerts/configure_alert_action.php:87 +msgid "Configure alert action" +msgstr "Сконфигурировать предупредительные действия" + +#: ../../godmode/alerts/configure_alert_action.php:148 +msgid "Update Action" +msgstr "Обновить действие" + +#: ../../godmode/alerts/configure_alert_action.php:185 +msgid "This action may stop working, if you change its name." +msgstr "Это действие может перестать работать, если вы измените его имя." + +#: ../../godmode/alerts/configure_alert_action.php:287 +msgid "Recovery" +msgstr "Восстановление" + +#: ../../godmode/alerts/configure_alert_action.php:291 +#: ../../godmode/alerts/alert_view.php:511 +#: ../../godmode/alerts/alert_view.php:601 ../../godmode/servers/plugin.php:424 +msgid "Command preview" +msgstr "Комманда просмотр" + +#: ../../godmode/alerts/configure_alert_action.php:309 +msgid "Create workunit on recovery" +msgstr "Создание рабочего блока по восстановлению" + +#: ../../godmode/alerts/configure_alert_action.php:310 +msgid "" +"If closed status is set on recovery, a workunit will be added to the ticket " +"in Integria IMS rather that closing the ticket." +msgstr "" +"Если при восстановлении установлен статус \"закрыто\", то в Integria IMS к " +"заявке будет добавлена рабочая единица, а не закрыта заявка." + +#: ../../godmode/alerts/configure_alert_template.php:74 +#: ../../godmode/alerts/configure_alert_template.php:98 +#: ../../godmode/alerts/configure_alert_template.php:130 +#: ../../include/functions_menu.php:506 +msgid "Configure alert template" +msgstr "Настроить шаблон оповещания" + +#: ../../godmode/alerts/configure_alert_template.php:504 +msgid "No template name specified" +msgstr "Не указано имя шаблона" + +#: ../../godmode/alerts/configure_alert_template.php:585 +#: ../../godmode/alerts/alert_list.builder.php:168 +#: ../../include/class/AgentsAlerts.class.php:372 +msgid "Create Template" +msgstr "Создать шаблон" + +#: ../../godmode/alerts/configure_alert_template.php:750 +msgid "Reset counter for non-sustained alerts" +msgstr "Сброс счетчика для незатухающих сигналов предупреждений" + +#: ../../godmode/alerts/configure_alert_template.php:752 +msgid "" +"Enable this option if you want the counter to be reset when the alert is not " +"being fired consecutively, even if it's within the time threshold" +msgstr "" +"Включите эту опцию, если вы хотите, чтобы счетчик сбрасывался, когда сигналы " +"предупреждений не запускаются подряд, даже если они находятся в пределах " +"порога времени" + +#: ../../godmode/alerts/configure_alert_template.php:827 +msgid "" +"Unless they're left blank, the fields from the action will override those " +"set on the template." +msgstr "" +"Если они не оставлены пустыми, поля из действия будут переопределять поля, " +"установленные в шаблоне." + +#: ../../godmode/alerts/configure_alert_template.php:831 +msgid "Condition type" +msgstr "Вид условий" + +#: ../../godmode/alerts/configure_alert_template.php:848 +msgid "Trigger when matches the value" +msgstr "Активируется, когда совпадает со значением" + +#: ../../godmode/alerts/configure_alert_template.php:871 +msgid "The regular expression is valid" +msgstr "Обычное выражение действительно" + +#: ../../godmode/alerts/configure_alert_template.php:881 +msgid "The regular expression is not valid" +msgstr "Обычное выражение не действительно" + +#: ../../godmode/alerts/configure_alert_template.php:936 +msgid "Alert recovery" +msgstr "Оповещение восстановления" + +#: ../../godmode/alerts/configure_alert_template.php:958 +msgid "Recovery fields" +msgstr "Поля восстановления" + +#: ../../godmode/alerts/configure_alert_template.php:1171 +msgid "No wizard" +msgstr "Нет мастера настроек" + +#: ../../godmode/alerts/configure_alert_template.php:1246 +#: ../../godmode/alerts/alert_view.php:138 ../../include/functions_ui.php:1316 +msgid "" +"The alert would fire when the value matches <span id=\"value\"></span>" +msgstr "" +"Оповещение будет срабатывать, когда значения совпадают <span " +"id=\"value\"></span>" + +#: ../../godmode/alerts/configure_alert_template.php:1247 +#, php-format +msgid "The alert would fire when the value doesn\\'t match %s" +msgstr "Оповещение будет срабатывать, когда значения не совпадают %s" + +#: ../../godmode/alerts/configure_alert_template.php:1248 +#: ../../godmode/alerts/alert_view.php:147 ../../include/functions_ui.php:1305 +msgid "The alert would fire when the value is <span id=\"value\"></span>" +msgstr "" +"Оповещение будет срабатывать, когда значения <span id=\"value\"></span>" + +#: ../../godmode/alerts/configure_alert_template.php:1249 +#: ../../godmode/alerts/alert_view.php:152 ../../include/functions_ui.php:1310 +msgid "The alert would fire when the value is not <span id=\"value\"></span>" +msgstr "" +"Оповещение будет срабатывать, когда значения не <span id=\"value\"></span>" + +#: ../../godmode/alerts/configure_alert_template.php:1250 +#: ../../godmode/alerts/alert_view.php:158 ../../include/functions_ui.php:1328 +msgid "" +"The alert would fire when the value is between <span id=\"min\"></span> and " +"<span id=\"max\"></span>" +msgstr "" +"Оповещение будет срабатывать, когда значения между <span id=\"min\"></span> " +"and <span id=\"max\"></span>" + +#: ../../godmode/alerts/configure_alert_template.php:1251 +msgid "" +"The alert would fire when the value is not between <span id=min></span> and " +"<span id=max></span>" +msgstr "" +"Предупреждение сработает, если значение не находится между <span " +"id=min></span> и <span id=max></span>." + +#: ../../godmode/alerts/configure_alert_template.php:1252 +#: ../../godmode/alerts/alert_view.php:168 +msgid "The alert would fire when the value is below <span id=\"min\"></span>" +msgstr "" +"Оповещение будет срабатывать, когда значения ниже <span id=\"min\"></span>" + +#: ../../godmode/alerts/configure_alert_template.php:1253 +#: ../../godmode/alerts/alert_view.php:173 +msgid "The alert would fire when the value is above <span id=\"max\"></span>" +msgstr "" +"Оповещение будет срабатывать, когда значения выше <span id=\"max\"></span>" + +#: ../../godmode/alerts/configure_alert_template.php:1254 +#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1347 +msgid "The alert would fire when the module is in warning status" +msgstr "" +"Предупреждение срабатывает, когда модуль находится в состоянии опасности" + +#: ../../godmode/alerts/configure_alert_template.php:1255 +#: ../../godmode/alerts/alert_view.php:190 ../../include/functions_ui.php:1352 +msgid "The alert would fire when the module is in critical status" +msgstr "" +"Оповещение будет срабатывать, когда модуль находится в статусе критичности" + +#: ../../godmode/alerts/configure_alert_template.php:1256 +#: ../../godmode/alerts/alert_view.php:179 +msgid "The alert would fire when the module value changes" +msgstr "Оповещение будет срабатывать при изменении значений модуля" + +#: ../../godmode/alerts/configure_alert_template.php:1257 +#: ../../godmode/alerts/alert_view.php:181 +msgid "The alert would fire when the module value does not change" +msgstr "Оповещение будет срабатывать, когда значения модуля не изменены" + +#: ../../godmode/alerts/configure_alert_template.php:1258 +#: ../../godmode/alerts/alert_view.php:198 +msgid "The alert would fire when the module is in unknown status" +msgstr "" +"Оповещение будет срабатывать, когда модуль находится в неизвестном статусе" + +#: ../../godmode/alerts/configure_alert_template.php:1259 +msgid "" +"The alert template cannot have the same value for min and max thresholds." +msgstr "" +"Шаблон предупреждения не может иметь одинаковые значения для минимального и " +"максимального порогов." + +#: ../../godmode/alerts/configure_alert_template.php:1260 +#: ../../godmode/alerts/alert_view.php:194 +msgid "The alert would fire when the module is in not normal status" +msgstr "" +"Предупреждение срабатывает, когда модуль находится в ненормальном состоянии" + +#: ../../godmode/alerts/configure_alert_template.php:1439 +msgid "" +"The alert would fire when the module is in unknown status. Warning: " +"unknown_updates of pandora_server.conf must be equal to 1" +msgstr "" +"Предупреждение будет срабатывать, когда модуль находится в неизвестном " +"состоянии. Внимание: unknown_updates из pandora_server.conf должен быть " +"равен 1" + +#: ../../godmode/alerts/alert_special_days.php:91 +msgid "Skipped dates: " +msgstr "Пропущенные даты: " + +#: ../../godmode/alerts/alert_special_days.php:111 +msgid "Success to upload iCalendar" +msgstr "Успех загрузки iCalendar" + +#: ../../godmode/alerts/alert_special_days.php:111 +msgid "Fail to upload iCalendar" +msgstr "Не удается загрузить iCalendar" + +#: ../../godmode/alerts/alert_special_days.php:147 +msgid "Could not be created, it already exists" +msgstr "Не удалось создать, уже существует" + +#: ../../godmode/alerts/alert_special_days.php:220 +msgid "Could not be updated, it already exists" +msgstr "Не может быть обновлено, уже существует" + +#: ../../godmode/alerts/alert_special_days.php:277 +msgid "iCalendar(.ics) file" +msgstr "Файл iCalendar(.ics)" + +#: ../../godmode/alerts/alert_special_days.php:303 +msgid "Overwrite" +msgstr "Перезаписать" + +#: ../../godmode/alerts/alert_special_days.php:304 +msgid "Check this box, if you want to overwrite existing same days." +msgstr "" +"Установите этот флажок, если вы хотите перезаписать существующие одинаковые " +"дни." + +#: ../../godmode/alerts/alert_special_days.php:323 +msgid "Display range: " +msgstr "Диапазон отображения: " + +#: ../../godmode/alerts/alert_special_days.php:489 +msgid "Same as " +msgstr "То же, что " + +#: ../../godmode/alerts/alert_view.php:49 +#: ../../godmode/alerts/alert_view.php:331 +#: ../../include/functions_events.php:4527 +msgid "Alert details" +msgstr "Детали оповещения" + +#: ../../godmode/alerts/alert_view.php:60 +#: ../../godmode/alerts/alert_view.php:61 +#: ../../godmode/alerts/alert_list.php:437 +msgid "List alerts" +msgstr "Список оповещений" + +#: ../../godmode/alerts/alert_view.php:105 +#: ../../mobile/operation/alerts.php:107 ../../mobile/operation/alerts.php:108 +#: ../../mobile/operation/alerts.php:237 ../../mobile/operation/alerts.php:238 +msgid "Stand by" +msgstr "Поддерживается" + +#: ../../godmode/alerts/alert_view.php:140 ../../include/functions_ui.php:1319 +msgid "" +"The alert would fire when the value doesn't match <span id=\"value\"></span>" +msgstr "" +"Оповещение будет запущено когда значение не совпадет <span " +"id=\"value\"></span>" + +#: ../../godmode/alerts/alert_view.php:160 ../../include/functions_ui.php:1331 +msgid "" +"The alert would fire when the value is not between <span id=\"min\"></span> " +"and <span id=\"max\"></span>" +msgstr "" +"Оповещение будет срабатывать, когда значения не между <span " +"id=\"min\"></span> and <span id=\"max\"></span>" + +#: ../../godmode/alerts/alert_view.php:332 +msgid "Firing conditions" +msgstr "Условия запуска" + +#: ../../godmode/alerts/alert_view.php:355 +#: ../../godmode/alerts/alert_view.php:375 +msgid "Every time that the alert is fired" +msgstr "Каждый раз, когда срабатывает предупреждение" + +#: ../../godmode/alerts/alert_view.php:416 +msgid "" +"Select the desired action and mode to see the Firing/Recovery fields for " +"this action" +msgstr "" +"Выберите нужное действие и режим чтобы увидеть срабатывающие поля/поля " +"восстановления для этого действия" + +#: ../../godmode/alerts/alert_view.php:443 +msgid "Template fields" +msgstr "Шаблонные поля" + +#: ../../godmode/alerts/alert_view.php:443 +msgid "Triggering fields configured in template" +msgstr "Поля запуска настроены в шаблоне" + +#: ../../godmode/alerts/alert_view.php:519 +msgid "The alert recovering is disabled on this template." +msgstr "Функция восстановления предупреждения отключена на этом шаблоне" + +#: ../../godmode/alerts/alert_view.php:531 +msgid "Recovering fields" +msgstr "Восстанавливающиеся поля" + +#: ../../godmode/alerts/alert_view.php:531 +msgid "" +"Fields passed to the command executed by this action when the alert is " +"recovered" +msgstr "" +"Когда предупреждение восстанавлено, поля передаются команде, которая " +"выполняется этим действием" + +#: ../../godmode/alerts/alert_view.php:535 +msgid "Template recovery fields" +msgstr "Шаблон полей восстановления" + +#: ../../godmode/alerts/alert_view.php:535 +msgid "Recovery fields configured in alert template" +msgstr "Поля восстановления встраиваются в шаблон предупреждения" + +#: ../../godmode/alerts/alert_view.php:536 +msgid "Action recovery fields" +msgstr "Действие по восстановлению поля" + +#: ../../godmode/alerts/alert_view.php:536 +msgid "Recovery fields configured in alert action" +msgstr "Поля восстановления настроены в действии оповещения" + +#: ../../godmode/alerts/alert_view.php:537 +msgid "Executed on recovery" +msgstr "Выполнено при восстановлении" + +#: ../../godmode/alerts/alert_view.php:537 +msgid "Fields used on execution when the alert is recovered" +msgstr "" +"Поля, используемые при работе, когда восстанавливается предупреждение" + +#: ../../godmode/alerts/alert_list.builder.php:90 +msgid "Latest value" +msgstr "Последнее значение" + +#: ../../godmode/alerts/alert_list.builder.php:200 +msgid "Finish and view cluster" +msgstr "Завершить работу и просмотреть кластер" + +#: ../../godmode/alerts/alert_list.php:115 +msgid "Already added" +msgstr "Уже добавлено" + +#: ../../godmode/alerts/alert_list.php:169 +msgid "No template specified" +msgstr "Шаблон не указан" + +#: ../../godmode/alerts/alert_list.php:441 +msgid "Builder alert" +msgstr "Разработчик оповещений" + +#: ../../godmode/setup/license.php:48 +msgid "License management" +msgstr "Управление лицензиями" + +#: ../../godmode/setup/license.php:70 +msgid "License updated" +msgstr "Лицензия обновлена" + +#: ../../godmode/setup/license.php:99 +msgid "Licence" +msgstr "Лицензия" + +#: ../../godmode/setup/license.php:107 +#: ../../include/class/Diagnostics.class.php:1146 +msgid "Customer key" +msgstr "Ключ клиента" + +#: ../../godmode/setup/license.php:113 +#: ../../include/class/Diagnostics.class.php:1154 +msgid "Platform Limit" +msgstr "Пределы платформы" + +#: ../../godmode/setup/license.php:114 ../../godmode/setup/license.php:117 +#: ../../godmode/setup/license.php:120 ../../godmode/setup/license.php:123 +msgid "agents" +msgstr "агенты" + +#: ../../godmode/setup/license.php:114 ../../godmode/setup/license.php:117 +#: ../../godmode/setup/license.php:120 ../../godmode/setup/license.php:123 +#: ../../operation/tree.php:140 +msgid "modules" +msgstr "модули" + +#: ../../godmode/setup/license.php:116 +#: ../../include/class/Diagnostics.class.php:1158 +msgid "Current Platform Count" +msgstr "Текущее количество платформ" + +#: ../../godmode/setup/license.php:119 +#: ../../include/class/Diagnostics.class.php:1162 +msgid "Current Platform Count (enabled: items)" +msgstr "Текущее вычисление платформы (активировано: элементы)" + +#: ../../godmode/setup/license.php:122 +#: ../../include/class/Diagnostics.class.php:1166 +msgid "Current Platform Count (disabled: items)" +msgstr "Вычисление текущей платформы (отключено: элементы)" + +#: ../../godmode/setup/license.php:125 +#: ../../include/class/Diagnostics.class.php:1170 +msgid "License Mode" +msgstr "лицензионный режим" + +#: ../../godmode/setup/license.php:128 +msgid "NMS" +msgstr "NMS" + +#: ../../godmode/setup/license.php:129 ../../godmode/setup/license.php:132 +msgid "enabled" +msgstr "включено" + +#: ../../godmode/setup/license.php:129 ../../godmode/setup/license.php:132 +msgid "disabled" +msgstr "отключено" + +#: ../../godmode/setup/license.php:131 +#: ../../godmode/servers/modificar_server.php:42 +#: ../../include/functions_servers.php:1316 ../../include/functions_ui.php:855 +#: ../../include/class/Diagnostics.class.php:1178 +msgid "Satellite" +msgstr "Satellite" + +#: ../../godmode/setup/license.php:134 +#: ../../include/class/Diagnostics.class.php:1182 +msgid "Licensed to" +msgstr "Лицензия для" + +#: ../../godmode/setup/license.php:145 ../../godmode/setup/license.php:160 +msgid "Request new license" +msgstr "Запрос новой лицензии" + +#: ../../godmode/setup/license.php:164 +#, php-format +msgid "To get your <b>%s Enterprise License</b>:" +msgstr "Чтобы получить <b>%s лицензию Enterprise</b>:" + +#: ../../godmode/setup/license.php:167 +#, php-format +msgid "Go to %s" +msgstr "Перейти в %s" + +#: ../../godmode/setup/license.php:170 +msgid "Enter the <b>auth key</b> and the following <b>request key</b>:" +msgstr "" +"Введите </b> ключ аутентификации <b> и следующий <b> ключ для запроса </b>:" + +#: ../../godmode/setup/license.php:176 +msgid "Enter your name (or a company name) and a contact email address." +msgstr "" +"Введите ваше имя (или имя компании) и контактный адрес электронной почты." + +#: ../../godmode/setup/license.php:179 +msgid "Click on <b>Generate</b>." +msgstr "Нажмите на <b>Generate</b>." + +#: ../../godmode/setup/license.php:182 +msgid "" +"Click <a href=\"javascript: close_code_license_dialog();\">here</a>, enter " +"the generated license key and click on <b>Validate</b>." +msgstr "" +"Нажмите <a href=\"javascript: close_code_license_dialog();\">here</a>, " +"enter the generated license key and click on <b>Validate</b>." + +#: ../../godmode/setup/news.php:29 +msgid "Site news management" +msgstr "Управление новостями сайта" + +#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:89 +msgid "Name error" +msgstr "Ошибка в имени" + +#: ../../godmode/setup/news.php:191 +msgid "Modal screen" +msgstr "Модальный экран" + +#: ../../godmode/setup/news.php:194 +msgid "Expire" +msgstr "Истекает" + +#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250 +msgid "Expiration" +msgstr "Срок истечения" + +#: ../../godmode/setup/news.php:241 +msgid "There are no defined news" +msgstr "Здесь нет но одной новостей" + +#: ../../godmode/setup/news.php:248 +#: ../../operation/agentes/estado_generalagente.php:629 +msgid "Author" +msgstr "Автор" + +#: ../../godmode/setup/news.php:268 +msgid "Modal" +msgstr "Модальное" + +#: ../../godmode/setup/news.php:270 +msgid "Board" +msgstr "Панель" + +#: ../../godmode/setup/news.php:281 +msgid "Expired" +msgstr "Истекший" + +#: ../../godmode/setup/gis.php:65 +msgid "Map connection name" +msgstr "Имя карты соединения" + +#: ../../godmode/setup/gis.php:83 +msgid "Do you wan delete this connection?" +msgstr "Удалить это подключение?" + +#: ../../godmode/setup/setup.php:213 +msgid "Websocket engine" +msgstr "Двигатель Websocket" + +#: ../../godmode/setup/setup.php:231 +msgid "GIS Map connection" +msgstr "Подключение к GIS -карте" + +#: ../../godmode/setup/setup.php:302 +msgid "Pandora Websocket Engine" +msgstr "Двигатель Pandora Websocket" + +#: ../../godmode/setup/setup.php:337 +msgid "Correct update the setup options" +msgstr "Исправить обновления параметров настройки" + +#: ../../godmode/setup/setup_ehorus.php:55 +#: ../../include/functions_config.php:1600 +msgid "Enable eHorus" +msgstr "Активировать eHorus" + +#: ../../godmode/setup/setup_ehorus.php:90 +#: ../../godmode/setup/setup_integria.php:285 +msgid "API Hostname" +msgstr "Имя хоста API" + +#: ../../godmode/setup/setup_ehorus.php:96 +msgid "API Port" +msgstr "Порт API" + +#: ../../godmode/setup/setup_ehorus.php:102 +#: ../../godmode/setup/setup_integria.php:298 +msgid "Request timeout" +msgstr "Время запроса истекло" + +#: ../../godmode/setup/setup_ehorus.php:108 +#: ../../godmode/setup/setup_integria.php:558 +#: ../../operation/users/user_edit.php:724 +msgid "Test" +msgstr "Тест" + +#: ../../godmode/setup/setup_ehorus.php:123 +msgid "Remote Management System" +msgstr "Система удаленного управления" + +#: ../../godmode/setup/setup_ehorus.php:131 +msgid "Custom field eHorusID created" +msgstr "Создано пользовательское поле eHorusID" + +#: ../../godmode/setup/setup_ehorus.php:131 +msgid "Error creating custom field" +msgstr "Ошибка при создании пользовательского поля" + +#: ../../godmode/setup/setup_ehorus.php:135 +msgid "eHorus has his own agent identifiers" +msgstr "eHorus имеет свои собственные идентификаторы агентов" + +#: ../../godmode/setup/setup_ehorus.php:136 +msgid "To store them, it will be necessary to use an agent custom field" +msgstr "Для их хранения необходимо использовать пользовательское поле агента" + +#: ../../godmode/setup/setup_ehorus.php:137 +msgid "" +"Possibly the eHorus id will have to be filled in by hand for every agent" +msgstr "" +"Возможно, идентификатор eHorus придется заполнять вручную для каждого агента" + +#: ../../godmode/setup/setup_ehorus.php:142 +msgid "The custom field does not exists already" +msgstr "Пользовательское поле еще не существует" + +#: ../../godmode/setup/setup_ehorus.php:156 +msgid "eHorus API" +msgstr "eHorus API" + +#: ../../godmode/setup/setup_ehorus.php:238 +#: ../../godmode/setup/setup_integria.php:684 +msgid "Connection timeout" +msgstr "Сессия истекла" + +#: ../../godmode/setup/setup_ehorus.php:239 +#: ../../godmode/setup/setup_integria.php:685 +#: ../../godmode/setup/setup_integria.php:764 +#: ../../operation/users/user_edit.php:1208 +msgid "Empty user or password" +msgstr "Пустое поле пользователя или пароля" + +#: ../../godmode/setup/setup_ehorus.php:240 +#: ../../godmode/setup/setup_integria.php:686 +#: ../../godmode/setup/setup_integria.php:765 +#: ../../operation/users/user_edit.php:1209 +msgid "User not found" +msgstr "Пользователь не найден" + +#: ../../godmode/setup/setup_ehorus.php:241 +#: ../../godmode/setup/setup_integria.php:687 +#: ../../godmode/setup/setup_integria.php:766 +#: ../../operation/users/user_edit.php:1210 +msgid "Invalid password" +msgstr "Неверный пароль" + +#: ../../godmode/setup/setup_websocket_engine.php:38 +msgid "WebSocket settings" +msgstr "Настройки WebSocket" + +#: ../../godmode/setup/setup_websocket_engine.php:47 +msgid "Bind address" +msgstr "Привязка адреса" + +#: ../../godmode/setup/setup_websocket_engine.php:57 +msgid "Bind port" +msgstr "Привязать порт" + +#: ../../godmode/setup/setup_websocket_engine.php:67 +#: ../../include/functions_config.php:1750 +msgid "WebSocket proxy url" +msgstr "url прокси WebSocket" + +#: ../../godmode/setup/os.list.php:90 +msgid "There are no defined operating systems" +msgstr "Здесь нет определенных операционных систем" + +#: ../../godmode/setup/os.list.php:96 +msgid "Create OS" +msgstr "Создать ОС" + +#: ../../godmode/setup/os.php:166 +msgid "List OS" +msgstr "Список OS" + +#: ../../godmode/setup/os.php:177 +msgid "Builder OS" +msgstr "Разработчик OS" + +#: ../../godmode/setup/os.php:194 ../../include/functions_api.php:1833 +msgid "Success creating OS" +msgstr "OS успешно создано" + +#: ../../godmode/setup/os.php:198 +msgid "Fail creating OS" +msgstr "Сбой создания ОS" + +#: ../../godmode/setup/os.php:202 ../../include/functions_api.php:1864 +msgid "Success updating OS" +msgstr "Успешное обновление ОС" + +#: ../../godmode/setup/os.php:206 +msgid "Error updating OS" +msgstr "Ошибка при обновлении OS" + +#: ../../godmode/setup/os.php:210 +msgid "There are agents with this OS." +msgstr "Есть агенты с этой OS." + +#: ../../godmode/setup/os.php:214 +msgid "Success deleting" +msgstr "Успешно удаляется" + +#: ../../godmode/setup/os.php:218 +msgid "Error deleting" +msgstr "Ошибка удаления" + +#: ../../godmode/setup/gis_step_2.php:34 +msgid "GIS Maps connections" +msgstr "Подключения к GIS-картам" + +#: ../../godmode/setup/gis_step_2.php:51 +msgid "Create new map connection" +msgstr "Создать новою карту связи" + +#: ../../godmode/setup/gis_step_2.php:78 +msgid "Edit map connection" +msgstr "Редактировать карту связи" + +#: ../../godmode/setup/gis_step_2.php:210 +msgid "Connection Name" +msgstr "Название подключения" + +#: ../../godmode/setup/gis_step_2.php:216 +msgid "Number of zoom levels" +msgstr "Количество уровней увеличения" + +#: ../../godmode/setup/gis_step_2.php:220 +msgid "Default zoom level" +msgstr "Уровень увеличения по умолчанию" + +#: ../../godmode/setup/gis_step_2.php:223 +msgid "Basic configuration" +msgstr "Базовая конфигурация" + +#: ../../godmode/setup/gis_step_2.php:228 +msgid "Open Street Maps" +msgstr "Карты Open Street" + +#: ../../godmode/setup/gis_step_2.php:229 +msgid "Google Maps" +msgstr "Карты Google" + +#: ../../godmode/setup/gis_step_2.php:230 +#: ../../godmode/reporting/visual_console_builder.elements.php:182 +#: ../../include/functions_visual_map_editor.php:1387 +#: ../../include/functions_visual_map.php:4220 +#: ../../operation/visual_console/view.php:277 +msgid "Static Image" +msgstr "Статичное изображение" + +#: ../../godmode/setup/gis_step_2.php:231 +msgid "WMS Server" +msgstr "Сервер WMS" + +#: ../../godmode/setup/gis_step_2.php:233 +msgid "Please select the connection type" +msgstr "Пожалуйста, выберите тип подключения" + +#: ../../godmode/setup/gis_step_2.php:235 +msgid "Map connection type" +msgstr "Тип карты связи" + +#: ../../godmode/setup/gis_step_2.php:283 +msgid "Tile Server URL" +msgstr "Плитка URL сервера" + +#: ../../godmode/setup/gis_step_2.php:296 +msgid "Google Physical" +msgstr "Google Физические" + +#: ../../godmode/setup/gis_step_2.php:297 +msgid "Google Hybrid" +msgstr "Google гибридные" + +#: ../../godmode/setup/gis_step_2.php:298 +msgid "Google Satelite" +msgstr "Google спутниковые" + +#: ../../godmode/setup/gis_step_2.php:300 +msgid "Google Map Type" +msgstr "Google Тип Карты:" + +#: ../../godmode/setup/gis_step_2.php:310 +msgid "Google Maps Key" +msgstr "Google Ключ Карты" + +#: ../../godmode/setup/gis_step_2.php:319 +msgid "Image URL" +msgstr "URL изображения" + +#: ../../godmode/setup/gis_step_2.php:326 +msgid "Corners of the area of the image" +msgstr "Углы области изображения" + +#: ../../godmode/setup/gis_step_2.php:326 +#: ../../include/rest-api/models/VisualConsole/Item.php:1908 +msgid "Left" +msgstr "Слева" + +#: ../../godmode/setup/gis_step_2.php:333 +#: ../../include/rest-api/models/VisualConsole/Item.php:1905 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317 +msgid "Bottom" +msgstr "Внизу" + +#: ../../godmode/setup/gis_step_2.php:340 +#: ../../include/rest-api/models/VisualConsole/Item.php:1907 +msgid "Right" +msgstr "Справа" + +#: ../../godmode/setup/gis_step_2.php:347 +#: ../../include/rest-api/models/VisualConsole/Item.php:1906 +msgid "Top" +msgstr "Сверху" + +#: ../../godmode/setup/gis_step_2.php:354 +msgid "Image Size" +msgstr "Размеры изображения" + +#: ../../godmode/setup/gis_step_2.php:357 +msgid "WMS Server URL" +msgstr "URL Сервера WMS" + +#: ../../godmode/setup/gis_step_2.php:385 +msgid "" +"Preview to select the center of the map and the default position of an agent " +"without gis data" +msgstr "" +"Предварительно просмотрите перед тем как выбрать центр карты и положение по " +"умолчанию агента без данных ГИС" + +#: ../../godmode/setup/gis_step_2.php:386 +msgid "Load preview map" +msgstr "Загрузите предварительный просмотр карты" + +#: ../../godmode/setup/gis_step_2.php:395 +msgid "Map Center" +msgstr "Центр Карты" + +#: ../../godmode/setup/gis_step_2.php:396 +msgid "Default position for agents without GIS data" +msgstr "Положение по умолчанию для агентов без данных ГИС" + +#: ../../godmode/setup/gis_step_2.php:398 +msgid "Change in the map" +msgstr "Изменения в карте" + +#: ../../godmode/setup/gis_step_2.php:420 +#: ../../operation/agentes/gis_view.php:215 +msgid "Latitude" +msgstr "Широта" + +#: ../../godmode/setup/gis_step_2.php:438 +#: ../../operation/agentes/gis_view.php:214 +msgid "Longitude" +msgstr "Долгота" + +#: ../../godmode/setup/gis_step_2.php:456 +#: ../../operation/agentes/gis_view.php:216 +msgid "Altitude" +msgstr "Высота над уровнем моря" + +#: ../../godmode/setup/gis_step_2.php:519 +#: ../../godmode/setup/gis_step_2.php:614 +msgid "Center" +msgstr "По-центру" + +#: ../../godmode/setup/gis_step_2.php:579 +msgid "Refresh preview map" +msgstr "Обновить просмотр карты" + +#: ../../godmode/setup/setup_auth.php:234 +msgid "Force 2FA for all users is enabled" +msgstr "Принудительное 2FA для всех пользователей включено" + +#: ../../godmode/setup/setup_auth.php:255 +msgid "Session timeout (mins)" +msgstr "Окончание сессии (минуты)" + +#: ../../godmode/setup/setup_auth.php:298 +#, php-format +msgid "Local %s" +msgstr "Локальный %s" + +#: ../../godmode/setup/setup_auth.php:299 +msgid "ldap" +msgstr "ldap" + +#: ../../godmode/setup/setup_integria.php:59 +#: ../../operation/incidents/configure_integriaims_incident.php:48 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:38 +#: ../../operation/incidents/list_integriaims_incidents.php:49 +msgid "Integria IMS API is not reachable" +msgstr "Integria IMS API недоступен" + +#: ../../godmode/setup/setup_integria.php:256 +#: ../../include/functions_config.php:1634 +msgid "Enable Integria IMS" +msgstr "Включить Integria IMS" + +#: ../../godmode/setup/setup_integria.php:291 +msgid "API Password" +msgstr "Пароль API" + +#: ../../godmode/setup/setup_integria.php:304 +msgid "Sync inventory" +msgstr "Синхронизация инвентаря" + +#: ../../godmode/setup/setup_integria.php:591 +msgid "Integria API settings" +msgstr "Integria API настройки" + +#: ../../godmode/setup/setup_integria.php:602 +msgid "Alert default values" +msgstr "Значения по умолчанию для предупреждений" + +#: ../../godmode/setup/setup_integria.php:612 +msgid "Event custom response default values" +msgstr "Значения по умолчанию пользовательского ответа на события" + +#: ../../godmode/setup/links.php:25 +msgid "Link management" +msgstr "управление ссылками" + +#: ../../godmode/setup/snmp_wizard.php:155 +msgid "Unsucessful update the snmp translation" +msgstr "Неудачное обновление перевода snmp" + +#: ../../godmode/setup/snmp_wizard.php:162 +msgid "Unsucessful update the snmp translation." +msgstr "Неудачное обновление перевода snmp." + +#: ../../godmode/setup/snmp_wizard.php:210 +msgid "Unsucessful delete the snmp translation" +msgstr "Неудачное удаление перевода snmp" + +#: ../../godmode/setup/snmp_wizard.php:217 +msgid "Unsucessful delete the snmp translation." +msgstr "Неудачное удаление перевода snmp." + +#: ../../godmode/setup/snmp_wizard.php:278 +msgid "Unsucessful save the snmp translation" +msgstr "Неудачное сохранение перевода snmp" + +#: ../../godmode/setup/snmp_wizard.php:287 +msgid "Unsucessful save the snmp translation." +msgstr "Неудачное сохранение перевода snmp." + +#: ../../godmode/setup/setup_netflow.php:46 +#: ../../include/functions_config.php:1407 +msgid "Data storage path" +msgstr "Путь хранения данных" + +#: ../../godmode/setup/setup_netflow.php:49 +#: ../../include/functions_config.php:1411 +msgid "Daemon interval" +msgstr "Интервал присоединенной программы" + +#: ../../godmode/setup/setup_netflow.php:52 +#: ../../include/functions_config.php:1415 +msgid "Daemon binary path" +msgstr "Двоичный путь присоединенной программы" + +#: ../../godmode/setup/setup_netflow.php:55 +#: ../../include/functions_config.php:1419 +msgid "Nfdump binary path" +msgstr "Nfdump двоичного пути" + +#: ../../godmode/setup/setup_netflow.php:58 +#: ../../include/functions_config.php:1423 +msgid "Nfexpire binary path" +msgstr "Nfexpire двоичного пути" + +#: ../../godmode/setup/setup_netflow.php:61 +#: ../../include/functions_config.php:1427 +msgid "Maximum chart resolution" +msgstr "Максимальное разрешение диаграммы" + +#: ../../godmode/setup/setup_netflow.php:66 +#: ../../include/functions_config.php:1435 +msgid "Netflow max lifetime" +msgstr "Максимальный срок жизни сетевого потока" + +#: ../../godmode/setup/setup_netflow.php:69 +#: ../../include/functions_config.php:1439 +msgid "Name resolution for IP address" +msgstr "Имя разрешения для IP адреса" + +#: ../../godmode/setup/setup_netflow.php:70 +#: ../../operation/netflow/nf_live_view.php:451 +msgid "IP address resolution can take a lot of time" +msgstr "Разрешение IP-адреса может занять много времени" + +#: ../../godmode/setup/setup_visuals.php:76 +msgid "Paginated module view" +msgstr "Постраничный просмотр модуля" + +#: ../../godmode/setup/setup_visuals.php:103 +msgid "Click to display lateral menus" +msgstr "Нажмите для отображения боковых меню" + +#: ../../godmode/setup/setup_visuals.php:113 +#: ../../include/functions_config.php:1227 +msgid "Service label font size" +msgstr "Размер шрифта для карты обслуживания" + +#: ../../godmode/setup/setup_visuals.php:117 +msgid "Space between items in Service maps" +msgstr "Пространство между элементами в картах услуг" + +#: ../../godmode/setup/setup_visuals.php:134 +#: ../../include/functions_config.php:944 +msgid "Style template" +msgstr "Шаблон стиля" + +#: ../../godmode/setup/setup_visuals.php:147 +#: ../../include/functions_config.php:964 +msgid "Status icon set" +msgstr "Установить иконки статусов" + +#: ../../godmode/setup/setup_visuals.php:148 +msgid "Colors" +msgstr "Цвета" + +#: ../../godmode/setup/setup_visuals.php:149 +msgid "Faces" +msgstr "Стороны" + +#: ../../godmode/setup/setup_visuals.php:150 +msgid "Colors and text" +msgstr "Цвета и текст" + +#: ../../godmode/setup/setup_visuals.php:209 +msgid "Custom background logo" +msgstr "Пользовательский фоновый логотип" + +#: ../../godmode/setup/setup_visuals.php:276 +msgid "Custom logo (menu)" +msgstr "Пользовательский логотип (меню)" + +#: ../../godmode/setup/setup_visuals.php:281 +msgid "Custom logo collapsed (menu)" +msgstr "Пользовательский логотип не работает (меню)" + +#: ../../godmode/setup/setup_visuals.php:390 +#: ../../include/functions_config.php:1000 +msgid "Custom documentation logo" +msgstr "Пользовательский логотип документации" + +#: ../../godmode/setup/setup_visuals.php:410 +#: ../../include/functions_config.php:1004 +msgid "Custom support logo" +msgstr "Индивидуальный логотип поддержки" + +#: ../../godmode/setup/setup_visuals.php:429 +#: ../../include/functions_config.php:1008 +#: ../../include/functions_config.php:1012 +msgid "Custom networkmap center logo" +msgstr "Логотип пользовательскогог центра сетевых карт" + +#: ../../godmode/setup/setup_visuals.php:448 +msgid "Custom mobile console icon" +msgstr "Пользовательский значок мобильной консоли" + +#: ../../godmode/setup/setup_visuals.php:468 +msgid "Title (header)" +msgstr "Название (заголовок)" + +#: ../../godmode/setup/setup_visuals.php:473 +msgid "Subtitle (header)" +msgstr "Подзаголовок (заголовок)" + +#: ../../godmode/setup/setup_visuals.php:516 +msgid "Disable logo in graphs" +msgstr "Отключение логотипа в графиках" + +#: ../../godmode/setup/setup_visuals.php:532 +msgid "Disable helps" +msgstr "Отключение подсказок" + +#: ../../godmode/setup/setup_visuals.php:541 +#: ../../include/functions_config.php:1168 +msgid "Fixed header" +msgstr "Исправленный заголовок" + +#: ../../godmode/setup/setup_visuals.php:552 +msgid "Automatically hide submenu" +msgstr "Автоматическое скрытие подменю" + +#: ../../godmode/setup/setup_visuals.php:580 +#: ../../include/functions_config.php:1140 +msgid "GIS Labels" +msgstr "ГИС Метки" + +#: ../../godmode/setup/setup_visuals.php:595 +#: ../../include/functions_config.php:1148 +msgid "Default icon in GIS" +msgstr "Значок по умолчанию в ГИС" + +#: ../../godmode/setup/setup_visuals.php:601 +msgid "Agent icon group" +msgstr "Группа значков агентов" + +#: ../../godmode/setup/setup_visuals.php:649 +msgid "Graphs font size" +msgstr "Размер шрифта графиков" + +#: ../../godmode/setup/setup_visuals.php:680 +#: ../../include/functions_config.php:1116 +#: ../../include/functions_config.php:1120 +msgid "Agent size text" +msgstr "Агент размера текста" + +#: ../../godmode/setup/setup_visuals.php:681 +#: ../../godmode/setup/setup_visuals.php:686 +msgid "Small:" +msgstr "Маленький:" + +#: ../../godmode/setup/setup_visuals.php:682 +#: ../../godmode/setup/setup_visuals.php:687 +msgid "Normal:" +msgstr "Нормальный:" + +#: ../../godmode/setup/setup_visuals.php:685 +#: ../../include/functions_config.php:1124 +msgid "Module size text" +msgstr "Модуль размера текста" + +#: ../../godmode/setup/setup_visuals.php:690 +#: ../../include/functions_config.php:1128 +#: ../../include/functions_config.php:1132 +msgid "Description size text" +msgstr "Описание размера текста" + +#: ../../godmode/setup/setup_visuals.php:694 +#: ../../include/functions_config.php:1136 +msgid "Item title size text" +msgstr "Артикул Названия Размера текста" + +#: ../../godmode/setup/setup_visuals.php:705 +msgid "Show unit along with value in reports" +msgstr "Показывать единицу измерения вместе со значением в отчетах" + +#: ../../godmode/setup/setup_visuals.php:758 +#: ../../include/functions_config.php:903 +msgid "Graph color #4" +msgstr "График цвета #4" + +#: ../../godmode/setup/setup_visuals.php:769 +#: ../../include/functions_config.php:907 +msgid "Graph color #5" +msgstr "График цвета #5" + +#: ../../godmode/setup/setup_visuals.php:780 +#: ../../include/functions_config.php:911 +msgid "Graph color #6" +msgstr "График цвета #6" + +#: ../../godmode/setup/setup_visuals.php:791 +#: ../../include/functions_config.php:915 +msgid "Graph color #7" +msgstr "График цвета #7" + +#: ../../godmode/setup/setup_visuals.php:802 +#: ../../include/functions_config.php:919 +msgid "Graph color #8" +msgstr "График цвета #8" + +#: ../../godmode/setup/setup_visuals.php:813 +#: ../../include/functions_config.php:923 +msgid "Graph color #9" +msgstr "График цвета #9" + +#: ../../godmode/setup/setup_visuals.php:824 +#: ../../include/functions_config.php:927 +msgid "Graph color #10" +msgstr "График цвета #10" + +#: ../../godmode/setup/setup_visuals.php:851 +msgid "Data precision" +msgstr "Точность данных" + +#: ../../godmode/setup/setup_visuals.php:869 +msgid "Data precision in graphs" +msgstr "Точность данных в графиках" + +#: ../../godmode/setup/setup_visuals.php:884 +#: ../../include/functions_config.php:1192 +msgid "Default line thickness for the Custom Graph." +msgstr "Толщина линии по умолчанию для пользовательского графика." + +#: ../../godmode/setup/setup_visuals.php:945 +msgid "Type of interface charts" +msgstr "Тип интерфейсных диаграмм" + +#: ../../godmode/setup/setup_visuals.php:973 +msgid "Graph TIP view:" +msgstr "Просмотр графиков TIP:" + +#: ../../godmode/setup/setup_visuals.php:1086 +msgid "Classic view" +msgstr "Классический вид" + +#: ../../godmode/setup/setup_visuals.php:1087 +msgid "View of favorites" +msgstr "Просмотр избранного" + +#: ../../godmode/setup/setup_visuals.php:1088 +msgid "Type of view of visual consoles" +msgstr "Тип просмотра визуальных консолей" + +#: ../../godmode/setup/setup_visuals.php:1092 +msgid "Number of favorite visual consoles to show in the menu" +msgstr "Количество избранных визуальных консолей для отображения в меню" + +#: ../../godmode/setup/setup_visuals.php:1096 +#: ../../include/functions_config.php:1108 +msgid "Default line thickness for the Visual Console" +msgstr "Толщина линии по умолчанию для визуальной консоли" + +#: ../../godmode/setup/setup_visuals.php:1110 +msgid "Number of favorite services to show in the menu" +msgstr "Количество избранных сервисов для отображения в меню" + +#: ../../godmode/setup/setup_visuals.php:1191 +msgid "" +"The dir of custom logos is in your www Console in 'images/custom_logo'. You " +"can upload more files (ONLY JPEG AND PNG) in upload tool in console." +msgstr "" +"Каталог пользовательских логотипов находится в вашей www-консоли в папке " +"'images/custom_logo'. Вы можете загрузить больше файлов (ТОЛЬКО JPEG И PNG) " +"с помощью инструмента загрузки в консоли." + +#: ../../godmode/setup/setup_visuals.php:1277 +#: ../../include/functions_config.php:1180 +msgid "Networkmap max width" +msgstr "Максимальная ширина карты сети" + +#: ../../godmode/setup/setup_visuals.php:1328 +msgid "Custom values post process" +msgstr "Пользовательские значения после обработки" + +#: ../../godmode/setup/setup_visuals.php:1349 +#: ../../godmode/setup/setup_visuals.php:1417 +msgid "Delete custom values" +msgstr "Удаление пользовательских значений" + +#: ../../godmode/setup/setup_visuals.php:1381 +msgid "Interval values" +msgstr "интервал значений" + +#: ../../godmode/setup/setup_visuals.php:1409 +msgid "Module units" +msgstr "Модульные единицы" + +#: ../../godmode/setup/setup_visuals.php:1525 +msgid "Behaviour configuration" +msgstr "Настройка поведения" + +#: ../../godmode/setup/setup_visuals.php:1530 +msgid "GIS configuration" +msgstr "Конфигурация GIS" + +#: ../../godmode/setup/setup_visuals.php:1535 +msgid "Style configuration" +msgstr "Конфигурация стиля" + +#: ../../godmode/setup/setup_visuals.php:1540 +msgid "Charts configuration" +msgstr "Конфигурация диаграмм" + +#: ../../godmode/setup/setup_visuals.php:1545 +msgid "Font and Text configuration" +msgstr "Настройка шрифта и текста" + +#: ../../godmode/setup/setup_visuals.php:1550 +msgid "Visual consoles configuration" +msgstr "Конфигурация визуальных консолей" + +#: ../../godmode/setup/setup_visuals.php:1555 +msgid "Reports configuration " +msgstr "Конфигурация отчетов " + +#: ../../godmode/setup/setup_visuals.php:1560 +msgid "Services configuration" +msgstr "Конфигурация сервисов" + +#: ../../godmode/setup/setup_visuals.php:1565 +msgid "Other configuration" +msgstr "Другая конфигурация" + +#: ../../godmode/setup/setup_visuals.php:1842 +msgid "Mobile console logo preview" +msgstr "Предварительный просмотр логотипа мобильной консоли" + +#: ../../godmode/setup/setup_visuals.php:1877 +msgid "Gis icons preview" +msgstr "Предварительный просмотр значков Gis" + +#: ../../godmode/setup/setup_visuals.php:1943 +msgid "Status set preview" +msgstr "Предварительный просмотр состояния" + +#: ../../godmode/setup/setup_general.php:75 +#: ../../include/functions_update_manager.php:184 +msgid "Language code" +msgstr "Код языка" + +#: ../../godmode/setup/setup_general.php:135 +#: ../../include/functions_config.php:188 +msgid "Automatic check for updates" +msgstr "Автоматическая проверка обновлений" + +#: ../../godmode/setup/setup_general.php:143 +msgid "Enforce https Information" +msgstr "Применить https Информация" + +#: ../../godmode/setup/setup_general.php:144 +msgid "If SSL is not properly configured you will lose access to " +msgstr "Если SSL не настроен должным образом, вы потеряете доступ к " + +#: ../../godmode/setup/setup_general.php:144 +#: ../../godmode/setup/setup_general.php:338 +msgid " Console" +msgstr " Консоль" + +#: ../../godmode/setup/setup_general.php:158 +msgid "Use cert of SSL" +msgstr "Использовать сертификат SSL" + +#: ../../godmode/setup/setup_general.php:171 +msgid "Path of SSL Cert." +msgstr "Путь сертификата SSL." + +#: ../../godmode/setup/setup_general.php:221 +#: ../../include/functions_config.php:216 +msgid "Enable GIS features" +msgstr "Включить функции GIS" + +#: ../../godmode/setup/setup_general.php:229 +#: ../../include/functions_config.php:232 +msgid "Enable Netflow" +msgstr "Включить Сетевой поток" + +#: ../../godmode/setup/setup_general.php:336 +msgid "Enforce public URL usage information" +msgstr "Обеспечение публичной информации об использовании URL-адресов" + +#: ../../godmode/setup/setup_general.php:338 +msgid "If public URL is not properly configured you will lose access to " +msgstr "" +"Если публичный URL не настроен должным образом, вы потеряете доступ к " + +#: ../../godmode/setup/setup_general.php:351 +#: ../../include/functions_config.php:282 +msgid "Referer security" +msgstr "Ссылки на веб-безопасность" + +#: ../../godmode/setup/setup_general.php:359 +#: ../../include/functions_config.php:286 +msgid "Event storm protection" +msgstr "Событие шторма защиты" + +#: ../../godmode/setup/setup_general.php:376 +msgid "Change remote config encoding" +msgstr "Изменение кодировки удаленной конфигурации" + +#: ../../godmode/setup/setup_general.php:384 +#: ../../include/functions_config.php:298 +msgid "Server logs directory" +msgstr "Каталог системных журналов сервера" + +#: ../../godmode/setup/setup_general.php:394 +#: ../../include/functions_config.php:302 +msgid "Log size limit in system logs viewer extension" +msgstr "" +"Ограничение размера журнала в расширении просмотра системных журналов" + +#: ../../godmode/setup/setup_general.php:405 +msgid "Full mode" +msgstr "Полный режим" + +#: ../../godmode/setup/setup_general.php:406 +msgid "On demand" +msgstr "По требованию" + +#: ../../godmode/setup/setup_general.php:407 +msgid "Expert" +msgstr "Эксперт" + +#: ../../godmode/setup/setup_general.php:409 +#: ../../include/functions_config.php:306 +msgid "Tutorial mode" +msgstr "Режим обучения" + +#: ../../godmode/setup/setup_general.php:423 +#: ../../include/functions_config.php:310 +msgid "Allow create planned downtimes in the past" +msgstr "Позволяют создавать запланированные остановки в прошлом" + +#: ../../godmode/setup/setup_general.php:431 +msgid "Limit for bulk operations" +msgstr "Лимит для массовых операций" + +#: ../../godmode/setup/setup_general.php:441 +msgid "Include agents manually disabled" +msgstr "Включение агентов, отключенных вручную" + +#: ../../godmode/setup/setup_general.php:449 +msgid "Set alias as name by default in agent creation" +msgstr "Установить алиас в качестве имени по умолчанию при создании агента" + +#: ../../godmode/setup/setup_general.php:466 +#: ../../godmode/setup/setup_general.php:477 +msgid "Log location" +msgstr "Расположение журнала" + +#: ../../godmode/setup/setup_general.php:487 +msgid "Module custom ID readonly" +msgstr "Идентификатор пользовательского модуля только для чтения" + +#: ../../godmode/setup/setup_general.php:488 +msgid "Useful for integrations" +msgstr "Полезно для интеграции" + +#: ../../godmode/setup/setup_general.php:501 +msgid "General options" +msgstr "Общие настройки" + +#: ../../godmode/setup/setup_general.php:520 +msgid "" +"Please notice that some providers like Gmail or Office365 need to " +"setup/enable manually external connections using SMTP and you need to use " +"STARTTLS on port 587.\n" +"\n" +" If you have manual settings in your pandora_server.conf, please note " +"these settings will ignore this console setup." +msgstr "" +"Обратите внимание, что некоторые провайдеры, такие как Gmail или Office365, " +"требуют ручной настройки/включения внешних соединений с использованием SMTP, " +"и вам необходимо использовать STARTTLS на порту 587.\n" +"\n" +" Если у вас есть ручные настройки в pandora_server.conf, пожалуйста, " +"обратите внимание, что эти настройки будут игнорироваться данной консольной " +"настройкой." + +#: ../../godmode/setup/setup_general.php:526 +msgid "From address" +msgstr "От адреса" + +#: ../../godmode/setup/setup_general.php:546 +msgid "SMTP Server" +msgstr "Сервер SMTP" + +#: ../../godmode/setup/setup_general.php:556 +msgid "SMTP Port" +msgstr "Порт SMTP" + +#: ../../godmode/setup/setup_general.php:566 +#: ../../include/functions_config.php:362 +msgid "Encryption" +msgstr "Шифрование" + +#: ../../godmode/setup/setup_general.php:572 +#: ../../godmode/reporting/create_container.php:294 +#: ../../godmode/reporting/create_container.php:310 +#: ../../include/ajax/events.php:848 ../../include/ajax/graph.ajax.php:145 +#: ../../operation/events/events_list.php:1595 +#: ../../operation/events/events_list.php:1686 +msgid "none" +msgstr "ни один" + +#: ../../godmode/setup/setup_general.php:606 +msgid "Email test" +msgstr "Проверка электронной почты" + +#: ../../godmode/setup/setup_general.php:658 ../../general/header.php:814 +msgid "Send" +msgstr "Отправлено" + +#: ../../godmode/setup/setup_general.php:666 +msgid "Check mail configuration" +msgstr "Проверить конфигурацию почты" + +#: ../../godmode/setup/performance.php:178 +msgid "Pandora_db running in active database." +msgstr "Pandora_db работает в активной базе данных." + +#: ../../godmode/setup/performance.php:179 +#: ../../godmode/setup/performance.php:235 +msgid "Executed:" +msgstr "Выполнено:" + +#: ../../godmode/setup/performance.php:234 +msgid "Pandora_db running in historical database." +msgstr "Pandora_db работает в исторической базе данных." + +#: ../../godmode/setup/performance.php:242 +msgid "not executed" +msgstr "не выполнено" + +#: ../../godmode/setup/performance.php:268 +#: ../../include/functions_config.php:766 +msgid "Max. days before delete traps" +msgstr "Количество дней до удаления ловушек" + +#: ../../godmode/setup/performance.php:288 +#: ../../godmode/setup/performance.php:454 +#: ../../include/functions_config.php:770 +msgid "Max. days before delete string data" +msgstr "Количество дней до удаления строковых данных" + +#: ../../godmode/setup/performance.php:298 +#: ../../include/functions_config.php:778 +msgid "Max. days before delete GIS data" +msgstr "количество дней до удаления данных ГИС" + +#: ../../godmode/setup/performance.php:308 +#: ../../godmode/setup/performance.php:414 +#: ../../include/functions_config.php:782 +msgid "Max. days before purge" +msgstr "Количество дней до чистки" + +#: ../../godmode/setup/performance.php:318 +#: ../../godmode/setup/performance.php:424 +#: ../../include/functions_config.php:790 +msgid "Max. days before compact data" +msgstr "Количество дней до архивации данных" + +#: ../../godmode/setup/performance.php:328 +#: ../../include/functions_config.php:786 +msgid "Max. days before delete unknown modules" +msgstr "Макс. количество дней до удаления неизвестных модулей" + +#: ../../godmode/setup/performance.php:338 +msgid "Max. days before delete autodisabled agents" +msgstr "Максимальное количество дней до удаления агентов с автоотключением" + +#: ../../godmode/setup/performance.php:348 +#: ../../include/functions_config.php:838 +msgid "Retention period of past special days" +msgstr "Период хранения данных за прошедшие специальные дни" + +#: ../../godmode/setup/performance.php:358 +#: ../../include/functions_config.php:842 +msgid "Max. macro data fields" +msgstr "Макс. поля данных макроса" + +#: ../../godmode/setup/performance.php:372 +#: ../../include/functions_config.php:847 +msgid "Max. days before delete inventory data" +msgstr "Максимальное количество дней до удаления данных инвентаризации" + +#: ../../godmode/setup/performance.php:434 +#: ../../godmode/setup/performance.php:515 +#: ../../include/functions_config.php:802 +msgid "Compact interpolation in hours (1 Fine-20 bad)" +msgstr "Компактная интерполяции в часах (1хорошо -20 плохо)" + +#: ../../godmode/setup/performance.php:472 +#: ../../include/functions_config.php:852 +msgid "Max. days before delete old messages" +msgstr "Максимальное количество дней до удаления старых сообщений" + +#: ../../godmode/setup/performance.php:485 +#: ../../include/functions_config.php:856 +msgid "Max. days before delete old network matrix data" +msgstr "" +"Максимальное количество дней до удаления старых данных сетевой матрицы" + +#: ../../godmode/setup/performance.php:505 +msgid "Item limit for realtime reports" +msgstr "Лимит элементов для отчетов в реальном времени" + +#: ../../godmode/setup/performance.php:528 +msgid "Last day" +msgstr "Последний день" + +#: ../../godmode/setup/performance.php:530 +msgid "10 days" +msgstr "10 дней" + +#: ../../godmode/setup/performance.php:532 +msgid "2 weeks" +msgstr "2 недели" + +#: ../../godmode/setup/performance.php:545 +#: ../../include/functions_config.php:810 +msgid "Use realtime statistics" +msgstr "Использовать текущую статистику" + +#: ../../godmode/setup/performance.php:553 +#: ../../include/functions_config.php:814 +msgid "Batch statistics period (secs)" +msgstr "Периодпакетной статистики (сек)" + +#: ../../godmode/setup/performance.php:566 +#: ../../include/functions_config.php:822 +msgid "Max. recommended number of files in attachment directory" +msgstr "" +"Максимально рекомендованное количество файлов в приклепленном каталоге" + +#: ../../godmode/setup/performance.php:576 +#: ../../include/functions_config.php:826 +msgid "Delete not init modules" +msgstr "Удалить не инициированные модули" + +#: ../../godmode/setup/performance.php:579 +msgid "Big Operation Step to purge old data" +msgstr "Большая операция по очистке старых данных" + +#: ../../godmode/setup/performance.php:589 +#: ../../include/functions_config.php:834 +msgid "Small Operation Step to purge old data" +msgstr "Большая операция по очистке старых данных" + +#: ../../godmode/setup/performance.php:599 +#: ../../include/functions_config.php:860 +msgid "Graph container - Max. Items" +msgstr "Графический контейнер - Макс. Элементы" + +#: ../../godmode/setup/performance.php:629 +msgid "SNMP walk binary" +msgstr "Двоичный SNMP walk" + +#: ../../godmode/setup/performance.php:640 +msgid "" +"SNMP bulk walk is not able to request V1 SNMP, this option will be used " +"instead (by default snmpwalk, slower)." +msgstr "" +"SNMP bulk walk не может запрашивать V1 SNMP, вместо него будет " +"использоваться эта опция (по умолчанию snmpwalk, медленнее)." + +#: ../../godmode/setup/performance.php:643 +msgid "SNMP walk binary (fallback)" +msgstr "Двоичный SNMP walk (резервный)" + +#: ../../godmode/setup/performance.php:661 +msgid "Database maintenance options" +msgstr "Варианты обслуживания базы данных" + +#: ../../godmode/setup/performance.php:667 +msgid "Historical database maintenance options" +msgstr "Опции обслуживания исторической базы данных" + +#: ../../godmode/setup/performance.php:673 +#: ../../include/functions_visual_map.php:2873 +#: ../../include/functions_netflow.php:1819 +#: ../../operation/network/network_report.php:324 +msgid "Others" +msgstr "Прочее" + +#: ../../godmode/setup/file_manager.php:67 ../../godmode/servers/plugin.php:238 +#: ../../include/functions_filemanager.php:604 +#: ../../include/functions_filemanager.php:609 +#, php-format +msgid "Index of %s" +msgstr "Параметры %s" + +#: ../../godmode/reporting/visual_console_builder.data.php:94 msgid "Create visual console" -msgstr "" +msgstr "Создание визуальной консоли" -#: ../../godmode/reporting/visual_console_builder.data.php:100 +#: ../../godmode/reporting/visual_console_builder.data.php:106 msgid "" "Use [ or ( as first character, for example '[*] Map name', to render this " "map name in main menu" @@ -30687,299 +35342,547 @@ msgstr "" "Используйте [ или (как первый символ, например '[*] Название карты', чтобы " "сделать это название карты в главном меню" -#: ../../godmode/reporting/visual_console_builder.data.php:124 +#: ../../godmode/reporting/visual_console_builder.data.php:169 +#: ../../godmode/reporting/visual_console_builder.elements.php:151 +#: ../../include/functions_visual_map_editor.php:55 +#: ../../include/functions_visual_map_editor.php:632 +#: ../../include/lib/Dashboard/Widget.php:548 +msgid "Background" +msgstr "Фон" + +#: ../../godmode/reporting/visual_console_builder.data.php:179 msgid "Background image" -msgstr "" +msgstr "Фоновое изображение" -#: ../../godmode/reporting/reporting_builder.list_items.php:487 -#: ../../godmode/reporting/reporting_builder.list_items.php:492 -msgid "Sort items" -msgstr "элементы сортировки" +#: ../../godmode/reporting/visual_console_builder.data.php:181 +#: ../../include/functions_visual_map_editor.php:347 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:450 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:519 +msgid "Background color" +msgstr "Цвет фона" -#: ../../godmode/reporting/reporting_builder.list_items.php:494 -msgid "Sort selected items from position: " -msgstr "Сортировать выбранные элементы из позиции: " +#: ../../godmode/reporting/visual_console_builder.data.php:211 +msgid "Layout size" +msgstr "Размер раскладки" -#: ../../godmode/reporting/reporting_builder.list_items.php:496 -msgid "Move before to" -msgstr "Переместить, прежде чем" +#: ../../godmode/reporting/visual_console_builder.data.php:214 +msgid "Set custom size" +msgstr "Установите пользовательский размер" -#: ../../godmode/reporting/reporting_builder.list_items.php:496 -msgid "Move after to" -msgstr "Переместить, после того как" +#: ../../godmode/reporting/visual_console_builder.data.php:220 +msgid "Get default image size" +msgstr "Получение размера изображения по умолчанию" -#: ../../godmode/reporting/reporting_builder.list_items.php:518 -#: ../../godmode/reporting/reporting_builder.list_items.php:523 -msgid "Delete items" -msgstr "Удалить элементы" +#: ../../godmode/reporting/visual_console_builder.data.php:222 +msgid "Favourite visual console" +msgstr "Избранная визуальная консоль" -#: ../../godmode/reporting/reporting_builder.list_items.php:525 -msgid "Delete selected items from position: " -msgstr "Удалить выбранные элементы из позиции: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:527 -msgid "Delete above to" -msgstr "Удалить выше к" - -#: ../../godmode/reporting/reporting_builder.list_items.php:527 -msgid "Delete below to" -msgstr "Удалить ниже к" - -#: ../../godmode/reporting/reporting_builder.list_items.php:555 -msgid "" -"Are you sure to sort the items into the report?\\nThis action change the " -"sorting of items into data base." -msgstr "" -"Вы дейтвительно хотите сортировать элементы в отчете?\\n Это действие " -"изменит порядок сортировки элементов в базе данных." - -#: ../../godmode/reporting/reporting_builder.list_items.php:576 -msgid "Please select any item to order" -msgstr "Пожалуйста, выберите какой-либо элемент в последовательности" - -#: ../../godmode/reporting/reporting_builder.list_items.php:606 -msgid "Are you sure to delete the items into the report?\\n" -msgstr "Вы действительно хотите удалить эти элементы в отчете?\\n" - -#: ../../godmode/reporting/reporting_builder.list_items.php:628 -msgid "Please select any item to delete" -msgstr "Пожалуйста, выберите любой элемент для удаления" - -#: ../../godmode/reporting/visual_console_builder.elements.php:79 -msgid "Width x Height<br>Max value" -msgstr "Ширина х Высота<br>Максимальное значение" - -#: ../../godmode/reporting/visual_console_builder.elements.php:143 -msgid "Percentile Bar" -msgstr "Проценты" - -#: ../../godmode/reporting/visual_console_builder.elements.php:148 -msgid "Percentile Bubble" -msgstr "Процентиль в виде кружков" - -#: ../../godmode/reporting/visual_console_builder.elements.php:163 -msgid "Simple Value (Process Max)" -msgstr "Простое значение (Процесс Макс)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:168 -msgid "Simple Value (Process Min)" -msgstr "Простое значение (Процесс Мин)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:173 -msgid "Simple Value (Process Avg)" -msgstr "Простое значение (Процесс Сред)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:226 -#: ../../godmode/reporting/visual_console_builder.elements.php:600 -msgid "Edit label" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:207 -msgid "Graph builder" -msgstr "Конструктор графиков" - -#: ../../godmode/reporting/graph_builder.php:227 -msgid "Graph stored successfully" -msgstr "График успешно сохранен" - -#: ../../godmode/reporting/graph_builder.php:227 -msgid "There was a problem storing Graph" -msgstr "Произошла ошибка сохранения графика" - -#: ../../godmode/reporting/graph_builder.php:230 -msgid "There was a problem adding Module" -msgstr "Ошибка при добавлении модуля" - -#: ../../godmode/reporting/graph_builder.php:233 -msgid "Update the graph" -msgstr "Обновить график" - -#: ../../godmode/reporting/graph_builder.php:233 -msgid "Bad update the graph" -msgstr "Ошибочное обновление графика" - -#: ../../godmode/reporting/graph_builder.php:236 -msgid "Graph deleted successfully" -msgstr "График удален успешно" - -#: ../../godmode/reporting/graph_builder.php:236 -msgid "There was a problem deleting Graph" -msgstr "Проблема при удалении графика" - -#: ../../godmode/reporting/graph_builder.main.php:139 -msgid "Type of graph" -msgstr "" - -#: ../../godmode/reporting/graph_builder.main.php:151 -msgid "Horizontal bars" -msgstr "" - -#: ../../godmode/reporting/graph_builder.main.php:152 -msgid "Vertical bars" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:125 -msgid "Range between elements (px)" -msgstr "Диапазон между элементами (пиксель)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:132 -msgid "Size (px)" -msgstr "Размер (пиксель)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:161 -msgid "Width (px)" -msgstr "Ширина (пикселей)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:175 -msgid "Percentile" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:180 -msgid "Bubble" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:189 -msgid "Percent" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:224 -msgid "One item per agent" -msgstr "Один элемент на агент" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:258 -#: ../../godmode/reporting/visual_console_builder.wizard.php:561 -msgid "Agent - Module" -msgstr "Агент - Модуль" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:267 -msgid "Enable link agent" -msgstr "Включить ссылку агента" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:279 -msgid "Set Parent" -msgstr "Установить Родителя" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:281 -msgid "Item created in the visualmap" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:282 -msgid "Use the agents relationship (from selected agents)" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:285 -msgid "Item in the map" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:288 -msgid "The parent relationships in Pandora will be drawn in the map." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:301 -#: ../../godmode/reporting/visual_console_builder.wizard.php:306 -msgid "Are you sure to add many elements\\nin visual map?" -msgstr "" -"Вы уверенны что хотите добавить большое количество объектов на карту?" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:482 -msgid "Please select any module or modules." -msgstr "Пожалуйста, выберите любой модуль или модули." - -#: ../../godmode/reporting/visual_console_builder.php:150 +#: ../../godmode/reporting/visual_console_builder.php:188 msgid "This file isn't image" -msgstr "" +msgstr "Этот файл не является изображением" -#: ../../godmode/reporting/visual_console_builder.php:151 +#: ../../godmode/reporting/visual_console_builder.php:191 msgid "This file isn't image." -msgstr "" +msgstr "Этот файл не является изображением." -#: ../../godmode/reporting/visual_console_builder.php:155 -#: ../../godmode/reporting/visual_console_builder.php:156 +#: ../../godmode/reporting/visual_console_builder.php:197 +#: ../../godmode/reporting/visual_console_builder.php:200 msgid "File already are exists." -msgstr "" +msgstr "Файл уже существует." -#: ../../godmode/reporting/visual_console_builder.php:162 -#: ../../godmode/reporting/visual_console_builder.php:163 +#: ../../godmode/reporting/visual_console_builder.php:208 +#: ../../godmode/reporting/visual_console_builder.php:211 msgid "The file have not image extension." -msgstr "" +msgstr "Файл не имеет расширения изображения." -#: ../../godmode/reporting/visual_console_builder.php:174 -#: ../../godmode/reporting/visual_console_builder.php:175 -#: ../../godmode/reporting/visual_console_builder.php:182 -#: ../../godmode/reporting/visual_console_builder.php:185 +#: ../../godmode/reporting/visual_console_builder.php:223 +#: ../../godmode/reporting/visual_console_builder.php:226 +#: ../../godmode/reporting/visual_console_builder.php:236 +#: ../../godmode/reporting/visual_console_builder.php:242 msgid "Problems with move file to target." -msgstr "" +msgstr "Проблемы с перемещением файла в цель." -#: ../../godmode/reporting/visual_console_builder.php:213 +#: ../../godmode/reporting/visual_console_builder.php:273 msgid "Successfully update." msgstr "Успешно обновлено." -#: ../../godmode/reporting/visual_console_builder.php:225 +#: ../../godmode/reporting/visual_console_builder.php:289 msgid "Could not be update." msgstr "Не может быть обновлено" -#: ../../godmode/reporting/visual_console_builder.php:291 -msgid "Successfully multiple delete." -msgstr "" +#: ../../godmode/reporting/visual_console_builder.php:306 +msgid "Successfully created." +msgstr "Успешно создано." -#: ../../godmode/reporting/visual_console_builder.php:292 -msgid "Unsuccessfull multiple delete." -msgstr "" +#: ../../godmode/reporting/visual_console_builder.php:322 +msgid "Could not be created." +msgstr "Не может быть создано" + +#: ../../godmode/reporting/visual_console_builder.php:369 +msgid "Successfully multiple delete." +msgstr "Успешное многократное удаление." #: ../../godmode/reporting/visual_console_builder.php:370 +msgid "Unsuccessful multiple delete." +msgstr "Неуспешное многократное удаление." + +#: ../../godmode/reporting/visual_console_builder.php:472 msgid "Successfully delete." msgstr "Успешно удалено." -#: ../../godmode/reporting/visual_console_builder.editor.php:145 -msgid "Saving in progress" -msgstr "" +#: ../../godmode/reporting/visual_console_builder.php:781 +#: ../../operation/visual_console/pure_ajax.php:158 +#: ../../operation/visual_console/view.php:175 +#: ../../operation/visual_console/legacy_view.php:161 +msgid "Services wizard" +msgstr "Помощник сервисов" -#: ../../godmode/reporting/visual_console_builder.editor.php:150 -msgid "Deletion in progress" -msgstr "" +#: ../../godmode/reporting/reporting_builder.list_items.php:706 +#: ../../godmode/reporting/reporting_builder.list_items.php:710 +#: ../../godmode/reporting/graph_builder.graph_editor.php:284 +#: ../../godmode/reporting/graph_builder.graph_editor.php:288 +msgid "Sort items" +msgstr "элементы сортировки" -#: ../../godmode/reporting/reporting_builder.item_editor.php:605 +#: ../../godmode/reporting/reporting_builder.list_items.php:713 +msgid "Sort selected items from position: " +msgstr "Сортировать выбранные элементы из позиции: " + +#: ../../godmode/reporting/reporting_builder.list_items.php:716 +msgid "Move before to" +msgstr "Переместить, прежде чем" + +#: ../../godmode/reporting/reporting_builder.list_items.php:717 +msgid "Move after to" +msgstr "Переместить, после того как" + +#: ../../godmode/reporting/reporting_builder.list_items.php:757 +#: ../../godmode/reporting/reporting_builder.list_items.php:761 +msgid "Delete items" +msgstr "Удалить элементы" + +#: ../../godmode/reporting/reporting_builder.list_items.php:764 +msgid "Delete selected items from position: " +msgstr "Удалить выбранные элементы из позиции: " + +#: ../../godmode/reporting/reporting_builder.list_items.php:767 +msgid "Delete above to" +msgstr "Удалить выше к" + +#: ../../godmode/reporting/reporting_builder.list_items.php:768 +msgid "Delete below to" +msgstr "Удалить ниже к" + +#: ../../godmode/reporting/reporting_builder.list_items.php:824 +msgid "" +"Are you sure to sort the items into the report?\\n. This action change the " +"sorting of items into data base." +msgstr "" +"Вы уверены, что нужно отсортировать элементы в отчете?\\n. Это действие " +"изменяет сортировку элементов в базе данных." + +#: ../../godmode/reporting/reporting_builder.list_items.php:844 +#: ../../godmode/reporting/graph_builder.graph_editor.php:467 +msgid "Please select any item to order" +msgstr "Пожалуйста, выберите какой-либо элемент в последовательности" + +#: ../../godmode/reporting/reporting_builder.list_items.php:874 +msgid "Are you sure to delete the items into the report?\\n" +msgstr "Вы действительно хотите удалить эти элементы в отчете?\\n" + +#: ../../godmode/reporting/reporting_builder.list_items.php:901 +msgid "Please select any item to delete" +msgstr "Пожалуйста, выберите любой элемент для удаления" + +#: ../../godmode/reporting/create_container.php:155 +msgid "Container name is missing." +msgstr "Имя контейнера отсутствует." + +#: ../../godmode/reporting/create_container.php:196 +#: ../../godmode/reporting/graph_container.php:100 +msgid "Create container" +msgstr "Создать контейнер" + +#: ../../godmode/reporting/create_container.php:205 +msgid "Container stored successfully" +msgstr "Контейнер успешно сохранен" + +#: ../../godmode/reporting/create_container.php:205 +msgid "There was a problem storing container" +msgstr "Возникла проблема с хранением контейнера" + +#: ../../godmode/reporting/create_container.php:212 +msgid "Update the container" +msgstr "Обновить контейнер" + +#: ../../godmode/reporting/create_container.php:212 +msgid "Bad update the container" +msgstr "Плохое обновление контейнера" + +#: ../../godmode/reporting/create_container.php:287 +msgid "Parent container" +msgstr "Родительский контейнер" + +#: ../../godmode/reporting/create_container.php:345 +#: ../../include/functions.php:2689 +msgid "custom" +msgstr "пользовательский" + +#: ../../godmode/reporting/create_container.php:347 +#: ../../godmode/reporting/create_container.php:348 +#: ../../godmode/reporting/create_container.php:349 +#: ../../include/functions.php:2701 ../../include/functions.php:2702 +#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148 +#: ../../include/ajax/graph.ajax.php:149 +#, php-format +msgid "%s hours" +msgstr "%s часов" + +#: ../../godmode/reporting/create_container.php:351 +#: ../../godmode/reporting/create_container.php:352 +#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 +#, php-format +msgid "%s days" +msgstr "%s дней" + +#: ../../godmode/reporting/create_container.php:353 +#: ../../include/functions.php:2704 ../../include/ajax/module.php:204 +#: ../../include/ajax/graph.ajax.php:153 +msgid "1 week" +msgstr "1 неделя" + +#: ../../godmode/reporting/create_container.php:355 +#: ../../include/functions.php:2706 ../../include/ajax/module.php:206 +#: ../../include/ajax/graph.ajax.php:155 +msgid "1 month" +msgstr "1 месяц" + +#: ../../godmode/reporting/create_container.php:365 +#: ../../godmode/reporting/create_container.php:474 +#: ../../godmode/reporting/create_container.php:528 +msgid "" +"This is the interval or period of time with which the graph data will be " +"obtained. For example, a week means data from a week ago from now. " +msgstr "" +"Это интервал или период времени, за которые будут получены данные графика. " +"Например, неделя означает данные недельной давности. " + +#: ../../godmode/reporting/create_container.php:428 +#: ../../godmode/reporting/create_container.php:583 +#: ../../godmode/reporting/graph_builder.main.php:208 +#: ../../include/functions_visual_map_editor.php:554 +msgid "Type of graph" +msgstr "Тип графика" + +#: ../../godmode/reporting/create_container.php:437 +#: ../../godmode/reporting/create_container.php:494 +#: ../../godmode/reporting/create_container.php:589 +#: ../../godmode/reporting/graph_builder.main.php:285 +#: ../../operation/agentes/stat_win.php:375 +#: ../../operation/agentes/interface_traffic_graph_win.php:234 +msgid "Show full scale graph (TIP)" +msgstr "Показать полномасштабный график (TIP)" + +#: ../../godmode/reporting/create_container.php:448 +#: ../../godmode/reporting/create_container.php:501 +#: ../../godmode/reporting/create_container.php:596 +msgid "Add item" +msgstr "Добавить элемент" + +#: ../../godmode/reporting/create_container.php:614 +msgid "There are no items in this container." +msgstr "В этом контейнере нет элементов." + +#: ../../godmode/reporting/create_container.php:623 +msgid "Agent/Module" +msgstr "Агент/Модуль" + +#: ../../godmode/reporting/create_container.php:626 +msgid "M.Group" +msgstr "M.Группа" + +#: ../../godmode/reporting/map_builder.php:293 +#: ../../godmode/reporting/map_builder.php:301 +msgid "Not copied. Error copying data" +msgstr "Не скопировано. Ошибка копирования данных" + +#: ../../godmode/reporting/map_builder.php:343 +#: ../../godmode/reporting/visual_console_favorite.php:156 +msgid "Group Recursion" +msgstr "Групповая рекурсия" + +#: ../../godmode/reporting/map_builder.php:359 +msgid "Map name" +msgstr "Имя карты" + +#: ../../godmode/reporting/map_builder.php:361 +msgid "Items" +msgstr "Предметы" + +#: ../../godmode/reporting/map_builder.php:437 +#: ../../general/first_task/map_builder.php:23 +msgid "There are no visual console defined yet." +msgstr "Визуальная консоль пока не определена." + +#: ../../godmode/reporting/graph_builder.php:314 +#: ../../operation/reporting/graph_viewer.php:183 +msgid "Graph editor" +msgstr "Графический редактор" + +#: ../../godmode/reporting/graph_builder.php:325 +#: ../../operation/reporting/graph_viewer.php:202 +msgid "View graph" +msgstr "Просмотреть график" + +#: ../../godmode/reporting/graph_builder.php:341 +msgid "Graph builder" +msgstr "Конструктор графиков" + +#: ../../godmode/reporting/graph_builder.php:377 +msgid "Graph stored successfully" +msgstr "График успешно сохранен" + +#: ../../godmode/reporting/graph_builder.php:378 +msgid "There was a problem storing Graph" +msgstr "Произошла ошибка сохранения графика" + +#: ../../godmode/reporting/graph_builder.php:386 +msgid "There was a problem adding Module" +msgstr "Ошибка при добавлении модуля" + +#: ../../godmode/reporting/graph_builder.php:393 +msgid "Update the graph" +msgstr "Обновить график" + +#: ../../godmode/reporting/graph_builder.php:394 +msgid "Bad update the graph" +msgstr "Ошибочное обновление графика" + +#: ../../godmode/reporting/graph_builder.php:401 +msgid "Graph deleted successfully" +msgstr "График удален успешно" + +#: ../../godmode/reporting/graph_builder.php:402 +msgid "There was a problem deleting Graph" +msgstr "Проблема при удалении графика" + +#: ../../godmode/reporting/graphs.php:90 +msgid "Graphs containers" +msgstr "Контейнеры графиков" + +#: ../../godmode/reporting/graphs.php:192 +#: ../../godmode/reporting/reporting_builder.php:697 +msgid "Free text for search: " +msgstr "Свободный текст для поиска: " + +#: ../../godmode/reporting/graphs.php:193 +#: ../../godmode/reporting/reporting_builder.php:699 +msgid "Search by report name or description, list matches." +msgstr "Поиск по имени или описанию отчета, список совпадений" + +#: ../../godmode/reporting/graphs.php:205 +#: ../../godmode/reporting/reporting_builder.php:725 +msgid "Show Option" +msgstr "Показать опцию" + +#: ../../godmode/reporting/graphs.php:267 +#: ../../include/functions_container.php:146 +#: ../../operation/search_graphs.php:29 +#: ../../operation/reporting/graph_viewer.php:426 +msgid "Graph name" +msgstr "Название графика" + +#: ../../godmode/reporting/graphs.php:269 +#: ../../include/functions_container.php:148 +msgid "Number of Graphs" +msgstr "Номер графика" + +#: ../../godmode/reporting/graphs.php:359 +msgid "Create graph" +msgstr "Создать график" + +#: ../../godmode/reporting/visual_console_favorite.php:194 +msgid "No favourite consoles defined" +msgstr "Не определены избранные консоли" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:199 +#, php-format +msgid "" +"The maximum number of items in a chart is %d. You have %d elements, only " +"first %d will be displayed." +msgstr "" +"Максимальное количество элементов в диаграмме - %d. У вас %d элементов, " +"будут отображены только первые %d." + +#: ../../godmode/reporting/graph_builder.graph_editor.php:291 +msgid "Sort selected items" +msgstr "Сортировать выбранные элементы" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:294 +msgid "before to" +msgstr "до" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:295 +msgid "after to" +msgstr "после" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:866 msgid "Not valid" msgstr "Не действительный" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1030 +#: ../../godmode/reporting/reporting_builder.item_editor.php:874 +msgid "" +"This type of report brings a lot of data loading, it is recommended to use " +"it for scheduled reports and not for real-time view." +msgstr "" +"Этот тип отчета требует большой загрузки данных, поэтому рекомендуется " +"использовать его для запланированных отчетов, а не для просмотра в реальном " +"времени." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1024 +msgid "Log number" +msgstr "Номер журнала" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1026 +msgid "" +"Warning: this parameter limits the contents of the logs and affects the " +"performance." +msgstr "" +"Внимание: этот параметр ограничивает содержимое журналов и влияет на " +"производительность." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1042 +msgid "" +"This is the range, or period of time over which the report renders the " +"information for this report type. For example, a week means data from a week " +"ago from now. " +msgstr "" +"Это диапазон или период времени, в течение которого отчет отображает " +"информацию для данного типа отчета. Например, неделя означает данные " +"недельной давности. " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1603 +msgid "Show modules" +msgstr "Показать модули" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1855 msgid "Target server" msgstr "Целевой сервер" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1178 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2216 msgid "Greater or equal (>=)" msgstr "Больше или равно (> =)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1179 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2217 msgid "Less or equal (<=)" msgstr "Меньше или равно (<=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1180 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2218 msgid "Less (<)" msgstr "Меньше (<)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1181 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2219 msgid "Greater (>)" msgstr "Больше (>)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1182 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2220 msgid "Equal (=)" msgstr "Равно (=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1183 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2221 msgid "Not equal (!=)" msgstr "Не равно (!=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1367 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2338 +msgid "" +"Show a summary chart with max, min and average number of total modules at " +"the end of the report and Checks." +msgstr "" +"Показать сводную диаграмму с максимальным, минимальным и средним количеством " +"общих модулей в конце отчета и Проверки." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2532 +msgid "Include extended events" +msgstr "Включите расширенные события" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2551 +msgid "By agent " +msgstr "По агенту " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2561 +msgid "By user validator " +msgstr "По валидатору пользователя " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2571 +msgid "By criticity " +msgstr "По критичности " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2581 +msgid "Validated vs unvalidated " +msgstr "Валидированные и невалидированные " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2596 +msgid "" +"With the token enabled the query will affect the Historical Database, which " +"may mean a small drop in performance." +msgstr "" +"При включенном маркере запрос будет воздействовать на историческую базу " +"данных, что может означать небольшое снижение производительности." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2781 +msgid "Include filter" +msgstr "Включить фильтр" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2785 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2794 +msgid "Free text string search on event description" +msgstr "Свободный поиск текстовой строки в описании события" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2790 +msgid "Exclude filter" +msgstr "Исключить фильтр" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2816 +msgid "" +"Lapses of time in which the period is divided to make more precise " +"calculations\n" +msgstr "" +"Промежутки времени, на которые делится период для более точных расчетов\n" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2921 +#: ../../include/functions_reporting.php:3898 +msgid "Unassigned group" +msgstr "Неназначенная группа" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2967 +#: ../../include/functions_reporting.php:3892 +msgid "Unnasigned group" +msgstr "Неназначенная группа" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2990 +msgid "Select by group" +msgstr "Выбрать по группе" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3108 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3536 +msgid "Agent Failover" +msgstr "Коммутация агентов" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3113 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3539 +msgid "Module Failover" +msgstr "Коммутация модулей" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3153 msgid "Please save the SLA for start to add items in this list." msgstr "" "Пожалуйста, сохраните SLA перед началом добавления элементов в этот список." -#: ../../godmode/reporting/reporting_builder.item_editor.php:1538 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3512 msgid "rate" msgstr "коэффициент" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1561 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3560 msgid "" "Please be careful, when the module have diferent intervals in their life, " "the summatory maybe get bad result." @@ -30987,79 +35890,142 @@ msgstr "" "Пожалуйста, будьте внимательны, когда модуль имеют разные интервалы жизни, " "сумматор может показать плохой результат." -#: ../../godmode/reporting/reporting_builder.item_editor.php:1575 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3580 msgid "Please save the report to start adding items into the list." msgstr "" "Пожалуйста, сохраните отчет перед началом добавления элементов в этот список." -#: ../../godmode/reporting/map_builder.php:187 -#: ../../godmode/reporting/map_builder.php:197 -msgid "Not copied. Error copying data" -msgstr "Не скопировано. Ошибка копирования данных" +#: ../../godmode/reporting/reporting_builder.item_editor.php:3845 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3849 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3853 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3861 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3865 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3869 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3873 +msgid "Item Editor Information" +msgstr "Информация о редакторе элементов" -#: ../../godmode/reporting/map_builder.php:255 -#: ../../general/firts_task/map_builder.php:24 -msgid "There are no visual console defined yet." -msgstr "" +#: ../../godmode/reporting/reporting_builder.item_editor.php:3846 +msgid "Please select a name." +msgstr "Пожалуйста, выберите имя." -#: ../../godmode/reporting/graphs.php:144 -msgid "Number of Graphs" -msgstr "Номер графика" +#: ../../godmode/reporting/reporting_builder.item_editor.php:3850 +msgid "Please select an agent." +msgstr "Пожалуйста, выберите агента." -#: ../../godmode/reporting/graphs.php:198 -msgid "Create graph" -msgstr "Создать график" +#: ../../godmode/reporting/reporting_builder.item_editor.php:3858 +msgid "Please insert a SQL query." +msgstr "Пожалуйста, вставьте SQL-запрос." -#: ../../godmode/reporting/reporting_builder.php:77 -msgid "" -"Your report has been planned, and the system will email you a PDF with the " -"report as soon as its finished" -msgstr "" +#: ../../godmode/reporting/reporting_builder.item_editor.php:3862 +msgid "Please insert a URL." +msgstr "Пожалуйста, вставьте URL." -#: ../../godmode/reporting/reporting_builder.php:78 -msgid "An error has ocurred" -msgstr "Произошла ошибка" +#: ../../godmode/reporting/reporting_builder.item_editor.php:3866 +msgid "Please checked a custom interval option." +msgstr "Пожалуйста, проверьте опцию пользовательского интервала." -#: ../../godmode/reporting/reporting_builder.php:332 -#: ../../godmode/reporting/reporting_builder.php:1771 -#: ../../godmode/reporting/reporting_builder.php:1823 -msgid "Reports list" -msgstr "Список отчетов" +#: ../../godmode/reporting/reporting_builder.item_editor.php:3870 +msgid "Please select a user." +msgstr "Пожалуйста, выберите пользователя." -#: ../../godmode/reporting/reporting_builder.php:436 -msgid "Free text for search: " -msgstr "Свободный текст для поиска: " +#: ../../godmode/reporting/reporting_builder.item_editor.php:3874 +msgid "Please select a group." +msgstr "Пожалуйста выберите группу." -#: ../../godmode/reporting/reporting_builder.php:437 -msgid "Search by report name or description, list matches." -msgstr "" +#: ../../godmode/reporting/visual_console_builder.elements.php:106 +msgid "Width x Height<br>Max value" +msgstr "Ширина х Высота<br>Максимальное значение" -#: ../../godmode/reporting/reporting_builder.php:447 -msgid "Show Option" -msgstr "" +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +msgid "Map linked" +msgstr "Карта связана" -#: ../../godmode/reporting/reporting_builder.php:733 -msgid "Create report" -msgstr "Создать отчёт" +#: ../../godmode/reporting/visual_console_builder.elements.php:193 +msgid "Percentile Bar" +msgstr "Проценты" -#: ../../godmode/reporting/reporting_builder.main.php:85 +#: ../../godmode/reporting/visual_console_builder.elements.php:203 +msgid "Percentile Bubble" +msgstr "Процентиль в виде кружков" + +#: ../../godmode/reporting/visual_console_builder.elements.php:212 +#: ../../mobile/operation/events.php:549 +#: ../../include/functions_visual_map_editor.php:1389 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:550 +#: ../../operation/visual_console/view.php:287 +msgid "Module Graph" +msgstr "График модуля" + +#: ../../godmode/reporting/visual_console_builder.elements.php:222 +#: ../../include/functions_visual_map_editor.php:59 +#: ../../include/functions_visual_map_editor.php:1392 +#: ../../include/functions_visual_map.php:4200 +#: ../../operation/visual_console/view.php:302 +msgid "Event history graph" +msgstr "График истории событий" + +#: ../../godmode/reporting/visual_console_builder.elements.php:231 +#: ../../include/functions_visual_map_editor.php:1393 +#: ../../include/functions_visual_map.php:4225 +#: ../../include/rest-api/models/VisualConsole/Item.php:2079 +#: ../../operation/visual_console/view.php:307 +msgid "Simple Value" +msgstr "Простое значение" + +#: ../../godmode/reporting/visual_console_builder.elements.php:242 +msgid "Simple Value (Process Max)" +msgstr "Простое значение (Процесс Макс)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:253 +msgid "Simple Value (Process Min)" +msgstr "Простое значение (Процесс Мин)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:264 +msgid "Simple Value (Process Avg)" +msgstr "Простое значение (Процесс Сред)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:294 +#: ../../include/functions_visual_map_editor.php:71 +#: ../../include/functions_visual_map_editor.php:1398 +#: ../../include/functions_visual_map.php:4180 +#: ../../operation/visual_console/view.php:332 +msgid "Box" +msgstr "Блок" + +#: ../../godmode/reporting/visual_console_builder.elements.php:324 +#: ../../include/functions_visual_map_editor.php:73 +#: ../../include/functions_visual_map_editor.php:1400 +#: ../../include/functions_visual_map.php:4240 +#: ../../include/rest-api/models/VisualConsole/Item.php:2091 +#: ../../operation/visual_console/view.php:342 +msgid "Color cloud" +msgstr "Цветное облако" + +#: ../../godmode/reporting/visual_console_builder.elements.php:351 +#: ../../godmode/reporting/visual_console_builder.elements.php:780 +msgid "Edit label" +msgstr "Редактировать метки" + +#: ../../godmode/reporting/reporting_builder.main.php:146 msgid "Only the group can view the report" msgstr "Только группа может просмотреть отчет" -#: ../../godmode/reporting/reporting_builder.main.php:86 +#: ../../godmode/reporting/reporting_builder.main.php:147 msgid "The next group can edit the report" msgstr "Следующая группа может редактировать отчет" -#: ../../godmode/reporting/reporting_builder.main.php:87 +#: ../../godmode/reporting/reporting_builder.main.php:148 msgid "Only the user and admin user can edit the report" msgstr "" "Только пользователь и администратор-пользователь могут редактировать отчет" -#: ../../godmode/reporting/reporting_builder.main.php:89 +#: ../../godmode/reporting/reporting_builder.main.php:150 msgid "Write Access" msgstr "Доступ на запись" -#: ../../godmode/reporting/reporting_builder.main.php:90 +#: ../../godmode/reporting/reporting_builder.main.php:152 msgid "" "For example, you want a report that the people of \"All\" groups can see but " "you want to edit only for you or your group." @@ -31067,118 +36033,11660 @@ msgstr "" "Например, вы хотите, чтобы в отчете, где \"Все\" группы могут это видеть, вы " "хотите изменить только для вас или вашей группы." -#: ../../godmode/reporting/reporting_builder.main.php:110 +#: ../../godmode/reporting/reporting_builder.main.php:193 msgid "Non interactive report" -msgstr "" +msgstr "Неинтерактивный отчет" -#: ../../godmode/tag/edit_tag.php:52 ../../godmode/tag/tag.php:100 +#: ../../godmode/reporting/reporting_builder.php:210 +msgid "Your report has been planned, and the system will email you a " +msgstr "" +"Ваш отчет был запланирован, и система отправит вам по электронной почте " +"сообщение " + +#: ../../godmode/reporting/reporting_builder.php:211 +msgid "An error has ocurred" +msgstr "Произошла ошибка" + +#: ../../godmode/reporting/reporting_builder.php:524 +#: ../../godmode/reporting/reporting_builder.php:3107 +#: ../../godmode/reporting/reporting_builder.php:3183 +#: ../../godmode/reporting/reporting_builder.php:3231 +msgid "Reports list" +msgstr "Список отчетов" + +#: ../../godmode/reporting/reporting_builder.php:540 +#: ../../godmode/reporting/reporting_builder.php:572 +#: ../../godmode/reporting/reporting_builder.php:3118 +#: ../../operation/menu.php:316 +#: ../../operation/reporting/custom_reporting.php:23 +msgid "Custom reporting" +msgstr "Пользовательские отчеты" + +#: ../../godmode/reporting/reporting_builder.php:962 +msgid "This report exceeds the item limit for realtime operations" +msgstr "Этот отчет превышает лимит элементов для операций в реальном времени" + +#: ../../godmode/reporting/reporting_builder.php:1182 +msgid "Create report" +msgstr "Создать отчёт" + +#: ../../godmode/reporting/reporting_builder.php:3215 +#: ../../operation/reporting/reporting_viewer.php:131 +msgid "View report" +msgstr "Просмотр отчёта" + +#: ../../godmode/reporting/reporting_builder.php:3234 +msgid "Create Custom Report" +msgstr "Создать пользовательского отчета" + +#: ../../godmode/reporting/reporting_builder.php:3286 +msgid "Unsuccessful action<br><br>" +msgstr "Неудачное действие<br><br>" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:127 +#: ../../include/functions_visual_map_editor.php:56 +msgid "Static Graph" +msgstr "График статистики" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:128 +#: ../../include/functions_visual_map_editor.php:57 +#: ../../include/functions_visual_map_editor.php:1388 +#: ../../operation/visual_console/view.php:282 +msgid "Percentile Item" +msgstr "Процентиль элемента" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:129 +#: ../../mobile/operation/home.php:102 +#: ../../include/functions_visual_map_editor.php:397 +#: ../../include/functions_visual_map.php:4185 +#: ../../include/rest-api/models/VisualConsole/Item.php:2047 +msgid "Module graph" +msgstr "Графический модуль" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:130 +#: ../../include/functions_visual_map_editor.php:60 +msgid "Simple value" +msgstr "Простое значение" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:165 +msgid "Range between elements (px)" +msgstr "Диапазон между элементами (пиксель)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +msgid "Size (px)" +msgstr "Размер (пиксель)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:248 +#: ../../include/functions_config.php:972 +msgid "Font size" +msgstr "Кегль" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:276 +#: ../../include/functions_visual_map_editor.php:612 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:370 +msgid "Process" +msgstr "Процесс" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:279 +#: ../../include/functions_visual_map_editor.php:615 +msgid "Min value" +msgstr "Мин. значение" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:280 +#: ../../godmode/reporting/visual_console_builder.wizard.php:298 +#: ../../include/functions_visual_map_editor.php:616 +#: ../../include/functions_visual_map_editor.php:682 +msgid "Max value" +msgstr "Максимальное значение" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:281 +#: ../../include/functions_visual_map_editor.php:617 +msgid "Avg value" +msgstr "Среднее значение" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:293 +msgid "Width (px)" +msgstr "Ширина (пикселей)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:315 +#: ../../include/functions_visual_map_editor.php:687 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:453 +msgid "Bubble" +msgstr "Пузырь" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:327 +#: ../../include/functions_visual_map_editor.php:711 +#: ../../include/functions_visual_map_editor.php:729 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:503 +msgid "Value to show" +msgstr "Показываемое значение" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:329 +#: ../../include/functions_visual_map_editor.php:692 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:498 +msgid "Percent" +msgstr "Процент" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:398 +msgid "One item per agent" +msgstr "Один элемент на агент" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:468 +#: ../../godmode/reporting/visual_console_builder.wizard.php:785 +msgid "Agent - Module" +msgstr "Агент - Модуль" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:485 +msgid "Enable link agent" +msgstr "Включить ссылку агента" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:496 +msgid "Set Parent" +msgstr "Установить Родителя" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:499 +msgid "Item created in the visualmap" +msgstr "Элемент, созданный на визуальной карте" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:500 +msgid "Use the agents relationship (from selected agents)" +msgstr "Используйте взаимосвязь агентов (из выбранных агентов)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:509 +msgid "Item in the map" +msgstr "Объект на карте" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:510 +#, php-format +msgid "The parenting relationships in %s will be drawn on the map." +msgstr "Родительские отношения в %s будут нарисованы на карте." + +#: ../../godmode/reporting/visual_console_builder.wizard.php:530 +#: ../../godmode/reporting/visual_console_builder.wizard.php:534 +msgid "Are you sure to add many elements\\nin visual map?" +msgstr "" +"Вы уверенны что хотите добавить большое количество объектов на карту?" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:706 +msgid "Please select any module or modules." +msgstr "Пожалуйста, выберите любой модуль или модули." + +#: ../../godmode/reporting/visual_console_builder.editor.php:163 +msgid "Min allowed size is 1024x768" +msgstr "Минимально допустимый размер - 1024x768" + +#: ../../godmode/reporting/visual_console_builder.editor.php:167 +#: ../../godmode/reporting/visual_console_builder.editor.php:169 +#: ../../godmode/reporting/visual_console_builder.editor.php:171 +#: ../../operation/snmpconsole/snmp_browser.php:211 +msgid "Action in progress" +msgstr "Действия в процессе выполнения" + +#: ../../godmode/reporting/visual_console_builder.editor.php:167 +msgid "Loading in progress" +msgstr "Идет загрузка" + +#: ../../godmode/reporting/visual_console_builder.editor.php:169 +msgid "Saving in progress" +msgstr "Выполняется сохранение" + +#: ../../godmode/reporting/visual_console_builder.editor.php:171 +msgid "Deletion in progress" +msgstr "Удаление в процессе" + +#: ../../godmode/reporting/graph_builder.main.php:218 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:319 +#: ../../operation/reporting/graph_viewer.php:319 +msgid "Bullet chart" +msgstr "Пулевая диаграмма" + +#: ../../godmode/reporting/graph_builder.main.php:219 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:320 +#: ../../operation/reporting/graph_viewer.php:320 +msgid "Gauge" +msgstr "Калибратор" + +#: ../../godmode/reporting/graph_builder.main.php:222 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:323 +#: ../../operation/reporting/graph_viewer.php:323 +msgid "Pie" +msgstr "Круговая диаграмма" + +#: ../../godmode/reporting/graph_builder.main.php:230 +msgid "Equalize maximum thresholds" +msgstr "Выравнивание максимальных порогов" + +#: ../../godmode/reporting/graph_builder.main.php:258 +msgid "Add summatory series" +msgstr "Добавить суммирующие серии" + +#: ../../godmode/reporting/graph_builder.main.php:268 +msgid "Add average series" +msgstr "Добавить среднюю серию" + +#: ../../godmode/reporting/graph_builder.main.php:279 +msgid "Modules and series" +msgstr "Модули и серии" + +#: ../../godmode/events/event_responses.editor.php:73 +msgid "Edit event responses" +msgstr "Редактирование ответов на события" + +#: ../../godmode/events/event_responses.editor.php:121 +msgid "For Command type Modal Window mode is enforced" +msgstr "Для типа команды Модальное Окно режим соблюден" + +#: ../../godmode/events/event_responses.editor.php:123 +msgid "Modal window" +msgstr "Модальное окно" + +#: ../../godmode/events/event_responses.editor.php:124 +msgid "New window" +msgstr "Новое окно" + +#: ../../godmode/events/event_responses.editor.php:173 +#: ../../include/class/AgentWizard.class.php:541 +#: ../../include/functions_snmp_browser.php:766 +msgid "Local console" +msgstr "Локальная консоль" + +#: ../../godmode/events/event_responses.editor.php:190 +#: ../../include/class/AgentWizard.class.php:707 +msgid "Server to execute command" +msgstr "Сервер для выполнения команды" + +#: ../../godmode/events/event_responses.editor.php:196 +msgid "Command timeout (s)" +msgstr "Время ожидания команды (с)" + +#: ../../godmode/events/event_edit_filter.php:243 +msgid "Update Filter" +msgstr "Обновить фильтр" + +#: ../../godmode/events/event_edit_filter.php:245 +msgid "Create Filter" +msgstr "Создать фильтр" + +#: ../../godmode/events/event_edit_filter.php:255 +#: ../../include/ajax/custom_fields.php:571 +#: ../../include/ajax/custom_fields.php:618 +#: ../../include/ajax/custom_fields.php:662 ../../include/ajax/events.php:605 +#: ../../operation/events/events_list.php:421 +msgid "Filter name" +msgstr "Название фильтра" + +#: ../../godmode/events/event_edit_filter.php:258 +msgid "Save in group" +msgstr "Сохранить в группе" + +#: ../../godmode/events/event_edit_filter.php:258 +msgid "" +"This group will be use to restrict the visibility of this filter with ACLs" +msgstr "" +"Эта группа будет использоваться для ограничения видимости данного фильтра с " +"ACL" + +#: ../../godmode/events/event_edit_filter.php:408 +msgid "Choose between the users who have validated an event. " +msgstr "Выберите между пользователями с утвержденными событиями. " + +#: ../../godmode/events/event_edit_filter.php:431 +#: ../../operation/events/events_list.php:972 +#: ../../operation/events/events.php:1032 +#: ../../operation/events/events.php:1536 +msgid "Group events" +msgstr "События группы" + +#: ../../godmode/events/event_edit_filter.php:596 +#: ../../operation/events/events_list.php:828 +#: ../../operation/events/events.php:1200 +msgid "Filter alert events" +msgstr "Фильтр предупреждающих событий" + +#: ../../godmode/events/event_edit_filter.php:597 +#: ../../operation/events/events_list.php:829 +#: ../../operation/events/events.php:1201 +msgid "Only alert events" +msgstr "Только предупреждающие события" + +#: ../../godmode/events/event_edit_filter.php:624 +#: ../../include/functions_events.php:6572 +#: ../../operation/events/events_list.php:989 +#: ../../operation/events/events.php:1108 +#: ../../operation/events/events.build_table.php:303 +msgid "Extra ID" +msgstr "Дополнительное ID" + +#: ../../godmode/events/event_edit_filter.php:631 +msgid "Id souce event" +msgstr "Id источника события" + +#: ../../godmode/events/event_responses.list.php:32 +msgid "No responses found" +msgstr "Ответы не найдены" + +#: ../../godmode/events/event_responses.list.php:92 +msgid "Create response" +msgstr "Создать ответ" + +#: ../../godmode/events/custom_events.php:76 +msgid "Load the fields from previous events" +msgstr "Загрузите поля из предыдущих событий" + +#: ../../godmode/events/custom_events.php:76 +msgid "Event fields will be loaded. Do you want to continue?" +msgstr "Поля события будут загружены. Вы хотите продолжить?" + +#: ../../godmode/events/custom_events.php:94 +#: ../../include/functions_events.php:227 +msgid "Event Id" +msgstr "Id события" + +#: ../../godmode/events/custom_events.php:95 +#: ../../mobile/operation/events.php:124 ../../include/functions_events.php:230 +#: ../../include/functions_events.php:6491 +#: ../../operation/events/events.build_table.php:172 +msgid "Event Name" +msgstr "Имя события" + +#: ../../godmode/events/custom_events.php:96 +#: ../../include/functions_events.php:233 +#: ../../operation/events/events.php:1746 +msgid "Agent ID" +msgstr "ID агента" + +#: ../../godmode/events/custom_events.php:97 +msgid "Agent Name" +msgstr "Имя агента" + +#: ../../godmode/events/custom_events.php:102 +#: ../../include/functions_events.php:254 +#: ../../operation/events/events.build_table.php:232 +msgid "Event Type" +msgstr "Тип события" + +#: ../../godmode/events/custom_events.php:103 +#: ../../include/class/ModuleTemplates.class.php:1204 +#: ../../include/class/AgentWizard.class.php:1219 +#: ../../include/class/AgentWizard.class.php:3909 +#: ../../include/functions_events.php:257 +#: ../../operation/events/events.build_table.php:243 +msgid "Module Name" +msgstr "Имя модуля" + +#: ../../godmode/events/custom_events.php:109 +#: ../../include/functions_events.php:275 +msgid "Extra Id" +msgstr "Дополнительный идентификатор" + +#: ../../godmode/events/custom_events.php:113 +#: ../../include/functions_events.php:287 +msgid "Server Name" +msgstr "Имя сервера" + +#: ../../godmode/events/custom_events.php:116 +#: ../../include/functions_events.php:305 +msgid "Severity mini" +msgstr "Низкий приоритет" + +#: ../../godmode/events/custom_events.php:117 +#: ../../include/functions_events.php:296 +#: ../../include/functions_events.php:5025 +msgid "Module custom ID" +msgstr "Пользовательский ID модуля" + +#: ../../godmode/events/event_responses.php:50 +msgid "Response added succesfully" +msgstr "Ответ добавлен успешно" + +#: ../../godmode/events/event_responses.php:52 +msgid "Response cannot be added" +msgstr "Ответ не может быть добавлен" + +#: ../../godmode/events/event_responses.php:75 +msgid "Response updated succesfully" +msgstr "Ответ успешно обновлен" + +#: ../../godmode/events/event_responses.php:77 +msgid "Response cannot be updated" +msgstr "Ответ не может быть обновлен" + +#: ../../godmode/events/event_responses.php:87 +msgid "Response deleted succesfully" +msgstr "Ответ успешно удален" + +#: ../../godmode/events/event_responses.php:89 +msgid "Response cannot be deleted" +msgstr "Ответ не может быть удален" + +#: ../../godmode/wizards/HostDevices.class.php:152 +msgid "Net Scan" +msgstr "Сетевое сканирование" + +#: ../../godmode/wizards/HostDevices.class.php:172 +msgid "Custom NetScan" +msgstr "Пользовательский NetScan" + +#: ../../godmode/wizards/HostDevices.class.php:180 +msgid "Manage NetScan scripts" +msgstr "Управление скриптами NetScan" + +#: ../../godmode/wizards/HostDevices.class.php:325 +#, php-format +msgid "Invalid mimetype for csv file: %s" +msgstr "Неверный mimetype для файла csv: %s" + +#: ../../godmode/wizards/HostDevices.class.php:348 +#, php-format +msgid "Invalid content readed from csv file: %s" +msgstr "Неверное содержимое, считанное из файла csv: %s" + +#: ../../godmode/wizards/HostDevices.class.php:391 +msgid "" +"This network scan task has been already defined. Please edit it or create a " +"new one." +msgstr "" +"Эта задача сканирования сети уже определена. Пожалуйста, отредактируйте ее " +"или создайте новую." + +#: ../../godmode/wizards/HostDevices.class.php:433 +msgid "You must provide a valid network." +msgstr "Вы должны предоставить действующую сеть." + +#: ../../godmode/wizards/HostDevices.class.php:483 +#: ../../godmode/wizards/HostDevices.class.php:595 +#: ../../include/class/CustomNetScan.class.php:222 +msgid "Failed to find network scan task." +msgstr "Не удалось найти задачу сканирования сети." + +#: ../../godmode/wizards/HostDevices.class.php:700 +#, php-format +msgid "\"%s\" features" +msgstr "\"%s\" функции" + +#: ../../godmode/wizards/HostDevices.class.php:728 +#: ../../include/class/CustomNetScan.class.php:403 +msgid "Internal error, please re-run this wizard." +msgstr "Внутренняя ошибка, пожалуйста, запустите помощника повторно." + +#: ../../godmode/wizards/HostDevices.class.php:813 +#: ../../include/class/CustomNetScan.class.php:545 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "Минимальный рекомендуемый интервал для Рекон Задачи - 5 минут" + +#: ../../godmode/wizards/HostDevices.class.php:868 +msgid "Use CSV file definition" +msgstr "Используйте определение файла CSV" + +#: ../../godmode/wizards/HostDevices.class.php:869 +msgid "Define targets using csv o network definition." +msgstr "Определите цели с помощью csv o определения сети." + +#: ../../godmode/wizards/HostDevices.class.php:887 +msgid "Networks (csv)" +msgstr "Сети (csv)" + +#: ../../godmode/wizards/HostDevices.class.php:888 +msgid "" +"You can upload a CSV file. Each line must contain a network in IP/MASK " +"format. For instance: 192.168.1.1/32" +msgstr "" +"Вы можете загрузить файл CSV. Каждая строка должна содержать сеть в формате " +"IP/MASK. Например: 192.168.1.1/32" + +#: ../../godmode/wizards/HostDevices.class.php:900 +msgid "Networks (current)" +msgstr "Сети (текущие)" + +#: ../../godmode/wizards/HostDevices.class.php:901 +msgid "Plese upload a new file to overwrite this content." +msgstr "Загрузите новый файл, чтобы перезаписать это содержимое." + +#: ../../godmode/wizards/HostDevices.class.php:917 +msgid "" +"You can specify several networks, separated by commas, for example: " +"192.168.50.0/24,192.168.60.0/24" +msgstr "" +"Вы можете указать несколько сетей, разделенных запятыми, например: " +"192.168.50.0/24,192.168.60.0/24" + +#: ../../godmode/wizards/HostDevices.class.php:1047 +msgid "Filter by opened ports" +msgstr "Фильтр по открытым портам" + +#: ../../godmode/wizards/HostDevices.class.php:1049 +msgid "" +"Targets will be scanned if at least one of defined ports (comma separated) " +"is open." +msgstr "" +"Цели будут сканироваться, если хотя бы один из заданных портов (через " +"запятую) открыт." + +#: ../../godmode/wizards/HostDevices.class.php:1062 +msgid "Auto discover known hardware" +msgstr "Автоматическое обнаружение известного оборудования" + +#: ../../godmode/wizards/HostDevices.class.php:1064 +msgid "" +"Targets will be monitorized based on its <i>Private Enterprise Number</i>. " +"Requires SNMP." +msgstr "" +"Цели будут отслеживаться на основе их <i>частного номера предприятия</i>. " +"Требуется SNMP." + +#: ../../godmode/wizards/HostDevices.class.php:1079 +msgid "" +"Module <i>Host Alive</i> will be added to discovered agents by default." +msgstr "" +"Модуль <i>Host Alive</i> будет добавлен в обнаруженные агенты по умолчанию." + +#: ../../godmode/wizards/HostDevices.class.php:1127 +#, php-format +msgid "" +"Configured networks could generate %d agents, your license only allows %d, " +"'review results' is mandatory." +msgstr "" +"Настроенные сети могут генерировать %d агентов, ваша лицензия разрешает " +"только %d, \"просмотр результатов\" обязателен." + +#: ../../godmode/wizards/HostDevices.class.php:1135 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:859 +msgid "Review results" +msgstr "Просмотр результатов" + +#: ../../godmode/wizards/HostDevices.class.php:1137 +msgid "Targets must be validated by user before create agents." +msgstr "Цели должны быть проверены пользователем перед созданием агентов." + +#: ../../godmode/wizards/HostDevices.class.php:1163 +msgid "Apply autoconfiguration rules" +msgstr "Применить правил автоконфигурации" + +#: ../../godmode/wizards/HostDevices.class.php:1165 +msgid "" +"System is able to auto configure detected host & devices by applying your " +"defined configuration rules." +msgstr "" +"Система способна автоматически конфигурировать обнаруженные хосты и " +"устройства, применяя заданные вами правила конфигурации." + +#: ../../godmode/wizards/HostDevices.class.php:1181 +msgid "SNMP enabled" +msgstr "SNMP включен" + +#: ../../godmode/wizards/HostDevices.class.php:1223 +msgid "SNMP communities to try with" +msgstr "SNMP-сообщества, которые можно попробовать использовать с" + +#: ../../godmode/wizards/HostDevices.class.php:1225 +msgid "" +"You can specify several values, separated by commas, for example: " +"public,mysecret,1234" +msgstr "" +"Вы можете указать несколько значений, разделенных запятыми, например: " +"public,mysecret,1234" + +#: ../../godmode/wizards/HostDevices.class.php:1353 +msgid "OS detection" +msgstr "OS определение" + +#: ../../godmode/wizards/HostDevices.class.php:1365 +msgid "Name resolution" +msgstr "Разрешение имен" + +#: ../../godmode/wizards/HostDevices.class.php:1376 +msgid "Parent detection" +msgstr "Первоначальное обнаружение" + +#: ../../godmode/wizards/HostDevices.class.php:1387 +msgid "Parent recursion" +msgstr "Исходная рекурсия" + +#: ../../godmode/wizards/HostDevices.class.php:1398 +msgid "VLAN enabled" +msgstr "VLAN включен" + +#: ../../godmode/wizards/HostDevices.class.php:1409 +msgid "WMI enabled" +msgstr "WMI включен" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:248 +msgid "Task successfully deleted" +msgstr "Задание успешно удалено" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:352 +msgid "Console Task successfully deleted" +msgstr "Задание консоли успешно удалено" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:394 +msgid "Task successfully disabled" +msgstr "Задание успешно отключено" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:439 +msgid "Task successfully enabled" +msgstr "Задание успешно включено" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:471 +#: ../../operation/servers/recon_view.php:33 +msgid "Discovery Server is disabled" +msgstr "Сервер Discovery отключен" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:554 +msgid "Task type" +msgstr "Тип задания" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:633 +msgid "This task has not been completely defined, please edit it" +msgstr "Это задание определено не полностью, пожалуйста, отредактируйте его" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:683 +msgid "Discovery Cloud Azure Compute" +msgstr "Discovery Cloud Azure Compute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:687 +msgid "Cloud.Azure.Compute" +msgstr "Cloud.Azure.Compute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:696 +msgid "Discovery Cloud AWS EC2" +msgstr "Discovery Cloud AWS EC2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:700 +msgid "Cloud.AWS.EC2" +msgstr "Cloud.AWS.EC2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:709 +msgid "Discovery Cloud RDS" +msgstr "Discovery Cloud RDS" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:713 +msgid "Discovery.Cloud.Aws.RDS" +msgstr "Discovery.Cloud.Aws.RDS" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:722 +msgid "Discovery Cloud S3" +msgstr "Discovery Cloud S3" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:726 +msgid "Discovery.Cloud.Aws.S3" +msgstr "Discovery.Cloud.Aws.S3" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:735 +msgid "Discovery Applications MySQL" +msgstr "Discovery Приложения MySQL" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:739 +msgid "Discovery.App.MySQL" +msgstr "Discovery.App.MySQL" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:748 +msgid "Discovery Applications Oracle" +msgstr "Приложения Oracle Discovery" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:752 +msgid "Discovery.App.Oracle" +msgstr "Discovery.App.Oracle" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:761 +msgid "Discovery Applications DB2" +msgstr "Приложения DB2 Discovery" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:765 +msgid "Discovery.App.DB2" +msgstr "Discovery.App.DB2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:776 +msgid "Discovery.Agent.Deployment" +msgstr "Discovery.Agent.Deployment" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:784 +msgid "Discovery Applications Microsoft SQL Server" +msgstr "Microsoft SQL Server для приложений Discovery" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:786 +msgid "Discovery.App.Microsoft SQL Server" +msgstr "Discovery.App.Microsoft SQL Server" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:797 +msgid "Discovery NetScan" +msgstr "Discovery NetScan" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:801 +msgid "Discovery.NetScan" +msgstr "Discovery.NetScan" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:847 +msgid "Not executed yet" +msgstr "Пока не выполнено" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:871 +msgid "View summary" +msgstr "Посмотреть краткий отчет" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:892 +msgid "View map" +msgstr "Показать карту" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:916 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:942 +msgid "Edit task" +msgstr "Редактировать задание" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:926 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:952 +msgid "Delete task" +msgstr "Удалить задание" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:964 +msgid "enable task" +msgstr "включить задачу" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:972 +msgid "Disable task" +msgstr "Выключить задачу" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:991 +msgid "has no discovery tasks assigned" +msgstr "не выбраны задачи discovery" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:998 +msgid "Server Tasks" +msgstr "Задачи Сервера" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1145 +msgid "Overall Progress" +msgstr "Общий прогресс" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1164 +msgid "Scanning network" +msgstr "Сканирование сети" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1168 +msgid "Checking" +msgstr "Проверяется" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1172 +msgid "Finding AFT connectivity" +msgstr "Поиск возможностей подключения AFT" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1176 +msgid "Finding traceroute connectivity" +msgstr "Поиск соединений traceroute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1180 +msgid "Finding gateway connectivity" +msgstr "Поиск входного соединения" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1184 +msgid "Searching for devices..." +msgstr "Поиск устройств..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1188 +msgid "Analyzing application..." +msgstr "Анализ приложения..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1192 +msgid "Executing custom queries..." +msgstr "Выполнение пользовательских запросов..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1196 +msgid "Testing modules..." +msgstr "Тестирование модулей..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1200 +msgid "Processing results..." +msgstr "Обработка результатов..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1204 +msgid "Processing..." +msgstr "Обработка..." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1237 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1794 +#: ../../operation/agentes/log_sources_status.php:30 +msgid "Review" +msgstr "Предпросмотр" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1314 +msgid "Host&devices total" +msgstr "Общее количество Host&devices" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1319 +msgid "Agents monitored" +msgstr "Агенты под наблюдением" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1324 +msgid "Agents pending" +msgstr "Агенты в ожидании" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1330 +msgid "Hosts discovered" +msgstr "Обнаруженные хосты" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1346 +msgid "Responding SNMP" +msgstr "Реагирование SNMP" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1351 +msgid "Responding WMI" +msgstr "Реагирование WMI" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1393 +msgid "Task completed." +msgstr "Задание завершено." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1395 +msgid "This task has never executed" +msgstr "Это задание никогда не выполнялось" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1407 +msgid "Task queued, please wait." +msgstr "Задание поставлено в очередь, пожалуйста, подождите." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1451 +msgid "" +"Please ensure instances or regions are being monitorized and 'scan and " +"general monitoring' is enabled." +msgstr "" +"Убедитесь, что экземпляры или регионы подвергаются мониторингу и включено " +"\"сканирование и общий мониторинг\"." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1469 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1611 +msgid "Invalid task" +msgstr "Недопустимое задание" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1568 +msgid "Please select devices to be monitored" +msgstr "" +"Пожалуйста, выберите устройства, которые будут подвергнуты мониторингу" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1571 +msgid "select all" +msgstr "выбрать всё" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1574 +msgid "deselect all" +msgstr "отменить выбор всех" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1577 +msgid "expand all" +msgstr "развернуть всё" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1580 +msgid "collapse all" +msgstr "свернуть всё" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1594 +msgid "No devices found in temporary resources, please re-launch." +msgstr "" +"Во временных ресурсах не найдено устройств, пожалуйста, запустите повторно." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1661 +#, php-format +msgid "Your selection exceeds the agents available on your license. Limit %d" +msgstr "" +"Ваш выбор превышает количество агентов, доступных в вашей лицензии. Предел %d" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1685 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1704 +msgid "Removed" +msgstr "Удалено" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1741 +msgid "No changes. Re-Scheduled" +msgstr "Без изменений. Запланировано заново" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1743 +msgid "Scheduled for creation" +msgstr "Запланировано на создание" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1770 +msgid "Cancelled" +msgstr "Отменено" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1771 +msgid "Server has been restarted while executing this task, please retry." +msgstr "" +"Сервер был перезапущен во время выполнения этого задания, пожалуйста, " +"повторите попытку." + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1778 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1784 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +#: ../../operation/servers/recon_view.php:140 +msgid "Done" +msgstr "Готово" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1782 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1799 +msgid "Not started" +msgstr "Не начато" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1804 +msgid "Searching" +msgstr "Идёт поиск" + +#: ../../godmode/servers/servers.build_table.php:104 +msgid "Server has crashed." +msgstr "Сервер вышел из строя." + +#: ../../godmode/servers/servers.build_table.php:112 +msgid "Server is stopped." +msgstr "Сервер остановлен" + +#: ../../godmode/servers/servers.build_table.php:124 +msgid "Exec server enabled" +msgstr "Сервер исполнения включен" + +#: ../../godmode/servers/servers.build_table.php:182 +msgid "Manage Discovery tasks" +msgstr "Управление задачами Discovery" + +#: ../../godmode/servers/servers.build_table.php:197 +msgid "Reset module status and fired alert counts" +msgstr "Восстановить статус модуля и настроить число оповещений" + +#: ../../godmode/servers/servers.build_table.php:208 +msgid "Claim back SNMP modules" +msgstr "Затребовать обратно SNMP модули" + +#: ../../godmode/servers/modificar_server.php:34 +msgid "Update Server" +msgstr "Обновить Сервер" + +#: ../../godmode/servers/modificar_server.php:40 +#: ../../godmode/servers/plugin.php:348 ../../godmode/servers/plugin.php:1037 +msgid "Standard" +msgstr "Стандартный" + +#: ../../godmode/servers/modificar_server.php:75 +msgid "Exec Server" +msgstr "Запустить сервер" + +#: ../../godmode/servers/modificar_server.php:83 +msgid "Leave blank to use SSH default port (22)" +msgstr "Оставьте пустым, чтобы использовать порт SSH по умолчанию (22)" + +#: ../../godmode/servers/modificar_server.php:88 +msgid "Check Exec Server" +msgstr "Проверить работу сервера" + +#: ../../godmode/servers/modificar_server.php:104 +msgid "Credential boxes" +msgstr "Ячейки для учетных данных" + +#: ../../godmode/servers/modificar_server.php:128 +msgid "Standard editor" +msgstr "Стандартный редактор" + +#: ../../godmode/servers/modificar_server.php:132 +msgid "Advanced editor" +msgstr "Расширенный редактор" + +#: ../../godmode/servers/modificar_server.php:139 +msgid "Remote Configuration" +msgstr "Дистанционная конфигурация" + +#: ../../godmode/servers/modificar_server.php:148 +#, php-format +msgid "%s servers" +msgstr "%s серверов" + +#: ../../godmode/servers/modificar_server.php:199 +msgid "Server updated successfully" +msgstr "Сервер обновлен успешно" + +#: ../../godmode/servers/modificar_server.php:201 +msgid "There was a problem updating the server" +msgstr "Проблема при обновлении сервера" + +#: ../../godmode/servers/plugin.php:56 +msgid "Network Components" +msgstr "Компоненты сети" + +#: ../../godmode/servers/plugin.php:291 ../../godmode/servers/plugin.php:619 +msgid "To manage plugin you must activate centralized management" +msgstr "" +"Для управления плагином необходимо активировать централизованное управление" + +#: ../../godmode/servers/plugin.php:304 +msgid "Plugin update" +msgstr "Обновление плагина" + +#: ../../godmode/servers/plugin.php:316 ../../godmode/servers/plugin.php:668 +msgid "" +"This console is not manager of this environment,\n" +" \t\tplease manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "" +"Эта консоль не является менеджером данной среды,\n" +" \t\tпожалуйста, управляйте этой функцией с централизованной консоли " +"менеджера (Метаконсоль)." + +#: ../../godmode/servers/plugin.php:347 +msgid "Plugin type" +msgstr "Тип плагина" + +#: ../../godmode/servers/plugin.php:349 ../../godmode/servers/plugin.php:1039 +msgid "Nagios" +msgstr "Nagios" + +#: ../../godmode/servers/plugin.php:354 +msgid "Max. timeout" +msgstr "timeout" + +#: ../../godmode/servers/plugin.php:354 +msgid "" +"This value only will be applied if is minor than the server general " +"configuration plugin timeout" +msgstr "" +"Данное значение будет применяться тольло если оно меньше чем время ожидания " +"сервера общей конфигурации плагина" + +#: ../../godmode/servers/plugin.php:354 +msgid "" +"If you set a 0 seconds timeout, the server plugin timeout will be used" +msgstr "" +"Если вы установили время ожидания 0 секунд, время ожидания сервера плагина " +"будет использоваться" + +#: ../../godmode/servers/plugin.php:403 +msgid "Plugin command" +msgstr "Комманда плагина" + +#: ../../godmode/servers/plugin.php:403 +msgid "" +"Specify interpreter and plugin path. The server needs permissions to run it." +msgstr "" +"Укажите путь к интерпретатору и плагину. Для его запуска необходимы " +"разрешения сервера." + +#: ../../godmode/servers/plugin.php:415 +msgid "Plug-in parameters" +msgstr "Параметры плагинов" + +#: ../../godmode/servers/plugin.php:507 +#: ../../include/class/ManageNetScanScripts.class.php:667 +msgid "Hide value" +msgstr "Скрыть значение" + +#: ../../godmode/servers/plugin.php:508 +#: ../../include/class/ManageNetScanScripts.class.php:669 +msgid "This field will show up as dots like a password" +msgstr "Данное поле будет отображаться в виде точек, как пароль" + +#: ../../godmode/servers/plugin.php:583 ../../godmode/servers/plugin.php:588 +msgid "Parameters macros" +msgstr "Параметры макросов" + +#: ../../godmode/servers/plugin.php:627 +msgid "" +"The previous configuration of plugins has been imported from the nodes. " +"Please check that the definitions are correct." +msgstr "" +"Предыдущая конфигурация плагинов была импортирована из узлов. Пожалуйста, " +"проверьте правильность определений." + +#: ../../godmode/servers/plugin.php:628 +msgid "" +"These definitions will not be operational until you manually \n" +" \t\t\tcopy the files from the nodes to the atachment/plugin/ directory " +"of the meta console." +msgstr "" +"Эти определения не будут работать до тех пор, пока вы вручную \n" +" \t\t\t не скопируйте файлы с узлов в каталог atachment/plugin/ " +"метаконсоли." + +#: ../../godmode/servers/plugin.php:655 +#, php-format +msgid "Plug-ins registered on %s" +msgstr "Плагины, зарегистрированные на %s" + +#: ../../godmode/servers/plugin.php:677 +msgid "You need to create your own plugins with Windows compatibility" +msgstr "Необходимо создать собственные плагины, совместимые с Windows" + +#: ../../godmode/servers/plugin.php:743 +msgid "Problem updating plugin" +msgstr "Ошибка при обновлении плагина" + +#: ../../godmode/servers/plugin.php:745 +msgid "Plugin updated successfully" +msgstr "Плагин обновлен успешно" + +#: ../../godmode/servers/plugin.php:803 +msgid "Problem creating plugin" +msgstr "Ошибка при создании плагина" + +#: ../../godmode/servers/plugin.php:805 +msgid "Plugin created successfully" +msgstr "Плагин создан успешно" + +#: ../../godmode/servers/plugin.php:817 ../../godmode/servers/plugin.php:851 +msgid "Problem deleting plugin" +msgstr "Ошибка при удалении плагина" + +#: ../../godmode/servers/plugin.php:819 ../../godmode/servers/plugin.php:853 +msgid "Plugin deleted successfully" +msgstr "Плагин удален успешно" + +#: ../../godmode/servers/plugin.php:864 +msgid "Problem deploying plugin" +msgstr "Проблема с развертыванием плагина" + +#: ../../godmode/servers/plugin.php:866 +msgid "Plugin deployed successfully" +msgstr "Плагин успешно развернут" + +#: ../../godmode/servers/plugin.php:1076 +msgid "All the modules that are using this plugin will be deleted" +msgstr "Все модули, которые используются данным плагином будут удалены" + +#: ../../godmode/servers/plugin.php:1103 +msgid "There are no plugins in the system" +msgstr "Нет плагинов в системе" + +#: ../../godmode/servers/plugin.php:1117 +#, php-format +msgid "List of modules and components created by \"%s\" " +msgstr "Список модулей и компонентов, созданных \"%s\" " + +#: ../../godmode/servers/plugin.php:1223 ../../godmode/servers/plugin.php:1239 +msgid "Some modules or components are using the plugin" +msgstr "Некоторые модули или компоненты используют плагин" + +#: ../../godmode/servers/plugin.php:1224 +msgid "" +"The modules or components should be updated manually or using the bulk " +"operations for plugins after this change" +msgstr "" +"После этого изменения модули или компоненты должны быть обновлены вручную " +"или с помощью массовых операций для плагинов" + +#: ../../godmode/servers/plugin.php:1226 +msgid "Are you sure you want to perform this action?" +msgstr "Вы уверены, что хотите выполнить это действие?" + +#: ../../godmode/servers/plugin.php:1240 +msgid "Are you sure you want to unlock this item?" +msgstr "Вы уверены, что хотите разблокировать этот элемент?" + +#: ../../godmode/servers/plugin.php:1260 +msgid "" +"The plugin command cannot be updated because some modules or components are " +"using the plugin." +msgstr "" +"Комманды плагина не могут быть обновлены, поскольку некоторые модули или " +"компоненты используются данным плагином." + +#: ../../godmode/servers/plugin.php:1266 +msgid "" +"The plugin macros cannot be updated because some modules or components are " +"using the plugin" +msgstr "" +"Макросы плагина не могут быть обновлены, потому что некоторые модули или " +"компоненты используют плагин" + +#: ../../godmode/servers/discovery.php:182 +msgid "You must create a task first" +msgstr "Сначала необходимо создать задачу" + +#: ../../godmode/tag/tag.php:99 +msgid "Number of modules" +msgstr "Число модулей" + +#: ../../godmode/tag/tag.php:101 +msgid "Number of policy modules" +msgstr "Число модулей политики" + +#: ../../godmode/tag/tag.php:123 ../../godmode/tag/edit_tag.php:54 +#: ../../godmode/tag/edit_tag.php:72 msgid "List tags" msgstr "Список тегов" -#: ../../godmode/tag/edit_tag.php:63 ../../godmode/tag/tag.php:110 +#: ../../godmode/tag/tag.php:138 ../../godmode/tag/edit_tag.php:82 msgid "Tags configuration" msgstr "Конфигурация тегов" -#: ../../godmode/tag/edit_tag.php:87 +#: ../../godmode/tag/tag.php:154 +msgid "Error deleting tag" +msgstr "Ошибка при удалении тега" + +#: ../../godmode/tag/tag.php:157 +msgid "Successfully deleted tag" +msgstr "Тег успешно удален" + +#: ../../godmode/tag/tag.php:237 +msgid "Tag name" +msgstr "Имя тэга" + +#: ../../godmode/tag/tag.php:239 +msgid "Detail information" +msgstr "Подробная информация" + +#: ../../godmode/tag/tag.php:240 +msgid "Number of modules affected" +msgstr "Число пораженных модулей" + +#: ../../godmode/tag/tag.php:242 ../../godmode/tag/edit_tag.php:232 +msgid "Phone" +msgstr "Телефон" + +#: ../../godmode/tag/tag.php:262 +msgid "Tag details" +msgstr "Детали тега" + +#: ../../godmode/tag/tag.php:295 +#, php-format +msgid "Emails for the tag: %s" +msgstr "Адреса электронной почты для тегов: %s" + +#: ../../godmode/tag/tag.php:309 +#, php-format +msgid "Phones for the tag: %s" +msgstr "Номера телефонов для тегов: %s" + +#: ../../godmode/tag/tag.php:343 +msgid "No tags defined" +msgstr "Теги не определены" + +#: ../../godmode/tag/tag.php:357 +msgid "Create tag" +msgstr "Создать тег" + +#: ../../godmode/tag/edit_tag.php:115 msgid "Error updating tag" msgstr "Ошибка при обновлении тегов" -#: ../../godmode/tag/edit_tag.php:91 +#: ../../godmode/tag/edit_tag.php:118 msgid "Successfully updated tag" msgstr "Тег успешно обновлен" -#: ../../godmode/tag/edit_tag.php:117 +#: ../../godmode/tag/edit_tag.php:144 msgid "Error creating tag" msgstr "Ошибка при создании тега" -#: ../../godmode/tag/edit_tag.php:123 +#: ../../godmode/tag/edit_tag.php:149 msgid "Successfully created tag" msgstr "Тег успешно создан" -#: ../../godmode/tag/edit_tag.php:156 -msgid "Update Tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:159 -msgid "Create Tag" -msgstr "" - #: ../../godmode/tag/edit_tag.php:182 +msgid "Update Tag" +msgstr "Обновить тег" + +#: ../../godmode/tag/edit_tag.php:186 +msgid "Create Tag" +msgstr "Создать тег" + +#: ../../godmode/tag/edit_tag.php:210 msgid "Hyperlink to help information that has to exist previously." msgstr "" "Гиперссылка на справочную информацию, которая должна была существовать ранее." -#: ../../godmode/tag/edit_tag.php:192 +#: ../../godmode/tag/edit_tag.php:222 msgid "Associated Email direction to use later in alerts associated to Tags." msgstr "" "Сопоставленное Email направление для дальнейшего использования в " "оповещениях, связанных с тегами." -#: ../../godmode/tag/edit_tag.php:202 +#: ../../godmode/tag/edit_tag.php:234 msgid "Associated phone number to use later in alerts associated to Tags." msgstr "" "Сопоставленный номер телефона для дальнейшего использования в оповещениях, " "связанных с тегами." -#: ../../godmode/tag/tag.php:80 -msgid "Number of modules" -msgstr "Число модулей" +#: ../../godmode/category/category.php:45 +#: ../../godmode/category/category.php:59 +#: ../../godmode/category/edit_category.php:44 +#: ../../godmode/category/edit_category.php:58 +msgid "List categories" +msgstr "Список категорий" -#: ../../godmode/tag/tag.php:82 -msgid "Number of policy modules" -msgstr "Число модулей политики" +#: ../../godmode/category/category.php:71 +#: ../../godmode/category/category.php:73 +#: ../../godmode/category/edit_category.php:70 +#: ../../godmode/category/edit_category.php:72 +msgid "Categories configuration" +msgstr "Конфигурация категорий" -#: ../../godmode/tag/tag.php:121 -msgid "Error deleting tag" -msgstr "Ошибка при удалении тега" +#: ../../godmode/category/category.php:83 +msgid "Error deleting category" +msgstr "Ошибка при удалении категории" -#: ../../godmode/tag/tag.php:125 -msgid "Successfully deleted tag" -msgstr "Тег успешно удален" +#: ../../godmode/category/category.php:86 +msgid "Successfully deleted category" +msgstr "Категория успешно удалена" -#: ../../godmode/tag/tag.php:201 -msgid "Detail information" -msgstr "Подробная информация" +#: ../../godmode/category/category.php:125 +msgid "Category name" +msgstr "Название категории" -#: ../../godmode/tag/tag.php:202 -msgid "Number of modules affected" -msgstr "Число пораженных модулей" +#: ../../godmode/category/category.php:174 +msgid "No categories found" +msgstr "Категории не найдены" -#: ../../godmode/tag/tag.php:222 -msgid "Tag details" -msgstr "" +#: ../../godmode/category/category.php:186 +#: ../../godmode/category/edit_category.php:156 +msgid "Create category" +msgstr "Создать категорию" -#: ../../godmode/tag/tag.php:249 +#: ../../godmode/category/edit_category.php:70 +msgid "Editor" +msgstr "Редактор" + +#: ../../godmode/category/edit_category.php:89 +msgid "Error updating category" +msgstr "Ошибка при обновлении категории" + +#: ../../godmode/category/edit_category.php:92 +msgid "Successfully updated category" +msgstr "Категория успешно обновлена" + +#: ../../godmode/category/edit_category.php:111 +msgid "Error creating category" +msgstr "Ошибка при создании категории" + +#: ../../godmode/category/edit_category.php:116 +msgid "Successfully created category" +msgstr "Категория успешно создана" + +#: ../../godmode/category/edit_category.php:148 +msgid "Update category" +msgstr "Обновить категорию" + +#: ../../godmode/module_library/module_library_view.php:129 +msgid "View all categories" +msgstr "Посмотреть все категории" + +#: ../../godmode/module_library/module_library_view.php:140 +msgid "More details" +msgstr "Подробнее" + +#: ../../godmode/module_library/module_library_view.php:142 +msgid "View in Module Library" +msgstr "Просмотр в Библиотеке Модулей" + +#: ../../godmode/module_library/module_library_view.php:143 +msgid "No module found" +msgstr "Модуль не найден" + +#: ../../godmode/module_library/module_library_view.php:146 +msgid "Error loading Module Library" +msgstr "Ошибка загрузки Библиотеки Модулей" + +#: ../../godmode/module_library/module_library_view.php:147 +msgid "Error loading category" +msgstr "Ошибка при загрузке категории" + +#: ../../godmode/module_library/module_library_view.php:148 +msgid "Error loading categories" +msgstr "Ошибка при загрузке категорий" + +#: ../../godmode/module_library/module_library_view.php:149 +msgid "There is no such category" +msgstr "Такой категории не существует" + +#: ../../godmode/module_library/module_library_view.php:150 +msgid "Error loading results" +msgstr "Ошибка при загрузке результатов" + +#: ../../mobile/include/functions_web.php:83 #, php-format -msgid "Emails for the tag: %s" -msgstr "Адреса электронной почты для тегов: %s" +msgid "Pandora FMS %s - Build %s" +msgstr "Pandora FMS %s - Build %s" -#: ../../godmode/tag/tag.php:264 -#, php-format -msgid "Phones for the tag: %s" -msgstr "Номера телефонов для тегов: %s" - -#: ../../godmode/tag/tag.php:282 -msgid "No tags defined" -msgstr "" - -#: ../../godmode/tag/tag.php:298 -msgid "Create tag" -msgstr "Создать тег" - -#: ../../general/firts_task/recon_view.php:21 -msgid "There are no recon task defined yet." -msgstr "" - -#: ../../general/firts_task/recon_view.php:28 -#: ../../general/firts_task/recon_view.php:35 -msgid "Create Recon Task" -msgstr "" - -#: ../../general/firts_task/recon_view.php:29 +#: ../../mobile/include/system.class.php:156 msgid "" -"The Recon Task definition of Pandora FMS is used to find new elements in the " -"network. \n" +"Access to this page is restricted to authorized users only, please contact " +"your system administrator if you should need help." +msgstr "" +"Доступ к этой странице ограничен только для авторизованных пользователей, " +"если вам нужна помощь, обратитесь к своему системному администратору." + +#: ../../mobile/include/system.class.php:156 +#, php-format +msgid "" +"Please remember that any attempts to access this page will be recorded on " +"the %s System Database." +msgstr "" +"Пожалуйста, помните, что все попытки доступа к этой странице будут записаны " +"в Системную Базу Данных %s." + +#: ../../mobile/include/ui.class.php:120 +#, php-format +msgid "%s mobile" +msgstr "%s мобильный" + +#: ../../mobile/include/ui.class.php:217 +#, php-format +msgid "%s : Mobile" +msgstr "%s : Мобильный" + +#: ../../mobile/include/ui.class.php:238 ../../mobile/operation/home.php:159 +msgid "Home" +msgstr "Дом" + +#: ../../mobile/include/ui.class.php:321 +#, php-format +msgid "%s %s - Build %s" +msgstr "%s %s - Разработка %s" + +#: ../../mobile/include/ui.class.php:767 +msgid "Not found header." +msgstr "Заголовок не найден." + +#: ../../mobile/include/ui.class.php:769 +msgid "Not found content." +msgstr "Содержание не найдено." + +#: ../../mobile/include/ui.class.php:771 +msgid "Not found footer." +msgstr "Колонтитул не найден." + +#: ../../mobile/include/ui.class.php:773 +msgid "Incorrect form." +msgstr "Неправильная форма." + +#: ../../mobile/include/ui.class.php:775 +msgid "Incorrect grid." +msgstr "Неправильная сетка." + +#: ../../mobile/include/ui.class.php:777 +msgid "Incorrect collapsible." +msgstr "Неправильный разборный." + +#: ../../mobile/include/user.class.php:133 +msgid "User cannot log in into this console, please contact administrator" +msgstr "" +"Пользователь не может войти в эту консоль, обратитесь к администратору" + +#: ../../mobile/include/user.class.php:226 +#: ../../mobile/include/user.class.php:241 +#: ../../mobile/include/user.class.php:248 +msgid "Double authentication failed" +msgstr "Сбой двойной аутентификации" + +#: ../../mobile/include/user.class.php:227 +msgid "Secret code not found" +msgstr "Секретный код не найден" + +#: ../../mobile/include/user.class.php:227 +msgid "Please contact the administrator to reset your double authentication" +msgstr "Обратитесь к администратору для перезагрузки двойной аутентификации" + +#: ../../mobile/include/user.class.php:249 +msgid "There was an error checking the code" +msgstr "Произошла ошибка при проверке кода" + +#: ../../mobile/include/user.class.php:290 +msgid "Login Failed" +msgstr "Войти в систему не удалось" + +#: ../../mobile/include/user.class.php:294 +msgid "User not found in database or incorrect password." +msgstr "Пользователь не найден в базе данных или неверный пароль." + +#: ../../mobile/include/user.class.php:303 +msgid "Login out" +msgstr "Выйти" + +#: ../../mobile/include/user.class.php:334 +msgid "user" +msgstr "пользователь" + +#: ../../mobile/include/user.class.php:341 +msgid "password" +msgstr "пароль" + +#: ../../mobile/include/user.class.php:429 +#: ../../mobile/include/user.class.php:430 +msgid "Authenticator code" +msgstr "Код аутентификатора" + +#: ../../mobile/operation/agents.php:199 +#, php-format +msgid "Filter Agents by %s" +msgstr "Фильтр агентов по %s" + +#: ../../mobile/operation/agents.php:241 ../../mobile/operation/modules.php:306 +#: ../../mobile/operation/alerts.php:247 ../../mobile/operation/events.php:717 +msgid "Apply Filter" +msgstr "Применить фильтр" + +#: ../../mobile/operation/agents.php:435 +msgid "No agents" +msgstr "Нет агентов" + +#: ../../mobile/operation/agents.php:530 ../../mobile/operation/modules.php:872 +#: ../../mobile/operation/alerts.php:360 ../../mobile/operation/events.php:1148 +msgid "(Default)" +msgstr "(По умолчанию)" + +#: ../../mobile/operation/agents.php:536 ../../mobile/operation/modules.php:878 +#: ../../mobile/operation/alerts.php:373 ../../mobile/operation/events.php:1181 +#, php-format +msgid "Group: %s" +msgstr "Группа: %s" + +#: ../../mobile/operation/agents.php:543 ../../mobile/operation/modules.php:900 +#: ../../mobile/operation/alerts.php:380 ../../mobile/operation/events.php:1201 +#, php-format +msgid "Status: %s" +msgstr "Статус: %s" + +#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:907 +#: ../../mobile/operation/alerts.php:387 +#, php-format +msgid "Free Search: %s" +msgstr "Свободный поиск: %s" + +#: ../../mobile/operation/modules.php:231 +#, php-format +msgid "Filter Modules by %s" +msgstr "Фильтр Модулей по %s" + +#: ../../mobile/operation/modules.php:646 +msgid "Interval." +msgstr "Интервал." + +#: ../../mobile/operation/modules.php:648 +msgid "Last update." +msgstr "Последнее обновление." + +#: ../../mobile/operation/modules.php:893 +#, php-format +msgid "Module group: %s" +msgstr "Модуль грурры: %s" + +#: ../../mobile/operation/modules.php:915 +#, php-format +msgid "Tag: %s" +msgstr "Тег: %s" + +#: ../../mobile/operation/home.php:66 ../../mobile/operation/visualmaps.php:177 +#: ../../operation/search_results.php:144 ../../operation/search_main.php:70 +msgid "Visual consoles" +msgstr "Визуальные консоли" + +#: ../../mobile/operation/agent.php:143 +msgid "No agent found" +msgstr "Агенты не найдены" + +#: ../../mobile/operation/agent.php:219 +msgid "Modules by status" +msgstr "Модули по статусу" + +#: ../../mobile/operation/agent.php:249 +#: ../../include/functions_treeview.php:838 +msgid "Events (24h)" +msgstr "События (24 часа)" + +#: ../../mobile/operation/agent.php:357 +#, php-format +msgid "Last %s Events" +msgstr "Последние %s События" + +#: ../../mobile/operation/alerts.php:189 +#, php-format +msgid "Filter Alerts by %s" +msgstr "Фильтр Оповещений по %s" + +#: ../../mobile/operation/alerts.php:327 +msgid "Last Fired" +msgstr "Последний запуск" + +#: ../../mobile/operation/alerts.php:338 +msgid "No alerts" +msgstr "Нет оповещений" + +#: ../../mobile/operation/alerts.php:366 +#, php-format +msgid "Standby: %s" +msgstr "Поддерживается: %s" + +#: ../../mobile/operation/visualmaps.php:208 +msgid "No maps defined" +msgstr "Карты не определены" + +#: ../../mobile/operation/module_graph.php:359 +#: ../../mobile/operation/module_graph.php:371 +#, php-format +msgid "%s: %s" +msgstr "%s: %s" + +#: ../../mobile/operation/module_graph.php:403 +#, php-format +msgid "Options for %s : %s" +msgstr "Опции для %s : %s" + +#: ../../mobile/operation/module_graph.php:410 +msgid "Show Alerts" +msgstr "Показать оповещения" + +#: ../../mobile/operation/module_graph.php:418 +msgid "Show Events" +msgstr "Показать События" + +#: ../../mobile/operation/module_graph.php:426 +#: ../../operation/agentes/stat_win.php:357 +msgid "Time compare (Separated)" +msgstr "Время сравнения (Разделено)" + +#: ../../mobile/operation/module_graph.php:442 +#: ../../operation/agentes/stat_win.php:297 +msgid "Show unknown graph" +msgstr "Показать неизвестный график" + +#: ../../mobile/operation/module_graph.php:447 +msgid "Time range (hours)" +msgstr "Интервал времени (в часах)" + +#: ../../mobile/operation/module_graph.php:459 +#: ../../operation/agentes/stat_win.php:269 +#: ../../operation/agentes/interface_traffic_graph_win.php:178 +#: ../../operation/agentes/graphs.php:207 +#: ../../operation/agentes/exportdata.php:317 +msgid "Begin date" +msgstr "Начальная дата" + +#: ../../mobile/operation/module_graph.php:466 +msgid "Update graph" +msgstr "Обновить график" + +#: ../../mobile/operation/module_graph.php:476 +msgid "Error get the graph" +msgstr "Ошибка получения графика" + +#: ../../mobile/operation/events.php:267 +#: ../../include/functions_reporting_html.php:1057 +#: ../../include/functions_reporting_html.php:1280 +#: ../../include/functions_reporting_html.php:2058 +#: ../../include/ajax/events.php:1634 +#: ../../include/functions_reporting.php:9698 +#: ../../include/functions_events.php:2591 +#: ../../include/functions_events.php:4695 +#: ../../include/functions_events.php:6645 +#: ../../operation/events/events.php:2065 +#: ../../operation/events/events.build_table.php:413 +msgid "New event" +msgstr "Новое событие" + +#: ../../mobile/operation/events.php:272 +#: ../../include/functions_reporting_html.php:1062 +#: ../../include/functions_reporting_html.php:1285 +#: ../../include/functions_reporting_html.php:2063 +#: ../../include/ajax/events.php:1639 +#: ../../include/functions_reporting.php:9703 +#: ../../include/functions_events.php:2596 +#: ../../include/functions_events.php:4701 +#: ../../include/functions_events.php:6650 +#: ../../operation/events/events.php:2071 +#: ../../operation/events/events.build_table.php:418 +msgid "Event validated" +msgstr "Событие подтверждено" + +#: ../../mobile/operation/events.php:277 +#: ../../include/functions_reporting_html.php:1067 +#: ../../include/functions_reporting_html.php:1290 +#: ../../include/functions_reporting_html.php:2068 +#: ../../include/ajax/events.php:1644 +#: ../../include/functions_reporting.php:9708 +#: ../../include/functions_events.php:2601 +#: ../../include/functions_events.php:4707 +#: ../../include/functions_events.php:6655 +#: ../../operation/events/events.php:2077 +#: ../../operation/events/events.build_table.php:423 +msgid "Event in process" +msgstr "Событие активно" + +#: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414 +#: ../../mobile/operation/events.php:642 ../../mobile/operation/events.php:643 +msgid "Preset Filters" +msgstr "Заданные Фильтры" + +#: ../../mobile/operation/events.php:485 +msgid "ERROR: Event detail" +msgstr "ОШИБКА: детали события" + +#: ../../mobile/operation/events.php:486 +msgid "Error connecting to DB." +msgstr "Ошибка подключения к БД." + +#: ../../mobile/operation/events.php:501 +msgid "Event detail" +msgstr "Детали события" + +#: ../../mobile/operation/events.php:512 +#: ../../include/functions_events.php:4854 +#: ../../include/functions_events.php:6485 +#: ../../operation/events/events.build_table.php:162 +msgid "Event ID" +msgstr "ID события" + +#: ../../mobile/operation/events.php:540 +#: ../../include/functions_events.php:4945 +msgid "Acknowledged by" +msgstr "Признано" + +#: ../../mobile/operation/events.php:584 +msgid "Sucessful validate" +msgstr "Успешно подтверждено" + +#: ../../mobile/operation/events.php:586 +msgid "Fail validate" +msgstr "Сбой подтверждения" + +#: ../../mobile/operation/events.php:624 +#, php-format +msgid "Filter Events by %s" +msgstr "Фильтр Событий по %s" + +#: ../../mobile/operation/events.php:858 +#: ../../include/functions_reporting_html.php:5397 +#: ../../include/functions_reporting_html.php:5582 +#: ../../include/functions_reporting.php:1935 +#: ../../include/functions_reporting.php:2238 +#: ../../include/functions_events.php:2515 +#: ../../include/functions_events.php:2518 +#: ../../operation/events/events.build_table.php:134 +#: ../../operation/events/events.build_table.php:1157 +msgid "No events" +msgstr "Нет событий" + +#: ../../mobile/operation/events.php:1153 +#, php-format +msgid "Filter: %s" +msgstr "Фильтр: %s" + +#: ../../mobile/operation/events.php:1165 +#, php-format +msgid "Severity: %s" +msgstr "Строгость: %s" + +#: ../../mobile/operation/events.php:1194 +#, php-format +msgid "Type: %s" +msgstr "Тип: %s" + +#: ../../mobile/operation/events.php:1208 +#, php-format +msgid "Free search: %s" +msgstr "Свободный поиск: %s" + +#: ../../mobile/operation/events.php:1215 +#, php-format +msgid "Hours: %s" +msgstr "Часы: %s" + +#: ../../mobile/operation/tactical.php:214 +msgid "Last activity" +msgstr "Последняя активность" + +#: ../../include/functions_visual_map_editor.php:62 +msgid "" +"To use 'label'field, you should write\n" +"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be " +"printed at the end." +msgstr "" +"Чтобы использовать поле 'label', необходимо написать\n" +"\t\t\t\t\t\t\t\tтекст для замены '(_VALUE_)' и в конце будет выведено " +"значение модуля." + +#: ../../include/functions_visual_map_editor.php:69 +#: ../../include/functions_visual_map_editor.php:1396 +#: ../../include/functions_visual_map.php:4190 +#: ../../include/rest-api/models/VisualConsole/Item.php:2051 +#: ../../include/lib/Dashboard/Widgets/clock.php:158 +#: ../../include/lib/Dashboard/Widgets/clock.php:310 +#: ../../operation/visual_console/view.php:322 +msgid "Clock" +msgstr "Часы" + +#: ../../include/functions_visual_map_editor.php:107 +#: ../../include/functions_visual_map_editor.php:133 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:299 +msgid "Border color" +msgstr "Цвет границ" + +#: ../../include/functions_visual_map_editor.php:151 +msgid "Border width" +msgstr "Ширина границы" + +#: ../../include/functions_visual_map_editor.php:160 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364 +msgid "Fill color" +msgstr "Цвет заливки" + +#: ../../include/functions_visual_map_editor.php:239 +msgid "" +"Scroll the mouse wheel over the label editor to change the background color" +msgstr "" +"Прокрутите колесико мыши над редактором этикеток, чтобы изменить цвет фона" + +#: ../../include/functions_visual_map_editor.php:255 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333 +msgid "Clock animation" +msgstr "Анимация часов" + +#: ../../include/functions_visual_map_editor.php:258 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328 +msgid "Simple analogic" +msgstr "Простой аналоговый" + +#: ../../include/functions_visual_map_editor.php:259 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329 +msgid "Simple digital" +msgstr "Простой цифровой" + +#: ../../include/functions_visual_map_editor.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351 +msgid "Time format" +msgstr "Формат времени" + +#: ../../include/functions_visual_map_editor.php:276 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346 +msgid "Only time" +msgstr "Только время" + +#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347 +msgid "Time and date" +msgstr "Время и дата" + +#: ../../include/functions_visual_map_editor.php:313 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 +msgid "Time zone" +msgstr "Часовой пояс" + +#: ../../include/functions_visual_map_editor.php:329 +msgid "Enable link" +msgstr "Включить ссылку" + +#: ../../include/functions_visual_map_editor.php:350 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:444 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:513 +msgid "White" +msgstr "Белый" + +#: ../../include/functions_visual_map_editor.php:351 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:445 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514 +msgid "Black" +msgstr "Черный" + +#: ../../include/functions_visual_map_editor.php:352 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:446 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:515 +msgid "Transparent" +msgstr "Прозрачный" + +#: ../../include/functions_visual_map_editor.php:378 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:480 +msgid "Grid color" +msgstr "Цвет сетки" + +#: ../../include/functions_visual_map_editor.php:498 +msgid "Data image" +msgstr "Данные в изображениях" + +#: ../../include/functions_visual_map_editor.php:503 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:249 +msgid "Resume data color" +msgstr "Получить цвет данных" + +#: ../../include/functions_visual_map_editor.php:517 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:251 +msgid "24h" +msgstr "24ч" + +#: ../../include/functions_visual_map_editor.php:518 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:253 +msgid "8h" +msgstr "8ч" + +#: ../../include/functions_visual_map_editor.php:519 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:254 +msgid "2h" +msgstr "2ч" + +#: ../../include/functions_visual_map_editor.php:520 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:255 +msgid "1h" +msgstr "1ч" + +#: ../../include/functions_visual_map_editor.php:524 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:259 +msgid "Max. Time" +msgstr "Макс. Время" + +#: ../../include/functions_visual_map_editor.php:640 +msgid "Original Size" +msgstr "Исходный размер" + +#: ../../include/functions_visual_map_editor.php:648 +msgid "Aspect ratio" +msgstr "Соотношение сторон" + +#: ../../include/functions_visual_map_editor.php:649 +msgid "Proportional Width" +msgstr "Пропорциональная ширина" + +#: ../../include/functions_visual_map_editor.php:657 +msgid "Height proportional" +msgstr "высота пропорциональна" + +#: ../../include/functions_visual_map_editor.php:688 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:454 +msgid "Circular porgress bar" +msgstr "Круговая шкала прогресса" + +#: ../../include/functions_visual_map_editor.php:689 +#: ../../include/functions_visual_map.php:4215 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:456 +#: ../../include/rest-api/models/VisualConsole/Item.php:2075 +msgid "Circular progress bar (interior)" +msgstr "Круговая шкала прогресса (внутренняя)" + +#: ../../include/functions_visual_map_editor.php:739 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:516 +msgid "Element color" +msgstr "Цвет элемента" + +#: ../../include/functions_visual_map_editor.php:759 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:528 +msgid "Value color" +msgstr "Цвет значения" + +#: ../../include/functions_visual_map_editor.php:801 +msgid "Diameter" +msgstr "Диаметр" + +#: ../../include/functions_visual_map_editor.php:808 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:425 +msgid "Default color" +msgstr "Цвет по умолчанию" + +#: ../../include/functions_visual_map_editor.php:812 +msgid "" +"The color of the element will be the one selected in the first range created " +"in which the value of the module is found (with the initial and final values " +"of the range included)" +msgstr "" +"Цвет элемента будет таким, который был выбран в первом созданном диапазоне, " +"в котором находится значение модуля (с учетом начального и конечного " +"значений диапазона)." + +#: ../../include/functions_visual_map_editor.php:815 +msgid "Ranges" +msgstr "Диапазоны" + +#: ../../include/functions_visual_map_editor.php:815 +msgid "From value" +msgstr "От значения" + +#: ../../include/functions_visual_map_editor.php:815 +msgid "To value" +msgstr "К значению" + +#: ../../include/functions_visual_map_editor.php:815 +#: ../../include/rest-api/index.php:328 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:470 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:529 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:481 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:932 +msgid "Color" +msgstr "Цвет" + +#: ../../include/functions_visual_map_editor.php:820 +msgid "Always show on top" +msgstr "Всегда показывать сверху" + +#: ../../include/functions_visual_map_editor.php:821 +msgid "" +"It allows the element to be superimposed to the rest of items of the visual " +"console" +msgstr "" +"Это позволяет наложить элемент на остальные элементы визуальной консоли" + +#: ../../include/functions_visual_map_editor.php:824 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:389 +msgid "Hide last value on boolean modules" +msgstr "Скрыть последнее значение на булевых модулях" + +#: ../../include/functions_visual_map_editor.php:830 +msgid "Show last value" +msgstr "Показать последнее значение" + +#: ../../include/functions_visual_map_editor.php:934 +msgid "For use the original image file size, set 0 width and 0 height." +msgstr "" +"Для использования оригинального размера изображение, укажите 0 в значениях " +"длинны и ширины." + +#: ../../include/functions_visual_map_editor.php:974 +#: ../../include/rest-api/models/VisualConsole/Item.php:2373 +msgid "Linked visual console" +msgstr "Связная визуальная консоль" + +#: ../../include/functions_visual_map_editor.php:1081 +#: ../../include/rest-api/models/VisualConsole/Item.php:2424 +msgid "By status weight" +msgstr "По весу статуса" + +#: ../../include/functions_visual_map_editor.php:1082 +#: ../../include/rest-api/models/VisualConsole/Item.php:2425 +msgid "By critical elements" +msgstr "По критическим элементам" + +#: ../../include/functions_visual_map_editor.php:1097 +#: ../../include/rest-api/models/VisualConsole/Item.php:2432 +msgid "Type of the status calculation of the linked visual console" +msgstr "Тип расчета статуса связанной визуальной консоли" + +#: ../../include/functions_visual_map_editor.php:1102 +#: ../../include/rest-api/models/VisualConsole/Item.php:2423 +msgid "By default" +msgstr "По умолчанию" + +#: ../../include/functions_visual_map_editor.php:1122 +#: ../../include/rest-api/models/VisualConsole/Item.php:2448 +msgid "Linked visual console weight" +msgstr "Связанный вес визуальной консоли" + +#: ../../include/functions_visual_map_editor.php:1189 +msgid "Lines haven't advanced options" +msgstr "Линии не имеют расширенных опций" + +#: ../../include/functions_visual_map_editor.php:1206 +#: ../../include/rest-api/models/VisualConsole/Item.php:2128 +msgid "Restrict access to group" +msgstr "Ограничить доступ к группе" + +#: ../../include/functions_visual_map_editor.php:1217 +msgid "" +"If selected, restrict visualization of this item in the visual console to " +"users who have access to selected group. This is also used on calculating " +"child visual consoles." +msgstr "" +"Если этот параметр выбран, то он ограничивает визуализацию этого элемента в " +"визуальной консоли пользователями, имеющими доступ к выбранной группе. Этот " +"параметр также используется при вычислении дочерних визуальных консолей." + +#: ../../include/functions_visual_map_editor.php:1248 +#: ../../include/rest-api/models/VisualConsole/Item.php:2141 +msgid "Cache expiration" +msgstr "Истечение срока действия кэша" + +#: ../../include/functions_visual_map_editor.php:1287 +msgid "Click start point<br />of the line" +msgstr "Выберите начальную точку<br />линии" + +#: ../../include/functions_visual_map_editor.php:1290 +msgid "Click end point<br />of the line" +msgstr "Выберите конечную точку<br />линии" + +#: ../../include/functions_visual_map_editor.php:1390 +#: ../../operation/visual_console/view.php:292 +msgid "Serialized pie graph" +msgstr "Серийная круговая диаграмма" + +#: ../../include/functions_visual_map_editor.php:1391 +#: ../../operation/visual_console/view.php:297 +msgid "Bars Graph" +msgstr "Гистограмма" + +#: ../../include/functions_visual_map_editor.php:1405 +#: ../../operation/visual_console/view.php:347 +msgid "Network link" +msgstr "Сетевое соединение" + +#: ../../include/functions_visual_map_editor.php:1420 +msgid "Show grid" +msgstr "Показать сетку" + +#: ../../include/functions_visual_map_editor.php:1422 +msgid "Delete item" +msgstr "Удалить элемент" + +#: ../../include/functions_visual_map_editor.php:1423 +msgid "Copy item" +msgstr "Копировать элемент" + +#: ../../include/functions_visual_map_editor.php:1463 +#: ../../include/functions_visual_map_editor.php:1467 +#: ../../include/functions_visual_map_editor.php:1471 +#: ../../include/functions_visual_map_editor.php:1475 +#: ../../include/functions_visual_map_editor.php:1479 +#: ../../include/functions_visual_map_editor.php:1483 +#: ../../include/functions_visual_map_editor.php:1487 +#: ../../include/functions_visual_map_editor.php:1491 +#: ../../include/functions_visual_map_editor.php:1495 +#: ../../include/functions_visual_map_editor.php:1499 +#: ../../include/functions_visual_map_editor.php:1503 +#: ../../include/functions_visual_map_editor.php:1507 +#: ../../include/functions_visual_map_editor.php:1511 +#: ../../include/functions_visual_map_editor.php:1515 +#: ../../include/functions_visual_map_editor.php:1519 +#: ../../include/functions_visual_map_editor.php:1523 +#: ../../include/functions_visual_map_editor.php:1527 +#: ../../include/functions_visual_map_editor.php:1531 +#: ../../include/functions_visual_map_editor.php:1535 +msgid "Visual Console Builder Information" +msgstr "Информация о разработчике Визуальной Консоли" + +#: ../../include/functions_visual_map_editor.php:1464 +msgid "Min allowed size is 1024x768." +msgstr "Минимально допустимый размер - 1024x768." + +#: ../../include/functions_visual_map_editor.php:1468 +#: ../../include/functions_visual_map_editor.php:1536 +msgid "No custom graph defined." +msgstr "Пользовательский график не определен." + +#: ../../include/functions_visual_map_editor.php:1472 +msgid "No image or name defined." +msgstr "Нет определенного изображения или имени." + +#: ../../include/functions_visual_map_editor.php:1476 +msgid "No label defined." +msgstr "Метка не определена." + +#: ../../include/functions_visual_map_editor.php:1480 +msgid "No service defined." +msgstr "Сервис не определен." + +#: ../../include/functions_visual_map_editor.php:1484 +msgid "No image defined." +msgstr "Изображение не определено." + +#: ../../include/functions_visual_map_editor.php:1488 +msgid "No process defined." +msgstr "Процесс не определен." + +#: ../../include/functions_visual_map_editor.php:1492 +msgid "No Max value defined." +msgstr "Макс значение не определено." + +#: ../../include/functions_visual_map_editor.php:1496 +msgid "No width defined." +msgstr "Ширина не определена." + +#: ../../include/functions_visual_map_editor.php:1500 +msgid "No height defined." +msgstr "Высота не определена." + +#: ../../include/functions_visual_map_editor.php:1504 +msgid "The width must not exceed the size of the visual console container." +msgstr "Ширина не должна превышать размер контейнера визуальной консоли." + +#: ../../include/functions_visual_map_editor.php:1508 +msgid "The height must not exceed the size of the visual console container." +msgstr "Высота не должна превышать размер контейнера визуальной консоли." + +#: ../../include/functions_visual_map_editor.php:1512 +msgid "No period defined." +msgstr "Период не определен." + +#: ../../include/functions_visual_map_editor.php:1516 +msgid "No agent defined." +msgstr "Агент не определен." + +#: ../../include/functions_visual_map_editor.php:1520 +msgid "No module defined." +msgstr "Модуль не определен." + +#: ../../include/functions_visual_map_editor.php:1524 +msgid "No module defined. This module must be string type." +msgstr "Модуль не определен. Этот модуль должен быть строкового типа." + +#: ../../include/functions_visual_map_editor.php:1528 +msgid "Successfully save the changes." +msgstr "Изменения успешно сохранены." + +#: ../../include/functions_visual_map_editor.php:1532 +msgid "Could not be save." +msgstr "Не удалось сохранить." + +#: ../../include/graphs/export_data.php:89 +#: ../../include/graphs/export_data.php:155 +msgid "An error occured exporting the data" +msgstr "Произошла ошибка при экспорте данных" + +#: ../../include/graphs/functions_gd.php:183 +#: ../../include/graphs/functions_gd.php:466 +#: ../../include/functions_graph.php:2848 +#: ../../include/functions_graph.php:2896 +msgid "Out of limits" +msgstr "Кончились лимиты" + +#: ../../include/graphs/functions_flot.php:361 +msgid "Cancel zoom" +msgstr "Отменить увеличение" + +#: ../../include/graphs/functions_flot.php:363 +msgid "Warning and Critical thresholds" +msgstr "Предостережение об опасности и Критические пороги" + +#: ../../include/graphs/functions_flot.php:368 +msgid "Overview graph" +msgstr "Обзор графика" + +#: ../../include/graphs/functions_flot.php:507 +#: ../../include/functions_reporting_html.php:635 +#: ../../include/functions_reporting_html.php:3875 +#: ../../include/functions_treeview.php:315 +#: ../../include/functions_visual_map.php:2854 +#: ../../include/functions_visual_map.php:2869 +msgid "No data" +msgstr "Данных нет" + +#: ../../include/functions_servers.php:587 +msgid "SNMP Trap server" +msgstr "SNMP перемещение сервера" + +#: ../../include/functions_servers.php:704 +#: ../../include/functions_servers.php:1280 +msgid "Enterprise ICMP server" +msgstr "Сервер предприятия ICMP" + +#: ../../include/functions_servers.php:717 +#: ../../include/functions_servers.php:1283 +msgid "Enterprise SNMP server" +msgstr "SNMP Сервер предприятия" + +#: ../../include/functions_servers.php:730 +#: ../../include/class/AgentWizard.class.php:1291 +msgid "Enterprise Satellite server" +msgstr "Enterprise Satellite сервер" + +#: ../../include/functions_servers.php:743 +msgid "Enterprise Transactional server" +msgstr "Транзакционный сервер Enterprise" + +#: ../../include/functions_servers.php:756 +msgid "Mainframe server" +msgstr "Сервер Mainframe" + +#: ../../include/functions_servers.php:769 +msgid "Sync server" +msgstr "Сервер Sync" + +#: ../../include/functions_servers.php:782 +msgid "Wux server" +msgstr "Сервер Wux" + +#: ../../include/functions_servers.php:795 +#: ../../include/functions_servers.php:1310 +msgid "Log server" +msgstr "Сервер журналов" + +#: ../../include/functions_servers.php:808 +msgid "Autoprovision server" +msgstr "Сервер автоматического обеспечения" + +#: ../../include/functions_servers.php:821 +msgid "Migration server" +msgstr "Сервер миграции" + +#: ../../include/functions_servers.php:1289 +msgid "Prediction Server" +msgstr "Сервер прогнозирования" + +#: ../../include/functions_reporting_html.php:109 +msgid "Label: " +msgstr "Этикетка: " + +#: ../../include/functions_reporting_html.php:560 +msgid "Time Failed" +msgstr "Время истекло" + +#: ../../include/functions_reporting_html.php:564 +msgid "Downtime" +msgstr "Время остановки" + +#: ../../include/functions_reporting_html.php:975 +#: ../../include/functions_reporting_html.php:1919 +#: ../../include/functions_reporting_html.php:3757 +#: ../../include/functions_reporting_html.php:4301 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 +msgid "Min Value" +msgstr "Минимальное значение" + +#: ../../include/functions_reporting_html.php:976 +#: ../../include/functions_reporting_html.php:1920 +#: ../../include/functions_reporting_html.php:3758 +#: ../../include/functions_reporting_html.php:4302 +msgid "Average Value" +msgstr "Среднее значение" + +#: ../../include/functions_reporting_html.php:977 +#: ../../include/functions_reporting_html.php:1921 +#: ../../include/functions_reporting_html.php:3755 +#: ../../include/functions_reporting_html.php:4304 +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:365 +msgid "Max Value" +msgstr "Максимальное значение" + +#: ../../include/functions_reporting_html.php:1031 +#: ../../include/functions_reporting_html.php:1039 +#: ../../include/functions_reporting_html.php:2042 +msgid "Val. by" +msgstr "Утв. по" + +#: ../../include/functions_reporting_html.php:1098 +#, php-format +msgid "%s System" +msgstr "Система %s" + +#: ../../include/functions_reporting_html.php:1146 +#: ../../include/functions_reporting_html.php:1346 +msgid "Events by agent" +msgstr "События по агенту" + +#: ../../include/functions_reporting_html.php:1163 +#: ../../include/functions_reporting_html.php:1363 +msgid "Events by user validator" +msgstr "События по валидатору пользователя" + +#: ../../include/functions_reporting_html.php:1180 +#: ../../include/functions_reporting_html.php:1380 +msgid "Events by Severity" +msgstr "События по степени тяжести" + +#: ../../include/functions_reporting_html.php:1197 +#: ../../include/functions_reporting_html.php:1397 +msgid "Events validated vs unvalidated" +msgstr "События, подтвержденные и не подтвержденные" + +#: ../../include/functions_reporting_html.php:1815 +msgid "Cell turns grey when the module is in 'not initialize' status" +msgstr "" +"Ячейка становится серой, когда модуль находится в состоянии \"не " +"инициализирован\"" + +#: ../../include/functions_reporting_html.php:1985 +#: ../../include/functions_reporting_html.php:4871 +msgid "Monitors" +msgstr "Приборы контроля" + +#: ../../include/functions_reporting_html.php:2004 +msgid "Events (not validated)" +msgstr "События (не подтвержденные)" + +#: ../../include/functions_reporting_html.php:2141 +msgid "Events validated by user" +msgstr "События, утвержденные пользователем" + +#: ../../include/functions_reporting_html.php:2158 +#: ../../include/functions_reporting_html.php:5160 +msgid "Events by severity" +msgstr "События по степени тяжести" + +#: ../../include/functions_reporting_html.php:2175 +msgid "Amount events validated" +msgstr "Количество утвержденных событий" + +#: ../../include/functions_reporting_html.php:2596 +#, php-format +msgid "Interface '%s' throughput graph" +msgstr "График пропускной способности интерфейса '%s'" + +#: ../../include/functions_reporting_html.php:2600 +msgid "Mac" +msgstr "Mac" + +#: ../../include/functions_reporting_html.php:2601 +msgid "Actual status" +msgstr "Фактический статус" + +#: ../../include/functions_reporting_html.php:2923 +#: ../../include/functions_reporting_html.php:2925 +msgid "Empty modules" +msgstr "Пустые модули" + +#: ../../include/functions_reporting_html.php:2932 +msgid "Warning<br/>Critical" +msgstr "Предостережение<br/>Критические" + +#: ../../include/functions_reporting_html.php:3399 +msgid "Time Not Init Module" +msgstr "Время в модуле не запущено" + +#: ../../include/functions_reporting_html.php:3410 +msgid "% Ok" +msgstr "% Ok" + +#: ../../include/functions_reporting_html.php:3479 +msgid "Checks Uknown" +msgstr "Проверки Неизвестно" + +#: ../../include/functions_reporting_html.php:3517 +#: ../../include/functions_reporting_html.php:3650 +#: ../../include/functions_reporting_html.php:3969 +#: ../../include/functions_reporting_html.php:3975 +msgid "Primary" +msgstr "Первичный" + +#: ../../include/functions_reporting_html.php:4416 +#: ../../include/functions_reporting.php:10276 +#: ../../include/functions_reporting.php:10297 +msgid "Alert level" +msgstr "Уровень ошибки" + +#: ../../include/functions_reporting_html.php:4645 +#, php-format +msgid "Agents in group: %s" +msgstr "Агенты в группе: %s" + +#: ../../include/functions_reporting_html.php:4747 +msgid "Last failure" +msgstr "Последний сбой" + +#: ../../include/functions_reporting_html.php:4837 +msgid "N/A(*)" +msgstr "нет данных(*)" + +#: ../../include/functions_reporting_html.php:5085 +#: ../../include/functions_reporting.php:10508 +msgid "Monitor checks" +msgstr "Статус слежения" + +#: ../../include/functions_reporting_html.php:5092 +#: ../../include/functions_reporting.php:10527 +msgid "Total agents and monitors" +msgstr "Всего агентов и приборов контроля" + +#: ../../include/functions_reporting_html.php:5111 +#: ../../include/functions_reporting_html.php:5116 +msgid "Node overview" +msgstr "Обзор узлов" + +#: ../../include/functions_reporting_html.php:5136 +#: ../../include/functions_reporting_html.php:5148 +msgid "Critical events" +msgstr "Критические события" + +#: ../../include/functions_reporting_html.php:5139 +#: ../../include/functions_reporting_html.php:5150 +msgid "Warning events" +msgstr "Предостерегающие события" + +#: ../../include/functions_reporting_html.php:5142 +#: ../../include/functions_reporting_html.php:5152 +msgid "OK events" +msgstr "События OK" + +#: ../../include/functions_reporting_html.php:5145 +#: ../../include/functions_reporting_html.php:5154 +msgid "Unknown events" +msgstr "Неизвестные события" + +#: ../../include/functions_reporting_html.php:5170 +msgid "Important Events by Criticity" +msgstr "Важные события по Критичности" + +#: ../../include/functions_reporting_html.php:5196 +#, php-format +msgid "Last activity in %s console" +msgstr "Последняя активность в консоли %s" + +#: ../../include/functions_reporting_html.php:5287 +#: ../../include/functions_reporting_html.php:5429 +msgid "Events info (1hr.)" +msgstr "Информация о событиях (1 час.)" + +#: ../../include/functions_reporting_html.php:5612 +msgid "This SLA has been affected by the following planned downtimes" +msgstr "На данный SLA повлияли следующие запланированные остановки" + +#: ../../include/functions_reporting_html.php:5613 +msgid "" +"If the duration of the planned downtime is less than 5 minutes it will not " +"be represented in the graph" +msgstr "" +"Если продолжительность запланированной остановки составляет менее 5 минут, " +"она не будет представлена на графике" + +#: ../../include/functions_reporting_html.php:5620 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:431 +msgid "Dates" +msgstr "Даты" + +#: ../../include/functions_reporting_html.php:5651 +msgid "This item is affected by a malformed planned downtime" +msgstr "На этот элемент влияет неправильно сформированная плановая остановка" + +#: ../../include/functions_reporting_html.php:5651 +msgid "Go to the planned downtimes section to solve this" +msgstr "" +"Перейдите в раздел запланированных остановок, чтобы решить эту проблему" + +#: ../../include/functions.php:231 +msgid "." +msgstr "." + +#: ../../include/functions.php:233 +msgid "," +msgstr "," + +#: ../../include/functions.php:488 ../../include/functions.php:639 +msgid "s" +msgstr "сек" + +#: ../../include/functions.php:489 ../../include/functions.php:640 +msgid "d" +msgstr "д." + +#: ../../include/functions.php:490 ../../include/functions.php:641 +msgid "M" +msgstr "M" + +#: ../../include/functions.php:491 ../../include/functions.php:642 +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 +#: ../../include/rest-api/models/VisualConsole/Item.php:1984 +msgid "Y" +msgstr "Г" + +#: ../../include/functions.php:492 ../../include/functions.php:643 +msgid "m" +msgstr "мин" + +#: ../../include/functions.php:493 ../../include/functions.php:644 +msgid "h" +msgstr "ч" + +#: ../../include/functions.php:494 ../../include/functions.php:645 +msgid "N" +msgstr "Н" + +#: ../../include/functions.php:1022 ../../include/functions.php:1267 +#: ../../include/functions.php:1301 ../../include/functions_graph.php:3483 +#: ../../include/functions_graph.php:3484 +#: ../../include/functions_graph.php:5058 +#: ../../include/functions_incidents.php:34 +#: ../../include/functions_incidents.php:75 +#: ../../include/functions_events.php:3270 +msgid "Maintenance" +msgstr "Управление" + +#: ../../include/functions.php:1026 ../../include/functions.php:1268 +#: ../../include/functions.php:1305 ../../include/functions_graph.php:3488 +#: ../../include/functions_graph.php:3489 +#: ../../include/functions_graph.php:5062 +#: ../../include/functions_events.php:3274 +msgid "Informational" +msgstr "Информационное" + +#: ../../include/functions.php:1042 ../../include/functions.php:1270 +#: ../../include/functions.php:1321 ../../include/functions_graph.php:3498 +#: ../../include/functions_graph.php:3499 +#: ../../include/functions_graph.php:5078 +msgid "Minor" +msgstr "Второстепенное" + +#: ../../include/functions.php:1046 ../../include/functions.php:1272 +#: ../../include/functions.php:1325 ../../include/functions_graph.php:3508 +#: ../../include/functions_graph.php:3509 +#: ../../include/functions_graph.php:5082 +msgid "Major" +msgstr "Основной" + +#: ../../include/functions.php:1221 ../../include/functions_events.php:3194 +msgid "Monitor Critical" +msgstr "Монитор Критического" + +#: ../../include/functions.php:1222 ../../include/functions_events.php:3198 +msgid "Monitor Warning" +msgstr "Устройства контроля за предостережениями об опасности" + +#: ../../include/functions.php:1223 ../../include/functions_events.php:3202 +msgid "Monitor Normal" +msgstr "Монитор Обычного" + +#: ../../include/functions.php:1225 +msgid "Monitor Unknown" +msgstr "Монитор неизвестен" + +#: ../../include/functions.php:1228 ../../include/functions_events.php:2816 +#: ../../include/functions_events.php:3210 +msgid "Alert recovered" +msgstr "Оповещение восстановлено" + +#: ../../include/functions.php:1229 ../../include/functions_events.php:2864 +#: ../../include/functions_events.php:3214 +msgid "Alert ceased" +msgstr "Оповещение прекращено" + +#: ../../include/functions.php:1230 ../../include/functions_events.php:3218 +msgid "Alert manual validation" +msgstr "Подтверждение руководства оповещений" + +#: ../../include/functions.php:1232 +msgid "Agent created" +msgstr "Агент создан" + +#: ../../include/functions.php:1233 ../../include/functions_events.php:3222 +msgid "Recon host detected" +msgstr "Хост рекона определен" + +#: ../../include/functions.php:1236 ../../include/functions_events.php:2860 +#: ../../include/functions_events.php:3234 +msgid "Configuration change" +msgstr "Конфигурационные изменения" + +#: ../../include/functions.php:1352 ../../include/functions.php:1382 +msgid "ALERT FIRED" +msgstr "ПРЕДУПРЕЖДЕНИЕ АКТИВИРОВАНО" + +#: ../../include/functions.php:1355 ../../include/functions.php:1392 +#: ../../include/functions_modules.php:3568 +#: ../../include/class/Tree.class.php:625 ../../include/lib/Module.php:529 +#: ../../operation/agentes/status_monitor.php:1524 +#: ../../operation/agentes/status_monitor.php:1530 +msgid "NO DATA" +msgstr "НЕТ ДАННЫХ" + +#: ../../include/functions.php:2695 +#, php-format +msgid "%s seconds" +msgstr "%s секунд" + +#: ../../include/functions.php:2698 ../../include/functions.php:2699 +#, php-format +msgid "%s minutes" +msgstr "%s минут" + +#: ../../include/functions.php:2707 ../../include/functions.php:2708 +#, php-format +msgid "%s months" +msgstr "%s месяцев" + +#: ../../include/functions.php:2710 ../../include/functions.php:2711 +#, php-format +msgid "%s years" +msgstr "%s лет" + +#: ../../include/functions.php:2713 +msgid "Default values will be used" +msgstr "Значения по умолчанию не будут исползованы" + +#: ../../include/functions.php:2906 +msgid "The uploaded file was only partially uploaded" +msgstr "Файл был загружен только частично" + +#: ../../include/functions.php:2910 +msgid "No file was uploaded" +msgstr "Файл не был загружен" + +#: ../../include/functions.php:2914 +msgid "Missing a temporary folder" +msgstr "Временный каталог не существует." + +#: ../../include/functions.php:2918 +msgid "Failed to write file to disk" +msgstr "Невозможно записать файл на диск" + +#: ../../include/functions.php:2922 +msgid "File upload stopped by extension" +msgstr "Загрузка файла приостановлена из-за расширения" + +#: ../../include/functions.php:2926 +msgid "Unknown upload error" +msgstr "Неизвестная ошибка загрузки" + +#: ../../include/functions.php:3037 +msgid "No data found to export" +msgstr "Не найдено данных для экспорта" + +#: ../../include/functions.php:3356 +#: ../../operation/gis_maps/render_view.php:136 +msgid "5 seconds" +msgstr "5 секунд" + +#: ../../include/functions.php:3357 +#: ../../operation/gis_maps/render_view.php:137 +msgid "10 seconds" +msgstr "10 секунд" + +#: ../../include/functions.php:3358 +msgid "15 seconds" +msgstr "15 секунд" + +#: ../../include/functions.php:3359 +#: ../../include/class/AgentsAlerts.class.php:822 +#: ../../operation/gis_maps/render_view.php:138 +msgid "30 seconds" +msgstr "30 секунд" + +#: ../../include/functions.php:3360 +#: ../../include/class/AgentsAlerts.class.php:823 +#: ../../operation/gis_maps/render_view.php:139 +msgid "1 minute" +msgstr "1 минута" + +#: ../../include/functions.php:3361 +#: ../../include/class/AgentsAlerts.class.php:824 +#: ../../operation/gis_maps/render_view.php:140 +msgid "2 minutes" +msgstr "2 минуты" + +#: ../../include/functions.php:3362 ../../include/ajax/module.php:198 +#: ../../include/class/AgentsAlerts.class.php:825 +#: ../../operation/gis_maps/render_view.php:141 +msgid "5 minutes" +msgstr "5 минут" + +#: ../../include/functions.php:3363 +msgid "15 minutes" +msgstr "15 минут" + +#: ../../include/functions.php:3364 ../../include/ajax/module.php:199 +msgid "30 minutes" +msgstr "30 минут" + +#: ../../include/functions.php:3879 +msgid "Summatory series" +msgstr "Итоговые серии" + +#: ../../include/functions.php:3883 +msgid "Average series" +msgstr "Средняя серия" + +#: ../../include/functions.php:3911 ../../include/functions.php:3930 +#: ../../include/functions.php:3944 ../../include/functions.php:3966 +#: ../../include/functions.php:4047 ../../include/functions.php:4119 +msgid "Unit " +msgstr "Единица " + +#: ../../include/functions.php:3992 ../../include/functions.php:4057 +msgid "Min:" +msgstr "Мин.:" + +#: ../../include/functions.php:3999 ../../include/functions.php:4064 +msgid "Max:" +msgstr "Max:" + +#: ../../include/functions.php:4006 ../../include/functions.php:4071 +msgid "Avg:" +msgstr "Средн:" + +#: ../../include/functions.php:4116 ../../include/functions.php:4124 +msgid "of module" +msgstr "модуля" + +#: ../../include/functions.php:4141 +msgid "Projection" +msgstr "Проекция" + +#: ../../include/functions.php:5988 +msgid "Testing Pandora FMS email" +msgstr "Проверка электронной почты Pandora FMS" + +#: ../../include/functions.php:6001 +msgid "" +"This is an email test sent from Pandora FMS. If you can read this, your " +"configuration works." +msgstr "" +"Эта проверка электронной почты, отправленная из Pandora FMS. Если вы можете " +"прочитать это, ваша конфигурация работает." + +#: ../../include/functions_cron.php:446 +msgid "Scheduled jobs" +msgstr "Назначенные задания" + +#: ../../include/functions_api.php:98 +msgid "Not `set`, `get` or `help` operation selected." +msgstr "Не выбрана операция 'set', 'get' или 'help' ." + +#: ../../include/functions_api.php:108 +msgid "This operation does not exist." +msgstr "Данная операция не существует." + +#: ../../include/functions_api.php:118 +msgid "The Id does not exist in database." +msgstr "Идентификатор не существует в базе данных." + +#: ../../include/functions_api.php:128 +msgid "This operation can not be used in cluster elements." +msgstr "Эта операция не может быть использована в элементах кластера." + +#: ../../include/functions_api.php:138 +msgid "The user has not enough permissions for perform this action." +msgstr "У пользователя недостаточно прав для выполнения этого действия." + +#: ../../include/functions_api.php:158 +msgid "" +"This console is not the environment administrator. Please, manage this " +"feature from centralized manager console (Metaconsole)." +msgstr "" +"Эта консоль не является администратором среды. Пожалуйста, управляйте этой " +"функцией с консоли централизованного менеджера (Метаконсоль)." + +#: ../../include/functions_api.php:1443 +msgid "" +"The agent could not be modified. For security reasons, use a group other " +"than 0." +msgstr "" +"Агент не может быть изменен. В целях безопасности используйте группу, " +"отличную от 0." + +#: ../../include/functions_api.php:1835 +msgid "Could not create OS" +msgstr "Не удалось создать ОС" + +#: ../../include/functions_api.php:1866 +msgid "Could not update OS" +msgstr "Не удалось обновить ОС" + +#: ../../include/functions_api.php:2067 +msgid "The agent was successfully deleted" +msgstr "Агент был успешно удален" + +#: ../../include/functions_api.php:3562 +msgid "Network module updated." +msgstr "Сетевой модуль обновлен." + +#: ../../include/functions_api.php:3822 +msgid "Plugin module updated." +msgstr "Модуль плагина обновлен." + +#: ../../include/functions_api.php:4178 +#, php-format +msgid "Synthetic module created ID: %s" +msgstr "Синтетический модуль создан ID: %s" + +#: ../../include/functions_api.php:4331 +msgid "Synthetic module created ID: " +msgstr "ID созданного синтетического модуля: " + +#: ../../include/functions_api.php:4448 +msgid "Data module updated." +msgstr "Данные модуля обновлены." + +#: ../../include/functions_api.php:4821 +msgid "SNMP module updated." +msgstr "Модуль SNMP обновлен." + +#: ../../include/functions_api.php:5400 +msgid "Error creating alert template. Id_group cannot be left blank." +msgstr "" +"Ошибка при создании шаблона предупреждения. Id_group не может быть пустым." + +#: ../../include/functions_api.php:5414 +msgid "" +"Error creating alert template. Invalid id_group or the user has not enough " +"permission to make this action." +msgstr "" +"Ошибка при создании шаблона предупреждения. Неверная id_group или у " +"пользователя недостаточно прав для выполнения этого действия." + +#: ../../include/functions_api.php:5552 +msgid "" +"Error updating alert template. Invalid id_group or the user has not enough " +"permission to make this action." +msgstr "" +"Ошибка обновления шаблона предупреждения. Неверная id_group или у " +"пользователя недостаточно прав для выполнения этого действия." + +#: ../../include/functions_api.php:5636 +msgid "Successful update of the alert template" +msgstr "Успешное обновление шаблона предупреждения" + +#: ../../include/functions_api.php:5676 +msgid "Error deleting alert template. Id_template doesn't exist." +msgstr "" +"Ошибка при удалении шаблона предупреждения. Id_template не существует." + +#: ../../include/functions_api.php:5705 +msgid "Successful delete of alert template." +msgstr "Успешное удаление шаблона предупреждения." + +#: ../../include/functions_api.php:6125 ../../include/functions_api.php:11695 +#: ../../include/functions_api.php:11761 ../../include/functions_api.php:12042 +#: ../../include/functions_api.php:12122 +#, php-format +msgid "%d agents affected" +msgstr "%d затронутых агентов" + +#: ../../include/functions_api.php:6271 +msgid "Correct deleting of module template." +msgstr "Правильное удаление модуля шаблона." + +#: ../../include/functions_api.php:6379 +msgid "Successful delete of module template." +msgstr "Успешное удаление шаблона модуля." + +#: ../../include/functions_api.php:6412 +msgid "Error validating alert. Id_template cannot be left blank." +msgstr "" +"Ошибка при проверке предупреждения. Id_template не может быть пустым." + +#: ../../include/functions_api.php:6420 +msgid "Error validating alert. Id_agent cannot be left blank." +msgstr "Ошибка при проверке предупреждения. Id_agent не может быть пустым." + +#: ../../include/functions_api.php:6428 +msgid "Error validating alert. Id_module cannot be left blank." +msgstr "Ошибка при проверке предупреждения. Id_module не может быть пустым." + +#: ../../include/functions_api.php:6499 +msgid "Error validating alert. Specified alert does not exist." +msgstr "" +"Ошибка при проверке предупреждения. Указанное предупреждение не существует." + +#: ../../include/functions_api.php:6510 +msgid "Error validating alert" +msgstr "Ошибка при проверке предупреждения" + +#: ../../include/functions_api.php:6584 +#, php-format +msgid "Correct validation of all alerts (total %d)." +msgstr "Правильная проверка всех предупреждений (всего %d)." + +#: ../../include/functions_api.php:6678 +msgid "Correct validation of all policy alerts." +msgstr "Правильная проверка всех предупреждений политики." + +#: ../../include/functions_api.php:6720 +msgid "" +"Error stopping downtime. Periodical and running planned downtime cannot be " +"stopped." +msgstr "" +"Ошибка при прерывании остановки. Периодические и текущие запланированные " +"остановки не могут быть прерваны." + +#: ../../include/functions_api.php:6733 +msgid "Downtime stopped." +msgstr "Простой остановлен." + +#: ../../include/functions_api.php:7209 +msgid "and this modules are doesn't exists or not applicable a this agents: " +msgstr "и эти модули не существуют или не применимы к данным агентам: " + +#: ../../include/functions_api.php:7213 +msgid "and this agents are generate problems: " +msgstr "и эти агенты порождают проблемы: " + +#: ../../include/functions_api.php:7217 +msgid "and this agents with ids are doesn't exists: " +msgstr "и агентов с такими id не существует: " + +#: ../../include/functions_api.php:7335 +msgid "Data policy module updated." +msgstr "Данные политики модуля обновлены." + +#: ../../include/functions_api.php:7552 +msgid "Network policy module updated." +msgstr "Сетевой модуль политики обновлен." + +#: ../../include/functions_api.php:7775 +msgid "Plugin policy module updated." +msgstr "Плагин модуля политики обновлен." + +#: ../../include/functions_api.php:8268 +msgid "SNMP policy module updated." +msgstr "SNMP модуль политики обновлен." + +#: ../../include/functions_api.php:8572 +msgid "Successful deletion" +msgstr "Удалено успешно" + +#: ../../include/functions_api.php:8880 +msgid "User created." +msgstr "Пользователь создан." + +#: ../../include/functions_api.php:8967 +msgid "User updated." +msgstr "Пользователь обновлён." + +#: ../../include/functions_api.php:9040 +msgid "Enabled user." +msgstr "Включить пользователя." + +#: ../../include/functions_api.php:9048 +msgid "Disabled user." +msgstr "Отключить пользователя." + +#: ../../include/functions_api.php:9326 +#, php-format +msgid "Template have been inserted in %d agents." +msgstr "Шаблон был вставлен в %d агентов." + +#: ../../include/functions_api.php:9498 +msgid "XML file was generated successfully in path: " +msgstr "XML-файл был успешно сгенерирован на пути: " + +#: ../../include/functions_api.php:9638 +#, php-format +msgid "Module has been created in %d agents." +msgstr "Модуль был создан в %d агентах." + +#: ../../include/functions_api.php:9760 +#, php-format +msgid "Action has been set for %d agents." +msgstr "Модуль был создан в %d агентах." + +#: ../../include/functions_api.php:9890 +#, php-format +msgid "Created/Updated %s/%s module groups" +msgstr "Созданные/обновленные %s/%s группы модулей" + +#: ../../include/functions_api.php:11219 +msgid "User deleted." +msgstr "Пользователь удален." + +#: ../../include/functions_api.php:11272 +msgid "User profile added." +msgstr "Добавлен профиль пользователя." + +#: ../../include/functions_api.php:11331 +msgid "User profile deleted." +msgstr "Профиль пользователя удален." + +#: ../../include/functions_api.php:11702 +msgid "Module disabled successfully." +msgstr "Модуль успешно отключен." + +#: ../../include/functions_api.php:11704 +msgid "The module could not be disabled." +msgstr "Модуль не удалось отключить." + +#: ../../include/functions_api.php:11768 +msgid "Module enabled successfully." +msgstr "Модуль успешно включен." + +#: ../../include/functions_api.php:11770 +msgid "The module could not be enabled." +msgstr "Модуль не удалось включить." + +#: ../../include/functions_api.php:11818 ../../include/functions_api.php:11871 +msgid "The alert could not be disabled." +msgstr "Предупреждение не удалось отключить." + +#: ../../include/functions_api.php:11918 ../../include/functions_api.php:11971 +msgid "The alert could not be enabled." +msgstr "Предупреждение не удалось включить." + +#: ../../include/functions_api.php:13202 +msgid "Enabled agent." +msgstr "Включенный агент." + +#: ../../include/functions_api.php:13210 +msgid "Disabled agent." +msgstr "Отключенный агент." + +#: ../../include/functions_api.php:14097 +msgid "Metaconsole and the licenses of all nodes were updated." +msgstr "Метаконсоль и лицензии всех узлов были обновлены." + +#: ../../include/functions_api.php:14099 +#, php-format +msgid "Metaconsole license updated but %d of %d node failed to sync." +msgstr "" +"Лицензия Метаконсоли обновлена, но %d из %d узлов не удалось " +"синхронизировать." + +#: ../../include/functions_api.php:14102 +msgid "This function is for metaconsole only." +msgstr "Эта функция предназначена только для метаконсоли." + +#: ../../include/functions_api.php:14422 ../../include/functions_api.php:14493 +msgid "Successfully deleted." +msgstr "Успешно удалено" + +#: ../../include/functions_api.php:14452 +msgid "The user cannot access the cluster." +msgstr "Пользователь не может получить доступ к кластеру." + +#: ../../include/functions_api.php:15338 +msgid "Event filter successfully created." +msgstr "Фильтр событий успешно создан." + +#: ../../include/functions_api.php:15571 +msgid "Event filter successfully updated." +msgstr "Фильтр событий успешно обновлен." + +#: ../../include/functions_api.php:15612 +msgid "Event filter successfully deleted." +msgstr "Фильтр событий успешно удален." + +#: ../../include/functions_api.php:15895 +msgid "Validated traps." +msgstr "Проверенные ловушки." + +#: ../../include/functions_api.php:15922 +msgid "Deleted traps." +msgstr "Удаленные ловушки." + +#: ../../include/functions_api.php:16109 +#, php-format +msgid "Successfully updated module/alert count in id agent %d." +msgstr "Успешно обновлено количество модулей/предупреждений в id агента %d." + +#: ../../include/functions_api.php:16111 +msgid "Successfully updated module/alert count in all agents" +msgstr "Успешное обновление модуля/счета предупреждений во всех агентах" + +#: ../../include/functions_api.php:16547 +#, php-format +msgid "Successfully added to delete pending id agent %d to id policy %d." +msgstr "Успешно добавлено в ожидание удаление агента id %d в политику id %d." + +#: ../../include/functions_api.php:16678 +msgid "Error enable/disable discovery task. Id_user cannot be left blank." +msgstr "" +"Ошибка включения/выключения задачи discovery. Id_user не может быть пустым." + +#: ../../include/functions_api.php:16686 +msgid "" +"Error enable/disable discovery task. Enable/disable value cannot be left " +"blank." +msgstr "" +"Ошибка включения/выключения задачи discovery. Значение включения/выключения " +"нельзя оставлять пустым." + +#: ../../include/functions_api.php:16711 +msgid "Error in discovery task enabling/disabling." +msgstr "Ошибка включения/выключения задачи discovery." + +#: ../../include/functions_api.php:16719 +msgid "Enabled discovery task." +msgstr "Включено задание discovery." + +#: ../../include/functions_api.php:16727 +msgid "Disabled discovery task." +msgstr "Выключено задание discovery." + +#: ../../include/functions_networkmap.php:1322 +msgid "Radial dynamic" +msgstr "Радиальная динамика" + +#: ../../include/functions_networkmap.php:1326 +#: ../../include/functions_maps.php:38 +msgid "Topology" +msgstr "Топология" + +#: ../../include/functions_networkmap.php:1344 +msgid "Create a new topology map" +msgstr "Создать новую карту топологии" + +#: ../../include/functions_networkmap.php:1345 +msgid "Create a new group map" +msgstr "Создать новую карту группы" + +#: ../../include/functions_networkmap.php:1346 +msgid "Create a new dynamic map" +msgstr "Создайте новую динамическую карту" + +#: ../../include/functions_networkmap.php:1348 +msgid "Create a new radial dynamic map" +msgstr "Создайте новую радиальную динамическую карту" + +#: ../../include/functions_networkmap.php:2063 +#: ../../include/functions_maps.php:73 +msgid "Copy of " +msgstr "Копия " + +#: ../../include/ajax/double_auth.ajax.php:144 +msgid "" +"This is the private code that you should use with your authenticator app" +msgstr "" +"Это личный код, который вы должны использовать в приложении аутентификатора." + +#: ../../include/ajax/double_auth.ajax.php:145 +#: ../../include/ajax/double_auth.ajax.php:288 +msgid "" +"You could enter the code manually or use the QR code to add it automatically" +msgstr "" +"Вы можете ввести код вручную или использовать QR-код для его автоматического " +"добавления" + +#: ../../include/ajax/double_auth.ajax.php:151 +#: ../../include/ajax/double_auth.ajax.php:294 +msgid "QR" +msgstr "QR" + +#: ../../include/ajax/double_auth.ajax.php:190 +msgid "You are about to activate the double authentication" +msgstr "Вы собираетесь активировать двойную аутентификацию" + +#: ../../include/ajax/double_auth.ajax.php:192 +msgid "" +"With this option enabled, your account access will be more secure, \n" +"\t\tcause a code generated by other application will be required after the " +"login" +msgstr "" +"При включении этой опции доступ к вашей учетной записи будет более " +"безопасным, \n" +"\t\tпоскольку после входа в систему потребуется ввести код, сгенерированный " +"другим приложением." + +#: ../../include/ajax/double_auth.ajax.php:197 +msgid "" +"You will need to install the app from the following link before continue" +msgstr "" +"Прежде чем продолжить, вам необходимо установить приложение по следующей " +"ссылке" + +#: ../../include/ajax/double_auth.ajax.php:202 +msgid "Download the app" +msgstr "Скачать приложение" + +#: ../../include/ajax/double_auth.ajax.php:206 +#: ../../include/ajax/double_auth.ajax.php:299 +#: ../../include/functions_update_manager.php:250 +msgid "Continue" +msgstr "Продолжить" + +#: ../../include/ajax/double_auth.ajax.php:222 +msgid "Are you installed the app yet?" +msgstr "Вы уже установили приложение?" + +#: ../../include/ajax/double_auth.ajax.php:282 +msgid "A private code has been generated" +msgstr "Был сгенерирован личный код" + +#: ../../include/ajax/double_auth.ajax.php:287 +msgid "" +"Before continue, you should create a new entry into the authenticator app" +msgstr "" +"Прежде чем продолжить, необходимо создать новую запись в приложении " +"аутентификатора" + +#: ../../include/ajax/double_auth.ajax.php:297 +msgid "Refresh code" +msgstr "Обновить код" + +#: ../../include/ajax/double_auth.ajax.php:366 +msgid "Are you introduced the code in the authenticator app yet?" +msgstr "Вы уже ввели код в приложение аутентификатора?" + +#: ../../include/ajax/double_auth.ajax.php:429 +msgid "Introduce a code generated by the app" +msgstr "Введите код, сгенерированный приложением" + +#: ../../include/ajax/double_auth.ajax.php:430 +msgid "If the code is valid, the double authentication will be activated" +msgstr "Если код действителен, будет активирована двойная аутентификация" + +#: ../../include/ajax/double_auth.ajax.php:439 +msgid "Validate code" +msgstr "Проверить правильность кода" + +#: ../../include/ajax/double_auth.ajax.php:491 +msgid "The code is valid, you can exit now" +msgstr "Код действителен, вы можете выйти сейчас" + +#: ../../include/ajax/double_auth.ajax.php:508 +msgid "The code is valid, but it was an error saving the data" +msgstr "Код действителен, но при сохранении данных произошла ошибка" + +#: ../../include/ajax/alert_list.ajax.php:275 +#: ../../include/ajax/alert_list.ajax.php:300 ../../include/ajax/module.php:970 +#: ../../operation/agentes/alerts_status.php:532 +#: ../../operation/agentes/alerts_status.php:568 +#: ../../operation/agentes/alerts_status.php:602 +#: ../../operation/agentes/alerts_status.php:635 +msgid "Force execution" +msgstr "Принудительное выполнение" + +#: ../../include/ajax/alert_list.ajax.php:275 +#: ../../include/ajax/alert_list.ajax.php:300 ../../include/ajax/module.php:970 +#: ../../operation/agentes/alerts_status.php:532 +#: ../../operation/agentes/alerts_status.php:568 +#: ../../operation/agentes/alerts_status.php:602 +#: ../../operation/agentes/alerts_status.php:635 +msgid "F." +msgstr "F." + +#: ../../include/ajax/alert_list.ajax.php:327 +#: ../../operation/agentes/alerts_status.php:721 +msgid "No alerts found" +msgstr "Оповещения не найдены" + +#: ../../include/ajax/snmp_browser.ajax.php:113 +#: ../../include/ajax/snmp_browser.ajax.php:124 +#: ../../include/ajax/snmp_browser.ajax.php:134 +msgid "SNMP modules" +msgstr "Модули SNMP" + +#: ../../include/ajax/snmp_browser.ajax.php:117 +msgid "Error creating the following modules:" +msgstr "Ошибка при создании следующих модулей:" + +#: ../../include/ajax/snmp_browser.ajax.php:128 +msgid "Modules successfully created" +msgstr "Модули успешно созданы" + +#: ../../include/ajax/snmp_browser.ajax.php:138 +msgid "Module must be applied to an agent or a policy" +msgstr "Модуль должен быть применен к агенту или политике" + +#: ../../include/ajax/snmp_browser.ajax.php:263 +msgid "Failed to create policy" +msgstr "Не удалось создать политику" + +#: ../../include/ajax/snmp_browser.ajax.php:264 +msgid "Policy created succesfully" +msgstr "Политика создана успешно" + +#: ../../include/ajax/module.php:207 +msgid "3 months" +msgstr "3 месяца" + +#: ../../include/ajax/module.php:210 +msgid "2 years" +msgstr "2 года" + +#: ../../include/ajax/module.php:211 +msgid "3 years" +msgstr "3 года (3 years)" + +#: ../../include/ajax/module.php:223 +#: ../../operation/agentes/datos_agente.php:194 +msgid "Choose a time from now" +msgstr "Выберите время с этого момента" + +#: ../../include/ajax/module.php:249 +#: ../../operation/agentes/datos_agente.php:197 +msgid "Specify time range" +msgstr "Укажите временной диапазон" + +#: ../../include/ajax/module.php:307 +msgid "Exact phrase" +msgstr "Точная фраза" + +#: ../../include/ajax/module.php:399 ../../operation/agentes/stat_win.php:429 +#: ../../operation/agentes/interface_traffic_graph_win.php:303 +msgid "" +"In Pandora FMS, data is stored compressed. The data visualization in " +"database, charts or CSV exported data won't match, because is interpreted at " +"runtime. Please check 'Pandora FMS Engineering' chapter from documentation." +msgstr "" +"В Pandora FMS данные хранятся в сжатом виде. Визуализация данных в базе " +"данных, графики или CSV экспортированные данные не будут соответствовать, " +"так как интерпретируются во время выполнения. Пожалуйста, ознакомьтесь с " +"главой 'Pandora FMS Инженерия' из документации." + +#: ../../include/ajax/module.php:1280 +msgid "Any monitors aren't with this filter." +msgstr "Нет приборов контроля с этим фильтром." + +#: ../../include/ajax/module.php:1282 +msgid "This agent doesn't have any active monitors." +msgstr "Этот агент не имеет никаких активных приборов контроля" + +#: ../../include/ajax/custom_fields.php:414 +msgid "Current interval" +msgstr "Текущий интервал" + +#: ../../include/ajax/custom_fields.php:460 +#: ../../include/ajax/custom_fields.php:513 +msgid "Modules normal" +msgstr "Нормальные Модули" + +#: ../../include/ajax/custom_fields.php:471 +msgid "Modules critical" +msgstr "Критические Модули" + +#: ../../include/ajax/custom_fields.php:482 +msgid "Modules warning" +msgstr "Предостережения о модулях" + +#: ../../include/ajax/custom_fields.php:492 +msgid "Modules unknown" +msgstr "Неизвестные Модули" + +#: ../../include/ajax/custom_fields.php:503 +msgid "Modules no init" +msgstr "Модули без инициализации" + +#: ../../include/ajax/custom_fields.php:545 +msgid "New Filter" +msgstr "Новый фильтр" + +#: ../../include/ajax/custom_fields.php:552 +msgid "Existing Filter" +msgstr "Существующий фильтр" + +#: ../../include/ajax/custom_fields.php:700 +msgid "Delete filter" +msgstr "Удалить фильтр" + +#: ../../include/ajax/custom_fields.php:750 +msgid "Filter name already exists in the bbdd" +msgstr "Имя фильтра уже существует в БД" + +#: ../../include/ajax/custom_fields.php:762 +msgid "Please, select a custom field" +msgstr "Пожалуйста, выберите пользовательское поле" + +#: ../../include/ajax/custom_fields.php:790 +msgid "Success create filter." +msgstr "Успешное создание фильтра." + +#: ../../include/ajax/custom_fields.php:797 +msgid "Error create filter." +msgstr "Ошибка при создании фильтра." + +#: ../../include/ajax/custom_fields.php:822 +#: ../../include/ajax/custom_fields.php:895 +msgid "please, select a filter" +msgstr "пожалуйста, выберите фильтр" + +#: ../../include/ajax/custom_fields.php:838 +msgid "please, select a custom field" +msgstr "пожалуйста, выберите пользовательское поле" + +#: ../../include/ajax/custom_fields.php:864 +msgid "Success update filter." +msgstr "Успешное обновление фильтра." + +#: ../../include/ajax/custom_fields.php:871 +msgid "Error update filter." +msgstr "Ошибка обновления фильтра." + +#: ../../include/ajax/custom_fields.php:914 +msgid "Success delete filter." +msgstr "Успешное удаление фильтра." + +#: ../../include/ajax/custom_fields.php:921 +msgid "Error delete filter." +msgstr "Ошибка удаления фильтра." + +#: ../../include/ajax/update_manager.ajax.php:119 +msgid "Invalid extension. The package must have the extension .oum." +msgstr "Недопустимое расширение. Пакет должен иметь расширение .oum." + +#: ../../include/ajax/update_manager.ajax.php:126 +msgid "The file was not uploaded succesfully." +msgstr "Файл не был обновлен корректно." + +#: ../../include/ajax/update_manager.ajax.php:286 +msgid "Package rejected." +msgstr "Пакет отклонен." + +#: ../../include/ajax/update_manager.ajax.php:602 +msgid "The package is extracted." +msgstr "Пакет извлечён." + +#: ../../include/ajax/update_manager.ajax.php:605 +msgid "Error in package extraction." +msgstr "Ошибка при извлечении пакета." + +#: ../../include/ajax/update_manager.ajax.php:626 +msgid "An error ocurred in the installation process." +msgstr "В процессе установки произошла ошибка." + +#: ../../include/ajax/update_manager.ajax.php:755 +msgid "Delete files" +msgstr "Удалить файлы" + +#: ../../include/ajax/update_manager.ajax.php:756 +msgid "The oum has no files to remove" +msgstr "У oum нет файлов для удаления" + +#: ../../include/ajax/update_manager.ajax.php:758 +msgid "Not deleted" +msgstr "Не удалено" + +#: ../../include/ajax/update_manager.ajax.php:759 +msgid "The file delete_file.txt can not be read" +msgstr "Файл delete_file.txt не может быть прочитан" + +#: ../../include/ajax/update_manager.ajax.php:760 +msgid "'deleted' folder could not be created" +msgstr "Не удалось создать папку 'удалено'" + +#: ../../include/ajax/update_manager.ajax.php:761 +msgid "'deleted' folder was created" +msgstr "была создана папка 'удалено'" + +#: ../../include/ajax/update_manager.ajax.php:763 +msgid "The \"delete files\" could not be the \"delete\" folder" +msgstr "Папка \"удалить файлы\" не может быть папкой \"удалить\"" + +#: ../../include/ajax/update_manager.ajax.php:766 +msgid "The \"delete files\" is moved to the \"delete\" folder" +msgstr "\"Удалить файлы\" перемещается в папку \"Удалить\"." + +#: ../../include/ajax/events.php:94 +msgid "Failed to retrieve comments" +msgstr "Не удалось получить комментарии" + +#: ../../include/ajax/events.php:590 ../../operation/events/events_list.php:406 +msgid "New filter" +msgstr "Новый фильтр" + +#: ../../include/ajax/events.php:608 ../../operation/events/events_list.php:424 +msgid "Save in Group" +msgstr "Сохранить в группе" + +#: ../../include/ajax/events.php:644 ../../operation/events/events_list.php:453 +msgid "Overwrite filter" +msgstr "Переписать фильтр" + +#: ../../include/ajax/events.php:715 +#: ../../operation/events/events_list.php:1521 +msgid "Filter name cannot be left blank" +msgstr "Имя фильтра не может быть пустым" + +#: ../../include/ajax/events.php:1078 +msgid "Error executing response" +msgstr "Ошибка при выполнении ответа" + +#: ../../include/ajax/events.php:1352 +msgid "Related" +msgstr "Связанное" + +#: ../../include/ajax/events.php:1364 +msgid "Agent fields" +msgstr "Поля агента" + +#: ../../include/ajax/events.php:1404 +msgid "Custom data" +msgstr "Пользовательская информация" + +#: ../../include/ajax/events.php:1502 +msgid "Error adding comment" +msgstr "ошибка при создании комментария" + +#: ../../include/ajax/events.php:1503 +msgid "Comment added successfully" +msgstr "Комментарий успешно добавлен" + +#: ../../include/ajax/events.php:1504 +msgid "Error changing event status" +msgstr "Ошибка при изменении статуса события" + +#: ../../include/ajax/events.php:1505 +msgid "Event status changed successfully" +msgstr "Статус события успешно изменен" + +#: ../../include/ajax/events.php:1506 +msgid "Error changing event owner" +msgstr "Ошибка при смене владельца события" + +#: ../../include/ajax/events.php:1507 +msgid "Event owner changed successfully" +msgstr "Событие владельца успешно изменено" + +#: ../../include/ajax/events.php:1713 +msgid "Show all Events 24h" +msgstr "Показать все события 24 часа" + +#: ../../include/ajax/events.php:1846 +msgid "These commands will apply to all selected events" +msgstr "Эти команды будут применяться ко всем выбранным событиям" + +#: ../../include/ajax/events.php:1875 +#: ../../include/class/ExternalTools.class.php:568 +#: ../../include/functions_events.php:3773 +msgid "Execute" +msgstr "Выполнение" + +#: ../../include/ajax/events.php:1954 +msgid "Alert fired in module " +msgstr "Предупреждение сработало в модуле " + +#: ../../include/ajax/events.php:1969 +msgid " is going to critical" +msgstr " меняется на критическое" + +#: ../../include/ajax/events.php:1983 +msgid " is going to warning" +msgstr " намерен предупредить об опасночти" + +#: ../../include/ajax/events.php:1997 +msgid " is going to unknown" +msgstr " меняется на неизвестное" + +#: ../../include/ajax/rolling_release.ajax.php:55 +msgid "The sql file contains a dangerous query" +msgstr "В sql-файле содержится опасный запрос" + +#: ../../include/ajax/rolling_release.ajax.php:103 +msgid "" +"An error occurred while updating the database schema to the minor release " +msgstr "" +"Произошла ошибка при обновлении схемы базы данных до минимального обновления " + +#: ../../include/ajax/rolling_release.ajax.php:116 +#: ../../include/ajax/rolling_release.ajax.php:128 +msgid "The directory " +msgstr "Каталог " + +#: ../../include/ajax/rolling_release.ajax.php:116 +msgid " should have read permissions in order to update the database schema" +msgstr " должны иметь права на чтение, чтобы обновить схему базы данных" + +#: ../../include/ajax/rolling_release.ajax.php:128 +msgid " does not exist" +msgstr " не существует" + +#: ../../include/ajax/graph.ajax.php:161 +msgid "Time container lapse" +msgstr "Задержка контейнера во времени" + +#: ../../include/functions_agents.php:954 +msgid "" +"There was an error copying the agent configuration, the copy has been " +"cancelled" +msgstr "" +"Найдена ошибка при копировании конфигурации агента, копия была отменена" + +#: ../../include/functions_agents.php:2757 +#: ../../include/functions_agents.php:2796 +#: ../../include/functions_agents.php:2867 +msgid "No Monitors" +msgstr "Нет приборов контроля" + +#: ../../include/functions_agents.php:2765 +#: ../../include/functions_agents.php:2820 +#: ../../include/functions_agents.php:2875 +#: ../../include/functions_reporting.php:11272 +msgid "At least one module in CRITICAL status" +msgstr "Хотя бы один модуль в КРИТИЧЕСКОМ статусе" + +#: ../../include/functions_agents.php:2771 +#: ../../include/functions_agents.php:2830 +#: ../../include/functions_agents.php:2883 +#: ../../include/functions_reporting.php:11279 +msgid "At least one module in WARNING status" +msgstr "По крайней мере один модуль в состоянии ОПАСНОСТЬ" + +#: ../../include/functions_agents.php:2777 +#: ../../include/functions_agents.php:2840 +#: ../../include/functions_agents.php:2891 +#: ../../include/functions_reporting.php:11286 +msgid "At least one module is in UKNOWN status" +msgstr "Хотя бы один модуль в НЕИЗВЕСТНОМ статусе" + +#: ../../include/functions_agents.php:2783 +#: ../../include/functions_agents.php:2850 +#: ../../include/functions_agents.php:2899 +#: ../../include/functions_reporting.php:11293 +msgid "All Monitors OK" +msgstr "Все приборы контроля ОК" + +#: ../../include/functions_agents.php:2808 +msgid "Alert fired on agent" +msgstr "Предупреждение сработало по агенту" + +#: ../../include/functions_agents.php:3799 +msgid "Dialog response time" +msgstr "Время отклика диалога" + +#: ../../include/functions_integriaims.php:41 +msgid "Configure Integria IMS" +msgstr "Настройка Integria IMS" + +#: ../../include/functions_integriaims.php:42 +msgid "Ticket list" +msgstr "Список заявок" + +#: ../../include/functions_integriaims.php:43 +msgid "New ticket" +msgstr "Новая заявка" + +#: ../../include/functions_integriaims.php:72 +msgid "Edit ticket" +msgstr "Редактировать заявку" + +#: ../../include/functions_integriaims.php:73 +msgid "View ticket" +msgstr "Просмотр заявки" + +#: ../../include/functions_integriaims.php:219 +msgid "" +"API request failed. Please check Integria IMS' access credentials in Pandora " +"setup." +msgstr "" +"Не удалось выполнить запрос API. Пожалуйста, проверьте учетные данные " +"доступа Integria IMS в настройке Pandora." + +#: ../../include/functions_modules.php:3495 +msgid "Realtime SNMP graph" +msgstr "График SNMP в реальном времени" + +#: ../../include/functions_modules.php:3560 +msgid "ALL" +msgstr "ВСЕ" + +#: ../../include/functions_modules.php:3576 +msgid "NOT NORMAL" +msgstr "НЕ НОРМАЛЬНО" + +#: ../../include/auth/mysql.php:295 ../../include/auth/mysql.php:323 +msgid "" +"Problems with configuration permissions. Please contact with Administrator" +msgstr "" +"Проблемы с разрешениями на конфигурацию. Пожалуйста, свяжитесь с " +"Администратором" + +#: ../../include/auth/mysql.php:310 ../../include/auth/mysql.php:408 +#: ../../include/auth/mysql.php:428 +msgid "User not found in database or incorrect password" +msgstr "Пользователь не найден в базе данных или неверный пароль" + +#: ../../include/auth/mysql.php:336 +msgid "" +"Ooops User not found in \n" +"\t\t\t\tdatabase or incorrect password" +msgstr "" +"Ой! Пользователь не найден в \n" +"\t\t\t\t\t\t\tбазе данных или неверный пароль" + +#: ../../include/auth/mysql.php:354 ../../include/auth/mysql.php:395 +#: ../../include/auth/mysql.php:447 +msgid "Fail the group synchronizing" +msgstr "Не удалась групповая синхронизациия" + +#: ../../include/auth/mysql.php:360 ../../include/auth/mysql.php:401 +#: ../../include/auth/mysql.php:453 +msgid "Fail the tag synchronizing" +msgstr "Не удается синхронизировать тег" + +#: ../../include/auth/mysql.php:381 +msgid "" +"User not found in database \n" +"\t\t\t\t\tor incorrect password" +msgstr "" +"Пользователь не найден в базе данных \n" +"\t\t\t\t\t\t\t\tили неверный пароль" + +#: ../../include/auth/mysql.php:758 +msgid "Could not changes password on remote pandora" +msgstr "Не удалось изменить пароль в дистанционной Pandora FMS" + +#: ../../include/auth/mysql.php:806 +msgid "Your installation of PHP does not support LDAP" +msgstr "Ваша установка PHP не поддерживает LDAP" + +#: ../../include/api.php:206 +msgid "User or group not specified" +msgstr "Пользователь или группа не указаны" + +#: ../../include/api.php:207 +msgid "User, group not specified" +msgstr "Пользователь, группа не указаны" + +#: ../../include/api.php:238 +msgid "User, group or profile not specified" +msgstr "Пользователь, группа или профиль не указаны" + +#: ../../include/api.php:239 +msgid "User, group or profile status not specified" +msgstr "Статус пользователя, группа или профиль не указаны" + +#: ../../include/functions_graph.php:1069 +msgid "No data to display within the selected interval" +msgstr "Нет данных для отображения в течение выбранного интервала" + +#: ../../include/functions_graph.php:2580 +msgid "Not fired alerts" +msgstr "Нет запущенных оповещений" + +#: ../../include/functions_graph.php:2599 +#: ../../include/functions_graph.php:2735 +#: ../../include/functions_graph.php:2833 +#: ../../include/functions_graph.php:3294 +#: ../../include/functions_graph.php:3875 +#: ../../include/functions_reporting.php:1749 +#: ../../include/functions_reporting.php:1984 +#: ../../include/functions_reporting.php:2010 +#: ../../include/functions_reporting.php:2037 +#: ../../include/functions_reporting.php:2065 +#: ../../include/functions_reporting.php:2972 +#: ../../include/functions_reporting.php:3342 +#: ../../include/functions_reporting.php:3370 +#: ../../include/functions_reporting.php:3398 +#: ../../include/functions_reporting.php:9502 +#: ../../include/functions_reporting.php:9530 +#: ../../include/functions_reporting.php:9558 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:514 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:470 +msgid "other" +msgstr "прочее" + +#: ../../include/functions_graph.php:3276 +#: ../../include/functions_events.php:2568 +#: ../../include/functions_events.php:3329 +#: ../../include/functions_events.php:3613 +#: ../../include/functions_events.php:3622 +#: ../../include/functions_events.php:3629 +#: ../../include/functions_events.php:3636 +#: ../../include/functions_events.php:6020 +#: ../../include/functions_events.php:6028 +#: ../../operation/snmpconsole/snmp_view.php:610 +#: ../../operation/snmpconsole/snmp_view.php:943 +#: ../../operation/snmpconsole/snmp_view.php:1241 +msgid "Validated" +msgstr "Проверено" + +#: ../../include/functions_graph.php:3405 ../../include/functions_ui.php:3633 +#: ../../include/functions_events.php:98 +#: ../../include/functions_events.php:2848 +#: ../../operation/events/events.php:1931 +msgid "SYSTEM" +msgstr "СИСТЕМА" + +#: ../../include/functions_graph.php:5461 +msgid "Main node" +msgstr "Главный узел" + +#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 +#: ../../include/functions_gis.php:36 +msgid "Hierarchy of agents" +msgstr "Иерархия агентов" + +#: ../../include/functions_treeview.php:52 +msgid "There was a problem loading module" +msgstr "Найдена проблема при загрузке модуля" + +#: ../../include/functions_treeview.php:342 +msgid "Go to module edition" +msgstr "Перейти к модулю редактирования" + +#: ../../include/functions_treeview.php:393 +msgid "There was a problem loading alerts" +msgstr "Найдена проблема при загрузке оповещений" + +#: ../../include/functions_treeview.php:478 +msgid "Go to alerts edition" +msgstr "Перейти к редактированию оповещений." + +#: ../../include/functions_treeview.php:571 +#: ../../operation/agentes/agent_fields.php:24 +#: ../../operation/agentes/custom_fields.php:24 +#: ../../operation/agentes/estado_generalagente.php:62 +msgid "There was a problem loading agent" +msgstr "Произошла ошибка при загрузке агента" + +#: ../../include/functions_treeview.php:641 +#: ../../operation/agentes/estado_generalagente.php:493 +msgid "Other IP addresses" +msgstr "Другие IP адреса" + +#: ../../include/functions_treeview.php:683 +msgid "Next agent contact" +msgstr "Следующий контактный агент" + +#: ../../include/functions_treeview.php:710 +msgid "Edit cluster" +msgstr "Редактировать кластер" + +#: ../../include/functions_treeview.php:714 +msgid "Go to agent edition" +msgstr "Перейти к редактированию агента" + +#: ../../include/functions_treeview.php:726 +msgid "Agent data" +msgstr "Данные агента" + +#: ../../include/functions_treeview.php:757 +#: ../../operation/agentes/estado_generalagente.php:459 +msgid "Position (Long, Lat)" +msgstr "Позиция (Длина, Широта)" + +#: ../../include/functions_treeview.php:774 +#: ../../operation/agentes/estado_generalagente.php:501 +msgid "Timezone Offset" +msgstr "смещение часового пояса" + +#: ../../include/functions_treeview.php:806 +msgid "Advanced information" +msgstr "Дополнительная информация" + +#: ../../include/functions_treeview.php:819 +msgid "Agent access rate (24h)" +msgstr "Скорость доступа агента (24 часа)" + +#: ../../include/functions_treeview.php:908 +msgid "Interface information" +msgstr "Информация Интерфейса" + +#: ../../include/functions_menu.php:493 +msgid "Configure user" +msgstr "Сконфигурировать пользователя" + +#: ../../include/functions_menu.php:494 +msgid "Configure profile" +msgstr "Сконфигурировать профиль" + +#: ../../include/functions_menu.php:496 +msgid "Manage recontask" +msgstr "Управление рекон задачей" + +#: ../../include/functions_menu.php:498 +msgid "Module templates management" +msgstr "Управление шаблонами модуля" + +#: ../../include/functions_menu.php:499 +msgid "Inventory modules management" +msgstr "Управление модулями инвентаризации" + +#: ../../include/functions_menu.php:504 +msgid "View agent" +msgstr "Просмотр агента" + +#: ../../include/functions_menu.php:508 +msgid "Manage network map" +msgstr "Управление сетевыми картами" + +#: ../../include/functions_menu.php:510 +msgid "Builder visual console" +msgstr "Конфигуратор визуальной консоли" + +#: ../../include/functions_menu.php:512 +msgid "Administration events" +msgstr "События Администрирования" + +#: ../../include/functions_menu.php:514 +msgid "View reporting" +msgstr "Посмотреть отчетности" + +#: ../../include/functions_menu.php:515 +msgid "Graph viewer" +msgstr "Средство просмотра графиков" + +#: ../../include/functions_menu.php:517 +msgid "Manage custom graphs" +msgstr "Управление пользовательскими графиками" + +#: ../../include/functions_menu.php:518 +msgid "View graph containers" +msgstr "Просмотр графических контейнеров" + +#: ../../include/functions_menu.php:519 +msgid "Manage graph containers" +msgstr "Управление контейнерами графиков" + +#: ../../include/functions_menu.php:520 +msgid "View graph templates" +msgstr "Просмотр шаблонов графиков" + +#: ../../include/functions_menu.php:521 +msgid "Manage graph templates" +msgstr "Управление шаблонами графиков" + +#: ../../include/functions_menu.php:522 +msgid "Graph template items" +msgstr "Элементы шаблона графика" + +#: ../../include/functions_menu.php:523 +msgid "Graph template wizard" +msgstr "Мастер шаблонов графиков" + +#: ../../include/functions_menu.php:526 +msgid "Manage GIS Maps" +msgstr "Управление ГИС Картами" + +#: ../../include/functions_menu.php:529 +msgid "Incidents statistics" +msgstr "Статистика инцидентов" + +#: ../../include/functions_menu.php:530 +msgid "Manage messages" +msgstr "Управление сообщениями" + +#: ../../include/functions_menu.php:532 +msgid "Manage groups" +msgstr "Управление группами" + +#: ../../include/functions_menu.php:533 +msgid "Manage module groups" +msgstr "Управление модулем групп" + +#: ../../include/functions_menu.php:534 +msgid "Manage custom field" +msgstr "Управлять пользовательским полем" + +#: ../../include/functions_menu.php:536 +msgid "Manage alert actions" +msgstr "Управлять оповещением действий" + +#: ../../include/functions_menu.php:537 +msgid "Manage commands" +msgstr "Управление коммандами" + +#: ../../include/functions_menu.php:538 +msgid "Manage event alerts" +msgstr "Управлять событиями оповещения" + +#: ../../include/functions_menu.php:540 +msgid "Manage export targets" +msgstr "Управление экспортом заданий" + +#: ../../include/functions_menu.php:542 +msgid "Manage services" +msgstr "Управление сервисамиой" + +#: ../../include/functions_menu.php:544 ../../operation/menu.php:129 +msgid "SNMP filters" +msgstr "Фильтры SNMP" + +#: ../../include/functions_menu.php:546 ../../operation/menu.php:130 +msgid "SNMP trap generator" +msgstr "Генератор прерывания SNMP" + +#: ../../include/functions_menu.php:549 +msgid "Manage incident" +msgstr "Управление инцидентами" + +#: ../../include/functions_menu.php:602 +msgid "Administration" +msgstr "Администрирование" + +#: ../../include/functions_incidents.php:29 +#: ../../include/functions_incidents.php:55 +msgid "Informative" +msgstr "Информативный" + +#: ../../include/functions_incidents.php:30 +#: ../../include/functions_incidents.php:59 +#: ../../include/functions_netflow.php:1588 +msgid "Low" +msgstr "Низкий" + +#: ../../include/functions_incidents.php:31 +#: ../../include/functions_incidents.php:63 +#: ../../include/functions_netflow.php:1589 +msgid "Medium" +msgstr "Средний" + +#: ../../include/functions_incidents.php:32 +#: ../../include/functions_incidents.php:67 +msgid "Serious" +msgstr "Серьезный" + +#: ../../include/functions_incidents.php:33 +#: ../../include/functions_incidents.php:71 +msgid "Very serious" +msgstr "Очень серьезный" + +#: ../../include/functions_incidents.php:95 +#: ../../include/functions_incidents.php:116 +msgid "Active incidents" +msgstr "Активные инциденты" + +#: ../../include/functions_incidents.php:96 +#: ../../include/functions_incidents.php:120 +msgid "Active incidents, with comments" +msgstr "Активные инциденты, с комментриями" + +#: ../../include/functions_incidents.php:97 +#: ../../include/functions_incidents.php:124 +msgid "Rejected incidents" +msgstr "Отклоненные инциденты" + +#: ../../include/functions_incidents.php:98 +#: ../../include/functions_incidents.php:128 +msgid "Expired incidents" +msgstr "Истекшие инциденты" + +#: ../../include/functions_incidents.php:99 +#: ../../include/functions_incidents.php:132 +msgid "Closed incidents" +msgstr "Закрытые инциденты" + +#: ../../include/help/clippy/topology_group.php:35 +msgid "Topology Group" +msgstr "Топология групп" + +#: ../../include/help/clippy/topology_group.php:35 +msgid "" +"Please note that group topology maps do not show the parent relationship " +"between nodes, it only shows the group parentship and the agent distribution " +"inside them. " +msgstr "" +"Обратите внимание, что карты топологии групп не показывают родительские " +"отношения между узлами, они показывают только родительские отношения групп и " +"распределение агентов внутри них. " + +#: ../../include/help/clippy/homepage.php:75 +msgid "Hi, can I help you?" +msgstr "Здравствуйте, могу ли я Вам чем-то помочь?" + +#: ../../include/help/clippy/homepage.php:75 +#, php-format +msgid "" +"Let me introduce my self: I am Pandorin, the annoying assistant of %s. You " +"can follow my steps to do basic tasks in %s or you can close me and never " +"see me again." +msgstr "" +"Позвольте представиться: Я - Пандорин, надоедливый помощник %s. Вы можете " +"следовать моим указаниям для выполнения основных задач в %s или закрыть меня " +"и больше никогда не видеть." + +#: ../../include/help/clippy/homepage.php:75 +msgid "Close this wizard and don't open it again." +msgstr "Закрыть помощника и больше не открывать его." + +#: ../../include/help/clippy/homepage.php:79 +msgid "Which task would you like to do first?" +msgstr "Какое задание Вы хотели бы выполнить первым?" + +#: ../../include/help/clippy/homepage.php:79 +#, php-format +msgid "Ping a Linux or Windows server using a %s agent." +msgstr "Ping сервера Linux или Windows с помощью агента %s." + +#: ../../include/help/clippy/homepage.php:79 +msgid "Create a alert by email in a critical module." +msgstr "Создайте предупреждение по электронной почте при критическом модуле." + +#: ../../include/help/clippy/homepage.php:190 +#, php-format +msgid "" +"The first thing you have to do is to setup the e-mail config on the %s " +"Server." +msgstr "" +"Первое, что Вам нужно сделать, это настроить конфигурацию электронной почты " +"на сервере %s." + +#: ../../include/help/clippy/homepage.php:190 +msgid "If you have it already configured you can go to the next step." +msgstr "Если она уже настроена, вы можете перейти к следующему шагу." + +#: ../../include/help/clippy/homepage.php:195 +msgid "Now, pull down the Manage alerts menu and click on Actions. " +msgstr "" +"Теперь перейдите в меню Управление предупреждениями и нажмите на Действия. " + +#: ../../include/help/clippy/module_unknow.php:35 +msgid "You have unknown modules in this agent." +msgstr "У вас есть неизвестные модули в этом агенте." + +#: ../../include/help/clippy/module_unknow.php:35 +msgid "" +"Unknown modules are modules which receive data normally at least in one " +"occassion, but at this time are not receving data. Please check our " +"troubleshoot help page to help you determine why you have unknown modules." +msgstr "" +"Неизвестные модули - это модули, которые обычно получают данные хотя бы в " +"одном случае, но в данный момент не получают данные. Обратитесь к странице " +"помощи по устранению неполадок, чтобы определить причину появления " +"неизвестных модулей." + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"Please note that you have your agent setup to do not add new modules coming " +"from the data XML." +msgstr "" +"Обратите внимание, что ваш агент настроен так, чтобы не добавлять новые " +"модули, поступающие из XML данных." + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"That means if you have a local plugin or add manually new modules to the " +"configuration file, you won't have it in your agent, unless you first create " +"manually in the interface (with the exact name and type as coming in the XML " +"file)." +msgstr "" +"Это означает, что если у вас есть локальный плагин или вы вручную добавляете " +"новые модули в файл конфигурации, у вас не будет его в вашем агенте, если вы " +"сначала не создадите его вручную в интерфейсе (с точным именем и типом, как " +"указано в XML-файле)." + +#: ../../include/help/clippy/modules_not_learning_mode.php:46 +msgid "" +"You should use the \"normal\" mode (non learn) only when you don't intend to " +"add more modules to the agent." +msgstr "" +"Вы должны использовать \"нормальный\" режим (без обучения) только в том " +"случае, если вы не собираетесь добавлять дополнительные модули к агенту." + +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 +msgid "" +"The last step is to check the alert created. Click on the round icon to " +"force the action execution and after a few minutes you will receive the " +"alert in your email." +msgstr "" +"Последний шаг - проверка созданного предупреждения. Нажмите на круглый " +"значок для принудительного выполнения действия, и через несколько минут вы " +"получите предупреждение по электронной почте." + +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 +msgid "" +"And restart your pandora server to read again general configuration tokens." +msgstr "" +"И перезапустите свой сервер Pandora FMS, чтобы снова считать токены общей " +"конфигурации." + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35 +msgid "" +"Let me show you how to create an email action: Click on Create button and " +"fill the form showed in the following screen." +msgstr "" +"Сейчас я покажу вам, как создать действие электронной почты: Нажмите кнопку " +"Создать и заполните форму, показанную на следующем экране." + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49 +msgid "" +"Now, you have to go to the monitors list and look for a critical module to " +"apply the alert." +msgstr "" +"Теперь нужно перейти к списку приборов контроля и найти критический модуль " +"для применения предупреждения." + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54 +msgid "" +"Click on the arrow to drop down the Monitoring submenu and select Monitor " +"Detail." +msgstr "" +"Нажмите на стрелку, чтобы опустилось подменю Мониторинг, и выберите пункт " +"Детали Монитора." + +#: ../../include/help/clippy/agent_out_of_limits.php:35 +msgid "Agent contact date passed it's ETA!." +msgstr "Истек предполагаемый срок даты обращения агента!" + +#: ../../include/help/clippy/agent_out_of_limits.php:35 +msgid "" +"This happen when your agent stopped reporting or the server have any problem " +"(too load or just down). Check also connectivity between the agent and the " +"server." +msgstr "" +"Это происходит, когда ваш агент перестал создавать отчеты или на сервере " +"возникли проблемы (слишком большая нагрузка или он просто не работает). " +"Проверьте также соединение между агентом и сервером." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34 +msgid "I'm going to show you how to monitor a server." +msgstr "Я хочу показать Вам, как проводить мониторинг сервера." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38 +msgid "Please, type an agent to save the modules for monitoring a server." +msgstr "" +"Пожалуйста, введите агент, чтобы сохранить модули для мониторинга сервера." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43 +msgid "If you have typed the name correctly you will see the agent." +msgstr "Если Вы правильно ввели имя, вы увидите агента." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57 +msgid "Now, please choose the agent you searched." +msgstr "Теперь выберите агента, которого Вы искали." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62 +msgid "Choose the agent and click on the name." +msgstr "Выберите агента и нажмите на его имя." + +#: ../../include/help/clippy/modules_not_init.php:35 +msgid "You have non initialized modules" +msgstr "У Вас есть не инициализированные модули" + +#: ../../include/help/clippy/modules_not_init.php:35 +msgid "" +"This happen when you have just created a module and it's not executed at " +"first time. Usually in a few seconds should be initialized and you will be " +"able to see in main view. If you keep non-init modules for more than 24hr " +"(due a problem in it's execution or configuration) they will be " +"automatically deleted by the system. Non-init are not visible in the âmain " +"viewâ, you can see/edit them in the module administration section, in the " +"agent administrator." +msgstr "" +"Это происходит, когда вы только что создали модуль и он не выполняется с " +"первого раза. Обычно через несколько секунд модуль инициализируется, и вы " +"сможете увидеть его в главном окне. Если вы держите неинициированные модули " +"более 24 часов (из-за проблем в их выполнении или конфигурации), они будут " +"автоматически удалены системой. Неинициированные модули не видны в главном " +"окне, их можно увидеть/отредактировать в разделе администрирования модулей, " +"в администраторе агента." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34 +msgid "Fill the name of your action." +msgstr "Введите название вашего действия." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38 +msgid "" +"Select the group in the drop-down list and filter for ACL (the user in this " +"group can use your action to create an alert)." +msgstr "" +"Выберите группу в выпадающем списке и отфильтруйте для ACL (пользователь из " +"этой группы может использовать ваше действие для создания предупреждения)." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:42 +msgid "In the command field select \"email\"." +msgstr "В командном поле выберите \"email\"." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46 +msgid "" +"In the threshold field enter the seconds. The help icon show more " +"information." +msgstr "" +"В поле порог введите секунды. Значок справки показывает дополнительную " +"информацию." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51 +msgid "" +"In the first field enter the email address/addresses where you want to " +"receive the email alerts separated with comas ( , ) or white spaces." +msgstr "" +"В первом поле введите адрес/адреса электронной почты, на которые вы хотите " +"получать уведомления, разделив их запятыми ( , ) или пробелами." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56 +msgid "" +"In the \"Subject\" field you can use the macros _agent_ or _module_ for " +"each name." +msgstr "" +"В поле \"Тема\" вы можете использовать макросы _agent_ или _module_ для темы " +"письма." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61 +msgid "" +"In the text field, you can also use macros. Get more information about the " +"macros by clicking on the help icon." +msgstr "" +"В текстовом поле можно также использовать макросы. Получите дополнительную " +"информацию о макросах, нажав на значок справки." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66 +msgid "Click on Create button to create the action." +msgstr "Нажмите кнопку Создать, чтобы создать действие." + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "Data Configuration Module." +msgstr "Модуль конфигурации данных." + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "" +"Please note that information provided here affects how the agent collect " +"information and generate the data XML. Any data/configuration reported by " +"the agent, different from data or description is discarded, and the " +"configuration shown in the console prevails over any configuration coming " +"from the agent, this applies for example for crit/warn thresholds, interval, " +"module group, min/max value, tags, etc." +msgstr "" +"Обратите внимание, что информация, предоставленная здесь, влияет на то, как " +"агент собирает информацию и генерирует данные XML. Любые " +"данные/конфигурация, сообщаемые агентом, отличающиеся от данных или " +"описания, отбрасываются, и конфигурация, отображаемая в консоли, превалирует " +"над любой конфигурацией, поступающей от агента, это относится, например, к " +"критическим порогам/порогам предупреждения, интервалу, группе модулей, " +"минимальному/максимальному значению, тегам и т.д." + +#: ../../include/help/clippy/data_configuration_module.php:35 +msgid "" +"Information imported FIRST time from the XML will fill the information you " +"can see in the console, but after the first import, system will ignore any " +"update coming from the XML/Agent." +msgstr "" +"Информация, импортированная ПЕРВЫЙ раз из XML, заполнит информацию, которую " +"вы можете увидеть в консоли, но после первого импортирования система будет " +"игнорировать любые обновления, поступающие из XML/агента." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34 +msgid "Now you must go to Modules. Don't worry I'll lead you." +msgstr "Теперь Вам нужно перейти в Модули. Не волнуйтесь, я Вас проведу." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39 +msgid "Click in this tab.." +msgstr "Нажмите на эту вкладку..." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:53 +msgid "Now you must create the module. Don't worry, i'll teach you." +msgstr "Теперь Вы должны создать модуль. Не волнуйтесь, я Вас научу." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57 +msgid "Choose the network server module." +msgstr "Выберите модуль сетевого сервера." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61 +msgid "And click the button." +msgstr "И нажмите на кнопку." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75 +msgid "Now you must create the module. Don't worry, i'll teach you ." +msgstr "Теперь Вы должны создать модуль. Не волнуйтесь, я Вас научу." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79 +msgid "Now we are going to fill the form." +msgstr "Теперь мы переходим к заполнению формы." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83 +msgid "Please choose Network Management." +msgstr "Пожалуйста, выберите Управление сетями." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87 +msgid "Choose the component named \"Host alive\"." +msgstr "Выберите компонент под названием \"Host alive\"." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91 +msgid "You can change the name if you want." +msgstr "При желании Вы можете изменить имя." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95 +msgid "Check if the IP showed is the IP of your machine." +msgstr "" +"Проверьте, является ли указанный IP-адрес IP-адресом вашего устройства." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99 +msgid "And only to finish it is clicking this button." +msgstr "А для завершения нажмите на эту кнопку." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114 +msgid "" +"Congrats! Your module has been created. <br /> and the status color is " +"<b>blue.</b><br /> That color means that the module hasn't been executed for " +"the first time. In the next seconds, if there is no problem, the status " +"color will turn into <b>red</b> or <b>green</b>." +msgstr "" +"Поздравляю! Вы создали свой <br /> модуль, а цвет статуса <b>синий</b>.<br " +"/> Этот цвет означает, что модуль не был выполнен. В течение следующих " +"нескольких секунд, если проблем нет, цвет состояния изменится на " +"<b>красный</b> или <b>зеленый</b>." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 +msgid "Click on alerts tab and then fill the form to add an alert." +msgstr "" +"Перейдите на вкладку предупреждения, а затем заполните форму для добавления " +"предупреждения." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 +msgid "Select the critical module." +msgstr "Выберите критический модуль." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 +msgid "In template select \"Critical Condition\"." +msgstr "В шаблоне выберите \"Критическое состояние\"." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 +msgid "Now, select the action created before." +msgstr "Теперь выберите действие, созданное ранее." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 +msgid "Click on Add Alert button to create the alert." +msgstr "" +"Нажмите кнопку Добавить Предупреждение, чтобы создать предупреждение." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 +msgid "" +"To test the alert you've just created go to the main view by clicking on the " +"eye tab." +msgstr "" +"Чтобы проверить только что созданное предупреждение, перейдите к основному " +"виду, нажав на вкладку \"Глаз\"." + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "Excesive Queued." +msgstr "Слишком много модулей в очереди." + +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "" +"You have too much items in the processing queue. This can happen if your " +"server is too loaded and/or not properly configured. This could be something " +"temporal, or a bottleneck. One possible solution is increase number of " +"server threads, but you should consider getting support about this." +msgstr "" +"У вас слишком много элементов в очереди. Это может произойти, если сервер " +"перегружен и/или неправильно настроен. Это может быть временным явлением или " +"являться \"узким местом\". Возможным решением является увеличение количества " +"потоков на сервере, но вам следует подумать о консультации с технической " +"поддержкой." + +#: ../../include/help/clippy/servers_down.php:35 +msgid "All servers down" +msgstr "Все серверы отключены" + +#: ../../include/help/clippy/servers_down.php:35 +msgid "" +"Can you up all servers. You go to terminal in linux and execute the next " +"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " +"introduce root pass." +msgstr "" +"Вы можете поднять все серверы. Зайдите в терминал в linux и выполните " +"следующую команду: \"sudo /etc/init.d/pandora_server restart\". Возможно, " +"потребуется ввести пароль root." + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "Interval Agent." +msgstr "Интервалы агента." + +#: ../../include/help/clippy/interval_agent_min.php:35 +msgid "" +"Please note that having agents with a monitoring interval below 300 seconds " +"is not recommended. This will impact seriously in the performance of the " +"server. For example, having 200 agents with one minute interval, is the same " +"than having 1000 agents with a 5 minute interval. The probability of getting " +"unknown modules is higher, and the impact on the server is higher because it " +"requires a shorter response time." +msgstr "" +"Обратите внимание, что не рекомендуется использовать агентов с интервалом " +"мониторинга менее 300 секунд. Это серьезно повлияет на производительность " +"сервера. Например, иметь 200 агентов с интервалом в одну минуту - это то же " +"самое, что иметь 1000 агентов с интервалом в 5 минут. Вероятность получения " +"неизвестных модулей выше, а воздействие на сервер тоже выше, поскольку " +"требуется меньшее время отклика." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 +msgid "" +"Now, you have to go to the monitors list and look for a \"critical\" module " +"to apply the alert." +msgstr "" +"Теперь нужно перейти к списку приборов контроля и найти \"критический\" " +"модуль, чтобы применить предупреждение." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:38 +msgid "" +"If you know the name of the agent or the name of the module in critical " +"status, type it in this field to make the module list shorter. You can write " +"the entire name or just a part of it." +msgstr "" +"Если вы знаете имя агента или имя модуля в критическом состоянии, введите " +"его в это поле, чтобы сделать список модулей короче. Вы можете написать имя " +"полностью или только его часть." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:43 +msgid "Click on Show button to get the modules list filtered." +msgstr "" +"Нажмите на кнопку Показать, чтобы получить отфильтрованный список модулей." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 +msgid "" +"Now, to edit the module, click on the wrench that appears in the type column." +msgstr "" +"Теперь, чтобы отредактировать модуль, нажмите на гаечный ключ, который " +"появится в колонке типа." + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "" +"The configuration of email for the task email is in the enterprise setup:" +msgstr "" +"Конфигурация электронной почты (для задач в электронной почте) находится в " +"настройках enterprise:" + +#: ../../include/help/clippy/extension_cron_send_email.php:35 +msgid "Please check if the email configuration is correct." +msgstr "Пожалуйста, проверьте правильность конфигурации электронной почты." + +#: ../../include/functions_profile.php:188 +#: ../../operation/users/user_edit.php:752 +#: ../../operation/users/user_edit.php:761 +msgid "Profiles/Groups assigned to this user" +msgstr "Профили / Группы закрепленные за данным пользователем" + +#: ../../include/functions_network.php:34 +msgid "Top listeners" +msgstr "Top listeners" + +#: ../../include/functions_network.php:35 +msgid "Top talkers" +msgstr "Top talkers" + +#: ../../include/functions_network.php:45 +msgid "Top TCP protocols" +msgstr "Top протоколов TCP" + +#: ../../include/functions_network.php:46 +msgid "Top UDP protocols" +msgstr "Top протоколов UDP" + +#: ../../include/functions_ui.php:280 +msgid "Information" +msgstr "Информация" + +#: ../../include/functions_ui.php:454 +msgid "Request successfully processed" +msgstr "Запрос успешно обработан" + +#: ../../include/functions_ui.php:458 +msgid "Error processing request" +msgstr "Ошибка при обработке рапроса" + +#: ../../include/functions_ui.php:614 +msgid "" +"Is possible that this view uses part of information which your user has not " +"access" +msgstr "" +"Возможно, что просматревается только часть информации, к которой у вашего " +"пользователя нет доступа" + +#: ../../include/functions_ui.php:863 +msgid "Software" +msgstr "Software" + +#: ../../include/functions_ui.php:1337 +msgid "The alert would fire when the value is over <span id=\"max\"></span>" +msgstr "" +"Оповещение будет запущено когда значение превышает <span id=\"max\"></span>" + +#: ../../include/functions_ui.php:1342 +msgid "The alert would fire when the value is under <span id=\"min\"></span>" +msgstr "" +"Оповещение будет запущено когда значение ниже <span id=\"min\"></span>" + +#: ../../include/functions_ui.php:1357 +msgid "Unknown option." +msgstr "Неизвестная опция." + +#: ../../include/functions_ui.php:1705 ../../include/functions_config.php:2311 +msgid "the Flexible Monitoring System" +msgstr "Гибкая система мониторинга" + +#: ../../include/functions_ui.php:2083 ../../include/functions_ui.php:2109 +#, php-format +msgid "Total items: %s" +msgstr "Всего элементов: %s" + +#: ../../include/functions_ui.php:2510 +msgid "Unknown type" +msgstr "Неизвестный тип" + +#: ../../include/functions_ui.php:3461 ../../include/functions_ui.php:3462 +msgid "Export current page to CSV" +msgstr "Экспорт текущей страницы в CSV" + +#: ../../include/functions_ui.php:3624 ../../include/functions_events.php:65 +#: ../../include/functions_events.php:91 ../../operation/events/events.php:1922 +#: ../../operation/events/events.php:1987 +msgid "ALERT" +msgstr "ПРЕДУПРЕЖДЕНИЕ" + +#: ../../include/functions_ui.php:3702 ../../include/functions_events.php:157 +#: ../../operation/events/events.php:1856 +msgid "MAINTENANCE" +msgstr "ОБСЛУЖИВАНИЕ" + +#: ../../include/functions_ui.php:3707 ../../include/functions_events.php:160 +#: ../../operation/events/events.php:1861 +msgid "INFORMATIONAL" +msgstr "ИНФОРМАЦИОННЫЕ СВЕДЕНИЯ" + +#: ../../include/functions_ui.php:3727 ../../include/functions_events.php:166 +#: ../../operation/events/events.php:1871 +msgid "MINOR" +msgstr "MINOR" + +#: ../../include/functions_ui.php:3732 ../../include/functions_events.php:163 +#: ../../operation/events/events.php:1866 +msgid "MAJOR" +msgstr "MAJOR" + +#: ../../include/functions_ui.php:4373 ../../include/functions_html.php:885 +#: ../../include/functions_html.php:3019 ../../include/functions_html.php:3511 +#: ../../include/functions_reporting.php:10348 +#: ../../include/functions_reporting.php:10505 +#: ../../include/functions_reporting.php:10519 +#: ../../include/functions_reporting.php:12833 +#: ../../include/functions_reporting.php:12908 +msgid "Enterprise version not installed" +msgstr "Версия Enterprise не установлена" + +#: ../../include/functions_ui.php:4730 +msgid "Type at least two characters to search." +msgstr "Наберите не менее двух символов для поиска" + +#: ../../include/functions_ui.php:5656 +msgid "Unhandled error" +msgstr "Небработанная ошибка" + +#: ../../include/functions_ui.php:5657 +msgid "An unhandled error occurs" +msgstr "Возникает необработанная ошибка" + +#: ../../include/functions_ui.php:5928 +#, php-format +msgid "" +"These controls are using the timezone of the system (%s) instead of yours " +"(%s). The difference with your time zone in hours is %s." +msgstr "" +"Эти элементы управления используют часовой пояс системы (%s) вместо вашего " +"(%s). Разница с вашим часовым поясом в часах составляет %s." + +#: ../../include/functions_ui.php:6232 +msgid "Query" +msgstr "Запрос" + +#: ../../include/functions_ui.php:6249 +msgid "Execute query" +msgstr "Выполнить запрос" + +#: ../../include/functions_ui.php:6271 +msgid "Results" +msgstr "Результаты" + +#: ../../include/functions_ui.php:6335 +msgid "Show password" +msgstr "Показать пароль" + +#: ../../include/functions_visual_map.php:1746 +#: ../../include/functions_visual_map.php:1748 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:275 +msgid "Last value: " +msgstr "Последнее значение: " + +#: ../../include/functions_visual_map.php:2632 +msgid "Agent successfully added to layout" +msgstr "Агент успешно добавлен в макет" + +#: ../../include/functions_visual_map.php:2816 +msgid "Modules successfully added to layout" +msgstr "Модули успешно добавлены в макет" + +#: ../../include/functions_visual_map.php:3147 +msgid "Agents successfully added to layout" +msgstr "Агенты успешно добавлены в макет" + +#: ../../include/functions_visual_map.php:3543 +msgid "Cannot load the visualmap" +msgstr "Не удается загрузить визуальную карту" + +#: ../../include/functions_visual_map.php:4195 +#: ../../include/rest-api/models/VisualConsole/Item.php:2055 +msgid "Bars graph" +msgstr "Гистограмма" + +#: ../../include/functions_visual_map.php:4205 +#: ../../include/rest-api/models/VisualConsole/Item.php:2063 +msgid "Percentile bar" +msgstr "Меню процентиля" + +#: ../../include/functions_visual_map.php:4210 +#: ../../include/rest-api/models/VisualConsole/Item.php:2071 +msgid "Circular progress bar" +msgstr "Круговая шкала прогресса" + +#: ../../include/functions_clippy.php:152 +#, php-format +msgid "%s assistant" +msgstr "%s помощник" + +#: ../../include/functions_clippy.php:189 +#: ../../include/functions_clippy.php:194 +msgid "End wizard" +msgstr "Закрыть помощник" + +#: ../../include/functions_clippy.php:227 +msgid "Next →" +msgstr "Следующий →" + +#: ../../include/functions_clippy.php:228 +msgid "← Back" +msgstr "← Назад" + +#: ../../include/functions_clippy.php:240 +msgid "Do you want to exit the help tour?" +msgstr "Вы хотите выйти из гида помощи?" + +#: ../../include/functions_alerts.php:671 +msgid "Max and min" +msgstr "Макс и мин" + +#: ../../include/functions_alerts.php:674 +msgid "Equal to" +msgstr "РавняетсяНеизвестный статус" + +#: ../../include/functions_alerts.php:675 +msgid "Not equal to" +msgstr "Не равно" + +#: ../../include/functions_alerts.php:679 +msgid "On Change" +msgstr "При изменении" + +#: ../../include/functions_alerts.php:681 +msgid "Not normal status" +msgstr "Не нормальное состояние" + +#: ../../include/functions_alerts.php:1710 +msgid "No actions defined" +msgstr "Действия не определены" + +#: ../../include/functions_alerts.php:2789 +msgid "Alert and command group does not match" +msgstr "Предупреждение и группа команд не совпадают" + +#: ../../include/functions_snmp.php:65 +msgid "Load Average (Last minute)" +msgstr "Средняя загрузка (последний час)" + +#: ../../include/functions_snmp.php:69 +msgid "Load Average (Last 5 minutes)" +msgstr "Средняя загрузка (последние 5 минут)" + +#: ../../include/functions_snmp.php:73 +msgid "Load Average (Last 15 minutes)" +msgstr "Средняя загрузка (последние 15 минут)" + +#: ../../include/functions_snmp.php:77 +msgid "Total Swap Size configured for the host" +msgstr "Общий Размер Обмена, настроенный для хоста" + +#: ../../include/functions_snmp.php:81 +msgid "Available Swap Space on the host" +msgstr "Доступное пространство Обмена на хосте" + +#: ../../include/functions_snmp.php:85 +msgid "Total Real/Physical Memory Size on the host" +msgstr "Общий размер Реальной/Физической Памяти на хосте" + +#: ../../include/functions_snmp.php:89 +msgid "Available Real/Physical Memory Space on the host" +msgstr "Доступное пространство Реальной/Физической Памяти на хосте" + +#: ../../include/functions_snmp.php:93 +msgid "Total Available Memory on the host" +msgstr "Общая Доступная Память на хосте" + +#: ../../include/functions_snmp.php:97 +msgid "Total Cached Memory" +msgstr "Общая кэшированная память" + +#: ../../include/functions_snmp.php:101 +msgid "Total Buffered Memory" +msgstr "Общая буферизованная память" + +#: ../../include/functions_snmp.php:105 +msgid "Amount of memory swapped in from disk (kB/s)" +msgstr "Объем памяти, поменянной с диска (кБ/с)" + +#: ../../include/functions_snmp.php:109 +msgid "Amount of memory swapped to disk (kB/s)" +msgstr "Объем памяти, поменянной на диск (кБ/с)" + +#: ../../include/functions_snmp.php:113 +msgid "Number of blocks sent to a block device" +msgstr "Количество блоков, отправленных на блочное устройство" + +#: ../../include/functions_snmp.php:117 +msgid "Number of blocks received from a block device" +msgstr "Количество блоков, полученных от блочного устройства" + +#: ../../include/functions_snmp.php:121 +msgid "Number of interrupts processed" +msgstr "Количество обработанных прерываний" + +#: ../../include/functions_snmp.php:125 +msgid "Number of context switches" +msgstr "Количество контекстных переключений" + +#: ../../include/functions_snmp.php:129 +msgid "user CPU time" +msgstr "время пользователя CPU" + +#: ../../include/functions_snmp.php:133 +msgid "system CPU time" +msgstr "время системы CPU" + +#: ../../include/functions_snmp.php:137 +msgid "idle CPU time" +msgstr "время простоя CPU" + +#: ../../include/functions_snmp.php:141 +msgid "system Up time" +msgstr "Время активности системы" + +#: ../../include/functions_snmp.php:349 +msgid "Pagination" +msgstr "Нумерация страниц" + +#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389 +msgid "Group by Enterprise String / IP" +msgstr "Группировка по строке Enterprise / IP" + +#: ../../include/functions_db.php:115 +#, php-format +msgid "Error connecting to database %s at %s." +msgstr "Ошибка подключения к базе данных %s at %s." + +#: ../../include/functions_db.php:1814 +msgid "Database debug" +msgstr "Отладка базы данных" + +#: ../../include/functions_db.php:1830 +msgid "SQL sentence" +msgstr "SQL предложениe" + +#: ../../include/functions_db.php:1832 +msgid "Rows" +msgstr "Строки" + +#: ../../include/functions_db.php:1833 +msgid "Saved" +msgstr "Сохранено" + +#: ../../include/functions_db.php:1834 +msgid "Time (ms)" +msgstr "Время (мин)" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:437 +msgid "Add new range" +msgstr "Добавить новый диапазон" + +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:494 +msgid "Current ranges" +msgstr "Текущие диапазоны" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 +#: ../../include/rest-api/models/VisualConsole/Item.php:1942 +msgid "width" +msgstr "ширина" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 +#: ../../include/rest-api/models/VisualConsole/Item.php:1952 +msgid "height" +msgstr "высота" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 +#: ../../include/rest-api/models/VisualConsole/Item.php:1974 +msgid "X" +msgstr "X" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/Line.php:493 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:944 +#: ../../include/rest-api/models/VisualConsole/Item.php:2011 +msgid "Show on top" +msgstr "Показать сверху" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:311 +msgid "Border Width" +msgstr "Ширина границы" + +#: ../../include/rest-api/models/VisualConsole/Items/Box.php:335 +msgid "Fill transparent" +msgstr "Прозрачное заполнение" + +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:395 +msgid "Show Last Value" +msgstr "Показать последнее значение" + +#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 +msgid "Avg Value" +msgstr "Среднее значение" + +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:468 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:650 +msgid "Graph Type" +msgstr "Тип графика" + +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252 +msgid "12h" +msgstr "12ч" + +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:664 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:339 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:295 +msgid "Show legend" +msgstr "Показать легенду" + +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:532 +#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:613 +#: ../../include/rest-api/models/VisualConsole/View.php:673 +#: ../../include/rest-api/models/VisualConsole/View.php:752 +msgid "Failed to connect to node" +msgstr "Не удалось подключиться к узлу" + +#: ../../include/rest-api/models/VisualConsole/View.php:66 +msgid "Label settings" +msgstr "Настройки этикетки" + +#: ../../include/rest-api/models/VisualConsole/View.php:72 +#: ../../include/rest-api/models/VisualConsole/View.php:104 +msgid "General settings" +msgstr "Общие настройки" + +#: ../../include/rest-api/models/VisualConsole/View.php:78 +#: ../../include/rest-api/models/VisualConsole/View.php:94 +#: ../../include/rest-api/models/VisualConsole/View.php:110 +msgid "Specific settings" +msgstr "Специфические настройки" + +#: ../../include/rest-api/models/VisualConsole/View.php:213 +msgid "Item type not valid [" +msgstr "Тип элемента не действителен [" + +#: ../../include/rest-api/models/VisualConsole/View.php:218 +msgid "Item type has no getFormInputs method [" +msgstr "У типа элемента нет метода getFormInputs [" + +#: ../../include/rest-api/models/VisualConsole/View.php:690 +msgid "NetworkLink from" +msgstr "NetworkLink от" + +#: ../../include/rest-api/models/VisualConsole/View.php:694 +#: ../../include/rest-api/models/VisualConsole/View.php:773 +#, php-format +msgid "Interface %s status" +msgstr "Статус интерфейса %s" + +#: ../../include/rest-api/models/VisualConsole/View.php:699 +#: ../../include/rest-api/models/VisualConsole/View.php:778 +#: ../../operation/agentes/interface_traffic_graph_win.php:75 +msgid "In" +msgstr "In" + +#: ../../include/rest-api/models/VisualConsole/View.php:700 +#: ../../include/rest-api/models/VisualConsole/View.php:779 +#: ../../operation/agentes/interface_traffic_graph_win.php:76 +msgid "Out" +msgstr "Out" + +#: ../../include/rest-api/models/VisualConsole/View.php:769 +msgid "NetworkLink to" +msgstr "NetworkLink к" + +#: ../../include/rest-api/models/VisualConsole/View.php:821 +#, php-format +msgid "Failed to generate charts: %s" +msgstr "Не удалось сгенерировать графики: %s" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1912 +msgid "Label position" +msgstr "Положение этикетки" + +#: ../../include/rest-api/models/VisualConsole/Item.php:1999 +msgid "Link enabled" +msgstr "Ссылка включена" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2041 +msgid "Static graph" +msgstr "Статический график" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2059 +msgid "Event History Graph" +msgstr "График истории событий" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2067 +msgid "Percentile bubble" +msgstr "Процентный пузырь" + +#: ../../include/rest-api/models/VisualConsole/Item.php:2524 +#: ../../include/rest-api/models/VisualConsole/Item.php:2525 +msgid "Image Vc" +msgstr "Изображение Vc" + +#: ../../include/functions_notifications.php:811 +msgid "Subtype customization" +msgstr "Настройка подтипов" + +#: ../../include/functions_notifications.php:841 +msgid "Notified users" +msgstr "Уведомленные пользователи" + +#: ../../include/functions_notifications.php:841 +msgid "Notified groups" +msgstr "Уведомленные группы" + +#: ../../include/functions_notifications.php:842 +msgid "Add users" +msgstr "Добавить пользователей" + +#: ../../include/functions_notifications.php:842 +msgid "Add groups" +msgstr "Добавить группы" + +#: ../../include/functions_notifications.php:843 +msgid "Delete users" +msgstr "Удалить пользователей" + +#: ../../include/functions_notifications.php:843 +msgid "Delete groups" +msgstr "Удалить группы" + +#: ../../include/functions_notifications.php:939 +msgid "Add elements" +msgstr "Добавить элементы" + +#: ../../include/functions_notifications.php:952 +msgid "Remove elements" +msgstr "Удалить элементы" + +#: ../../include/functions_notifications.php:1070 +msgid "Click here to get more information" +msgstr "Нажмите здесь, чтобы получить дополнительную информацию" + +#: ../../include/functions_reports.php:635 +#: ../../include/functions_reports.php:639 +#: ../../include/functions_reports.php:644 +#: ../../include/functions_reports.php:650 +#: ../../include/functions_reports.php:656 +#: ../../include/functions_reports.php:660 +#: ../../include/functions_reports.php:664 +#: ../../include/functions_reports.php:671 +#: ../../include/functions_reports.php:677 +#: ../../include/functions_reports.php:682 +#: ../../include/functions_groups.php:123 +#: ../../include/functions_groups.php:187 +#: ../../operation/search_results.php:118 +#: ../../operation/agentes/ver_agente.php:1457 +msgid "Graphs" +msgstr "Графики" + +#: ../../include/functions_reports.php:636 +#: ../../include/functions_reporting.php:8942 +#: ../../include/functions_reporting.php:9102 +msgid "Simple graph" +msgstr "Простой график" + +#: ../../include/functions_reports.php:665 +msgid "SQL horizonal bar graph" +msgstr "SQL горизонтальная панель графика" + +#: ../../include/functions_reports.php:672 +msgid "Automatic combined Graph" +msgstr "Автоматически комбинированный график" + +#: ../../include/functions_reports.php:678 +msgid "Availability graph" +msgstr "График доступности" + +#: ../../include/functions_reports.php:683 +msgid "Module Histogram graph" +msgstr "Модульная Гистограмма" + +#: ../../include/functions_reports.php:713 +#: ../../include/functions_reports.php:717 +msgid "Forecasting" +msgstr "Прогнозирование" + +#: ../../include/functions_reports.php:718 +msgid "Projection graph" +msgstr "Проектирование графика" + +#: ../../include/functions_reports.php:723 +msgid "Avg. Value" +msgstr "Среднее значение" + +#: ../../include/functions_reports.php:735 +msgid "Monitor report" +msgstr "Отчет по мониторам" + +#: ../../include/functions_reports.php:739 +msgid "Serialize data" +msgstr "Упорядоченные данные" + +#: ../../include/functions_reports.php:747 +msgid "Historical Data" +msgstr "Исторические данные" + +#: ../../include/functions_reports.php:759 +msgid "Histogram" +msgstr "Гистограмма" + +#: ../../include/functions_reports.php:763 +#: ../../include/functions_reports.php:769 +#: ../../include/functions_reports.php:775 +#: ../../include/functions_reports.php:781 +#: ../../include/functions_reports.php:787 +#: ../../include/functions_reports.php:796 +#: ../../include/functions_reports.php:802 +#: ../../include/functions_reports.php:806 +#: ../../include/functions_reports.php:810 +msgid "Grouped" +msgstr "Сгруппировано" + +#: ../../include/functions_reports.php:807 +msgid "Network interfaces" +msgstr "Сетевые интерфейсы" + +#: ../../include/functions_reports.php:815 +#: ../../include/functions_reports.php:819 +msgid "Text/HTML " +msgstr "Text/HTML " + +#: ../../include/functions_reports.php:820 +msgid "Import text from URL" +msgstr "Импорт текста из URL" + +#: ../../include/functions_reports.php:825 +msgid "Module alert report" +msgstr "Отчет о предупреждениях модуля" + +#: ../../include/functions_reports.php:829 +msgid "Agent alert report " +msgstr "Отчет о предупреждениях агента " + +#: ../../include/functions_reports.php:834 +msgid "Group alert report" +msgstr "Отчет о предупреждениях групп" + +#: ../../include/functions_reports.php:840 +msgid "Module event report" +msgstr "Отчет о событиях модуля" + +#: ../../include/functions_reports.php:844 +msgid "Agent event report" +msgstr "Отчет о событиях агента" + +#: ../../include/functions_reports.php:848 +msgid "Group event report" +msgstr "Отчет о событиях групп" + +#: ../../include/functions_reports.php:859 +msgid "Inventory changes" +msgstr "Изменения инвентаризации" + +#: ../../include/functions_reports.php:867 +#: ../../include/functions_reporting.php:5391 +msgid "Agent configuration" +msgstr "Агент конфигурации" + +#: ../../include/functions_reports.php:871 +#: ../../include/functions_reporting.php:3965 +msgid "Group configuration" +msgstr "Группа конфигурации" + +#: ../../include/functions_reports.php:875 +msgid "Netflow area chart" +msgstr "Диаграмма области сетевого потока" + +#: ../../include/functions_reports.php:879 +msgid "Netflow data table" +msgstr "Таблица данных сетевого потока" + +#: ../../include/functions_reports.php:883 +msgid "Netflow summary table" +msgstr "Суммарная таблица сетевого потока" + +#: ../../include/functions_html.php:579 +msgid "Please select an item from this list." +msgstr "Пожалуйста, выберите элемент из этого списка." + +#: ../../include/functions_html.php:603 ../../include/functions_html.php:5369 +msgid "Please select..." +msgstr "Пожалуйста, выберите..." + +#: ../../include/functions_html.php:1884 +msgid "weeks" +msgstr "недели" + +#: ../../include/functions_html.php:2045 +msgid "Month day" +msgstr "День месяца" + +#: ../../include/functions_html.php:2047 +msgid "Week day" +msgstr "День недели" + +#: ../../include/functions_html.php:4168 +msgid "Type at least two characters to search the module." +msgstr "Введите не менее двух символов для поиска модуля." + +#: ../../include/functions_html.php:4325 +#, php-format +msgid "%s cannot verify the origin of the request. Try again, please." +msgstr "" +"%s не может проверить происхождение запроса. Попробуйте еще раз, пожалуйста." + +#: ../../include/functions_html.php:5124 +msgid "Type at least two characters to search the user." +msgstr "Введите не менее двух символов для поиска пользователя." + +#: ../../include/functions_config.php:132 +msgid "Failed updated: User did not login." +msgstr "Ошибка обновления: Пользователь не вошел в систему." + +#: ../../include/functions_config.php:140 +msgid "Failed updated: User is not admin." +msgstr "Сбой обновления: Пользователь не администратор." + +#: ../../include/functions_config.php:176 +msgid "phantomjs config directory" +msgstr "каталог конфигурации phantomjs" + +#: ../../include/functions_config.php:192 +msgid "SSL cert path" +msgstr "Путь к SSL-сертификату" + +#: ../../include/functions_config.php:200 +msgid "Use cert." +msgstr "Используйте сертификат." + +#: ../../include/functions_config.php:220 +msgid "Integria inventory" +msgstr "Integria инвентаризация" + +#: ../../include/functions_config.php:224 +#: ../../include/functions_config.php:1660 +msgid "Integria API password" +msgstr "Integria API пароль" + +#: ../../include/functions_config.php:228 +msgid "Integria URL" +msgstr "Integria URL" + +#: ../../include/functions_config.php:243 +#: ../../include/class/ExternalTools.class.php:203 +msgid "Sound for Alert fired" +msgstr "Звук для оповещения запущен" + +#: ../../include/functions_config.php:247 +#: ../../include/class/ExternalTools.class.php:231 +msgid "Sound for Monitor critical" +msgstr "Звук для Монитора критичуский" + +#: ../../include/functions_config.php:251 +#: ../../include/class/ExternalTools.class.php:259 +msgid "Sound for Monitor warning" +msgstr "Звуковой сигнал оповещения об опасности для устройства контроля" + +#: ../../include/functions_config.php:264 +msgid "License information" +msgstr "Лицензионная информация" + +#: ../../include/functions_config.php:294 +msgid "Use custom encoding" +msgstr "Используйте пользовательскую кодировку" + +#: ../../include/functions_config.php:314 +msgid "Limit parameters bulk" +msgstr "Ограничить массовые операции" + +#: ../../include/functions_config.php:318 +msgid "Identification_reminder" +msgstr "Напоминание_идентификации" + +#: ../../include/functions_config.php:322 +msgid "Include_agents" +msgstr "Включить_агентов" + +#: ../../include/functions_config.php:326 +msgid "alias_as_name" +msgstr "алиас_как_имя" + +#: ../../include/functions_config.php:330 +msgid "Console log enabled" +msgstr "Журнал консоли включен" + +#: ../../include/functions_config.php:334 +msgid "Audit log enabled" +msgstr "Журнал аудита включен" + +#: ../../include/functions_config.php:338 +msgid "Module Custom ID read only" +msgstr "Пользовательский ID модуля только чтение" + +#: ../../include/functions_config.php:342 +msgid "unique_ip" +msgstr "уникальный_ip" + +#: ../../include/functions_config.php:415 +msgid "Replication DB engine" +msgstr "Механизм репликации БД" + +#: ../../include/functions_config.php:419 +msgid "Replication DB host" +msgstr "Хост БД репликации" + +#: ../../include/functions_config.php:423 +msgid "Replication DB database" +msgstr "Репликация базы данных" + +#: ../../include/functions_config.php:427 +msgid "Replication DB user" +msgstr "Репликация пользователя БД" + +#: ../../include/functions_config.php:431 +msgid "Replication DB password" +msgstr "Репликация пароля БД" + +#: ../../include/functions_config.php:435 +msgid "Replication DB port" +msgstr "Репликация порта БД" + +#: ../../include/functions_config.php:439 +msgid "Metaconsole agent cache" +msgstr "Кэш агента Метаконсоль" + +#: ../../include/functions_config.php:447 +msgid "Enable Update Manager" +msgstr "Включить диспетчер обновлений" + +#: ../../include/functions_config.php:455 +msgid "Ipam Ocuppied Manager Critical" +msgstr "Ipam Ocuppied Manager Критический" + +#: ../../include/functions_config.php:459 +msgid "Ipam Ocuppied Manager Warning" +msgstr "Ipam Ocuppied Manager Опасность" + +#: ../../include/functions_config.php:712 +msgid "Saml profile parameters" +msgstr "Параметры профиля Saml" + +#: ../../include/functions_config.php:728 +msgid "2FA all users" +msgstr "2FA все пользователи" + +#: ../../include/functions_config.php:735 +msgid "Session timeout forced to 90 minutes" +msgstr "Завершение сессии принудительно установлено на 90 минут" + +#: ../../include/functions_config.php:794 +msgid "Max. days before autodisable deletion" +msgstr "Максимальное количество дней до удаления автоотключения" + +#: ../../include/functions_config.php:798 +msgid "Item limit for realtime reports)" +msgstr "Лимит элементов для отчетов в реальном времени)" + +#: ../../include/functions_config.php:830 +msgid "Big Operatiopn Step to purge old data" +msgstr "Большой Шаг к очистке старых данных" + +#: ../../include/functions_config.php:864 +msgid "Max execution event response" +msgstr "Максимальный отклик на выполнение события" + +#: ../../include/functions_config.php:872 +msgid "SNMP walk binary path" +msgstr "Двоичный путь SNMP walk" + +#: ../../include/functions_config.php:876 +msgid "SNMP walk binary path (fallback for v1)" +msgstr "Двоичный путь SNMP walk (резервный путь для v1)" + +#: ../../include/functions_config.php:930 +#: ../../include/functions_config.php:2959 +#: ../../operation/network/network_report.php:206 +#: ../../operation/network/network_report.php:236 +msgid "Bytes" +msgstr "Байты" + +#: ../../include/functions_config.php:960 +msgid "Show QR code header" +msgstr "Показать заголовок QR-кода" + +#: ../../include/functions_config.php:984 +msgid "Custom logo collapsed" +msgstr "Пользовательский логотип не работает (меню)" + +#: ../../include/functions_config.php:988 +msgid "Custom logo white background" +msgstr "Пользовательский логотип белый фон" + +#: ../../include/functions_config.php:1016 +msgid "Custom title header" +msgstr "Пользовательское название заголовка" + +#: ../../include/functions_config.php:1020 +msgid "Custom subtitle header" +msgstr "Пользовательский подзаголовок заголовка" + +#: ../../include/functions_config.php:1036 +#: ../../include/functions_config.php:1080 +msgid "Custom Docs url" +msgstr "Пользовательские URL-адреса документов" + +#: ../../include/functions_config.php:1040 +#: ../../include/functions_config.php:1084 +msgid "Custom support url" +msgstr "Пользовательский url службы поддержки" + +#: ../../include/functions_config.php:1052 +msgid "Custom logo metaconsole" +msgstr "Пользовательский логотип Метаконсоли" + +#: ../../include/functions_config.php:1056 +msgid "Custom logo metaconsole (white background)" +msgstr "Пользовательский логотип Метаконсоли (белый фон)" + +#: ../../include/functions_config.php:1060 +msgid "Custom logo login metaconsole" +msgstr "Вход в метаконсоль с пользовательским логотипом" + +#: ../../include/functions_config.php:1064 +msgid "Custom splash login metaconsole" +msgstr "Пользовательская страница приветствия метаконсоли" + +#: ../../include/functions_config.php:1068 +msgid "Custom title1 login metaconsole" +msgstr "Пользовательское название1 Вход в метаконсоль" + +#: ../../include/functions_config.php:1072 +msgid "Custom title2 login metaconsole" +msgstr "Пользовательское название2 Вход в метаконсоль" + +#: ../../include/functions_config.php:1076 +msgid "Login background metaconsole" +msgstr "Фон подключения к метаконсоли" + +#: ../../include/functions_config.php:1100 +msgid "Default line favourite_view for the Visual Console" +msgstr "Строка по умолчанию Favourite_view для визуальной консоли" + +#: ../../include/functions_config.php:1104 +msgid "Default line menu items for the Visual Console" +msgstr "Элементы строкового меню по умолчанию для визуальной консоли" + +#: ../../include/functions_config.php:1112 +msgid "Default line menu items for the Services" +msgstr "Пункты строкового меню по умолчанию для Сервисов" + +#: ../../include/functions_config.php:1144 +msgid "Show units in values report" +msgstr "Показать единицы измерения в отчете о значениях" + +#: ../../include/functions_config.php:1152 +msgid "Autohidden menu" +msgstr "Автоматически-спрятаваемое меню" + +#: ../../include/functions_config.php:1156 +msgid "visual_animation" +msgstr "визуальная_анимация" + +#: ../../include/functions_config.php:1164 +msgid "Fixed graph" +msgstr "Фиксированный график" + +#: ../../include/functions_config.php:1172 +msgid "Paginate module" +msgstr "Разбить модуль на страницы" + +#: ../../include/functions_config.php:1176 +#: ../../include/class/ExternalTools.class.php:287 +msgid "Custom graphviz directory" +msgstr "Пользовательский каталог graphviz" + +#: ../../include/functions_config.php:1184 +msgid "Shortened module graph data" +msgstr "Сокращенные данные графика модуля" + +#: ../../include/functions_config.php:1196 +msgid "Default type of module charts." +msgstr "Тип диаграмм модуля по умолчанию." + +#: ../../include/functions_config.php:1200 +msgid "Default Number of elements in Custom Graph." +msgstr "По умолчанию Количество элементов в пользовательском графике." + +#: ../../include/functions_config.php:1204 +msgid "Default type of interface charts." +msgstr "Тип диаграмм интерфейса по умолчанию." + +#: ../../include/functions_config.php:1221 +msgid "Display lateral menus with left click" +msgstr "Отображение боковых меню при щелчке левой кнопкой мыши" + +#: ../../include/functions_config.php:1231 +msgid "Service item padding size" +msgstr "Пространство между узлами карты обслуживания" + +#: ../../include/functions_config.php:1236 +msgid "Default percentil" +msgstr "Процент по умолчанию" + +#: ../../include/functions_config.php:1240 +msgid "Default full scale (TIP)" +msgstr "Полная шкала по умолчанию (TIP)" + +#: ../../include/functions_config.php:1244 +msgid "Default soft graphs" +msgstr "Мягкие графики по умолчанию" + +#: ../../include/functions_config.php:1248 +msgid "Default zoom graphs" +msgstr "Графики масштабирования по умолчанию" + +#: ../../include/functions_config.php:1257 +msgid "Default height of the chart image" +msgstr "Высота изображения графика по умолчанию" + +#: ../../include/functions_config.php:1279 +msgid "Add the custom post process" +msgstr "Добавьте пользовательский последующий процесс" + +#: ../../include/functions_config.php:1287 +msgid "Delete the custom post process" +msgstr "Удалите пользовательский последующий процесс" + +#: ../../include/functions_config.php:1344 +msgid "Add custom module unit" +msgstr "Добавить пользовательский модуль" + +#: ../../include/functions_config.php:1350 +msgid "Delete custom module unit" +msgstr "Удалить пользовательский модуль" + +#: ../../include/functions_config.php:1445 +msgid "IP ElasticSearch server" +msgstr "IP Сервера ElasticSearch" + +#: ../../include/functions_config.php:1449 +msgid "Port ElasticSearch server" +msgstr "Порт сервера ElasticSearch" + +#: ../../include/functions_config.php:1470 +msgid "Active and historical database cannot be the same." +msgstr "Активная и историческая базы данных не могут быть одинаковыми." + +#: ../../include/functions_config.php:1488 +msgid "Enable history database" +msgstr "Включить историю базы данных" + +#: ../../include/functions_config.php:1492 +msgid "Enable history event" +msgstr "Включить событие истории" + +#: ../../include/functions_config.php:1516 +msgid "Event Days" +msgstr "События за день" + +#: ../../include/functions_config.php:1532 +msgid "Delay" +msgstr "Задержка" + +#: ../../include/functions_config.php:1564 +msgid "Historical database purge" +msgstr "Очистка исторической базы данных" + +#: ../../include/functions_config.php:1573 +msgid "Historical database partitions" +msgstr "Исторические разделы базы данных" + +#: ../../include/functions_config.php:1582 +msgid "Historical database events purge" +msgstr "Очистка исторических событий базы данных" + +#: ../../include/functions_config.php:1591 +msgid "Historical database string purge" +msgstr "Очистка строк исторической базы данных" + +#: ../../include/functions_config.php:1604 +msgid "eHorus user login" +msgstr "Вход пользователя eHorus" + +#: ../../include/functions_config.php:1616 +msgid "eHorus API hostname" +msgstr "Имя хоста API eHorus" + +#: ../../include/functions_config.php:1620 +msgid "eHorus API port" +msgstr "Порт API eHorus" + +#: ../../include/functions_config.php:1624 +msgid "eHorus request timeout" +msgstr "Время отклика eHorus" + +#: ../../include/functions_config.php:1628 +msgid "eHorus id custom field" +msgstr "Пользовательское поле eHorus id" + +#: ../../include/functions_config.php:1638 +msgid "Integria user" +msgstr "Пользователь Integria" + +#: ../../include/functions_config.php:1642 +msgid "Integria password" +msgstr "Integria пароль" + +#: ../../include/functions_config.php:1656 +msgid "integria API hostname" +msgstr "имя хоста API integria" + +#: ../../include/functions_config.php:1664 +msgid "Integria request timeout" +msgstr "Срок выполнения запроса Integria" + +#: ../../include/functions_config.php:1668 +msgid "Integria default group" +msgstr "Группа по умолчанию Integria" + +#: ../../include/functions_config.php:1672 +msgid "Integria custom response default group" +msgstr "Группа по умолчанию пользовательского ответа Integria" + +#: ../../include/functions_config.php:1676 +msgid "Integria default priority" +msgstr "Приоритет по умолчанию Integria" + +#: ../../include/functions_config.php:1680 +msgid "Integria custom response default priority" +msgstr "Приоритет по умолчанию пользовательского ответа Integria" + +#: ../../include/functions_config.php:1684 +msgid "Integria default creator" +msgstr "Создатель по умолчанию Integria" + +#: ../../include/functions_config.php:1688 +msgid "Integria default owner" +msgstr "Владелец по умолчанию Integria" + +#: ../../include/functions_config.php:1692 +msgid "Integria custom response default owner" +msgstr "Владелец по умолчанию пользовательского ответа Integria" + +#: ../../include/functions_config.php:1696 +msgid "Integria default ticket type" +msgstr "Тип заявки по умолчанию Integria" + +#: ../../include/functions_config.php:1700 +msgid "Integria custom response default ticket type" +msgstr "Пользовательский ответ Integria Тип заявки по умолчанию" + +#: ../../include/functions_config.php:1704 +msgid "Integria default ticket status" +msgstr "Статус заявки по умолчанию Integria" + +#: ../../include/functions_config.php:1708 +msgid "Integria custom response default ticket status" +msgstr "Пользовательский ответ Integria Статус заявки по умолчанию" + +#: ../../include/functions_config.php:1712 +msgid "Integria default ticket title" +msgstr "Заголовок заявки по умолчанию Integria" + +#: ../../include/functions_config.php:1716 +msgid "Integria custom response default ticket title" +msgstr "Пользовательский ответ Integria заголовок заявки по умолчанию" + +#: ../../include/functions_config.php:1720 +msgid "Integria default ticket content" +msgstr "Содержание заявки Integria по умолчанию" + +#: ../../include/functions_config.php:1724 +msgid "Integria custom response default ticket content" +msgstr "Содержимое заявки по умолчанию в пользовательском ответе Integria" + +#: ../../include/functions_config.php:1742 +msgid "WebSocket bind address" +msgstr "Адрес ссылки WebSocket" + +#: ../../include/functions_config.php:1746 +msgid "WebSocket port" +msgstr "Порт WebSocket" + +#: ../../include/functions_config.php:1768 +#, php-format +msgid "Failed updated: the next values cannot update: %s" +msgstr "Ошибка обновления: следующия значения не могут обновить: %s" + +#: ../../include/functions_config.php:2307 +#: ../../operation/agentes/networkmap.dinamic.php:226 +msgid "Pandora FMS" +msgstr "Pandora FMS" + +#: ../../include/functions_config.php:2315 +msgid "PANDORA FMS" +msgstr "PANDORA FMS" + +#: ../../include/get_file.php:39 +msgid "Security error. Please contact the administrator." +msgstr "Ошибка безопасности. Пожалуйста, обратитесь к администратору." + +#: ../../include/get_file.php:70 +msgid "File is missing in disk storage. Please contact the administrator." +msgstr "" +"Файл отсутствует в памяти диска. Пожалуйста, обратитесь к администратору." + +#: ../../include/functions_netflow.php:346 +msgid "Total flows" +msgstr "Всего потоков" + +#: ../../include/functions_netflow.php:351 +msgid "Total bytes" +msgstr "Всего байтов" + +#: ../../include/functions_netflow.php:356 +msgid "Total packets" +msgstr "Всего пакетов" + +#: ../../include/functions_netflow.php:361 +msgid "Average bits per second" +msgstr "Среднее число битов в секунду" + +#: ../../include/functions_netflow.php:366 +msgid "Average packets per second" +msgstr "Среднее число пакетов в секунду" + +#: ../../include/functions_netflow.php:371 +msgid "Average bytes per packet" +msgstr "Среднее число байтов в пакете" + +#: ../../include/functions_netflow.php:1027 +msgid "Area graph" +msgstr "Площадь графика" + +#: ../../include/functions_netflow.php:1029 +#: ../../operation/agentes/exportdata.php:377 +msgid "Data table" +msgstr "Таблица данных" + +#: ../../include/functions_netflow.php:1030 +msgid "Circular mesh" +msgstr "Круговая сетка" + +#: ../../include/functions_netflow.php:1031 +#: ../../include/functions_netflow.php:1243 +msgid "Host detailed traffic" +msgstr "Подробное описание трафика" + +#: ../../include/functions_netflow.php:1230 +msgid "Sent" +msgstr "Отправлено" + +#: ../../include/functions_netflow.php:1238 +msgid "Received" +msgstr "Получено" + +#: ../../include/functions_netflow.php:1371 +msgid "Dst port" +msgstr "порт назначения" + +#: ../../include/functions_netflow.php:1374 +msgid "Dst IP" +msgstr "IP назначения" + +#: ../../include/functions_netflow.php:1377 +msgid "Src IP" +msgstr "IP источника" + +#: ../../include/functions_netflow.php:1380 +msgid "Src port" +msgstr "порт источника" + +#: ../../include/functions_netflow.php:1566 +#, php-format +msgid "nfdump binary (%s) not found!" +msgstr "nfdump двоичные (%s) не найдены!" + +#: ../../include/functions_netflow.php:1573 +msgid "Make sure nfdump version 1.6.8 or newer is installed!" +msgstr "Убедитесь, что версия 1.6.8 nfdump никогда не устанавливалась!" + +#: ../../include/functions_netflow.php:1590 +msgid "High" +msgstr "Высокий" + +#: ../../include/functions_netflow.php:1591 +msgid "Ultra High" +msgstr "Очень Высокий" + +#: ../../include/functions_netflow.php:1624 +#, php-format +msgid "Agregate by %s" +msgstr "Добавить по %s" + +#: ../../include/functions_netflow.php:1632 +#, php-format +msgid "Resolution %s" +msgstr "Разрешение %s" + +#: ../../include/class/ConfigPEN.class.php:428 +#: ../../include/class/ConfigPEN.class.php:597 +#: ../../include/class/ModuleTemplates.class.php:1071 +msgid "PEN" +msgstr "PEN" + +#: ../../include/class/ConfigPEN.class.php:435 +#: ../../include/class/ConfigPEN.class.php:598 +msgid "Manufacturer" +msgstr "Производитель" + +#: ../../include/class/ConfigPEN.class.php:483 +msgid "PEN is required" +msgstr "Требуется PEN" + +#: ../../include/class/ConfigPEN.class.php:509 +msgid "PEN is required." +msgstr "Требуется PEN." + +#: ../../include/class/ConfigPEN.class.php:513 +msgid "Manufacturer is required" +msgstr "Требуется производитель" + +#: ../../include/class/ConfigPEN.class.php:530 +msgid "This PEN definition does not exist" +msgstr "Этого определения PEN не существует" + +#: ../../include/class/ConfigPEN.class.php:544 +msgid "created" +msgstr "создано" + +#: ../../include/class/ConfigPEN.class.php:550 +msgid "This PEN definition already exists" +msgstr "Это определение PEN уже существует" + +#: ../../include/class/ConfigPEN.class.php:564 +msgid "updated" +msgstr "обновлено" + +#: ../../include/class/ConfigPEN.class.php:571 +#, php-format +msgid "Succesfully %s" +msgstr "Успешно %s" + +#: ../../include/class/ConfigPEN.class.php:651 +msgid "Register manufacturer" +msgstr "Зарегистрировать производителя" + +#: ../../include/class/ConfigPEN.class.php:667 +msgid "Are you sure you want to delete this PEN?" +msgstr "Вы уверены, что хотите удалить этот PEN?" + +#: ../../include/class/ConfigPEN.class.php:694 +msgid "Register new manufacturer" +msgstr "Зарегистрировать нового производителя" + +#: ../../include/class/HelpFeedBack.class.php:104 +msgid "Browser not compatible." +msgstr "Браузер не совместим." + +#: ../../include/class/HelpFeedBack.class.php:147 +msgid "Suggestion" +msgstr "Предложение" + +#: ../../include/class/HelpFeedBack.class.php:158 +msgid "Something is wrong" +msgstr "Что-то пошло не так" + +#: ../../include/class/HelpFeedBack.class.php:171 +#: ../../include/class/Diagnostics.class.php:1888 +msgid "What happened?" +msgstr "Что произошло?" + +#: ../../include/class/HelpFeedBack.class.php:181 +msgid "Your Email" +msgstr "Ваш Email" + +#: ../../include/class/HelpFeedBack.class.php:198 +msgid "Submit" +msgstr "Отправить данные на сервер" + +#: ../../include/class/HelpFeedBack.class.php:213 +#: ../../include/class/Diagnostics.class.php:1961 ../../general/header.php:357 +#: ../../general/header.php:359 +msgid "Feedback" +msgstr "Отзыв" + +#: ../../include/class/HelpFeedBack.class.php:253 +msgid "[pandorafms wiki] New suggestion" +msgstr "[pandorafms wiki] Новое предложение" + +#: ../../include/class/HelpFeedBack.class.php:255 +msgid "[pandorafms wiki] New report" +msgstr "[pandorafms wiki] Новый отчет" + +#: ../../include/class/HelpFeedBack.class.php:261 +msgid "Please provide your email address, we promise not to bother you" +msgstr "" +"Пожалуйста, укажите свой адрес электронной почты, мы обещаем не беспокоить " +"Вас" + +#: ../../include/class/HelpFeedBack.class.php:309 +msgid "Something went wrong while sending the report." +msgstr "Во время отправки отчета что-то пошло не так." + +#: ../../include/class/HelpFeedBack.class.php:360 +msgid "Your report had been successfully sent to Artica." +msgstr "Ваш отчет был успешно отправлен в Artica." + +#: ../../include/class/HelpFeedBack.class.php:360 +msgid "Thank you!" +msgstr "Спасибо!" + +#: ../../include/class/Diagnostics.class.php:155 +#, php-format +msgid "%s Diagnostic tool" +msgstr "%s Инструмент диагностики" + +#: ../../include/class/Diagnostics.class.php:220 +#, php-format +msgid "Info status %s" +msgstr "Информационный статус %s" + +#: ../../include/class/Diagnostics.class.php:224 +msgid "PHP setup" +msgstr "Настройка PHP" + +#: ../../include/class/Diagnostics.class.php:232 +msgid "Database health status" +msgstr "Состояние здоровья базы данных" + +#: ../../include/class/Diagnostics.class.php:236 +msgid "Database status info" +msgstr "Информация о состоянии базы данных" + +#: ../../include/class/Diagnostics.class.php:240 +msgid "System Info" +msgstr "Информация о системе" + +#: ../../include/class/Diagnostics.class.php:244 +msgid "MySQL Performance metrics" +msgstr "Показатели производительности MySQL" + +#: ../../include/class/Diagnostics.class.php:249 +#, php-format +msgid "Tables fragmentation in the %s database" +msgstr "Фрагментация таблиц в базе данных %s" + +#: ../../include/class/Diagnostics.class.php:255 +#, php-format +msgid "%s logs dates" +msgstr "%s даты журналов" + +#: ../../include/class/Diagnostics.class.php:259 +#, php-format +msgid "%s Licence Information" +msgstr "Информация о лицензии %s" + +#: ../../include/class/Diagnostics.class.php:263 +#: ../../include/class/Diagnostics.class.php:1245 +msgid "Status of the attachment folder" +msgstr "Статус папки вложений" + +#: ../../include/class/Diagnostics.class.php:267 +msgid "Information from the tagente_datos table" +msgstr "Информация из таблицы tagente_datos" + +#: ../../include/class/Diagnostics.class.php:271 +#, php-format +msgid "%s server threads" +msgstr "%s потоки сервера" + +#: ../../include/class/Diagnostics.class.php:275 +msgid "SQL show engine innodb status" +msgstr "SQL показать статус двигателя innodb" + +#: ../../include/class/Diagnostics.class.php:319 +msgid "Graph of the Agents Unknown module." +msgstr "График агентов с неизвестными модулями." + +#: ../../include/class/Diagnostics.class.php:326 +msgid "Graph of the Database Maintenance module." +msgstr "График модуля \"Обслуживание базы данных\"." + +#: ../../include/class/Diagnostics.class.php:333 +msgid "Graph of the Free Disk Spool Dir module." +msgstr "График модуля Free Disk Spool Dir." + +#: ../../include/class/Diagnostics.class.php:339 +msgid "Graph of the Free RAM module." +msgstr "График модуля Free RAM." + +#: ../../include/class/Diagnostics.class.php:345 +msgid "Graph of the Queued Modules module." +msgstr "График модуля очереди модулей." + +#: ../../include/class/Diagnostics.class.php:351 +msgid "Graph of the Status module." +msgstr "График модуля состояния." + +#: ../../include/class/Diagnostics.class.php:357 +msgid "Graph of the System Load AVG module." +msgstr "График модуля AVG System Load." + +#: ../../include/class/Diagnostics.class.php:364 +msgid "Graph of the Execution Time module." +msgstr "График модуля времени выполнения." + +#: ../../include/class/Diagnostics.class.php:373 +msgid "Graphs modules that represent the self-monitoring system" +msgstr "Графики модулей, представляющие систему авто-мониторинга" + +#: ../../include/class/Diagnostics.class.php:430 +#, php-format +msgid "%s Build" +msgstr "Разработка %s" + +#: ../../include/class/Diagnostics.class.php:434 +#, php-format +msgid "%s Version" +msgstr "%s Версия" + +#: ../../include/class/Diagnostics.class.php:438 +msgid "Minor Release" +msgstr "Небольшое обновление" + +#: ../../include/class/Diagnostics.class.php:442 +msgid "Homedir" +msgstr "Homedir" + +#: ../../include/class/Diagnostics.class.php:446 +msgid "HomeUrl" +msgstr "HomeUrl" + +#: ../../include/class/Diagnostics.class.php:450 +msgid "Enterprise installed" +msgstr "Enterprise установлено" + +#: ../../include/class/Diagnostics.class.php:451 +msgid "true" +msgstr "верно" + +#: ../../include/class/Diagnostics.class.php:451 +msgid "false" +msgstr "ложь" + +#: ../../include/class/Diagnostics.class.php:454 +msgid "Update Key" +msgstr "Обновить Ключ" + +#: ../../include/class/Diagnostics.class.php:458 +msgid "Updating code path" +msgstr "Обновление пути кода" + +#: ../../include/class/Diagnostics.class.php:462 +msgid "Current Update #" +msgstr "Текущее обновление #" + +#: ../../include/class/Diagnostics.class.php:486 +msgid "PHP Version" +msgstr "Версия PHP" + +#: ../../include/class/Diagnostics.class.php:490 +msgid "PHP Max execution time" +msgstr "PHP Максимальное время выполнения" + +#: ../../include/class/Diagnostics.class.php:494 +msgid "PHP Max input time" +msgstr "PHP Максимальное время ввода" + +#: ../../include/class/Diagnostics.class.php:498 +msgid "PHP Memory limit" +msgstr "Ограничение памяти PHP" + +#: ../../include/class/Diagnostics.class.php:502 +msgid "Session cookie lifetime" +msgstr "Время жизни сеансового файла cookie" + +#: ../../include/class/Diagnostics.class.php:551 +msgid "Total groups" +msgstr "Всего групп" + +#: ../../include/class/Diagnostics.class.php:555 +msgid "Total module data records" +msgstr "Всего записей данных модуля" + +#: ../../include/class/Diagnostics.class.php:559 +msgid "Total agent access record" +msgstr "Общая запись доступа агентов" + +#: ../../include/class/Diagnostics.class.php:567 +msgid "Total traps" +msgstr "Всего ловушек" + +#: ../../include/class/Diagnostics.class.php:571 +msgid "Total users" +msgstr "Всего пользователей" + +#: ../../include/class/Diagnostics.class.php:575 +msgid "Total sessions" +msgstr "Всего сеансов" + +#: ../../include/class/Diagnostics.class.php:614 +msgid "Pandora DB has never been executed" +msgstr "БД Pandora никогда не выполнялась" + +#: ../../include/class/Diagnostics.class.php:621 +msgid "Ago" +msgstr "Прошло" + +#: ../../include/class/Diagnostics.class.php:628 +msgid "Total unknown agents" +msgstr "Всего неизвестных агентов" + +#: ../../include/class/Diagnostics.class.php:632 +msgid "Total not-init modules" +msgstr "Всего не инициализированных модулей" + +#: ../../include/class/Diagnostics.class.php:636 +msgid "Pandora DB Last run" +msgstr "Последний запуск БД Pandora" + +#: ../../include/class/Diagnostics.class.php:668 +msgid "DB Schema Version (first installed)" +msgstr "Версия схемы БД (первая установленная)" + +#: ../../include/class/Diagnostics.class.php:672 +msgid "DB Schema Version (actual)" +msgstr "Версия схемы БД (текущая)" + +#: ../../include/class/Diagnostics.class.php:676 +msgid "DB Schema Build" +msgstr "Разработка схемы БД" + +#: ../../include/class/Diagnostics.class.php:680 +msgid "DB Size" +msgstr "Размер базы данных" + +#: ../../include/class/Diagnostics.class.php:720 +msgid "RAM" +msgstr "RAM" + +#: ../../include/class/Diagnostics.class.php:724 +msgid "Os" +msgstr "ОС" + +#: ../../include/class/Diagnostics.class.php:732 +#: ../../include/class/Diagnostics.class.php:750 +#: ../../include/class/NetworkMap.class.php:2935 +msgid "Ip" +msgstr "Ip" + +#: ../../include/class/Diagnostics.class.php:778 +msgid "InnoDB buffer pool size" +msgstr "Размер буферного пула InnoDB" + +#: ../../include/class/Diagnostics.class.php:782 +#, php-format +msgid "" +"It has to be 40% of the server memory not recommended to be greater or less" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:787 +msgid "InnoDB file per table" +msgstr "Файл InnoDB для каждой таблицы" + +#: ../../include/class/Diagnostics.class.php:790 +#: ../../include/class/Diagnostics.class.php:862 +msgid "Recommended ON" +msgstr "Рекомендуется ВКЛ" + +#: ../../include/class/Diagnostics.class.php:794 +msgid "InnoDB flush log at trx-commit" +msgstr "Журнал InnoDB flush при trx-commit" + +#: ../../include/class/Diagnostics.class.php:797 +msgid "Recommended Value" +msgstr "Рекомендуемое значение" + +#: ../../include/class/Diagnostics.class.php:801 +msgid "InnoDB lock wait timeout" +msgstr "Ограничение времени блокировки InnoDB" + +#: ../../include/class/Diagnostics.class.php:804 +#: ../../include/class/Diagnostics.class.php:811 +#: ../../include/class/Diagnostics.class.php:818 +#: ../../include/class/Diagnostics.class.php:825 +#: ../../include/class/Diagnostics.class.php:832 +#: ../../include/class/Diagnostics.class.php:841 +#: ../../include/class/Diagnostics.class.php:848 +#: ../../include/class/Diagnostics.class.php:855 +#: ../../include/class/Diagnostics.class.php:869 +#: ../../include/class/Diagnostics.class.php:876 +#: ../../include/class/Diagnostics.class.php:883 +#: ../../include/class/Diagnostics.class.php:897 +#: ../../include/class/Diagnostics.class.php:904 +msgid "Min. Recommended Value" +msgstr "Мин. Рекомендуемое значение" + +#: ../../include/class/Diagnostics.class.php:808 +msgid "InnoDB log buffer size" +msgstr "Размер буфера журнала InnoDB" + +#: ../../include/class/Diagnostics.class.php:815 +msgid "InnoDB log file size" +msgstr "Размер файла журнала InnoDB" + +#: ../../include/class/Diagnostics.class.php:822 +msgid "Maximun allowed packet" +msgstr "Максимально допустимый пакет" + +#: ../../include/class/Diagnostics.class.php:829 +msgid "Maximun connections" +msgstr "Максимально возможные соединения" + +#: ../../include/class/Diagnostics.class.php:834 +msgid "conections" +msgstr "Соединения" + +#: ../../include/class/Diagnostics.class.php:838 +msgid "Query cache limit" +msgstr "Предел кэша запросов" + +#: ../../include/class/Diagnostics.class.php:845 +msgid "Query cache min-res-unit" +msgstr "Кэш запросов min-res-unit" + +#: ../../include/class/Diagnostics.class.php:852 +msgid "Query cache size" +msgstr "Размер кэша запросов" + +#: ../../include/class/Diagnostics.class.php:859 +msgid "Query cache type" +msgstr "Тип кэша запросов" + +#: ../../include/class/Diagnostics.class.php:866 +msgid "Read buffer size" +msgstr "Размер буфера чтения" + +#: ../../include/class/Diagnostics.class.php:873 +msgid "Read rnd-buffer size" +msgstr "Размер rnd-буфера чтения" + +#: ../../include/class/Diagnostics.class.php:880 +msgid "Sort buffer size" +msgstr "Сортировка размера буфера" + +#: ../../include/class/Diagnostics.class.php:887 +msgid "Sql mode" +msgstr "Режим Sql" + +#: ../../include/class/Diagnostics.class.php:890 +msgid "Must be empty" +msgstr "Должен быть пустым" + +#: ../../include/class/Diagnostics.class.php:894 +msgid "Thread cache size" +msgstr "Размер потока кэша" + +#: ../../include/class/Diagnostics.class.php:901 +msgid "Thread stack" +msgstr "Накопление потоков" + +#: ../../include/class/Diagnostics.class.php:964 +msgid "" +"Table fragmentation is higher than recommended. They should be defragmented." +msgstr "" +"Фрагментация таблиц выше рекомендуемой. Их следует дефрагментировать." + +#: ../../include/class/Diagnostics.class.php:968 +msgid "Table fragmentation is correct." +msgstr "Фрагментация таблицы правильная." + +#: ../../include/class/Diagnostics.class.php:977 +msgid "Tables fragmentation (maximum recommended value)" +msgstr "Фрагментация таблиц (максимальное рекомендуемое значение)" + +#: ../../include/class/Diagnostics.class.php:982 +msgid "Tables fragmentation (current value)" +msgstr "Фрагментация таблиц (текущее значение)" + +#: ../../include/class/Diagnostics.class.php:986 +msgid "Table fragmentation status" +msgstr "Фрагментация таблиц Статус" + +#: ../../include/class/Diagnostics.class.php:1021 +msgid "Size server logs (current value)" +msgstr "Журналы размера сервера (текущее значение)" + +#: ../../include/class/Diagnostics.class.php:1025 +msgid "Status server logs" +msgstr "Журналы состояния сервера" + +#: ../../include/class/Diagnostics.class.php:1030 +msgid "Size error logs (current value)" +msgstr "Журналы ошибок размера (текущее значение)" + +#: ../../include/class/Diagnostics.class.php:1034 +msgid "Status error logs" +msgstr "Журналы ошибок статуса" + +#: ../../include/class/Diagnostics.class.php:1039 +msgid "Size console logs (current value)" +msgstr "Журналы размера консоли (текущее значение)" + +#: ../../include/class/Diagnostics.class.php:1043 +msgid "Status console logs" +msgstr "Журналы статуса консоли" + +#: ../../include/class/Diagnostics.class.php:1078 +msgid "License capacity is less than 90 percent" +msgstr "Лицензионный потенциал составляет менее 90 процентов" + +#: ../../include/class/Diagnostics.class.php:1081 +msgid "License capacity exceeds 90 percent" +msgstr "Лицензионный потенциал превышает 90 процентов" + +#: ../../include/class/Diagnostics.class.php:1089 +msgid "" +"The average of modules per agent is more than 40. You can have performance " +"problems" +msgstr "" +"В среднем на одного агента приходится более 40 модулей. Могут возникнуть " +"проблемы с производительностью" + +#: ../../include/class/Diagnostics.class.php:1094 +msgid "The average of modules per agent is less than 40" +msgstr "В среднем на одного агента приходится менее 40 модулей" + +#: ../../include/class/Diagnostics.class.php:1130 +msgid "The system has no load" +msgstr "Система не имеет нагрузки" + +#: ../../include/class/Diagnostics.class.php:1174 +msgid "Network Management System" +msgstr "Система управления сетью" + +#: ../../include/class/Diagnostics.class.php:1175 +#: ../../include/class/Diagnostics.class.php:1179 +msgid "Off" +msgstr "Откл" + +#: ../../include/class/Diagnostics.class.php:1186 +msgid "Status of agents capacity" +msgstr "Статус емкости агентов" + +#: ../../include/class/Diagnostics.class.php:1191 +msgid "Status of average modules per agent" +msgstr "Статус среднего количества модулей на одного агента" + +#: ../../include/class/Diagnostics.class.php:1197 +msgid "Interval average of the network modules" +msgstr "Среднее интервальное значение сетевых модулей" + +#: ../../include/class/Diagnostics.class.php:1227 +msgid "The attached folder contains more than 700 files." +msgstr "Вложенная папка содержит более 700 файлов." + +#: ../../include/class/Diagnostics.class.php:1232 +msgid "The attached folder contains less than 700 files." +msgstr "Вложенная папка содержит менее 700 файлов." + +#: ../../include/class/Diagnostics.class.php:1241 +msgid "Total files in the attached folder" +msgstr "Всего файлов в прикрепленной папке" + +#: ../../include/class/Diagnostics.class.php:1271 +msgid "" +"The tagente_datos table contains too much data. A historical database is " +"recommended." +msgstr "" +"Таблица tagente_datos содержит слишком много данных. Рекомендуется " +"использовать историческую базу данных." + +#: ../../include/class/Diagnostics.class.php:1276 +msgid "The tagente_datos table contains an acceptable amount of data." +msgstr "Таблица tagente_datos содержит приемлемое количество данных." + +#: ../../include/class/Diagnostics.class.php:1285 +msgid "Total data in tagente_datos table" +msgstr "Всего данных в таблице tagente_datos" + +#: ../../include/class/Diagnostics.class.php:1289 +msgid "Tagente_datos table status" +msgstr "Статус таблицы Tagente_datos" + +#: ../../include/class/Diagnostics.class.php:1325 +msgid "Threads" +msgstr "Потоки" + +#: ../../include/class/Diagnostics.class.php:1335 +msgid "Total threads" +msgstr "Всего потоков" + +#: ../../include/class/Diagnostics.class.php:1342 +msgid "Current pandora_server running threads" +msgstr "Текущие работающие потоки pandora_server" + +#: ../../include/class/Diagnostics.class.php:1346 +msgid "" +"There's more pandora_server threads than configured, are you running " +"multiple servers simultaneusly?." +msgstr "" +"Существует больше потоков pandora_server, чем настроено, вы запускаете " +"несколько серверов одновременно?" + +#: ../../include/class/Diagnostics.class.php:1480 +msgid "" +"Please check your Pandora Server setup and make sure that the database " +"maintenance daemon is running." +msgstr "" +"Пожалуйста, проверьте настройки вашего сервера Pandora Server и убедитесь, " +"что запущен daemon обслуживания базы данных." + +#: ../../include/class/Diagnostics.class.php:1484 +msgid "" +"It' is very important to keep the database up-to-date to get the best " +"performance and results in Pandora" +msgstr "" +"Очень важно поддерживать базу данных в актуальном состоянии, чтобы добиться " +"наилучшей производительности и результатов в Pandora" + +#: ../../include/class/Diagnostics.class.php:1746 +msgid "You have more than 10 MB of logs" +msgstr "У вас более 10 МБ журналов" + +#: ../../include/class/Diagnostics.class.php:1749 +msgid "You have less than 10 MB of logs" +msgstr "У вас менее 10 МБ журналов" + +#: ../../include/class/Diagnostics.class.php:1812 +msgid "Succesfuly" +msgstr "Успешно" + +#: ../../include/class/Diagnostics.class.php:1904 +msgid "Your email" +msgstr "Ваш email" + +#: ../../include/class/Diagnostics.class.php:1916 +msgid "Include installation data" +msgstr "Включить данные по установке" + +#: ../../include/class/Diagnostics.class.php:1953 +msgid "Hello Feedback-Men" +msgstr "Привет Feedback-Men" + +#: ../../include/class/Diagnostics.class.php:1963 +msgid "Hello" +msgstr "Привет" + +#: ../../include/class/Diagnostics.class.php:1967 +#, php-format +msgid "User %s is reporting an issue in its %s experience" +msgstr "Пользователь %s сообщает о проблеме в своем опыте %s" + +#: ../../include/class/Diagnostics.class.php:1976 +msgid "Find some files attached to this mail" +msgstr "Найдите некоторые файлы, прикрепленные к этому письму" + +#: ../../include/class/Diagnostics.class.php:1979 +msgid "PDF is the diagnostic information retrieved at report time" +msgstr "" +"PDF - это диагностическая информация, полученная во время составления отчета" + +#: ../../include/class/Diagnostics.class.php:1982 +msgid "CSV contains the statuses of every product file" +msgstr "CSV содержит статусы каждого файла продукта" + +#: ../../include/class/Diagnostics.class.php:1987 +#, php-format +msgid "" +"If you think this report must be escalated, feel free to forward this mail " +"to \"%s\"" +msgstr "" +"Если вы считаете, что этот отчет должен быть направлен вышестоящим лицам, не " +"стесняйтесь переслать это письмо по адресу \"%s\"" + +#: ../../include/class/Diagnostics.class.php:1991 +msgid "LEGAL WARNING" +msgstr "ЮРИДИЧЕСКОЕ ПРЕДОСТЕРЕЖЕНИЕ" + +#: ../../include/class/Diagnostics.class.php:1993 +msgid "" +"The information contained in this transmission is privileged and " +"confidential information intended only for the use of the individual or " +"entity named above" +msgstr "" +"Информация, содержащаяся в данном сообщении, является привилегированной и " +"конфиденциальной информацией, предназначенной только для использования " +"физическим или юридическим лицом, указанными выше" + +#: ../../include/class/Diagnostics.class.php:1997 +msgid "" +"If the reader of this message is not the intended recipient, you are hereby " +"notified that any dissemination, distribution or copying of this " +"communication is strictly prohibited" +msgstr "" +"Если читатель данного сообщения не является его адресатом, настоящим вы " +"уведомляетесь, что любое распространение, распределение или копирование " +"данного сообщения строго запрещено" + +#: ../../include/class/Diagnostics.class.php:2001 +msgid "If you have received this transmission in error, do not read it" +msgstr "Если вы получили это сообщение по ошибке, не читайте его" + +#: ../../include/class/Diagnostics.class.php:2005 +msgid "" +"Please immediately reply to the sender that you have received this " +"communication in error and then delete it" +msgstr "" +"Пожалуйста, немедленно ответьте отправителю, что вы получили это сообщение " +"по ошибке, а затем удалите его." + +#: ../../include/class/Diagnostics.class.php:2084 +msgid "Invalid cron task" +msgstr "Недопустимая задача cron" + +#: ../../include/class/Diagnostics.class.php:2085 +msgid "Sending of information has been processed" +msgstr "Отправка информации была обработана" + +#: ../../include/class/Diagnostics.class.php:2120 +#: ../../include/class/Diagnostics.class.php:2130 +msgid "Diagnostics Info" +msgstr "Информация о диагностике" + +#: ../../include/class/Diagnostics.class.php:2238 +#: ../../include/class/Diagnostics.class.php:2248 +msgid "PHP Info" +msgstr "Информация о PHP" + +#: ../../include/class/NetworkMap.class.php:2331 +msgid "Failed to generate dotmap, please select different layout schema" +msgstr "" +"Не удалось сгенерировать точечную карту (dotmap), пожалуйста, выберите " +"другую схему отображения макета" + +#: ../../include/class/NetworkMap.class.php:2459 +msgid "Failed to retrieve graph data." +msgstr "Не удалось получить данные графика." + +#: ../../include/class/NetworkMap.class.php:2679 +msgid "Holding Area" +msgstr "Буфер обработки" + +#: ../../include/class/NetworkMap.class.php:2808 +#, php-format +msgid "Edit node %s" +msgstr "Редактирование узла %s" + +#: ../../include/class/NetworkMap.class.php:2810 +msgid "Show details and options" +msgstr "Показать подробности и опции" + +#: ../../include/class/NetworkMap.class.php:2811 +msgid "Add a interface link" +msgstr "Добавить ссылку интерфейса" + +#: ../../include/class/NetworkMap.class.php:2812 +msgid "Set parent interface" +msgstr "Установить родительский интерфейс" + +#: ../../include/class/NetworkMap.class.php:2813 +msgid "Set as children" +msgstr "Установить в качестве детей" + +#: ../../include/class/NetworkMap.class.php:2814 +msgid "Set parent" +msgstr "Установить родителя" + +#: ../../include/class/NetworkMap.class.php:2815 +#: ../../include/class/NetworkMap.class.php:2828 +msgid "Abort the action of set relationship" +msgstr "Прервать действие установления отношений" + +#: ../../include/class/NetworkMap.class.php:2817 +#: ../../include/class/NetworkMap.class.php:3156 +msgid "Add node" +msgstr "Добавить узел" + +#: ../../include/class/NetworkMap.class.php:2818 +msgid "Set center" +msgstr "Установить центр" + +#: ../../include/class/NetworkMap.class.php:2820 +msgid "Refresh Holding area" +msgstr "Обновить буфер обработки" + +#: ../../include/class/NetworkMap.class.php:2821 +#: ../../include/class/NetworkMap.class.php:2824 +msgid "Proceed" +msgstr "Продолжить" + +#: ../../include/class/NetworkMap.class.php:2822 +msgid "" +"Resetting the map will delete all customizations you have done, including " +"manual relationships between elements, new items, etc." +msgstr "" +"Перезапуск карты удалит все сделанные вами настройки, включая ручные связи " +"между элементами, новые элементы и т.д." + +#: ../../include/class/NetworkMap.class.php:2826 +msgid "Restart map" +msgstr "Перезапустить карту" + +#: ../../include/class/NetworkMap.class.php:2827 +msgid "Abort the interface relationship" +msgstr "Прервать взаимосвязь интерфейсов" + +#: ../../include/class/NetworkMap.class.php:2845 +#, php-format +msgid "In the Open version of %s can not be edited nodes or map" +msgstr "В открытой версии %s нельзя редактировать узлы или карту" + +#: ../../include/class/NetworkMap.class.php:2851 +#: ../../include/class/NetworkMap.class.php:2902 +msgid "Edit node" +msgstr "Редактировать узел" + +#: ../../include/class/NetworkMap.class.php:2861 +#: ../../include/class/NetworkMap.class.php:2912 +msgid "Adresses" +msgstr "Адреса" + +#: ../../include/class/NetworkMap.class.php:2863 +#: ../../include/class/NetworkMap.class.php:2914 +msgid "OS type" +msgstr "Тип ОС" + +#: ../../include/class/NetworkMap.class.php:2870 +#: ../../include/class/NetworkMap.class.php:2871 +#: ../../include/class/NetworkMap.class.php:2921 +#: ../../include/class/NetworkMap.class.php:2922 +msgid "Node Details" +msgstr "Сведения об узле" + +#: ../../include/class/NetworkMap.class.php:2947 +#: ../../include/class/NetworkMap.class.php:2948 +msgid "Interface Information (SNMP)" +msgstr "Информация об интерфейсе (SNMP)" + +#: ../../include/class/NetworkMap.class.php:2959 +msgid "Shape" +msgstr "Форма" + +#: ../../include/class/NetworkMap.class.php:2962 +msgid "Circle" +msgstr "Круг" + +#: ../../include/class/NetworkMap.class.php:2963 +msgid "Square" +msgstr "Квадрат" + +#: ../../include/class/NetworkMap.class.php:2964 +msgid "Rhombus" +msgstr "Ромб" + +#: ../../include/class/NetworkMap.class.php:2977 +msgid "name node" +msgstr "Назвать узел" + +#: ../../include/class/NetworkMap.class.php:2995 +#: ../../include/class/NetworkMap.class.php:3263 +msgid "name fictional node" +msgstr "Имя фиктивного узла" + +#: ../../include/class/NetworkMap.class.php:3000 +#: ../../include/class/NetworkMap.class.php:3268 +msgid "Networkmap to link" +msgstr "Соединить с сетевой картой" + +#: ../../include/class/NetworkMap.class.php:3012 +msgid "Update fictional node" +msgstr "Обновить фиктивный узел" + +#: ../../include/class/NetworkMap.class.php:3023 +#: ../../include/class/NetworkMap.class.php:3024 +msgid "Node options" +msgstr "Параметры узла" + +#: ../../include/class/NetworkMap.class.php:3036 +#: ../../include/class/NetworkMap.class.php:3102 +msgid "Node source" +msgstr "Исходный узел" + +#: ../../include/class/NetworkMap.class.php:3037 +#: ../../include/class/NetworkMap.class.php:3103 +msgid "Interface source" +msgstr "Исходный интерфейс" + +#: ../../include/class/NetworkMap.class.php:3038 +#: ../../include/class/NetworkMap.class.php:3104 +msgid "Interface Target" +msgstr "Целевой интерфейс" + +#: ../../include/class/NetworkMap.class.php:3040 +#: ../../include/class/NetworkMap.class.php:3105 +msgid "Node target" +msgstr "Целевой узел" + +#: ../../include/class/NetworkMap.class.php:3041 +msgid "E." +msgstr "Е." + +#: ../../include/class/NetworkMap.class.php:3074 +msgid "There are not relations" +msgstr "Не существует отношений" + +#: ../../include/class/NetworkMap.class.php:3144 +msgid "Add interface link" +msgstr "Добавить ссылку интерфейса" + +#: ../../include/class/NetworkMap.class.php:3175 +#: ../../include/class/NetworkMap.class.php:3197 +#: ../../include/class/NetworkMap.class.php:3198 +#: ../../include/class/NetworkMap.class.php:3238 +#: ../../include/class/NetworkMap.class.php:3250 +#: ../../include/class/NetworkMap.class.php:3291 +msgid "Add agent node" +msgstr "Добавить узел агента" + +#: ../../include/class/NetworkMap.class.php:3249 +msgid "Add agent node (filter by group)" +msgstr "Добавить узел агента (фильтр по группе)" + +#: ../../include/class/NetworkMap.class.php:3280 +msgid "Add fictional node" +msgstr "Добавить фиктивный узел" + +#: ../../include/class/NetworkMap.class.php:3290 +msgid "Add fictional point" +msgstr "Добавить вымышленный пункт" + +#: ../../include/class/NetworkMap.class.php:3497 +msgid "Open Minimap" +msgstr "Открыть мини-карту" + +#: ../../include/class/NetworkMap.class.php:3503 +msgid "Hide Labels" +msgstr "Скрыть этикетки" + +#: ../../include/class/AgentsAlerts.class.php:495 +msgid "There are no agents with alerts" +msgstr "здесь нет агентов с оповещениями" + +#: ../../include/class/AgentsAlerts.class.php:573 +msgid "Previous alerts" +msgstr "Предыдущие предупреждения" + +#: ../../include/class/AgentsAlerts.class.php:636 +msgid "More alerts" +msgstr "Дополнительные предупреждения" + +#: ../../include/class/AgentsAlerts.class.php:744 ../../operation/menu.php:37 +msgid "Views" +msgstr "Просмотры" + +#: ../../include/class/AgentsAlerts.class.php:752 +msgid "Agents/Alerts" +msgstr "Агенты/Оповещения" + +#: ../../include/class/AgentsAlerts.class.php:796 +msgid "Show modules without alerts" +msgstr "Показать модули без предупреждений" + +#: ../../include/class/AgentsAlerts.class.php:826 +#: ../../operation/gis_maps/render_view.php:142 +msgid "10 minutes" +msgstr "10 минут" + +#: ../../include/class/ManageNetScanScripts.class.php:122 +msgid "Net scan scripts" +msgstr "Скрипты сканирования сети" + +#: ../../include/class/ManageNetScanScripts.class.php:223 +msgid "Problem creating" +msgstr "Ошибка при создании" + +#: ../../include/class/ManageNetScanScripts.class.php:234 +#: ../../include/class/ManageNetScanScripts.class.php:321 +msgid "Name or Script fullpath they can not be empty" +msgstr "Имя или полный путь скрипта не могут быть пустыми" + +#: ../../include/class/ManageNetScanScripts.class.php:255 +#: ../../include/class/ManageNetScanScripts.class.php:342 +msgid "Problem deleting Net scan Scripts, Not selected script" +msgstr "Проблема с удалением Скриптов сканирования сети, не выбранный скрипт" + +#: ../../include/class/ManageNetScanScripts.class.php:310 +msgid "Problem updating" +msgstr "Ошибка при обновлении" + +#: ../../include/class/ManageNetScanScripts.class.php:361 +msgid "Problem deleting Net scan Scripts" +msgstr "Проблема с удалением Скриптов сканирования сети" + +#: ../../include/class/ManageNetScanScripts.class.php:366 +msgid "Deleted successfully" +msgstr "Удалено успешно" + +#: ../../include/class/ManageNetScanScripts.class.php:439 +msgid "Are you sure delete script?" +msgstr "Вы уверены, что хотите удалить скрипт?" + +#: ../../include/class/ManageNetScanScripts.class.php:459 +msgid "Delete Script" +msgstr "Удалить скрипт" + +#: ../../include/class/ManageNetScanScripts.class.php:478 +msgid "There are no net scan scripts in the system" +msgstr "В системе отсутствуют скрипты сканирования сети" + +#: ../../include/class/ManageNetScanScripts.class.php:552 +msgid "Script fullpath" +msgstr "Полный путь скрипта" + +#: ../../include/class/CredentialStore.class.php:600 +#, php-format +msgid "Not a valid JSON: %s" +msgstr "Недопустимый JSON: %s" + +#: ../../include/class/CredentialStore.class.php:610 +msgid "Key identifier is required" +msgstr "Требуется идентификатор ключа" + +#: ../../include/class/CredentialStore.class.php:612 +msgid "You must select a group where store this key!" +msgstr "Вы должны выбрать группу, в которой будет храниться этот ключ!" + +#: ../../include/class/CredentialStore.class.php:614 +msgid "You must specify a product type" +msgstr "Вы должны указать тип продукта" + +#: ../../include/class/CredentialStore.class.php:616 +msgid "You must specify a username and/or password" +msgstr "Вы должны указать имя пользователя и/или пароль" + +#: ../../include/class/CredentialStore.class.php:722 +msgid "identifier cannot be empty" +msgstr "идентификатор не может быть пустым" + +#: ../../include/class/CredentialStore.class.php:765 +#, php-format +msgid "" +"Database encryption is not enabled. Credentials will be stored in plaintext. " +"%s" +msgstr "" +"Шифрование базы данных не включено. Учетные данные будут храниться в " +"открытом виде. %s" + +#: ../../include/class/CredentialStore.class.php:784 +#: ../../include/class/CredentialStore.class.php:917 +msgid "Product" +msgstr "Продукт" + +#: ../../include/class/CredentialStore.class.php:849 +msgid "Add key" +msgstr "Добавить ключ" + +#: ../../include/class/CredentialStore.class.php:940 +msgid "Extra (2)" +msgstr "Экстра (2)" + +#: ../../include/class/CredentialStore.class.php:950 +#: ../../include/class/CredentialStore.class.php:1121 +msgid "Access key ID" +msgstr "ID ключа доступа" + +#: ../../include/class/CredentialStore.class.php:951 +#: ../../include/class/CredentialStore.class.php:1122 +msgid "Secret access key" +msgstr "Секретный ключ доступа" + +#: ../../include/class/CredentialStore.class.php:957 +#: ../../include/class/CredentialStore.class.php:974 +msgid "Account ID" +msgstr "ID учётной записи" + +#: ../../include/class/CredentialStore.class.php:958 +#: ../../include/class/CredentialStore.class.php:1129 +msgid "Application secret" +msgstr "Секрет применения" + +#: ../../include/class/CredentialStore.class.php:959 +#: ../../include/class/CredentialStore.class.php:1130 +msgid "Tenant or domain name" +msgstr "Владелец или доменное имя" + +#: ../../include/class/CredentialStore.class.php:960 +#: ../../include/class/CredentialStore.class.php:1131 +msgid "Subscription id" +msgstr "Идентификатор подписки" + +#: ../../include/class/CredentialStore.class.php:964 +#: ../../include/class/CredentialStore.class.php:1147 +msgid "Auth JSON" +msgstr "Аутентификация JSON" + +#: ../../include/class/CredentialStore.class.php:1128 +msgid "Client ID" +msgstr "ID клиента" + +#: ../../include/class/CredentialStore.class.php:1137 +msgid "Account ID." +msgstr "ID Учетной записи." + +#: ../../include/class/CredentialStore.class.php:1223 +msgid "Register new key into keystore" +msgstr "Зарегистрируйте новый ключ в хранилище ключей" + +#: ../../include/class/CredentialStore.class.php:1227 +msgid "Update key" +msgstr "Обновить ключ" + +#: ../../include/class/OrderInterpreter.class.php:123 +msgid "Agent Management" +msgstr "Управление агентами" + +#: ../../include/class/OrderInterpreter.class.php:157 +msgid "Manage Policies" +msgstr "Управление политиками" + +#: ../../include/class/OrderInterpreter.class.php:171 +msgid "List Alerts" +msgstr "Список предупреждений" + +#: ../../include/class/OrderInterpreter.class.php:195 +msgid "View Events" +msgstr "Просмотр событий" + +#: ../../include/class/OrderInterpreter.class.php:247 +msgid "Manage Servers" +msgstr "Управление серверами" + +#: ../../include/class/OrderInterpreter.class.php:261 +msgid "Edit User" +msgstr "Редактировать пользователя" + +#: ../../include/class/OrderInterpreter.class.php:271 +msgid "Tree View" +msgstr "Просмотр в виде дерева" + +#: ../../include/class/OrderInterpreter.class.php:281 +msgid "Network Component" +msgstr "Сетевой компонент" + +#: ../../include/class/OrderInterpreter.class.php:295 +msgid "Task List" +msgstr "Список задач" + +#: ../../include/class/OrderInterpreter.class.php:339 +msgid "Update Manager" +msgstr "Менеджер обновлений" + +#: ../../include/class/OrderInterpreter.class.php:353 +msgid "Manage Agent Groups" +msgstr "Управление группами агентов" + +#: ../../include/class/OrderInterpreter.class.php:394 +msgid "GO TO " +msgstr "ПЕРЕЙТИ К " + +#: ../../include/class/OrderInterpreter.class.php:423 +msgid "results found" +msgstr "результаты найдены" + +#: ../../include/class/OrderInterpreter.class.php:427 +msgid "No results found" +msgstr "Результаты не найдены" + +#: ../../include/class/CustomNetScan.class.php:369 +#: ../../include/class/CustomNetScan.class.php:394 +msgid "NetScan Custom" +msgstr "Настройка NetScan" + +#: ../../include/class/CustomNetScan.class.php:611 +msgid "Recon script" +msgstr "Рекон скрипт" + +#: ../../include/class/CustomNetScan.class.php:652 +msgid "Explanation" +msgstr "Объяснение" + +#: ../../include/class/CustomNetScan.class.php:668 +msgid "macro_desc" +msgstr "macro_desc" + +#: ../../include/class/ModuleTemplates.class.php:353 +#, php-format +msgid "Template %s successfully updated" +msgstr "Шаблон %s успешно обновлен" + +#: ../../include/class/ModuleTemplates.class.php:400 +#, php-format +msgid "Template %s successfully created" +msgstr "Шаблон %s успешно создан" + +#: ../../include/class/ModuleTemplates.class.php:402 +msgid "Error creating template" +msgstr "Ошибка при создании шаблона" + +#: ../../include/class/ModuleTemplates.class.php:410 +#, php-format +msgid "Template %s successfully deleted" +msgstr "Шаблон %s успешно удален" + +#: ../../include/class/ModuleTemplates.class.php:412 +#, php-format +msgid "Error deleting %s template" +msgstr "Ошибка при удалении шаблона %s" + +#: ../../include/class/ModuleTemplates.class.php:559 +msgid "Module successfully deleted" +msgstr "Модуль успешно удален" + +#: ../../include/class/ModuleTemplates.class.php:561 +msgid "Error deleting module" +msgstr "Ошибка при удалении модуля" + +#: ../../include/class/ModuleTemplates.class.php:572 +msgid "Block successfully deleted" +msgstr "Блок успешно удален" + +#: ../../include/class/ModuleTemplates.class.php:574 +msgid "Error deleting block" +msgstr "Ошибка при удалении блока" + +#: ../../include/class/ModuleTemplates.class.php:586 +msgid "All templates deleted" +msgstr "Все шаблоны удалены" + +#: ../../include/class/ModuleTemplates.class.php:588 +msgid "Error deleting all templates" +msgstr "Ошибка при удалении всех шаблонов" + +#: ../../include/class/ModuleTemplates.class.php:597 +msgid "Selected templates deleted" +msgstr "Выбранные шаблоны удалены" + +#: ../../include/class/ModuleTemplates.class.php:599 +msgid "Error deleting selected templates" +msgstr "Ошибка при удалении выбранных шаблонов" + +#: ../../include/class/ModuleTemplates.class.php:611 +msgid "Something gone wrong. Please, try again" +msgstr "Что-то пошло не так. Пожалуйста, попробуйте еще раз" + +#: ../../include/class/ModuleTemplates.class.php:662 +msgid "The modules is already added" +msgstr "Модули уже добавлены" + +#: ../../include/class/ModuleTemplates.class.php:1108 +#: ../../include/class/ModuleTemplates.class.php:1380 +msgid "Add components" +msgstr "Добавить компоненты" + +#: ../../include/class/ModuleTemplates.class.php:1160 +#: ../../include/class/ModuleTemplates.class.php:1295 +msgid "No module blocks for this profile" +msgstr "Нет блоков модулей для этого профиля" + +#: ../../include/class/ModuleTemplates.class.php:1183 +msgid "Delete this block" +msgstr "Удалить этот блок" + +#: ../../include/class/ModuleTemplates.class.php:1185 +msgid "Do you want delete this block?" +msgstr "Вы хотите удалить этот блок?" + +#: ../../include/class/ModuleTemplates.class.php:1280 +msgid "Delete this module" +msgstr "Удалить этот модуль" + +#: ../../include/class/ModuleTemplates.class.php:1282 +msgid "Do you want delete this module?" +msgstr "Вы хотите удалить этот модуль?" + +#: ../../include/class/ModuleTemplates.class.php:1473 +msgid "Do you want delete all templates?" +msgstr "Вы хотите удалить все шаблоны?" + +#: ../../include/class/ModuleTemplates.class.php:1476 +msgid "Do you want delete the selected templates?" +msgstr "Вы хотите удалить выбранные шаблоны?" + +#: ../../include/class/ConsoleSupervisor.php:809 +msgid "Limited mode." +msgstr "Ограниченный режим." + +#: ../../include/class/ConsoleSupervisor.php:821 +msgid "License is about to expire" +msgstr "Срок действия лицензии истекает" + +#: ../../include/class/ConsoleSupervisor.php:824 +msgid "Support is about to expire" +msgstr "Срок действия поддержки истекает" + +#: ../../include/class/ConsoleSupervisor.php:842 +msgid "Expired license" +msgstr "Просроченная лицензия" + +#: ../../include/class/ConsoleSupervisor.php:843 +msgid "Your license has expired. Please, contact our sales department." +msgstr "" +"Срок действия вашей лицензии истек. Пожалуйста, свяжитесь с нашим отделом " +"продаж." + +#: ../../include/class/ConsoleSupervisor.php:845 +msgid "Support expired" +msgstr "Срок поддержки истек" + +#: ../../include/class/ConsoleSupervisor.php:846 +msgid "" +"This license is outside of support. Please, contact our sales department." +msgstr "" +"Эта лицензия находится вне зоны службы поддержки. Пожалуйста, свяжитесь с " +"нашим отделом продаж." + +#: ../../include/class/ConsoleSupervisor.php:927 +msgid "Attachment directory is not writable" +msgstr "Каталог вложений недоступен для записи" + +#: ../../include/class/ConsoleSupervisor.php:929 +#, php-format +msgid "" +"Directory %s is not writable. Please, configure corresponding permissions." +msgstr "" +"Каталог %s не доступен для записи. Пожалуйста, настройте соответствующие " +"разрешения." + +#: ../../include/class/ConsoleSupervisor.php:949 +msgid "There are too many files in attachment directory" +msgstr "В каталоге вложений слишком много файлов" + +#: ../../include/class/ConsoleSupervisor.php:951 +#, php-format +msgid "" +"There are more than %d files in attachment, consider cleaning up attachment " +"directory manually." +msgstr "" +"Во вложении находится более %d файлов, подумайте о том, чтобы очистить " +"каталог вложений вручную." + +#: ../../include/class/ConsoleSupervisor.php:983 +msgid "Remote configuration directory is not readable" +msgstr "Дистанционный каталог конфигурации не доступен для чтения" + +#: ../../include/class/ConsoleSupervisor.php:985 +#, php-format +msgid "" +"Remote configuration directory %s is not readable. Please, adjust " +"configuration." +msgstr "" +"Дистанционный каталог конфигурации %s не доступен для чтения. Пожалуйста, " +"настройте конфигурацию." + +#: ../../include/class/ConsoleSupervisor.php:1002 +msgid "Remote configuration directory is not writable" +msgstr "Дистанционный каталог конфигурации недоступен для записи" + +#: ../../include/class/ConsoleSupervisor.php:1004 +#, php-format +msgid "" +"Remote configuration directory %s is not writable. Please, adjust " +"configuration." +msgstr "" +"Дистанционный каталог конфигурации %s недоступен для записи. Пожалуйста, " +"настройте конфигурацию." + +#: ../../include/class/ConsoleSupervisor.php:1020 +msgid "Remote collections directory is not writable" +msgstr "Дистанционный каталог коллекций недоступен для записи" + +#: ../../include/class/ConsoleSupervisor.php:1022 +#, php-format +msgid "" +"Collections directory %s is not writable. Please, adjust configuration." +msgstr "" +"Каталог коллекций %s недоступен для записи. Пожалуйста, настройте " +"конфигурацию." + +#: ../../include/class/ConsoleSupervisor.php:1038 +msgid "Remote md5 directory is not writable" +msgstr "Дистанционный каталог md5 не доступен для записи" + +#: ../../include/class/ConsoleSupervisor.php:1040 +#, php-format +msgid "MD5 directory %s is not writable. Please, adjust configuration." +msgstr "" +"Каталог md5 %s не доступен для записи. Пожалуйста, настройте конфигурацию." + +#: ../../include/class/ConsoleSupervisor.php:1068 +msgid "There are too much files in spool" +msgstr "В спуле слишком много файлов" + +#: ../../include/class/ConsoleSupervisor.php:1070 +#, php-format +msgid "" +"There are more than %d files in %s. Consider checking DataServer performance" +msgstr "" +"Более %d файлов находится в %s . Рассмотрите возможность проверки " +"производительности DataServer" + +#: ../../include/class/ConsoleSupervisor.php:1091 +msgid "There are too many BADXML files in spool" +msgstr "В спуле слишком много файлов BADXML" + +#: ../../include/class/ConsoleSupervisor.php:1093 +#, php-format +msgid "" +"There are more than %d files in %s. Consider checking software agents." +msgstr "Более %d файлов находится в %s. Проверьте программные агенты." + +#: ../../include/class/ConsoleSupervisor.php:1180 +#, php-format +msgid "%s (%s) is lacking performance." +msgstr "%s (%s) не хватает производительности." + +#: ../../include/class/ConsoleSupervisor.php:1249 +msgid "No servers available." +msgstr "Нет доступных серверов" + +#: ../../include/class/ConsoleSupervisor.php:1250 +msgid "" +"There are no servers registered in this console. Please, check installation " +"guide." +msgstr "" +"В этой консоли не зарегистрировано ни одного сервера. Пожалуйста, проверьте " +"руководство по установке." + +#: ../../include/class/ConsoleSupervisor.php:1296 +#, php-format +msgid "%s (%s) has crashed." +msgstr "%s (%s) подвергся сбою." + +#: ../../include/class/ConsoleSupervisor.php:1302 +#, php-format +msgid "%s (%s) has crashed, please check log files." +msgstr "%s (%s) подвергся сбою, пожалуйста, проверьте файлы журнала." + +#: ../../include/class/ConsoleSupervisor.php:1309 +#, php-format +msgid "%s (%s) is not running." +msgstr "%s (%s) не выполняется." + +#: ../../include/class/ConsoleSupervisor.php:1314 +#, php-format +msgid "" +"%s (%s) is not running. Please, check configuration file or remove this " +"server from server list." +msgstr "" +"%s (%s) не выполняется. Пожалуйста, проверьте файл конфигурации или удалите " +"этот сервер из списка серверов." + +#: ../../include/class/ConsoleSupervisor.php:1366 +msgid "No master servers found." +msgstr "Ведущие серверы не найдены." + +#: ../../include/class/ConsoleSupervisor.php:1367 +msgid "" +"At least one server must be defined to run as master. Please, check " +"documentation." +msgstr "" +"Как минимум один сервер должен быть определен для работы в качестве " +"ведущего. Пожалуйста, проверьте документацию." + +#: ../../include/class/ConsoleSupervisor.php:1418 +msgid "PHP safe mode is enabled. Some features may not work properly" +msgstr "" +"Безопасный режим PHP включен. Некоторые функции могут работать некорректно" + +#: ../../include/class/ConsoleSupervisor.php:1419 +msgid "" +"To disable it, go to your PHP configuration file (php.ini) and put safe_mode " +"= Off (Do not forget to restart apache process after changes)" +msgstr "" +"Чтобы отключить его, зайдите в файл конфигурации PHP (php.ini) и поставьте " +"safe_mode = Off (не забудьте перезапустить процесс apache после изменений)." + +#: ../../include/class/ConsoleSupervisor.php:1437 +#, php-format +msgid "'%s' value in PHP configuration is not recommended" +msgstr "Значение '%s' в конфигурации PHP не рекомендуется" + +#: ../../include/class/ConsoleSupervisor.php:1441 +#, php-format +msgid "Recommended value is %s" +msgstr "Рекомендуемое значение %s" + +#: ../../include/class/ConsoleSupervisor.php:1442 +#: ../../include/class/ConsoleSupervisor.php:1466 +msgid "Unlimited" +msgstr "Неограниченно" + +#: ../../include/class/ConsoleSupervisor.php:1443 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Do not forget to restart Apache process after)" +msgstr "" +"Пожалуйста, измените его в конфигурационном файле PHP (php.ini) или " +"обратитесь к администратору (не забудьте перезапустить процесс Apache после " +"этого)." + +#: ../../include/class/ConsoleSupervisor.php:1461 +#: ../../include/class/ConsoleSupervisor.php:1485 +#: ../../include/class/ConsoleSupervisor.php:1509 +#: ../../include/class/ConsoleSupervisor.php:1587 +#, php-format +msgid "Not recommended '%s' value in PHP configuration" +msgstr "Не рекомендуется значение '%s' в конфигурации PHP" + +#: ../../include/class/ConsoleSupervisor.php:1465 +#: ../../include/class/ConsoleSupervisor.php:1489 +#: ../../include/class/ConsoleSupervisor.php:1513 +#: ../../include/class/ConsoleSupervisor.php:1591 +#, php-format +msgid "Recommended value is: %s" +msgstr "Рекомендуемое значение: %s" + +#: ../../include/class/ConsoleSupervisor.php:1467 +#: ../../include/class/ConsoleSupervisor.php:1491 +#: ../../include/class/ConsoleSupervisor.php:1533 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Dont forget restart apache process after changes)" +msgstr "" +"Пожалуйста, измените его на своем конфигурационном файле PHP (php.ini) или " +"свяжитесь с администратором. (Не забудьте перезапустить процесс apache после " +"изменений)" + +#: ../../include/class/ConsoleSupervisor.php:1490 +#: ../../include/class/ConsoleSupervisor.php:1514 +#, php-format +msgid "%s or greater" +msgstr "% s или больше" + +#: ../../include/class/ConsoleSupervisor.php:1515 +#: ../../include/class/ConsoleSupervisor.php:1593 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator" +msgstr "" +"Пожалуйста, измените его на своем конфигурационном файле PHP (php.ini) или " +"свяжитесь с администратором." + +#: ../../include/class/ConsoleSupervisor.php:1532 +msgid "Problems with disable_functions in php.ini" +msgstr "Проблемы с disable_functions в php.ini" + +#: ../../include/class/ConsoleSupervisor.php:1533 +msgid "" +"The variable disable_functions contains functions system() or exec() in PHP " +"configuration file (php.ini)" +msgstr "" +"Переменная disable_functions содержит функции system() или exec() в " +"конфигурационном файле PHP (php.ini)" + +#: ../../include/class/ConsoleSupervisor.php:1550 +msgid "PhantomJS is not installed" +msgstr "PhantomJS не установлен" + +#: ../../include/class/ConsoleSupervisor.php:1551 +msgid "" +"To be able to create images of the graphs for PDFs, please install the " +"PhantomJS extension. For that, it is necessary to follow these steps:" +msgstr "" +"Чтобы иметь возможность создавать изображения графиков для PDF-файлов, " +"установите расширение PhantomJS. Для этого необходимо выполнить следующие " +"шаги:" + +#: ../../include/class/ConsoleSupervisor.php:1568 +msgid "PHP UPDATE REQUIRED" +msgstr "ТРЕБУЕТСЯ ОБНОВЛЕНИЕ PHP" + +#: ../../include/class/ConsoleSupervisor.php:1569 +#: ../../general/php7_message.php:30 +msgid "" +"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or " +"higher." +msgstr "" +"Для корректной работы PandoraFMS, PHP должен быть обновлен до версии 7.0 или " +"выше." + +#: ../../include/class/ConsoleSupervisor.php:1569 +#: ../../general/php7_message.php:31 +msgid "Otherwise, functionalities will be lost." +msgstr "В противном случае функциональные возможности будут утрачены." + +#: ../../include/class/ConsoleSupervisor.php:1569 +#: ../../general/php7_message.php:33 +msgid "Report download in PDF format" +msgstr "Загрузка отчета в формате PDF" + +#: ../../include/class/ConsoleSupervisor.php:1569 +#: ../../general/php7_message.php:34 +msgid "Emails Sending" +msgstr "Отправление электронных писем" + +#: ../../include/class/ConsoleSupervisor.php:1569 +#: ../../general/php7_message.php:35 +msgid "Metaconsole Collections" +msgstr "Коллекции Метаконсоли" + +#: ../../include/class/ConsoleSupervisor.php:1635 +msgid "Historical database not available" +msgstr "Историческая база данных недоступна" + +#: ../../include/class/ConsoleSupervisor.php:1636 +msgid "" +"Historical database is enabled, though not accessible with the current " +"configuration." +msgstr "" +"Историческая база данных включена, хотя и недоступна в текущей конфигурации." + +#: ../../include/class/ConsoleSupervisor.php:1679 +msgid "Database maintenance problem" +msgstr "Проблема с обслуживанием базы данных" + +#: ../../include/class/ConsoleSupervisor.php:1681 +#, php-format +msgid "" +"Your database hasn't been through maintenance for 48hrs. Please, check " +"documentation on how to perform this maintenance process on %s and enable it " +"as soon as possible." +msgstr "" +"Ваша база данных не проходила техническое обслуживание в течение 48 часов. " +"Пожалуйста, проверьте документацию о том, как выполнить этот процесс " +"обслуживания на %s и включите его как можно скорее." + +#: ../../include/class/ConsoleSupervisor.php:1741 +msgid "Historical database maintenance problem." +msgstr "Проблема с обслуживанием исторической базы данных." + +#: ../../include/class/ConsoleSupervisor.php:1743 +#, php-format +msgid "" +"Your historical database hasn't been through maintenance for 48hrs. Please, " +"check documentation on how to perform this maintenance process on %s and " +"enable it as soon as possible." +msgstr "" +"Ваша историческая база данных не проходила техническое обслуживание в " +"течение 48 часов. Пожалуйста, проверьте документацию о том, как выполнить " +"этот процесс обслуживания на %s и включите его как можно скорее." + +#: ../../include/class/ConsoleSupervisor.php:1781 +msgid "Historical database MR mismatch" +msgstr "Несоответствие исторической базы данных MR" + +#: ../../include/class/ConsoleSupervisor.php:1782 +msgid "" +"Your historical database is not using the same schema as the main DB. This " +"could produce anomalies while storing historical data." +msgstr "" +"Ваша историческая база данных не использует ту же схему, что и основная база " +"данных. Это может привести к аномалиям при хранении исторических данных." + +#: ../../include/class/ConsoleSupervisor.php:1822 +msgid "Log collector cannot connect to ElasticSearch" +msgstr "Коллектор журналов не может подключиться к ElasticSearch" + +#: ../../include/class/ConsoleSupervisor.php:1823 +msgid "ElasticSearch is not available using current configuration." +msgstr "ElasticSearch недоступен в текущей конфигурации." + +#: ../../include/class/ConsoleSupervisor.php:1892 +msgid "Metaconsole DB is not available." +msgstr "База данных Метаконсоли недоступна." + +#: ../../include/class/ConsoleSupervisor.php:1893 +msgid "Cannot connect with Metaconsole DB using current configuration." +msgstr "" +"Невозможно подключиться к БД Метаконсоли, используя текущую конфигурацию." + +#: ../../include/class/ConsoleSupervisor.php:1921 +msgid "Scheduled downtime running." +msgstr "Запланированная остановка находится в процессе работы." + +#: ../../include/class/ConsoleSupervisor.php:1922 +msgid "" +"A scheduled downtime is running. Some monitoring data won't be available " +"while downtime is taking place." +msgstr "" +"Запущена запланированная остановка. Во время остановки некоторые данные " +"мониторинга будут недоступны." + +#: ../../include/class/ConsoleSupervisor.php:2078 +msgid "Downtime scheduled soon." +msgstr "В ближайшее время произойдет запланированная остановка." + +#: ../../include/class/ConsoleSupervisor.php:2080 +#, php-format +msgid "" +"A scheduled downtime is going to be executed from %s to %s. Some monitoring " +"data won't be available while downtime is taking place." +msgstr "" +"Запланированная остановка будет выполнена с %s по %s. Во время остановки " +"некоторые данные мониторинга будут недоступны." + +#: ../../include/class/ConsoleSupervisor.php:2110 +msgid "This instance is not registered in the Update manager section" +msgstr "Этот экземпляр не зарегистрирован в разделе менеджера обновлений" + +#: ../../include/class/ConsoleSupervisor.php:2111 +msgid "" +"Click <a class=\"bolder underline\" href=\"javascript: " +"force_run_register();\"> here</a> to start the registration process" +msgstr "" +"Нажмите <a class=\"bolder underline\" href=\"javascript: " +"force_run_register();\">здесь</a>, чтобы начать процесс регистрации" + +#: ../../include/class/ConsoleSupervisor.php:2143 +msgid "Default password for \"Admin\" user has not been changed" +msgstr "Пароль по умолчанию для пользователя \"Admin\" не был изменен" + +#: ../../include/class/ConsoleSupervisor.php:2144 +msgid "" +"Please, change the default password since it is a commonly reported " +"vulnerability." +msgstr "" +"Пожалуйста, измените пароль по умолчанию, так как это часто сообщаемая " +"уязвимость." + +#: ../../include/class/ConsoleSupervisor.php:2179 +msgid "Default font doesn't exist" +msgstr "Шрифт по умолчанию не существует" + +#: ../../include/class/ConsoleSupervisor.php:2180 +msgid "" +"Your defined font doesn't exist or is not defined. Please, check font " +"parameters in your config" +msgstr "" +"Определенный вами шрифт не существует или не определен. Пожалуйста, " +"проверьте параметры шрифта в вашей конфигурации" + +#: ../../include/class/ConsoleSupervisor.php:2203 +msgid "Developer mode is enabled" +msgstr "Режим разработчик включен" + +#: ../../include/class/ConsoleSupervisor.php:2205 +#, php-format +msgid "" +"Your %s has the \"develop_bypass\" mode enabled. This is a developer mode " +"and should be disabled in a production environment. This value is located in " +"the main index.php file" +msgstr "" +"В вашем %s включен режим \"develop_bypass\". Это режим для разработчиков и " +"он должен быть отключен в производственной среде. Это значение находится в " +"главном файле index.php" + +#: ../../include/class/ConsoleSupervisor.php:2229 +msgid "Event storm protection is enabled." +msgstr "Защита от шторма событий включена." + +#: ../../include/class/ConsoleSupervisor.php:2230 +msgid "" +"Some events may get lost while this mode is enabled. The server must be " +"restarted after altering this setting." +msgstr "" +"При включении этого режима некоторые события могут быть потеряны. После " +"изменения этой настройки необходимо перезагрузить сервер." + +#: ../../include/class/ConsoleSupervisor.php:2256 +msgid "Failed to retrieve updates, please configure utility" +msgstr "Не удалось получить обновления, пожалуйста, настройте утилиту" + +#: ../../include/class/ConsoleSupervisor.php:2274 +#, php-format +msgid "New %s Console update" +msgstr "Новое обновление консоли %s" + +#: ../../include/class/ConsoleSupervisor.php:2277 +msgid "There is a new update available. Please<a class=\"bolder\" href=\"" +msgstr "Появилось новое обновление. Пожалуйста<a class=\"bolder\" href=\"" + +#: ../../include/class/ConsoleSupervisor.php:2311 +msgid "Minor release/s available" +msgstr "Доступны незначительные обновления" + +#: ../../include/class/ConsoleSupervisor.php:2313 +#, php-format +msgid "" +"There is one or more minor releases available. <a id=\"aviable_updates\" " +"target=\"blank\" href=\"%s\">.About minor release update</a>." +msgstr "" +"Доступно одно или несколько незначительных обновлений. <a " +"id=\"aviable_updates\" target=\"blank\" href=\"%s\">.Больше о незначительных " +"обновлениях</a>." + +#: ../../include/class/ConsoleSupervisor.php:2341 +msgid "Discovery relies on an appropriate cron setup." +msgstr "Discovery зависит от соответствующей настройки cron." + +#: ../../include/class/ConsoleSupervisor.php:2357 +msgid "Please, make sure process is not locked." +msgstr "Пожалуйста, убедитесь, что процесс не заблокирован." + +#: ../../include/class/ConsoleSupervisor.php:2363 +msgid "DiscoveryConsoleTasks is not configured." +msgstr "DiscoveryConsoleTasks не настроено." + +#: ../../include/class/ConsoleSupervisor.php:2470 +#, php-format +msgid "%s version misaligned with Console" +msgstr "Версия %s несовместима с версией Консоли" + +#: ../../include/class/ConsoleSupervisor.php:2474 +#, php-format +msgid "" +"Server %s and this console have different versions. This might cause several " +"malfunctions. Please, update this server." +msgstr "" +"Сервер %s и эта консоль имеют разные версии. Это может привести к нескольким " +"сбоям в работе. Пожалуйста, обновите этот сервер." + +#: ../../include/class/ConsoleSupervisor.php:2526 +msgid "AllowOverride is disabled" +msgstr "AllowOverride отключено" + +#: ../../include/class/ConsoleSupervisor.php:2572 +msgid "Desynchronized operation on the node " +msgstr "Десинхронизированная операция на узле " + +#: ../../include/class/ConsoleSupervisor.php:2595 +msgid "Pandora FMS console log file changed location" +msgstr "Изменено местоположение файла журнала консоли Pandora FMS" + +#: ../../include/class/ConsoleSupervisor.php:2599 +#, php-format +msgid "" +"Pandora FMS console log file has been moved to new location %s/log. " +"Currently you have an outdated and inoperative version of this file at %s. " +"Please, consider deleting it." +msgstr "" +"Файл журнала консоли Pandora FMS был перемещен в новое место %s/log. В " +"настоящее время вы имеете устаревшую и неработоспособную версию этого файла " +"в %s. Пожалуйста, подумайте о его удалении." + +#: ../../include/class/ConsoleSupervisor.php:2634 +msgid "Pandora FMS audit log file changed location" +msgstr "Изменено местоположение файла журнала аудита Pandora FMS" + +#: ../../include/class/ConsoleSupervisor.php:2638 +#, php-format +msgid "" +"Pandora FMS audit log file has been moved to new location %s/log. Currently " +"you have an outdated and inoperative version of this file at %s. Please, " +"consider deleting it." +msgstr "" +"Файл журнала аудита Pandora FMS был перемещен в новое местоположение %s/log. " +"В настоящее время у вас есть устаревшая и неработоспособная версия этого " +"файла в %s. Пожалуйста, подумайте о его удалении." + +#: ../../include/class/WelcomeWindow.class.php:157 +msgid "Welcome to" +msgstr "Добро пожаловать в" + +#: ../../include/class/WelcomeWindow.class.php:158 +msgid "Do not show anymore" +msgstr "Не показывать больше" + +#: ../../include/class/WelcomeWindow.class.php:167 +msgid "Cancel Configuration Window" +msgstr "Отмена окна конфигурации" + +#: ../../include/class/WelcomeWindow.class.php:172 +msgid "Are you sure you want to cancel this tutorial?" +msgstr "Вы уверены, что хотите отменить этот обучающий курс?" + +#: ../../include/class/WelcomeWindow.class.php:428 +msgid "Please ensure mail configuration matches your needs" +msgstr "Убедитесь, что конфигурация почты соответствует вашим потребностям" + +#: ../../include/class/WelcomeWindow.class.php:462 +msgid "Create an agent" +msgstr "Создать агента" + +#: ../../include/class/WelcomeWindow.class.php:487 +msgid "Create a module to check if an agent is online" +msgstr "Создать модуль для проверки наличия агента в сети" + +#: ../../include/class/WelcomeWindow.class.php:512 +msgid "Be warned if something is wrong, create an alert on the module" +msgstr "" +"Будьте предупреждены, если что-то не так, создайте предупреждение на модуле" + +#: ../../include/class/WelcomeWindow.class.php:537 +msgid "Discover hosts and devices in your network" +msgstr "Обнаружение узлов и устройств в вашей сети" + +#: ../../include/class/WelcomeWindow.class.php:565 +msgid "" +"If something is not working as expected, look for this icon and report!" +msgstr "" +"Если что-то работает не так, как ожидалось, найдите этот значок и сообщите " +"об этом!" + +#: ../../include/class/AgentWizard.class.php:448 +msgid "There are not defined Remote components for this performance." +msgstr "Для этого процесса не определены дистанционные компоненты." + +#: ../../include/class/AgentWizard.class.php:572 +msgid "SNMP Walk" +msgstr "SNMP инвентаризация" + +#: ../../include/class/AgentWizard.class.php:577 +msgid "WMI Explorer" +msgstr "WMI Explorer" + +#: ../../include/class/AgentWizard.class.php:650 +msgid "Use agent IP" +msgstr "Использовать IP агента" + +#: ../../include/class/AgentWizard.class.php:665 +msgid "namespace" +msgstr "область имён" + +#: ../../include/class/AgentWizard.class.php:835 +msgid "User authentication" +msgstr "Аутентификация пользователя" + +#: ../../include/class/AgentWizard.class.php:864 +msgid "Password authentication" +msgstr "Аутентификация по паролю" + +#: ../../include/class/AgentWizard.class.php:1017 +#, php-format +msgid "The PEN (%s) is not registered." +msgstr "PEN (%s) не зарегистрирован." + +#: ../../include/class/AgentWizard.class.php:1104 +msgid "The SNMP Walk does not return anything with the received arguments." +msgstr "SNMP Walk ничего не возвращает с полученными аргументами." + +#: ../../include/class/AgentWizard.class.php:1157 +#, php-format +msgid "The target host response with an error: %s" +msgstr "Ответ целевого хоста с ошибкой: %s" + +#: ../../include/class/AgentWizard.class.php:1207 +msgid "No selected modules" +msgstr "Нет избранных модулей" + +#: ../../include/class/AgentWizard.class.php:1244 +msgid "Module exist in policy" +msgstr "Модуль существует в политике" + +#: ../../include/class/AgentWizard.class.php:1254 +msgid "Module exist in agent" +msgstr "Модуль существует в агенте" + +#: ../../include/class/AgentWizard.class.php:1261 +msgid "Module with the same name in the module creation list" +msgstr "Модуль с таким же именем в списке создания модулей" + +#: ../../include/class/AgentWizard.class.php:1562 +#, php-format +msgid "Module \"%s\" exits in this policy" +msgstr "Модуль \"%s\" выходит из этой политики" + +#: ../../include/class/AgentWizard.class.php:1660 +#: ../../include/class/AgentWizard.class.php:2067 +#, php-format +msgid "Module %s module_exec not configuration" +msgstr "Модуль %s module_exec не конфигурирован" + +#: ../../include/class/AgentWizard.class.php:1801 +#: ../../include/class/AgentWizard.class.php:2240 +#, php-format +msgid "Module %s satellite execution not configuration" +msgstr "Работа модуля %s satellite не настроен" + +#: ../../include/class/AgentWizard.class.php:1891 +#, php-format +msgid "Module \"%s\" problems insert in bbdd" +msgstr "Проблемы со вставкой модуля \"%s\" в БД" + +#: ../../include/class/AgentWizard.class.php:1899 +#: ../../include/class/AgentWizard.class.php:2321 +msgid "Modules created" +msgstr "Созданы модули" + +#: ../../include/class/AgentWizard.class.php:1929 +#, php-format +msgid "Module \"%s\" exits in this agent" +msgstr "Модуль \"%s\" завершает работу этого агента" + +#: ../../include/class/AgentWizard.class.php:2507 +msgid "Select all filtered interfaces" +msgstr "Выберите все отфильтрованные интерфейсы" + +#: ../../include/class/AgentWizard.class.php:2530 +msgid "OperStatus UP" +msgstr "OperStatus UP" + +#: ../../include/class/AgentWizard.class.php:2541 +msgid "AdminStatus UP" +msgstr "AdminStatus UP" + +#: ../../include/class/AgentWizard.class.php:3222 +msgid "No information could be retrieved." +msgstr "Никакой информации получить не удалось." + +#: ../../include/class/AgentWizard.class.php:3504 +msgid "Create modules" +msgstr "Создать модули" + +#: ../../include/class/AgentWizard.class.php:3813 +msgid "Add general monitoring for all selected interfaces" +msgstr "Добавить общий мониторинг для всех выбранных интерфейсов" + +#: ../../include/class/AgentWizard.class.php:3834 +#: ../../include/class/AgentWizard.class.php:3835 +#: ../../include/class/AgentWizard.class.php:3854 +#: ../../include/class/AgentWizard.class.php:3855 +msgid "Modules selected" +msgstr "Выбраны модули" + +#: ../../include/class/AgentWizard.class.php:3921 +msgid "Module info" +msgstr "Информация о модуле" + +#: ../../include/class/AgentWizard.class.php:3950 +msgid "Current value" +msgstr "Текущее значение" + +#: ../../include/class/AgentWizard.class.php:5360 +#, php-format +msgid "The operation '%s' is not permitted. Review for remote components." +msgstr "" +"Операция '%s' не разрешена. Проверьте наличие дистанционных компонентов." + +#: ../../include/class/AgentWizard.class.php:5771 +msgid "Modules about to be created" +msgstr "Модули, которые будут созданы" + +#: ../../include/class/AgentWizard.class.php:5775 +msgid "Loading, this operation might take several minutes..." +msgstr "Загрузка, эта операция может занять несколько минут..." + +#: ../../include/class/ExternalTools.class.php:179 +msgid "Changes successfully saved." +msgstr "Изменения успешно сохранены." + +#: ../../include/class/ExternalTools.class.php:180 +msgid "Changes not saved." +msgstr "Изменения не сохранены." + +#: ../../include/class/ExternalTools.class.php:223 +#: ../../include/class/ExternalTools.class.php:251 +#: ../../include/class/ExternalTools.class.php:279 +msgid "Play sound" +msgstr "Воспроизводить звук" + +#: ../../include/class/ExternalTools.class.php:297 +msgid "Traceroute path" +msgstr "Трассировка пути" + +#: ../../include/class/ExternalTools.class.php:300 +msgid "Ping path" +msgstr "Пинг путь" + +#: ../../include/class/ExternalTools.class.php:303 +msgid "Nmap path" +msgstr "Nmap Путь" + +#: ../../include/class/ExternalTools.class.php:306 +msgid "Dig path" +msgstr "Dig путь" + +#: ../../include/class/ExternalTools.class.php:309 +msgid "Snmpget path" +msgstr "Snmpget Путь" + +#: ../../include/class/ExternalTools.class.php:315 +msgid "Custom commands" +msgstr "Пользовательские команды" + +#: ../../include/class/ExternalTools.class.php:326 +msgid "Add new custom command" +msgstr "Добавьте новую пользовательскую команду" + +#: ../../include/class/ExternalTools.class.php:336 +msgid "" +"Adding `_address_` macro will use agent's IP when perform the execution" +msgstr "" +"Добавление макроса `_address_` будет использовать IP агента при выполнении " +"задания" + +#: ../../include/class/ExternalTools.class.php:420 +msgid "Delete this custom command" +msgstr "Удалите эту пользовательскую команду" + +#: ../../include/class/ExternalTools.class.php:478 +msgid "The agent hasn't got IP" +msgstr "агент не получил IP" + +#: ../../include/class/ExternalTools.class.php:495 +msgid "Traceroute" +msgstr "Трассировка" + +#: ../../include/class/ExternalTools.class.php:496 +msgid "Ping host & Latency" +msgstr "Пинг хоста & Задержка" + +#: ../../include/class/ExternalTools.class.php:497 +msgid "SNMP Interface status" +msgstr "Статус SNMP интерфейса" + +#: ../../include/class/ExternalTools.class.php:498 +msgid "Basic TCP Port Scan" +msgstr "Основные TCP Порт сканирования" + +#: ../../include/class/ExternalTools.class.php:499 +msgid "DiG/Whois Lookup" +msgstr "DiG/Whois Поиск" + +#: ../../include/class/ExternalTools.class.php:524 +msgid "Please select" +msgstr "Пожалуйста, выберите" + +#: ../../include/class/ExternalTools.class.php:529 +msgid "IP Adress" +msgstr "IP-адрес" + +#: ../../include/class/ExternalTools.class.php:541 +msgid "SNMP Version" +msgstr "Версия SNMP" + +#: ../../include/class/ExternalTools.class.php:693 +msgid "No command for perform" +msgstr "Нет команды для выполнения" + +#: ../../include/class/ExternalTools.class.php:698 +msgid "" +"Something went wrong while perform the execution. Please check the " +"configuration." +msgstr "" +"Что-то пошло не так во время выполнения. Пожалуйста, проверьте конфигурацию." + +#: ../../include/class/ExternalTools.class.php:734 +msgid "SNMP information for " +msgstr "SNMP Информация для " + +#: ../../include/class/ExternalTools.class.php:739 +#: ../../include/class/ExternalTools.class.php:751 +msgid "Target unreachable." +msgstr "Цель недостижима." + +#: ../../include/class/ExternalTools.class.php:742 +msgid "Uptime" +msgstr "Время работы" + +#: ../../include/class/ExternalTools.class.php:754 +msgid "Device info" +msgstr "информация об устройстве" + +#: ../../include/class/ExternalTools.class.php:765 +msgid "Interface" +msgstr "Интерфейс" + +#: ../../include/class/ExternalTools.class.php:796 +msgid "Domain and IP information for " +msgstr "Домен и IP информации для " + +#: ../../include/class/ExternalTools.class.php:801 +msgid "Dig executable does not exist." +msgstr "Dig исполнение не существует." + +#: ../../include/class/ExternalTools.class.php:809 +msgid "Whois executable does not exist." +msgstr "Whois исполнение не существует." + +#: ../../include/class/ExternalTools.class.php:820 +msgid "Traceroute executable does not exist." +msgstr "Выполняемая трассировка не существует." + +#: ../../include/class/ExternalTools.class.php:823 +#, php-format +msgid "Traceroute to %s" +msgstr "Traceroute к %s" + +#: ../../include/class/ExternalTools.class.php:831 +msgid "Ping executable does not exist." +msgstr "Выполнение переброса не существует." + +#: ../../include/class/ExternalTools.class.php:834 +#, php-format +msgid "Ping to %s" +msgstr "Ping к %s" + +#: ../../include/class/ExternalTools.class.php:842 +msgid "Nmap executable does not exist." +msgstr "Nmap выполнение не существует." + +#: ../../include/class/ExternalTools.class.php:845 +#, php-format +msgid "Basic TCP Scan on %s" +msgstr "Базовое сканирование TCP на %s" + +#: ../../include/class/ExternalTools.class.php:863 +#, php-format +msgid "Performing %s execution on %s" +msgstr "Выполнение %s на %s" + +#: ../../include/class/ExternalTools.class.php:865 +#, php-format +msgid "Performing %s execution" +msgstr "Выполнение %s" + +#: ../../include/functions_reporting.php:369 +msgid " agents" +msgstr " агенты" + +#: ../../include/functions_reporting.php:379 +msgid " modules" +msgstr " модули" + +#: ../../include/functions_reporting.php:1457 +msgid "Top N" +msgstr "Топ N" + +#: ../../include/functions_reporting.php:1585 +msgid "Insuficient data" +msgstr "Недостаточные данные" + +#: ../../include/functions_reporting.php:1836 +msgid "Event Report Group" +msgstr "Группа отчетов о событиях" + +#: ../../include/functions_reporting.php:1872 +msgid "Exclude " +msgstr "Исключить " + +#: ../../include/functions_reporting.php:2120 +msgid "Event Report Module" +msgstr "Модуль отчетов о событиях" + +#: ../../include/functions_reporting.php:2461 +msgid "Agent/Modules" +msgstr "Агент/Модули" + +#: ../../include/functions_reporting.php:2560 +msgid "Exception - Everything" +msgstr "Исключения - Все" + +#: ../../include/functions_reporting.php:2566 +#, php-format +msgid "Exception - Modules over or equal to %s" +msgstr "Исключения - Модули выше или равные %s" + +#: ../../include/functions_reporting.php:2569 +#, php-format +msgid "Modules over or equal to %s" +msgstr "Модули больше или равны %s" + +#: ../../include/functions_reporting.php:2574 +#, php-format +msgid "Exception - Modules under or equal to %s" +msgstr "Исключения - Модули ниже или равные %s" + +#: ../../include/functions_reporting.php:2577 +#, php-format +msgid "Modules under or equal to %s" +msgstr "Модули меньше или равны %s" + +#: ../../include/functions_reporting.php:2582 +#, php-format +msgid "Exception - Modules under %s" +msgstr "Исключения - Модули ниже %s" + +#: ../../include/functions_reporting.php:2585 +#, php-format +msgid "Modules under %s" +msgstr "Модули под %s" + +#: ../../include/functions_reporting.php:2590 +#, php-format +msgid "Exception - Modules over %s" +msgstr "Исключения - Модули выше %s" + +#: ../../include/functions_reporting.php:2593 +#, php-format +msgid "Modules over %s" +msgstr "Модули более %s" + +#: ../../include/functions_reporting.php:2598 +#, php-format +msgid "Exception - Equal to %s" +msgstr "Исключение - Равно %s" + +#: ../../include/functions_reporting.php:2601 +#, php-format +msgid "Equal to %s" +msgstr "Равно %s" + +#: ../../include/functions_reporting.php:2606 +#, php-format +msgid "Exception - Not equal to %s" +msgstr "Исключения - Не равные %s" + +#: ../../include/functions_reporting.php:2609 +#, php-format +msgid "Not equal to %s" +msgstr "Не равно %s" + +#: ../../include/functions_reporting.php:2613 +msgid "Exception - Modules at normal status" +msgstr "Исключения - Модули в нормальном статусе" + +#: ../../include/functions_reporting.php:2614 +msgid "Modules at normal status" +msgstr "Модули в нормальном статусе" + +#: ../../include/functions_reporting.php:2618 +msgid "Exception - Modules at critical or warning status" +msgstr "Исключения - Модули в критическом статусе или статусе опасности" + +#: ../../include/functions_reporting.php:2619 +msgid "Modules at critical or warning status" +msgstr "Модули в критическом статусе или статусе опасности" + +#: ../../include/functions_reporting.php:2837 +msgid "There are no Modules under those conditions." +msgstr "При таких условиях Модули отсутствуют." + +#: ../../include/functions_reporting.php:2841 +#, php-format +msgid "There are no Modules over or equal to %s." +msgstr "Нет Модулей больше или равных %s." + +#: ../../include/functions_reporting.php:2845 +#, php-format +msgid "There are no Modules less or equal to %s." +msgstr "Нет модулей, меньших или равных %s." + +#: ../../include/functions_reporting.php:2849 +#, php-format +msgid "There are no Modules less %s." +msgstr "Нет модулей меньше %s." + +#: ../../include/functions_reporting.php:2853 +#, php-format +msgid "There are no Modules over %s." +msgstr "Нет модулей больше %s." + +#: ../../include/functions_reporting.php:2857 +#, php-format +msgid "There are no Modules equal to %s" +msgstr "Нет модулей, равных %s" + +#: ../../include/functions_reporting.php:2861 +#, php-format +msgid "There are no Modules not equal to %s" +msgstr "Нет модулей, не равных %s" + +#: ../../include/functions_reporting.php:2865 +msgid "There are no Modules normal status" +msgstr "Модули в нормальном статусе отсутствуют" + +#: ../../include/functions_reporting.php:2869 +msgid "There are no Modules at critial or warning status" +msgstr "Здесь нет Модулей в критическом статусе или статусе опасности" + +#: ../../include/functions_reporting.php:3206 +msgid "Event Report Agent" +msgstr "Агент отчетов о событиях" + +#: ../../include/functions_reporting.php:3569 +msgid "Database Serialized" +msgstr "Сериализованная база данных" + +#: ../../include/functions_reporting.php:3750 +msgid "Last Value" +msgstr "Последнее значение" + +#: ../../include/functions_reporting.php:4054 +msgid "Network interfaces report" +msgstr "Отчет о сетевых интерфейсах" + +#: ../../include/functions_reporting.php:4157 +msgid "" +"The group has no agents or none of the agents has any network interface" +msgstr "" +"В группе нет агентов или ни один из агентов не имеет сетевого интерфейса" + +#: ../../include/functions_reporting.php:4178 +msgid "bytes/s" +msgstr "байт/с" + +#: ../../include/functions_reporting.php:4385 +#: ../../include/functions_reporting.php:4402 +#: ../../include/functions_reporting.php:4419 +msgid "Not triggered" +msgstr "Не сработало" + +#: ../../include/functions_reporting.php:4845 +msgid "SQL Graph Vertical Bars" +msgstr "SQL График Вертикальные полосы" + +#: ../../include/functions_reporting.php:4849 +msgid "SQL Graph Horizontal Bars" +msgstr "SQL График Горизонтальные полосы" + +#: ../../include/functions_reporting.php:4853 +msgid "SQL Graph Pie" +msgstr "Круговая диаграмма SQL" + +#: ../../include/functions_reporting.php:5088 +msgid "Unknown report" +msgstr "Неизвестный отчет" + +#: ../../include/functions_reporting.php:5165 +msgid "Prediction Date" +msgstr "Дата прогноза" + +#: ../../include/functions_reporting.php:6066 +msgid "" +"Illegal query: Due security restrictions, there are some tokens or words you " +"cannot use: *, delete, drop, alter, modify, password, pass, insert or update." +msgstr "" +"Недопустимый запрос: Из-за ограничений безопасности есть некоторые маркеры " +"или слова, которые нельзя использовать: *, delete, drop, alter, modify, " +"password, pass, insert или update." + +#: ../../include/functions_reporting.php:7372 +#: ../../include/functions_reporting.php:8088 +msgid "No Address" +msgstr "Нет адреса" + +#: ../../include/functions_reporting.php:8379 +msgid "" +"The monitor have no data in this range of dates or monitor type is not " +"numeric" +msgstr "" +"Монитор не имеет данных в этом диапазоне дат или тип монитора не является " +"числовым" + +#: ../../include/functions_reporting.php:8397 +msgid "The monitor type is not numeric" +msgstr "Тип монитора не является числовым" + +#: ../../include/functions_reporting.php:8766 +msgid "Maximum" +msgstr "Максимум" + +#: ../../include/functions_reporting.php:8870 +msgid "Automatic combined graph" +msgstr "Автоматический комбинированный график" + +#: ../../include/functions_reporting.php:9685 +msgid "Maximum of events shown" +msgstr "Максимальное количество показанных событий" + +#: ../../include/functions_reporting.php:10261 +#: ../../include/functions_reporting.php:10285 +msgid "Server health" +msgstr "Стабильность сервера" + +#: ../../include/functions_reporting.php:10261 +#, php-format +msgid "%d Downed servers" +msgstr "%d серверов, вышедших из строя" + +#: ../../include/functions_reporting.php:10266 +#: ../../include/functions_reporting.php:10289 +msgid "Monitor health" +msgstr "Мониторинг состояния" + +#: ../../include/functions_reporting.php:10266 +#, php-format +msgid "%d Not Normal monitors" +msgstr "%d Необычных приборов контроля" + +#: ../../include/functions_reporting.php:10266 +#: ../../include/functions_reporting.php:10290 +msgid "of monitors up" +msgstr "поднятых приборов контроля" + +#: ../../include/functions_reporting.php:10271 +#: ../../include/functions_reporting.php:10293 +msgid "Module sanity" +msgstr "Необходимость модуля" + +#: ../../include/functions_reporting.php:10271 +#, php-format +msgid "%d Not inited monitors" +msgstr "%d Не инициализированных приборов контроля" + +#: ../../include/functions_reporting.php:10271 +#: ../../include/functions_reporting.php:10294 +msgid "of total modules inited" +msgstr "из всего запущенных модулей" + +#: ../../include/functions_reporting.php:10276 +#: ../../include/functions_reporting.php:11363 +#: ../../include/functions_reporting.php:11373 +#, php-format +msgid "%d Fired alerts" +msgstr "%d Запущенных оповещений" + +#: ../../include/functions_reporting.php:10276 +#: ../../include/functions_reporting.php:10298 +msgid "of defined alerts not fired" +msgstr "из определенных предупреждений, не запущенных" + +#: ../../include/functions_reporting.php:10370 +msgid "Defined and fired alerts" +msgstr "Определенные и запущеные оповещения" + +#: ../../include/functions_reporting.php:10549 +msgid "Defined users" +msgstr "Определенные пользователи" + +#: ../../include/functions_reporting.php:11220 +msgid "Agent without data" +msgstr "Агент без данных" + +#: ../../include/functions_reporting.php:11359 +#, php-format +msgid "%d Normal modules" +msgstr "%d Обычные модули" + +#: ../../include/functions_reporting.php:11360 +#, php-format +msgid "%d Critical modules" +msgstr "%d Критические модули" + +#: ../../include/functions_reporting.php:11361 +#, php-format +msgid "%d Warning modules" +msgstr "%d модули в опасности" + +#: ../../include/functions_reporting.php:11362 +#, php-format +msgid "%d Unknown modules" +msgstr "%d Неизвестные модули" + +#: ../../include/functions_reporting.php:11367 +#, php-format +msgid "%d Total agents" +msgstr "%d Всего агентов" + +#: ../../include/functions_reporting.php:11368 +#, php-format +msgid "%d Normal agents" +msgstr "%d Обычные агенты" + +#: ../../include/functions_reporting.php:11369 +#, php-format +msgid "%d Critical agents" +msgstr "%d Критические агенты" + +#: ../../include/functions_reporting.php:11370 +#, php-format +msgid "%d Warning agents" +msgstr "%d предупреждающие агенты" + +#: ../../include/functions_reporting.php:11371 +#, php-format +msgid "%d Unknown agents" +msgstr "%d Неизвестные агенты" + +#: ../../include/functions_reporting.php:11372 +#, php-format +msgid "%d not init agents" +msgstr "%d не инициированные агенты" + +#: ../../include/functions_reporting.php:12800 +msgid "Total running modules" +msgstr "Всего работающих модулей" + +#: ../../include/functions_reporting.php:12803 +#: ../../include/functions_reporting.php:12818 +#: ../../include/functions_reporting.php:12830 +#: ../../include/functions_reporting.php:12848 +#: ../../include/functions_reporting.php:12860 +#: ../../include/functions_reporting.php:12872 +#: ../../include/functions_reporting.php:12884 +msgid "Ratio" +msgstr "Коэффициент" + +#: ../../include/functions_reporting.php:12803 +#: ../../include/functions_reporting.php:12818 +#: ../../include/functions_reporting.php:12830 +#: ../../include/functions_reporting.php:12848 +#: ../../include/functions_reporting.php:12860 +#: ../../include/functions_reporting.php:12872 +#: ../../include/functions_reporting.php:12884 +msgid "Modules by second" +msgstr "Модули по второму" + +#: ../../include/functions_reporting.php:12815 +msgid "Local modules" +msgstr "Локальные модули" + +#: ../../include/functions_reporting.php:12825 +msgid "Network modules" +msgstr "Сетевые модули" + +#: ../../include/functions_reporting.php:12844 +msgid "Plugin modules" +msgstr "Плагин модулей" + +#: ../../include/functions_reporting.php:12856 +msgid "Prediction modules" +msgstr "Прогнозирование модулей" + +#: ../../include/functions_reporting.php:12868 +msgid "WMI modules" +msgstr "WMI Модулей" + +#: ../../include/functions_reporting.php:12880 +msgid "Web modules" +msgstr "Веб модули" + +#: ../../include/functions_reporting.php:12918 +#: ../../include/lib/Dashboard/Widgets/tactical.php:274 +msgid "Server performance" +msgstr "производительность сервера" + +#: ../../include/functions_reporting.php:13037 +msgid "Weekly:" +msgstr "Еженедельно:" + +#: ../../include/functions_reporting.php:13079 +msgid "Monthly:" +msgstr "Ежемесячно:" + +#: ../../include/functions_reporting.php:13080 +msgid "From day" +msgstr "Со дня" + +#: ../../include/functions_reporting.php:13081 +msgid "To day" +msgstr "До дня" + +#: ../../include/functions_reporting.php:13610 +msgid "Module Histogram Graph" +msgstr "График гистограммы модуля" + +#: ../../include/functions_filemanager.php:168 +#: ../../include/functions_filemanager.php:206 +#: ../../include/functions_filemanager.php:282 +#: ../../include/functions_filemanager.php:362 +msgid "Security error" +msgstr "Ошибка безопасности" + +#: ../../include/functions_filemanager.php:178 +msgid "Upload error" +msgstr "Ошибка загрузки" + +#: ../../include/functions_filemanager.php:185 +#: ../../include/functions_filemanager.php:230 +#: ../../include/functions_filemanager.php:297 +msgid "Upload correct" +msgstr "Правильно загружено" + +#: ../../include/functions_filemanager.php:216 +msgid "Attach error" +msgstr "Ошибка прикрепления" + +#: ../../include/functions_filemanager.php:243 +msgid "" +"File size seems to be too large. Please check your php.ini configuration or " +"contact with the administrator" +msgstr "" +"Размер файла кажется слишком большим. Проверьте конфигурацию php.ini или " +"свяжитесь с администратором" + +#: ../../include/functions_filemanager.php:291 +msgid "Error creating file" +msgstr "Ошибка при создании файла" + +#: ../../include/functions_filemanager.php:303 +#: ../../include/functions_filemanager.php:342 +msgid "Error creating file with empty name" +msgstr "Ошибка при создании файла с пыстым именем" + +#: ../../include/functions_filemanager.php:338 +msgid "Directory created" +msgstr "Каталог создан" + +#: ../../include/functions_filemanager.php:553 +#: ../../include/functions_filemanager.php:793 +msgid "Create a Directory" +msgstr "Создать каталог" + +#: ../../include/functions_filemanager.php:557 +#: ../../include/functions_filemanager.php:801 +#: ../../include/functions_filemanager.php:804 +msgid "Create a Text" +msgstr "Создать текст" + +#: ../../include/functions_filemanager.php:561 +#: ../../include/functions_filemanager.php:812 +#: ../../include/functions_filemanager.php:815 +msgid "Upload Files" +msgstr "Загрузить файлы" + +#: ../../include/functions_filemanager.php:592 +#, php-format +msgid "Directory %s doesn't exist!" +msgstr "Каталог %s не существует!" + +#: ../../include/functions_filemanager.php:642 +msgid "Parent directory" +msgstr "Родительский каталог" + +#: ../../include/functions_filemanager.php:656 +msgid "Directory" +msgstr "Каталог" + +#: ../../include/functions_filemanager.php:664 +msgid "Compressed file" +msgstr "сжатый файл" + +#: ../../include/functions_filemanager.php:668 +#: ../../include/functions_filemanager.php:675 +msgid "Text file" +msgstr "Текстовый файл" + +#: ../../include/functions_filemanager.php:708 +msgid "This file could be executed by any user" +msgstr "Этот файл может быть выполнен любым пользователем" + +#: ../../include/functions_filemanager.php:709 +msgid "Make sure it can't perform dangerous tasks" +msgstr "Убедитесь, что он не может выполнять опасные задачи" + +#: ../../include/functions_filemanager.php:776 +msgid "No files or directories to show." +msgstr "Нет файлов или каталогов для показа." + +#: ../../include/functions_filemanager.php:790 +#: ../../include/functions_filemanager.php:835 +msgid "Create directory" +msgstr "Создать каталог" + +#: ../../include/functions_filemanager.php:823 +msgid "The zip upload in this dir, easy to upload multiple files." +msgstr "" +"Заархивированный файл загружен в этом каталоге, легче загружать сразу " +"несколько файлов." + +#: ../../include/functions_filemanager.php:823 +msgid "Decompress" +msgstr "Декомпрессировать" + +#: ../../include/functions_filemanager.php:846 +msgid "Create text" +msgstr "Создание текстового объекта" + +#: ../../include/functions_filemanager.php:857 +msgid "Upload file/s" +msgstr "Загрузить файл/ы" + +#: ../../include/functions_filemanager.php:866 +msgid "The directory is read-only" +msgstr "Журнал - чтение только" + +#: ../../include/functions_tags.php:707 +msgid "Click here to open a popup window with URL tag" +msgstr "Нажмите здесь, чтобы открыть всплывающее окно с URL тегом" + +#: ../../include/lib/Dashboard/Manager.php:598 +#, php-format +msgid "Copy of %s" +msgstr "Копия %s" + +#: ../../include/lib/Dashboard/Manager.php:987 +msgid "Error create or update dashboard" +msgstr "Ошибка при создании или обновлении приборной панели" + +#: ../../include/lib/Dashboard/Manager.php:1460 +msgid "Icon image dashboard" +msgstr "Приборная панель с изображением иконки" + +#: ../../include/lib/Dashboard/Widget.php:442 +#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:227 +#: ../../include/lib/Dashboard/Widgets/reports.php:274 +#, php-format +msgid "Failed to connect to node %d" +msgstr "Не удалось подключиться к узлу %d" + +#: ../../include/lib/Dashboard/Widget.php:457 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:581 +msgid "Please configure this widget before usage" +msgstr "Пожалуйста, настройте этот виджет перед использованием" + +#: ../../include/lib/Dashboard/Widget.php:465 +msgid "Widget cannot be loaded" +msgstr "Виджет не может быть загружен" + +#: ../../include/lib/Dashboard/Widget.php:469 +msgid "Please, configure the widget again to recover it" +msgstr "Пожалуйста, настройте виджет снова для его восстановления" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:158 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:481 +msgid "General group status" +msgstr "Общий статус группы" + +#: ../../include/lib/Dashboard/Widgets/groups_status.php:435 +msgid "Not agents in this group" +msgstr "Нет агентов в этой группе" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:158 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:622 +msgid "Groups status" +msgstr "Статус групп" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:314 +msgid "Alert Fired" +msgstr "Предупреждение сработало" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:522 +msgid "Modules in normal status" +msgstr "Модули в нормальном статусе" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:538 +msgid "Modules in warning status" +msgstr "Модули в статусе опасности" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:555 +msgid "Modules in critical status" +msgstr "Модули в критическом статусе" + +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:601 +msgid "No modules in selected groups" +msgstr "Нет модулей в выбранных группах" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:174 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:481 +msgid "SLA percentage" +msgstr "Процент SLA" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:343 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:408 +#: ../../include/lib/Dashboard/Widgets/module_value.php:325 +msgid "Text size of value in px" +msgstr "Размер текста значения в px" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:355 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:420 +#: ../../include/lib/Dashboard/Widgets/module_value.php:337 +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:301 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:333 +#: ../../include/lib/Dashboard/Widgets/module_status.php:398 +msgid "Text size of label in px" +msgstr "Размер текста этикетки в px" + +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:412 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:423 +#: ../../include/lib/Dashboard/Widgets/events_list.php:517 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:606 +msgid "You don't have access" +msgstr "У Вас нет прав доступа" + +#: ../../include/lib/Dashboard/Widgets/post.php:158 +#: ../../include/lib/Dashboard/Widgets/post.php:276 +msgid "Panel with a message" +msgstr "Панель с сообщением" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:158 +#: ../../include/lib/Dashboard/Widgets/maps_status.php:377 +msgid "General visual maps report" +msgstr "Общий отчет по визуальным картам" + +#: ../../include/lib/Dashboard/Widgets/maps_status.php:263 +msgid "Maps" +msgstr "Карты" + +#: ../../include/lib/Dashboard/Widgets/example.php:158 +#: ../../include/lib/Dashboard/Widgets/example.php:277 +#, php-format +msgid "Welcome message to %s" +msgstr "Приветственное сообщение для %s" + +#: ../../include/lib/Dashboard/Widgets/example.php:245 +#: ../../general/login_help_dialog.php:39 +#, php-format +msgid "Welcome to %s" +msgstr "Добро пожаловать в %s" + +#: ../../include/lib/Dashboard/Widgets/example.php:249 +msgid "" +"This is an example of a dashboard widget. A widget may contain elements" +msgstr "" +"Это является примером панели виджета. Виджет может содержать элементы" + +#: ../../include/lib/Dashboard/Widgets/example.php:250 +msgid "" +"To add more elements, click on \"<em>Add widgets</em>\" on the top of this " +"page." +msgstr "" +"Чтобы добавить больше элементов, нажмите на \"<em>Add widgets</em>\" на " +"верхней части этой страницы." + +#: ../../include/lib/Dashboard/Widgets/example.php:251 +#: ../../include/lib/Dashboard/Widgets/example.php:253 +msgid "" +"To delete this message, click on the delete button on top right corner of " +"this element." +msgstr "" +"Чтобы удалить это сообщение, нажмите на кнопку Удалить в правом верхнем углу " +"этого элемента." + +#: ../../include/lib/Dashboard/Widgets/example.php:252 +msgid "" +"To do so, just click on the title and drag and drop it to the desired place." +msgstr "" +"Для этого просто нажмите на название и перетащить его в нужное место." + +#: ../../include/lib/Dashboard/Widgets/example.php:254 +#, php-format +msgid "Thanks for using %s." +msgstr "Спасибо за использование %s." + +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 +#: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 +msgid "Global health info" +msgstr "Глобальная информация о состоянии" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:172 +#: ../../include/lib/Dashboard/Widgets/network_map.php:471 +#: ../../operation/menu.php:159 +msgid "Network map" +msgstr "Карта сети" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:328 +msgid "Introduce x-axis data. Right=positive Left=negative" +msgstr "" +"Представьте данные по оси x. Справа=положительный слева=отрицательный" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:332 +msgid "X offset" +msgstr "Смещение по X" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:343 +msgid "Introduce Y-axis data. Top=positive Bottom=negative" +msgstr "Представьте данные по оси Y. Верх=положительный Низ=отрицательный" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:347 +msgid "Y offset" +msgstr "Смещение по Y" + +#: ../../include/lib/Dashboard/Widgets/network_map.php:371 +msgid "Zoom level" +msgstr "Масштаб" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:360 +msgid "Triggered alerts report" +msgstr "Отчет о сработавших предупреждениях" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:333 +msgid "Not alert fired" +msgstr "Нет сработавших предупреждений" + +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:342 +#: ../../include/lib/Dashboard/Widgets/events_list.php:510 +msgid "You must select some group" +msgstr "Вы должны выбрать какую-то группу" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:175 +#: ../../include/lib/Dashboard/Widgets/events_list.php:781 +msgid "List of latest events" +msgstr "Список последних событий" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:294 +msgid "Custom filters" +msgstr "Пользовательские фильтры" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:359 +msgid "Limit" +msgstr "Лимит" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:372 +#: ../../include/functions_events.php:3321 +#: ../../include/functions_events.php:3327 +#: ../../include/functions_events.php:3349 +msgid "All event" +msgstr "Все события" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:373 +#: ../../include/functions_events.php:3323 +#: ../../include/functions_events.php:3357 +msgid "Only validated" +msgstr "Только утвержденные" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:374 +msgid "Only pending" +msgstr "Только ожидающие" + +#: ../../include/lib/Dashboard/Widgets/events_list.php:763 +msgid "There are no events matching selected search filters" +msgstr "Нет событий, соответствующих выбранным фильтрам поиска" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172 +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:376 +msgid "WUX transaction stats" +msgstr "Статистика транзакций WUX" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:270 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:259 +msgid "Wux transaction" +msgstr "Транзакция Wux" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:288 +msgid "View all statistics" +msgstr "Посмотреть всю статистику" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:178 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:537 +msgid "Icon and module value" +msgstr "Значение иконки модуля" + +#: ../../include/lib/Dashboard/Widgets/module_icon.php:432 +#: ../../include/lib/Dashboard/Widgets/module_status.php:410 +msgid "Size of icon" +msgstr "Размер иконки" + +#: ../../include/lib/Dashboard/Widgets/url.php:158 +#: ../../include/lib/Dashboard/Widgets/url.php:286 +msgid "URL content" +msgstr "Содержание URL" + +#: ../../include/lib/Dashboard/Widgets/url.php:263 +msgid "Please, configure this widget before use" +msgstr "Пожалуйста, настроить этот виджет перед использованием" + +#: ../../include/lib/Dashboard/Widgets/module_value.php:173 +#: ../../include/lib/Dashboard/Widgets/module_value.php:422 +msgid "Module value" +msgstr "Значение модуля" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 +msgid "Agent WUX transaction" +msgstr "Транзакция агента WUX" + +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 +msgid "Global status" +msgstr "Общий статус" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:537 +msgid "Top N events by module" +msgstr "N первых событий на модуль" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:258 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:258 +msgid "Amount to show" +msgstr "Количество для показа" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:318 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:318 +msgid "No legend" +msgstr "Нет легенды" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:322 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:322 +msgid "Legend Position" +msgstr "Положение легенды" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:371 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:373 +msgid "Please select one or more groups." +msgstr "Пожалуйста, выберите одну или несколько групп." + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:423 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:419 +msgid "There is not data to show." +msgstr "Нет данных для показа." + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:175 +msgid "Show module value in a table" +msgstr "Показать значение модуля в таблице" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:312 +msgid "Carriage Return" +msgstr "Возврат каретки" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:313 +msgid "Vertical Bar" +msgstr "Вертикальный столбец" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:314 +msgid "Semicolon" +msgstr "Точка с запятой (;)" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:315 +msgid "Colon" +msgstr "Двоеточие (:)" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:316 +msgid "Commas" +msgstr "Запятые" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:317 +msgid "Blank" +msgstr "Пусто" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:321 +msgid "Data separator" +msgstr "Разделитель данных" + +#: ../../include/lib/Dashboard/Widgets/module_table_value.php:397 +msgid "Module in a table" +msgstr "Модуль в таблице" + +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:175 +#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:427 +msgid "Module histogram" +msgstr "Гистограмма модуля" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:280 +msgid "" +"ZOOM functionality is only available when there is only one such widget in " +"the dashboard" +msgstr "" +"Функция ZOOM доступна только в том случае, если на приборной панели имеется " +"только один такой виджет" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:347 +msgid "The user doesn't have permission to read agents" +msgstr "У пользователя нет разрешения на чтение агентов" + +#: ../../include/lib/Dashboard/Widgets/service_map.php:358 +msgid "Missing Service id" +msgstr "Отсутствующий ID службы" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:173 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:699 +msgid "Agent/Module View" +msgstr "Вид агента/модуля" + +#: ../../include/lib/Dashboard/Widgets/agent_module.php:246 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:434 +msgid "Filter modules" +msgstr "Отфильтровать модули" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:168 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:520 +msgid "Defined custom graph" +msgstr "Определенный пользовательский график" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:294 +msgid "This graph has been deleted." +msgstr "Этот график был удален." + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:321 +#: ../../operation/reporting/graph_viewer.php:321 +msgid "Horizontal Bars" +msgstr "Горизонтальные полоски" + +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:322 +#: ../../operation/reporting/graph_viewer.php:322 +msgid "Vertical Bars" +msgstr "Вертикальные полоски" + +#: ../../include/lib/Dashboard/Widgets/single_graph.php:170 +#: ../../include/lib/Dashboard/Widgets/single_graph.php:393 +msgid "Agent module graph" +msgstr "График модуля агента" + +#: ../../include/lib/Dashboard/Widgets/reports.php:164 +#: ../../include/lib/Dashboard/Widgets/reports.php:441 +msgid "Custom report" +msgstr "Пользовательский отчет" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:337 +msgid "Type tree" +msgstr "Тип дерева" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:369 +msgid "Open all groups" +msgstr "Открыть все группы" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 +msgid "Agents status" +msgstr "Статус агентов" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:422 +msgid "Modules status" +msgstr "Статус модулей" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:487 +#, php-format +msgid "" +"The user doesn't have permission to read agents. Please contact with your %s " +"administrator." +msgstr "" +"У пользователя нет разрешения на чтение агентов. Обратитесь к администратору " +"%s." + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:599 +#: ../../operation/tree.php:364 +msgid "Operating systems found" +msgstr "Найдены операционные системы" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:603 +#: ../../operation/tree.php:367 +msgid "Tags found" +msgstr "Найдены теги" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:607 +#: ../../operation/tree.php:370 +msgid "Module Groups found" +msgstr "Группы модулей найдены" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:611 +#: ../../operation/tree.php:373 ../../operation/search_main.php:56 +msgid "Modules found" +msgstr "Модули найдены" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:616 +#: ../../operation/tree.php:377 +msgid "Groups found" +msgstr "Группы найдены" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n.php:475 +msgid "Top N of agent modules" +msgstr "Первые N модулей агентов" + +#: ../../include/lib/Dashboard/Widgets/top_n.php:222 +msgid "" +"Case insensitive regular expression or string for module name. For example: " +".*usage.* will match: cpu_usage, vram usage." +msgstr "" +"Нечувствительное к регистру регулярное выражение или строка для имени " +"модуля. Например: .*usage.* будет соответствовать: cpu_usage, vram usage." + +#: ../../include/lib/Dashboard/Widgets/top_n.php:279 +msgid "Avg." +msgstr "Срд." + +#: ../../include/lib/Dashboard/Widgets/top_n.php:425 +msgid "There are no agents/modules found matching filter set" +msgstr "Не найдено агентов/модулей, соответствующих набору фильтров" + +#: ../../include/lib/Dashboard/Widgets/tactical.php:262 +msgid "Status and Monitor checks" +msgstr "Проверка Статуса и Прибора контроля" + +#: ../../include/lib/Dashboard/Widgets/clock.php:216 +msgid "Analogic" +msgstr "Аналоговый" + +#: ../../include/lib/Dashboard/Widgets/clock.php:217 +msgid "Digital" +msgstr "Цифровой" + +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:493 +msgid "Top N events by agent" +msgstr "Первые N событий на одного агента" + +#: ../../include/lib/View.php:67 +#, php-format +msgid "View %s not found" +msgstr "Вид %s не найден" + +#: ../../include/lib/Module.php:242 +msgid " error: Module has no agent assigned." +msgstr " ошибка: Модулю не назначен агент." + +#: ../../include/lib/Module.php:989 +msgid "Module name empty." +msgstr "Имя модуля пустое." + +#: ../../include/lib/Module.php:995 +msgid "Invalid characters in module name" +msgstr "Недопустимые символы в имени модуля" + +#: ../../include/lib/Module.php:1001 +msgid "Module already exists please select another name or agent." +msgstr "Модуль уже существует, пожалуйста, выберите другое имя или агента." + +#: ../../include/lib/Module.php:1007 +msgid "Insufficent permissions to perform this action" +msgstr "Недостаточные полномочия для выполнения этого действия" + +#: ../../include/lib/Module.php:1014 +#, php-format +msgid "Error while processing: %s" +msgstr "Ошибка при обработке: %s" + +#: ../../include/functions_snmp_browser.php:355 +msgid "The server did not return any response." +msgstr "Сервер не отвечает." + +#: ../../include/functions_snmp_browser.php:558 +msgid "Numeric OID" +msgstr "Числовые OID" + +#: ../../include/functions_snmp_browser.php:576 +msgid "Syntax" +msgstr "Синтаксис" + +#: ../../include/functions_snmp_browser.php:582 +msgid "Display hint" +msgstr "Показать подсказку" + +#: ../../include/functions_snmp_browser.php:588 +msgid "Max access" +msgstr "Макс доступ" + +#: ../../include/functions_snmp_browser.php:612 +msgid "OID Information" +msgstr "OID Информация" + +#: ../../include/functions_snmp_browser.php:647 +msgid "Create agent module" +msgstr "Создать модуль агента" + +#: ../../include/functions_snmp_browser.php:736 +msgid "Starting OID" +msgstr "Начальные OID" + +#: ../../include/functions_snmp_browser.php:786 +msgid "Server to execute" +msgstr "Сервер для выполнения" + +#: ../../include/functions_snmp_browser.php:801 +msgid "Browse" +msgstr "Просмотреть" + +#: ../../include/functions_snmp_browser.php:939 +msgid "First match" +msgstr "Первое совпадение" + +#: ../../include/functions_snmp_browser.php:952 +msgid "Previous match" +msgstr "Предыдущее совпадение" + +#: ../../include/functions_snmp_browser.php:965 +msgid "Next match" +msgstr "Следующее совпадение" + +#: ../../include/functions_snmp_browser.php:978 +msgid "Last match" +msgstr "Последнее совпадение" + +#: ../../include/functions_snmp_browser.php:992 +msgid "Expand the tree (can be slow)" +msgstr "Разверните дерево (может быть медлено)" + +#: ../../include/functions_snmp_browser.php:1005 +msgid "Collapse the tree" +msgstr "Свернуть дерево" + +#: ../../include/functions_snmp_browser.php:1034 +msgid "SNMP v3 options" +msgstr "SNMP v3 опции" + +#: ../../include/functions_snmp_browser.php:1044 +msgid "Search options" +msgstr "Опции поиска" + +#: ../../include/functions_snmp_browser.php:1065 +msgid "Search matches" +msgstr "Искать совпадения" + +#: ../../include/functions_snmp_browser.php:1081 +msgid "Create agent modules" +msgstr "Создать модули агентов" + +#: ../../include/functions_snmp_browser.php:1090 +msgid "Create policy modules" +msgstr "Создать модули политики" + +#: ../../include/functions_snmp_browser.php:1099 +msgid "Create network components" +msgstr "Создать компоненты сети" + +#: ../../include/functions_snmp_browser.php:1505 +msgid " available" +msgstr " доступно" + +#: ../../include/functions_snmp_browser.php:1507 +msgid " to apply" +msgstr " для применения" + +#: ../../include/functions_snmp_browser.php:1528 +#: ../../operation/snmpconsole/snmp_browser.php:527 +msgid "Create new policy" +msgstr "Создать новую политику" + +#: ../../include/functions_snmp_browser.php:1560 +msgid "Undo" +msgstr "Отменить" + +#: ../../include/chart_generator.php:125 +#: ../../operation/agentes/stat_win.php:51 +#: ../../operation/agentes/realtime_win.php:51 +#: ../../operation/agentes/interface_traffic_graph_win.php:54 +msgid "There was a problem connecting with the node" +msgstr "Возникла ошибка при подключении к узлу" + +#: ../../include/functions_groups.php:75 +msgid "Alert Actions" +msgstr "Оповещение Действий" + +#: ../../include/functions_groups.php:91 +msgid "Alert Templates" +msgstr "Оповещение Шаблонов" + +#: ../../include/functions_groups.php:155 +msgid "Layout visual console" +msgstr "Макет визуальной консоли" + +#: ../../include/functions_groups.php:171 +msgid "Plannet down time" +msgstr "Плановые остановки" + +#: ../../include/functions_groups.php:203 +msgid "GIS maps" +msgstr "ГИС карты" + +#: ../../include/functions_groups.php:219 +msgid "GIS connections" +msgstr "ГИС соединения" + +#: ../../include/functions_groups.php:235 +msgid "GIS map layers" +msgstr "ГИС уровни карты" + +#: ../../include/functions_groups.php:251 +msgid "Network maps" +msgstr "Сетевые карты" + +#: ../../include/functions_events.php:132 +msgid "NEW" +msgstr "НОВЫЙ" + +#: ../../include/functions_events.php:135 +msgid "IN PROCESS" +msgstr "В ПРОЦЕССЕ" + +#: ../../include/functions_events.php:138 +msgid "VALIDATED" +msgstr "ПОДТВЕРЖДЕНО" + +#: ../../include/functions_events.php:197 +msgid "Agent module" +msgstr "Агент модуля" + +#: ../../include/functions_events.php:210 +msgid "Module custom id" +msgstr "Пользовательское id модуля" + +#: ../../include/functions_events.php:2528 +#: ../../operation/agentes/tactical.php:202 +msgid "Latest events" +msgstr "Последние события" + +#: ../../include/functions_events.php:2665 +msgid "Events -by module-" +msgstr "События -по модулю-" + +#: ../../include/functions_events.php:2671 +#: ../../operation/agentes/tactical.php:219 +msgid "Event graph" +msgstr "График события" + +#: ../../include/functions_events.php:2673 +#: ../../operation/agentes/tactical.php:222 +msgid "Event graph by agent" +msgstr "События графика по агенту" + +#: ../../include/functions_events.php:2812 +msgid "Going to unknown" +msgstr "Перейти к неизвестному" + +#: ../../include/functions_events.php:2820 +msgid "Alert manually validated" +msgstr "Руководство оповещений подтверждено" + +#: ../../include/functions_events.php:2824 +msgid "Going from critical to warning" +msgstr "Перейти от критического статуса к статусу опасности" + +#: ../../include/functions_events.php:2830 +msgid "Going up to critical state" +msgstr "Повышение до критического уровня" + +#: ../../include/functions_events.php:2836 +msgid "Going up to normal state" +msgstr "Поднються к обычному положению" + +#: ../../include/functions_events.php:2840 +msgid "Going down from normal to warning" +msgstr "Опуститься с обычного к статусу опасности" + +#: ../../include/functions_events.php:2852 +msgid "Discovery server detected a new host" +msgstr "Сервер Discovery обнаружил новый хост" + +#: ../../include/functions_events.php:2856 +msgid "New agent created" +msgstr "Новый агент создан" + +#: ../../include/functions_events.php:2873 +msgid "Unknown type:" +msgstr "Неизвестный тип:" + +#: ../../include/functions_events.php:3322 +#: ../../include/functions_events.php:3353 +msgid "Only new" +msgstr "Только новые" + +#: ../../include/functions_events.php:3324 +#: ../../include/functions_events.php:3361 +msgid "Only in process" +msgstr "Только активные" + +#: ../../include/functions_events.php:3325 +#: ../../include/functions_events.php:3365 +msgid "Only not validated" +msgstr "Только не подтвержденные" + +#: ../../include/functions_events.php:3330 +#: ../../include/functions_events.php:3612 +#: ../../include/functions_events.php:3621 +msgid "In process" +msgstr "В процессе" + +#: ../../include/functions_events.php:3331 +msgid "Not Validated" +msgstr "Не подтверждено" + +#: ../../include/functions_events.php:3520 +msgid "Change owner" +msgstr "Изменить владельца" + +#: ../../include/functions_events.php:3596 +msgid "Change status" +msgstr "Изменить статус" + +#: ../../include/functions_events.php:3693 +#: ../../include/functions_events.php:5188 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:365 +msgid "Add comment" +msgstr "Добавить комментарий" + +#: ../../include/functions_events.php:3714 +#: ../../include/functions_events.php:3718 +#: ../../include/functions_events.php:7076 +#: ../../operation/events/events.php:2043 +#: ../../operation/events/events.build_table.php:877 +msgid "Delete event" +msgstr "Удалить событие" + +#: ../../include/functions_events.php:3738 +msgid "Custom responses" +msgstr "Ответы пользователей" + +#: ../../include/functions_events.php:4281 +msgid "Extended information" +msgstr "Дополнительная информация" + +#: ../../include/functions_events.php:4309 +msgid "There was an error connecting to the node" +msgstr "Возникла проблема с подключением к узлу" + +#: ../../include/functions_events.php:4346 +msgid "Agent details" +msgstr "Агент деталей" + +#: ../../include/functions_events.php:4360 +msgid "This agent belongs to metaconsole, is not possible display it" +msgstr "Этот агент принадлежит Метаконсоли, его просмотр невозможен" + +#: ../../include/functions_events.php:4411 +msgid "View custom fields" +msgstr "Просмотреть пользовательские поля" + +#: ../../include/functions_events.php:4434 +msgid "Module details" +msgstr "Модуль деталь" + +#: ../../include/functions_events.php:4450 +msgid "No assigned" +msgstr "Не назчначено" + +#: ../../include/functions_events.php:4540 +#: ../../include/functions_events.php:4546 +msgid "Go to data overview" +msgstr "Просмотреть данные" + +#: ../../include/functions_events.php:4653 +#, php-format +msgid "Invalid custom data: %s" +msgstr "Недействительные пользовательские данные: %s" + +#: ../../include/functions_events.php:4867 +msgid "First event" +msgstr "Первое событие" + +#: ../../include/functions_events.php:4867 +msgid "Last event" +msgstr "Последнее событие" + +#: ../../include/functions_events.php:4949 +msgid "Autovalidated" +msgstr "Автоматически подтверждено" + +#: ../../include/functions_events.php:5015 +msgid "ID extra" +msgstr "дополнительный ID" + +#: ../../include/functions_events.php:5078 +msgid "There are no comments" +msgstr "здесь нет комментариев" + +#: ../../include/functions_events.php:5198 +msgid "" +"If event replication is ongoing, it won't be possible to enter comments " +"here. This option is only to allow local pandora users to see comments, but " +"not to operate with them. The operation, when event replication is enabled, " +"must be done only in the Metaconsole." +msgstr "" +"Если репликация событий продолжается, ввести комментарии здесь будет " +"невозможно. Эта опция предназначена только для того, чтобы локальные " +"пользователи Pandora FMS могли видеть комментарии, но не работать с ними. " +"Операции, когда репликация событий включена, должны выполняться только в " +"Метаконсоли." + +#: ../../include/functions_events.php:5402 +msgid "Pandora System" +msgstr "Система Pandora" + +#: ../../include/functions_events.php:5601 +msgid "Validated but not assigned" +msgstr "Подтверждено, но не закреплено" + +#: ../../include/functions_events.php:6022 +#: ../../include/functions_events.php:6029 +#: ../../operation/snmpconsole/snmp_view.php:609 +#: ../../operation/snmpconsole/snmp_view.php:933 +#: ../../operation/snmpconsole/snmp_view.php:1250 +msgid "Not validated" +msgstr "Не проверено" + +#: ../../include/functions_events.php:6536 +msgid "Agent Module" +msgstr "Модуль Агента" + +#: ../../include/functions_events.php:7062 +#: ../../operation/events/events.php:2019 +#: ../../operation/events/events.build_table.php:849 +msgid "Validate event" +msgstr "Подтвердить событие" + +#: ../../include/functions_events.php:7085 +#: ../../operation/events/events.build_table.php:887 +msgid "Is not allowed delete events in process" +msgstr "Нельзя удалить активное событие" + +#: ../../include/functions_planned_downtimes.php:575 +msgid "Succesful stopped the Downtime" +msgstr "Остановка успешно прервана" + +#: ../../include/functions_planned_downtimes.php:576 +msgid "Unsuccesful stopped the Downtime" +msgstr "Остановка прервана неуспешно" + +#: ../../include/functions_planned_downtimes.php:716 +#, php-format +msgid "Enabled %s elements from the downtime" +msgstr "Включено %s элементов остановки" + +#: ../../include/functions_planned_downtimes.php:775 +msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" +msgstr "" +"Время остановки должно проходить в тихом режиме, disable_agents или " +"disable_agents_alerts" + +#: ../../include/functions_planned_downtimes.php:780 +msgid "The execution must be once or periodically" +msgstr "Выполнение должно быть однократным или периодическим" + +#: ../../include/functions_planned_downtimes.php:785 +msgid "The periodicity must be weekly or monthly" +msgstr "Периодичность должна быть еженедельной или ежемесячной" + +#: ../../include/functions_planned_downtimes.php:790 +msgid "There is no user with such id" +msgstr "Не существует пользователя с таким id" + +#: ../../include/functions_planned_downtimes.php:795 +msgid "There is no group with such id" +msgstr "Не существует группы с таким id" + +#: ../../include/functions_planned_downtimes.php:800 +msgid "Date is wrong formatted" +msgstr "Дата неправильно отформатирована" + +#: ../../include/functions_planned_downtimes.php:907 +msgid "This planned downtime are executed now. Can't delete in this moment." +msgstr "" +"В данный момент выполняется запланированная остановка. Удаление сейчас " +"невозможно ." + +#: ../../include/functions_planned_downtimes.php:914 +msgid "Deleted this planned downtime successfully." +msgstr "Удаление запланированной остановки прошло успешно." + +#: ../../include/functions_planned_downtimes.php:916 +msgid "Problems for deleted this planned downtime." +msgstr "Проблемы при удалении этой запланированной остановки." + +#: ../../include/functions_update_manager.php:167 +#, php-format +msgid "%s configuration wizard" +msgstr "%s помощник настройки" + +#: ../../include/functions_update_manager.php:170 +#, php-format +msgid "" +"Please fill the following information in order to configure your %s instance " +"successfully" +msgstr "" +"Пожалуйста, заполните следующую информацию, чтобы успешно настроить ваш " +"экземпляр %s" + +#: ../../include/functions_update_manager.php:227 +msgid "" +"Must have the same time zone as the system or database to avoid mismatches " +"of time." +msgstr "" +"Должны находиться в том же часовом поясе, что система или база данных для " +"избежания несоответствия времени." + +#: ../../include/functions_update_manager.php:233 +msgid "E-mail for receiving alerts" +msgstr "Электронная почта для получения предупреждений" + +#: ../../include/functions_update_manager.php:258 +msgid "All fields required" +msgstr "Все поля обязательны" + +#: ../../include/functions_update_manager.php:267 +msgid "Are you sure you don't want to configure a base email?" +msgstr "Вы уверены, что не хотите настраивать базовый email?" + +#: ../../include/functions_update_manager.php:269 +msgid "" +"You could change this options later in \"alert actions\" and setting your " +"account." +msgstr "" +"Вы можете изменить эту опцию позже в \"действиях предупреждения\" и " +"настройках вашей учетной записи." + +#: ../../include/functions_update_manager.php:495 +msgid "Register to Update Manager" +msgstr "Зарегистрироваться в Update Manager" + +#: ../../include/functions_update_manager.php:503 +#, php-format +msgid "Keep this %s console up to date with latest updates." +msgstr "" +"Поддерживайте эту консоль %s в актуальном состоянии с помощью последних " +"обновлений." + +#: ../../include/functions_update_manager.php:510 +#, php-format +msgid "" +"When you subscribe to the %s Update Manager service, you accept that we " +"register your %s instance as an identifier on a database owned by %s. This " +"data will solely be used to provide you with information about %s and will " +"not be conceded to third parties. You can unregister from said database at " +"any time from the Update Manager options." +msgstr "" +"Подписываясь на услугу %s Update Manager, вы соглашаетесь с тем, что мы " +"регистрируем ваш экземпляр %s в качестве идентификатора в базе данных, " +"принадлежащей %s. Эти данные будут использоваться исключительно для " +"предоставления вам информации о %s и не будут передаваться третьим лицам. Вы " +"можете снять регистрацию с указанной базы данных в любое время в опции " +"Update Manager." + +#: ../../include/functions_update_manager.php:526 +#: ../../include/functions_update_manager.php:820 +msgid "OK!" +msgstr "OK!" + +#: ../../include/functions_update_manager.php:542 +msgid "Are you sure you don't want to use update manager?" +msgstr "Вы уверены, что не хотите использовать Update Manager?" + +#: ../../include/functions_update_manager.php:544 +msgid "" +"You will need to update your system manually, through source code or RPM " +"packages to be up to date with latest updates." +msgstr "" +"Вам придется обновлять свою систему вручную, через исходный код или RPM-" +"пакеты, чтобы быть в курсе последних обновлений." + +#: ../../include/functions_update_manager.php:763 +msgid "Do you want to be up to date?" +msgstr "Вы хотите быть в курсе событий?" + +#: ../../include/functions_update_manager.php:771 +#: ../../operation/users/user_edit.php:459 +msgid "Subscribe to our newsletter" +msgstr "Подпишитесь на нашу рассылку" + +#: ../../include/functions_update_manager.php:780 +#, php-format +msgid "" +"By subscribing to the newsletter, you accept that your email will be " +"transferred to a database owned by %s. These data will be used only to " +"provide you with information about %s and will not be given to third " +"parties. You can unsubscribe from this database at any time from the " +"newsletter subscription options." +msgstr "" +"Подписываясь на нашу рассылку, вы соглашаетесь с тем, что ваш электронный " +"адрес будет передан в базу данных, принадлежащую %s. Эти данные будут " +"использованы только для предоставления вам информации о %s и не будут " +"переданы третьим лицам. Вы можете отписаться от этой базы данных в любое " +"время из опций подписки на рассылку." + +#: ../../include/functions_update_manager.php:837 +msgid "Are you sure you don't want to subscribe?" +msgstr "Вы уверены, что не хотите подписаться?" + +#: ../../include/functions_update_manager.php:839 +msgid "You will miss all news about amazing features and fixes!" +msgstr "Вы пропустите все новости об удивительных функциях и исправлениях!" + +#: ../../include/functions_update_manager.php:918 +msgid "You must specify an email" +msgstr "Вы должны указать email" + +#: ../../include/functions_update_manager.php:1170 +#: ../../include/functions_update_manager.php:1200 +#, php-format +msgid "Line \"%s\" not copied to the progress file." +msgstr "Строка \"%s\" не скопирована в файл выполнения." + +#: ../../include/functions_update_manager.php:1244 +msgid "There is a unknown error." +msgstr "Возникла неизвестная ошибка." + +#: ../../include/functions_update_manager.php:1597 +msgid "Remote server error on newsletter request" +msgstr "Ошибка удаленного сервера при запросе рассылки" + +#: ../../include/functions_update_manager.php:1607 +msgid "E-mail successfully subscribed to newsletter." +msgstr "E-mail успешно подписан на рассылку." + +#: ../../include/functions_update_manager.php:1612 +msgid "E-mail has already subscribed to newsletter." +msgstr "Этот E-mail уже подписан на рассылку." + +#: ../../include/functions_update_manager.php:1619 +#: ../../include/functions_update_manager.php:1700 +msgid "Update manager returns error code: " +msgstr "Менеджер обновлений возвращает код ошибки: " + +#: ../../include/functions_update_manager.php:1656 +msgid "Error while registering console." +msgstr "Ошибка при регистрации консоли." + +#: ../../include/functions_update_manager.php:1688 +msgid "Pandora successfully subscribed with UID: " +msgstr "Pandora успешно подписалась с помощью UID: " + +#: ../../include/functions_update_manager.php:1693 +msgid "Unsuccessful subscription." +msgstr "Подписка не удалась." + +#: ../../include/functions_update_manager.php:1771 +msgid "Failed extracting the package to temp directory." +msgstr "Не удалось извлечь пакет из временного каталога." + +#: ../../include/functions_update_manager.php:1827 +msgid "Failed the copying of the files." +msgstr "Копирование файлов не удалось" + +#: ../../include/functions_update_manager.php:1847 +msgid "Package extracted successfully." +msgstr "Пакет успешно извлечен." + +#: ../../index.php:929 +msgid "User doesn\\'t exist." +msgstr "Пользователь не существует." + +#: ../../index.php:947 +msgid "User only can use the API." +msgstr "Только пользователь может использовать API." + +#: ../../operation/search_users.php:23 ../../operation/search_agents.php:30 +#: ../../operation/search_alerts.php:24 ../../operation/search_reports.php:26 +#: ../../operation/search_graphs.php:21 ../../operation/search_modules.php:23 +#: ../../operation/search_policies.php:22 ../../operation/search_maps.php:19 +msgid "Zero results found" +msgstr "Результатов не найдено" + +#: ../../operation/search_users.php:38 +msgid "Profile" +msgstr "Профиль" + +#: ../../operation/tree.php:121 +#, php-format +msgid "Sort the agents by %s" +msgstr "Сортировка агентов по %s" + +#: ../../operation/tree.php:124 +msgid "tags" +msgstr "теги" + +#: ../../operation/tree.php:132 +msgid "groups" +msgstr "группы" + +#: ../../operation/tree.php:136 +msgid "module groups" +msgstr "модули групп" + +#: ../../operation/tree.php:145 +msgid "policies" +msgstr "правила" + +#: ../../operation/tree.php:184 +msgid "Search group" +msgstr "Поиск группы" + +#: ../../operation/tree.php:188 ../../operation/tree.php:231 +msgid "Show not init modules" +msgstr "Показать не инициализированные модули" + +#: ../../operation/tree.php:197 +msgid "Search agent" +msgstr "Поиск агента" + +#: ../../operation/tree.php:200 +msgid "Show not init agents" +msgstr "Показать не инициализированные агенты" + +#: ../../operation/tree.php:203 +msgid "Show full hirearchy" +msgstr "Показать полную иерархию" + +#: ../../operation/tree.php:228 +msgid "Search module" +msgstr "Поиск модуля" + +#: ../../operation/tree.php:260 +msgid "Tree search" +msgstr "Поиск дерева" + +#: ../../operation/users/user_edit.php:175 +msgid "Current password of user is required to perform password change" +msgstr "Для смены пароля требуется текущий пароль пользователя" + +#: ../../operation/users/user_edit.php:177 +msgid "Current password of user is not correct" +msgstr "Текущий пароль пользователя не верен" + +#: ../../operation/users/user_edit.php:181 +msgid "" +"Passwords didn't match or other problem encountered while updating passwords" +msgstr "" +"Пароли не совпадают или другая проблема, возникающая при обновлении паролей" + +#: ../../operation/users/user_edit.php:194 +#: ../../operation/users/user_edit.php:209 +msgid "Password successfully updated" +msgstr "Пароль успешно обновлен" + +#: ../../operation/users/user_edit.php:204 +#: ../../operation/users/user_edit.php:250 +msgid "Error updating user info" +msgstr "Ошибка при обновлении информации о пользователе" + +#: ../../operation/users/user_edit.php:223 +msgid "Please enter a valid email" +msgstr "Пожалуйста, введите действительный адрес электронной почты" + +#: ../../operation/users/user_edit.php:225 +msgid "Please enter a valid phone number" +msgstr "Пожалуйста, введите действительный номер телефона" + +#: ../../operation/users/user_edit.php:231 +msgid "Error updating passwords: " +msgstr "Ошибка обновления паролей: " + +#: ../../operation/users/user_edit.php:255 +msgid "Edit my User" +msgstr "Редактировать моего пользователя" + +#: ../../operation/users/user_edit.php:300 +msgid "Current password" +msgstr "Текущий пароль" + +#: ../../operation/users/user_edit.php:302 +msgid "" +"You cannot change your password under the current authentication scheme" +msgstr "Вы не можете изменить свой пароль при текущей схеме аутентификации" + +#: ../../operation/users/user_edit.php:317 +msgid "If checkbox is clicked then block size global configuration is used" +msgstr "Если флажок нажат, то размер блока общей конфигурации используется" + +#: ../../operation/users/user_edit.php:442 +msgid "Event filter" +msgstr "Фильтр событий" + +#: ../../operation/users/user_edit.php:455 +msgid "Newsletter Subscribed" +msgstr "Подписка на рассылку новостей" + +#: ../../operation/users/user_edit.php:457 +#, php-format +msgid "Already subscribed to %s newsletter" +msgstr "Уже есть подписка на рассылку %s" + +#: ../../operation/users/user_edit.php:460 +msgid "Newsletter Reminder" +msgstr "Напоминание о рассылке" + +#: ../../operation/users/user_edit.php:533 +msgid "Autorefresh" +msgstr "Автообновление" + +#: ../../operation/users/user_edit.php:534 +msgid "This will activate autorefresh in selected pages" +msgstr "Это активирует автообновление на выбранных страницах" + +#: ../../operation/users/user_edit.php:569 +msgid "Full list of pages" +msgstr "Полный список страниц" + +#: ../../operation/users/user_edit.php:578 +#: ../../operation/users/user_edit.php:579 +msgid "Push selected pages into autorefresh list" +msgstr "Внесение выбранных страниц в список автообновления" + +#: ../../operation/users/user_edit.php:587 +#: ../../operation/users/user_edit.php:588 +msgid "Pop selected pages out of autorefresh list" +msgstr "Вывод выбранных страниц из списка автообновления" + +#: ../../operation/users/user_edit.php:593 +msgid "List of pages with autorefresh" +msgstr "Список страниц с автообновлением" + +#: ../../operation/users/user_edit.php:602 +msgid "Time autorefresh" +msgstr "Время автообновления" + +#: ../../operation/users/user_edit.php:604 +msgid "" +"Interval of autorefresh of the elements, by default they are 30 seconds, " +"needing to enable the autorefresh first" +msgstr "" +"Интервал автообновления элементов, по умолчанию составляет 30 секунд, " +"сначала необходимо включить автообновление" + +#: ../../operation/users/user_edit.php:698 +msgid "eHorus user configuration" +msgstr "Конфигурация пользователя eHorus" + +#: ../../operation/users/user_edit.php:703 +msgid "eHorus user acces enabled" +msgstr "Включение доступа пользователя eHorus" + +#: ../../operation/users/user_edit.php:741 +msgid "" +"You can not change your user info under the current authentication scheme" +msgstr "" +"Вы не можете изменить информацию о пользователе при текущей схеме " +"аутентификации" + +#: ../../operation/users/user_edit.php:816 +msgid "This user doesn't have any assigned profile/group." +msgstr "У этого пользователя нет назначенного профиля/группы." + +#: ../../operation/users/user_edit_header.php:102 +msgid "User notifications" +msgstr "Уведомления пользователей" + +#: ../../operation/users/user_edit_header.php:127 ../../operation/menu.php:444 +msgid "Workspace" +msgstr "Рабочая область" + +#: ../../operation/users/user_edit_notifications.php:64 +msgid "Also receive an email" +msgstr "Также получить электронное письмо" + +#: ../../operation/users/user_edit_notifications.php:93 +msgid "Controls have been disabled by the system administrator" +msgstr "Средства управления были отключены системным администратором" + +#: ../../operation/search_helps.php:19 +msgid "Zero results found." +msgstr "Результатов не найдено." + +#: ../../operation/search_helps.php:20 +#, php-format +msgid "" +"You can find more help in the <a class=\"underline\" href=\"%s\">wiki</a>" +msgstr "" +"Дополнительную информацию можно найти в <a class=\"underline\" " +"href=\"%s\">wiki</a>." + +#: ../../operation/search_helps.php:33 +msgid "Matches" +msgstr "Совпадения" + +#: ../../operation/visual_console/view.php:358 +msgid "Delete Item" +msgstr "Удалить элемент" + +#: ../../operation/visual_console/view.php:364 +msgid "Copy Item" +msgstr "Копировать элемент" + +#: ../../operation/visual_console/view.php:648 +msgid "Are you sure" +msgstr "Вы уверены?" + +#: ../../operation/visual_console/legacy_public_view.php:158 +#: ../../operation/visual_console/public_view.php:145 +msgid "QR code of the page" +msgstr "QR-код страницы" + +#: ../../operation/visual_console/legacy_public_view.php:188 +#: ../../operation/visual_console/legacy_view.php:335 +msgid "Until refresh" +msgstr "до обновления" + +#: ../../operation/search_results.php:66 +msgid "Global search" +msgstr "Общий поиск" + +#: ../../operation/agentes/stat_win.php:110 +#, php-format +msgid "%s Graph" +msgstr "%s График" + +#: ../../operation/agentes/stat_win.php:141 +msgid "There was a problem locating the source of the graph" +msgstr "Обнаружена проблема обнаружения источника графа" + +#: ../../operation/agentes/stat_win.php:234 +#: ../../operation/agentes/interface_traffic_graph_win.php:164 +msgid "Refresh time" +msgstr "Время обновления" + +#: ../../operation/agentes/stat_win.php:245 +#: ../../operation/agentes/graphs.php:222 +msgid "Show events" +msgstr "Показывать события" + +#: ../../operation/agentes/stat_win.php:264 +#, php-format +msgid "" +"'Show events' is disabled because this %s node is set to event replication." +msgstr "" +"'Показывать события' отключено, поскольку этот узел %s настроен на " +"репликацию событий." + +#: ../../operation/agentes/stat_win.php:279 +#: ../../operation/agentes/graphs.php:224 +msgid "Show alerts" +msgstr "Показывать угрозы" + +#: ../../operation/agentes/stat_win.php:287 +#: ../../operation/agentes/interface_traffic_graph_win.php:203 +msgid "Begin time" +msgstr "Время начала" + +#: ../../operation/agentes/stat_win.php:305 +#: ../../operation/agentes/interface_traffic_graph_win.php:209 +#: ../../operation/agentes/graphs.php:218 +#: ../../operation/reporting/graph_viewer.php:305 +msgid "Time range" +msgstr "Период времени" + +#: ../../operation/agentes/stat_win.php:320 +msgid "Zoom" +msgstr "Масштаб" + +#: ../../operation/agentes/stat_win.php:340 +#: ../../operation/agentes/interface_traffic_graph_win.php:223 +msgid "Show percentil" +msgstr "Показать процентиль" + +#: ../../operation/agentes/stat_win.php:366 +msgid "Show AVG/MAX/MIN data series in graph" +msgstr "Показать серию данных СРЕДН/МАКС/МИН на графике" + +#: ../../operation/agentes/stat_win.php:427 +#: ../../operation/agentes/interface_traffic_graph_win.php:301 +#: ../../operation/agentes/interface_traffic_graph_win.php:318 +msgid "Graph configuration menu" +msgstr "Меню конфигурации графика" + +#: ../../operation/agentes/alerts_status.php:207 +msgid "Insufficient permissions to validate alerts" +msgstr "Недостаточно прав для проверки оповещений" + +#: ../../operation/agentes/alerts_status.php:731 +msgid "Full list of alerts" +msgstr "Полный список оповещений" + +#: ../../operation/agentes/gis_view.php:93 +msgid "Period to show data as path" +msgstr "Период для отображения данных как путь" + +#: ../../operation/agentes/gis_view.php:97 +msgid "Refresh path" +msgstr "Обновить путь" + +#: ../../operation/agentes/gis_view.php:155 +msgid "This agent doesn't have any GIS data." +msgstr "Этот агент не имеет никаких данных ГИС." + +#: ../../operation/agentes/gis_view.php:167 +msgid "Positional data from the last" +msgstr "Позиционные данные из последнего" + +#: ../../operation/agentes/gis_view.php:206 +#, php-format +msgid "%s Km" +msgstr "%s Km" + +#: ../../operation/agentes/gis_view.php:220 +msgid "Distance" +msgstr "Расстояние" + +#: ../../operation/agentes/gis_view.php:221 +msgid "# of Packages" +msgstr "# of Пакеты" + +#: ../../operation/agentes/gis_view.php:222 +#: ../../operation/gis_maps/ajax.php:242 +msgid "Manual placement" +msgstr "Руководство для размещения" + +#: ../../operation/agentes/exportdata.csv.php:66 +#: ../../operation/agentes/exportdata.php:71 +#: ../../operation/agentes/exportdata.excel.php:66 +msgid "Invalid time specified" +msgstr "Указано неверное время" + +#: ../../operation/agentes/exportdata.csv.php:178 +#: ../../operation/agentes/exportdata.php:209 +#: ../../operation/agentes/exportdata.excel.php:161 +msgid "No modules specified" +msgstr "Нет указанных модулей" + +#: ../../operation/agentes/log_sources_status.php:48 +msgid "Review in log viewer" +msgstr "Просмотр в программе просмотра журналов" + +#: ../../operation/agentes/log_sources_status.php:61 +msgid "No log sources found" +msgstr "Источники журналов не найдены" + +#: ../../operation/agentes/log_sources_status.php:80 +msgid "Log sources status" +msgstr "Статус источников журнала" + +#: ../../operation/agentes/estado_agente.php:213 +msgid "Sucessfully deleted agent" +msgstr "Агент успешно удален" + +#: ../../operation/agentes/estado_agente.php:215 +msgid "There was an error message deleting the agent" +msgstr "Сообщение об ошибке удаления агента" + +#: ../../operation/agentes/estado_agente.php:256 +msgid "Search in custom fields" +msgstr "Поиск в пользовательских полях" + +#: ../../operation/agentes/ehorus.php:30 +msgid "Missing agent id" +msgstr "Отсутствует идентификатор агента" + +#: ../../operation/agentes/ehorus.php:48 +msgid "Missing ehorus agent id" +msgstr "Отсутствует идентификатор агента ehorus" + +#: ../../operation/agentes/ehorus.php:97 ../../operation/agentes/ehorus.php:134 +msgid "There was an error retrieving an authorization token" +msgstr "Произошла ошибка при получении токена авторизации" + +#: ../../operation/agentes/ehorus.php:109 +#: ../../operation/agentes/ehorus.php:146 +#: ../../operation/agentes/ehorus.php:182 +msgid "There was an error processing the response" +msgstr "Произошла ошибка при обработке ответа" + +#: ../../operation/agentes/ehorus.php:170 +msgid "There was an error retrieving the agent data" +msgstr "Произошла ошибка при получении данных агента" + +#: ../../operation/agentes/ehorus.php:187 +msgid "Remote management of this agent with eHorus" +msgstr "Удаленное управление этим агентом с помощью eHorus" + +#: ../../operation/agentes/ehorus.php:189 +msgid "Launch" +msgstr "Запустить" + +#: ../../operation/agentes/ehorus.php:195 +msgid "The connection was lost and the authorization token was expired" +msgstr "Соединение было потеряно, а срок токена авторизации истек" + +#: ../../operation/agentes/ehorus.php:195 +msgid "Reload the page to request a new authorization token" +msgstr "Перезагрузите страницу, чтобы запросить новый токен авторизации" + +#: ../../operation/agentes/status_events.php:26 +#: ../../operation/agentes/status_events.php:27 +msgid "Latest events for this agent" +msgstr "Последние событие этого агента" + +#: ../../operation/agentes/networkmap.dinamic.php:102 +#: ../../operation/agentes/pandora_networkmap.view.php:830 +#: ../../operation/snmpconsole/snmp_statistics.php:45 +#: ../../operation/snmpconsole/snmp_browser.php:54 +#: ../../operation/snmpconsole/snmp_view.php:118 +msgid "Normal screen" +msgstr "Обычный экран" + +#: ../../operation/agentes/networkmap.dinamic.php:126 +#: ../../operation/agentes/pandora_networkmap.view.php:854 +msgid "List of networkmap" +msgstr "Список сетевых карт" + +#: ../../operation/agentes/agent_fields.php:47 +#: ../../operation/agentes/custom_fields.php:90 +msgid "empty" +msgstr "пусто" + +#: ../../operation/agentes/realtime_win.php:81 +#, php-format +msgid "%s Realtime Module Graph" +msgstr "%s График модуля реального времени" + +#: ../../operation/agentes/realtime_win.php:104 +msgid "Realtime extension is not enabled." +msgstr "Расширение реального времени не включено." + +#: ../../operation/agentes/pandora_networkmap.editor.php:373 +msgid "Source id group changed. All elements in networkmap will be lost." +msgstr "" +"Группа идентификаторов источника изменена. Все элементы в карте сети будут " +"потеряны." + +#: ../../operation/agentes/pandora_networkmap.editor.php:592 +msgid "Source id group changed. All elements in Networkmap will be lost" +msgstr "" +"Группа идентификаторов источника изменена. Все элементы в карте сети будут " +"потеряны" + +#: ../../operation/agentes/pandora_networkmap.php:125 +#: ../../operation/agentes/pandora_networkmap.php:366 +msgid "Succesfully created" +msgstr "Успешно создано" + +#: ../../operation/agentes/pandora_networkmap.php:201 +#: ../../operation/agentes/pandora_networkmap.php:499 +msgid "Succesfully updated" +msgstr "Успешно обновлено" + +#: ../../operation/agentes/pandora_networkmap.php:524 +msgid "Succesfully duplicate" +msgstr "Успешно дублировано" + +#: ../../operation/agentes/pandora_networkmap.php:538 +msgid "Succesfully deleted" +msgstr "Успешно удалено" + +#: ../../operation/agentes/pandora_networkmap.php:774 +msgid "Empty map" +msgstr "Пустая карта" + +#: ../../operation/agentes/pandora_networkmap.php:778 +msgid "Pending to generate" +msgstr "В ожидании формирования" + +#: ../../operation/agentes/pandora_networkmap.php:810 +msgid "There are no maps defined." +msgstr "Карты не определены." + +#: ../../operation/agentes/pandora_networkmap.php:817 +msgid "Create network map" +msgstr "Создать карту сети" + +#: ../../operation/agentes/pandora_networkmap.php:825 +msgid "Create empty network map" +msgstr "Создать пустую карту сети" + +#: ../../operation/agentes/interface_traffic_graph_win.php:92 +#, php-format +msgid "%s Interface Graph" +msgstr "%s График интерфейса" + +#: ../../operation/agentes/interface_traffic_graph_win.php:246 +msgid "Zoom factor" +msgstr "Фактор увеличения" + +#: ../../operation/agentes/interface_traffic_graph_win.php:253 +msgid "Full" +msgstr "Полный" + +#: ../../operation/agentes/graphs.php:143 +msgid "Other modules" +msgstr "Другие модули" + +#: ../../operation/agentes/graphs.php:150 +msgid "Modules network no proc" +msgstr "Модули сети без proc" + +#: ../../operation/agentes/graphs.php:157 +msgid "Modules boolean" +msgstr "Булевы модули" + +#: ../../operation/agentes/graphs.php:224 +msgid "the combined graph does not show the alerts into this graph" +msgstr "комбинированный график не отображает оповещения в этом графике" + +#: ../../operation/agentes/graphs.php:226 +msgid "Show as one combined graph" +msgstr "Показать в виде одного комбинированного графика" + +#: ../../operation/agentes/graphs.php:228 +msgid "several graphs for each module" +msgstr "несколько графиков для каждого модуля" + +#: ../../operation/agentes/graphs.php:229 +msgid "One combined graph" +msgstr "Один комбинированный график" + +#: ../../operation/agentes/graphs.php:237 +#: ../../operation/agentes/graphs.php:413 +msgid "Area stack" +msgstr "Некопление Зоны" + +#: ../../operation/agentes/graphs.php:239 +#: ../../operation/agentes/graphs.php:421 +msgid "Line stack" +msgstr "Накопление линии" + +#: ../../operation/agentes/graphs.php:256 +msgid "Save as custom graph" +msgstr "Сохранить как пользовательский график" + +#: ../../operation/agentes/graphs.php:269 +msgid "Filter graphs" +msgstr "Фильтр графиков" + +#: ../../operation/agentes/graphs.php:296 +msgid "There was an error loading the graph" +msgstr "Произошла ошибка при загрузке графика" + +#: ../../operation/agentes/graphs.php:304 +#: ../../operation/agentes/graphs.php:308 +msgid "Name custom graph" +msgstr "Имя пользовательского графика" + +#: ../../operation/agentes/graphs.php:354 +msgid "Save custom graph" +msgstr "Сохранить пользовательский график" + +#: ../../operation/agentes/graphs.php:375 +msgid "Custom graph create from the tab graphs in the agent." +msgstr "" +"Пользовательский график создается на основе графиков-вкладок в агенте." + +#: ../../operation/agentes/datos_agente.php:173 +msgid "Received data from" +msgstr "Данные получены из" + +#: ../../operation/agentes/datos_agente.php:180 +msgid "Main database" +msgstr "Главная база данных" + +#: ../../operation/agentes/datos_agente.php:181 +msgid "" +"Switch between the main database and the history database to retrieve module " +"data" +msgstr "" +"Переключение между основной базой данных и базой данных истории для " +"извлечения данных модуля" + +#: ../../operation/agentes/datos_agente.php:211 +#: ../../operation/agentes/alerts_status.functions.php:117 +msgid "Free text for search" +msgstr "свободныйтекст для поиска" + +#: ../../operation/agentes/snapshot_view.php:42 +msgid "Cannot connect with node to display the module data." +msgstr "Невозможно соединиться с узлом для отображения данных модуля." + +#: ../../operation/agentes/snapshot_view.php:85 +#, php-format +msgid "%s Snapshot data view for module (%s)" +msgstr "%s Представление данных моментального снимка для модуля (%s)" + +#: ../../operation/agentes/snapshot_view.php:91 +#, php-format +msgid "Current data at %s" +msgstr "Текущие данные в %s" + +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:511 +msgid "Export data" +msgstr "Экспорт данных" + +#: ../../operation/agentes/exportdata.php:282 +msgid "No modules of type string. You can not calculate their average" +msgstr "Нет модулей типа строка. Вы не можете рассчитать их среднее" + +#: ../../operation/agentes/exportdata.php:374 +msgid "Export type" +msgstr "тип экспорта" + +#: ../../operation/agentes/exportdata.php:379 +msgid "MS Excel" +msgstr "MS Excel" + +#: ../../operation/agentes/exportdata.php:380 +msgid "Average per hour/day" +msgstr "В среднем за час/день" + +#: ../../operation/agentes/custom_fields.php:59 +msgid "No fields defined" +msgstr "Нет заданных полей" + +#: ../../operation/agentes/status_monitor.php:79 ../../operation/menu.php:58 +msgid "Monitor detail" +msgstr "Детали монитора" + +#: ../../operation/agentes/status_monitor.php:93 +msgid "Monitor view" +msgstr "Обзор монитора" + +#: ../../operation/agentes/status_monitor.php:585 +msgid "Wux server module" +msgstr "Модуль сервера Wux" + +#: ../../operation/agentes/status_monitor.php:606 +msgid "Min. hours in current status" +msgstr "Мин. часы в текущем состоянии" + +#: ../../operation/agentes/status_monitor.php:756 +msgid "Advanced Options" +msgstr "Дополнительные настройки" + +#: ../../operation/agentes/status_monitor.php:765 +msgid "Show filters" +msgstr "Показать фильтры" + +#: ../../operation/agentes/status_monitor.php:1224 +msgid "Data Type" +msgstr "Тип данных" + +#: ../../operation/agentes/status_monitor.php:1343 +#: ../../operation/agentes/pandora_networkmap.view.php:307 +msgid "(Adopt) " +msgstr "(Принять) " + +#: ../../operation/agentes/status_monitor.php:1351 +#: ../../operation/agentes/pandora_networkmap.view.php:315 +msgid "(Unlinked) (Adopt) " +msgstr "(Не связаны) (Принять) " + +#: ../../operation/agentes/status_monitor.php:1354 +#: ../../operation/agentes/pandora_networkmap.view.php:318 +msgid "(Unlinked) " +msgstr "(Не связаны) " + +#: ../../operation/agentes/status_monitor.php:1826 +msgid "This group doesn't have any monitor" +msgstr "Эта группа не имеет монитора" + +#: ../../operation/agentes/status_monitor.php:1828 +msgid "Sorry no search parameters" +msgstr "К сожалению, нет параметров поиска" + +#: ../../operation/agentes/group_view.php:151 +msgid "Summary of the status groups" +msgstr "Краткий отчет о групп по статусу" + +#: ../../operation/agentes/estado_monitores.php:51 +msgid "Tag's information" +msgstr "Информация Тега" + +#: ../../operation/agentes/estado_monitores.php:109 +msgid "Relationship information" +msgstr "Информация об Отношениях" + +#: ../../operation/agentes/estado_monitores.php:160 +msgid "Non-initialized modules found." +msgstr "Найдены неинициализированные модули." + +#: ../../operation/agentes/estado_monitores.php:181 +msgid "List of modules" +msgstr "Список модулей" + +#: ../../operation/agentes/estado_monitores.php:182 +msgid "" +"To see the list of modules paginated, enable this option in the Styles " +"Configuration." +msgstr "" +"Чтобы список модулей отображался постранично, включите эту опцию в " +"Конфигурации Стилей." + +#: ../../operation/agentes/estado_monitores.php:518 +msgid "Status:" +msgstr "Статус:" + +#: ../../operation/agentes/estado_monitores.php:524 +msgid "Not Normal" +msgstr "Не Нормальный" + +#: ../../operation/agentes/estado_monitores.php:539 +#: ../../operation/agentes/alerts_status.functions.php:177 +msgid "Free text for search (*):" +msgstr "Свободный текст для поиска (*):" + +#: ../../operation/agentes/estado_monitores.php:540 +msgid "Search by module name, list matches." +msgstr "Поиск по имени модуля, список совпадений." + +#: ../../operation/agentes/pandora_networkmap.view.php:175 +msgid "Success be updated." +msgstr "Успех быть обновленным." + +#: ../../operation/agentes/pandora_networkmap.view.php:272 +msgid "Name: " +msgstr "Имя: " + +#: ../../operation/agentes/pandora_networkmap.view.php:322 +msgid "Policy: " +msgstr "Политика: " + +#: ../../operation/agentes/pandora_networkmap.view.php:419 +msgid "Data: " +msgstr "Данные: " + +#: ../../operation/agentes/pandora_networkmap.view.php:421 +#: ../../operation/agentes/estado_generalagente.php:804 +msgid "Last contact: " +msgstr "Последний контакт: " + +#: ../../operation/agentes/ver_agente.php:1160 +msgid "Sons" +msgstr "Потомки" + +#: ../../operation/agentes/ver_agente.php:1479 +msgid "Log Viewer" +msgstr "Программа просмотра журналов" + +#: ../../operation/agentes/ver_agente.php:1518 +msgid "Terminal" +msgstr "Терминал" + +#: ../../operation/agentes/ver_agente.php:1540 +msgid "Processes" +msgstr "Процессы" + +#: ../../operation/agentes/estado_generalagente.php:57 +msgid "The agent has not assigned server. Maybe agent does not run fine." +msgstr "Агент не назначен сервером. Может быть, агент не работает нормально." + +#: ../../operation/agentes/estado_generalagente.php:274 +msgid "Remote configuration enabled" +msgstr "Удаленная конфигурация включена" + +#: ../../operation/agentes/estado_generalagente.php:316 +msgid "Agent contact" +msgstr "Контакт агента" + +#: ../../operation/agentes/estado_generalagente.php:323 +msgid "Refresh data" +msgstr "Обновить данные" + +#: ../../operation/agentes/estado_generalagente.php:333 +msgid "Force remote checks" +msgstr "Принудить дистанционные проверки" + +#: ../../operation/agentes/estado_generalagente.php:364 +msgid "Next contact" +msgstr "Следующий контакт" + +#: ../../operation/agentes/estado_generalagente.php:452 +msgid "Agent info" +msgstr "Информация агента" + +#: ../../operation/agentes/estado_generalagente.php:465 +msgid "There is no GIS data." +msgstr "Здесь нет ГИС данных." + +#: ../../operation/agentes/estado_generalagente.php:586 +msgid "Agent access rate (Last 24h)" +msgstr "Скорость доступа агентов (последние 24 часа)" + +#: ../../operation/agentes/estado_generalagente.php:625 +msgid "Active incident on this agent" +msgstr "Активный инцидент с этим агентом" + +#: ../../operation/agentes/estado_generalagente.php:784 +msgid "Events info (24hr.)" +msgstr "Информация о событиях (24 часа)" + +#: ../../operation/agentes/estado_generalagente.php:929 +msgid "Interface information (SNMP)" +msgstr "Информация об интерфейсе (SNMP)" + +#: ../../operation/agentes/alerts_status.functions.php:51 +msgid "Error processing alert(s)" +msgstr "Ошибка обработки оповещения(й)" + +#: ../../operation/agentes/alerts_status.functions.php:118 +msgid "Filter by agent name, module name, template name or action name" +msgstr "" +"Фильтр по имени агента, имени модуля, имени шаблона или названию действия" + +#: ../../operation/agentes/alerts_status.functions.php:129 +msgid "No actions" +msgstr "Никаких действий" + +#: ../../operation/agentes/alerts_status.functions.php:178 +msgid "Filter by module name, template name or action name" +msgstr "Фильтр по имени модуля, имени шаблона или имени действия" + +#: ../../operation/agentes/tactical.php:175 +msgid "Report of State" +msgstr "Отчет о состоянии" + +#: ../../operation/messages/message_list.php:50 +#: ../../operation/messages/message_edit.php:52 +msgid "Received messages" +msgstr "Принятые сообщения" + +#: ../../operation/messages/message_list.php:55 +#: ../../operation/messages/message_edit.php:64 +msgid "Sent messages" +msgstr "Отправленные сообщения" + +#: ../../operation/messages/message_list.php:64 +#: ../../operation/messages/message_list.php:289 +#: ../../operation/messages/message_edit.php:76 +msgid "Create message" +msgstr "Создать сообщение" + +#: ../../operation/messages/message_list.php:72 +#: ../../operation/messages/message_edit.php:84 ../../operation/menu.php:489 +msgid "Messages" +msgstr "Сообщения" + +#: ../../operation/messages/message_list.php:121 +msgid "Not deleted. Error deleting messages" +msgstr "Не удалены. Ошибка при удалении сообщений" + +#: ../../operation/messages/message_list.php:129 +#: ../../operation/messages/message_list.php:138 +msgid "You have" +msgstr "У Вас" + +#: ../../operation/messages/message_list.php:129 +msgid "sent message(s)" +msgstr "отправлено сообщение(я)" + +#: ../../operation/messages/message_list.php:138 +msgid "unread message(s)" +msgstr "непрочитано сообщение(я)" + +#: ../../operation/messages/message_list.php:149 +msgid "There are no messages." +msgstr "Сообщений нет." + +#: ../../operation/messages/message_list.php:179 +#: ../../operation/messages/message_edit.php:239 +msgid "Destination" +msgstr "Место назначения" + +#: ../../operation/messages/message_list.php:181 +#: ../../operation/messages/message_edit.php:231 +msgid "Sender" +msgstr "Отправитель" + +#: ../../operation/messages/message_list.php:199 +msgid "Click to read" +msgstr "Нажмите чтобы прочитать" + +#: ../../operation/messages/message_list.php:203 +msgid "Mark as unread" +msgstr "Пометить как непрочитанное" + +#: ../../operation/messages/message_list.php:209 +#: ../../operation/messages/message_list.php:213 +msgid "Message unread - click to read" +msgstr "Непрочитанное сообщение - нажмите, чтобы прочитать" + +#: ../../operation/messages/message_list.php:241 +msgid "No Subject" +msgstr "Нет Темы" + +#: ../../operation/messages/message_edit.php:103 +msgid "This message does not exist in the system" +msgstr "Это сообщение не существует в системе" + +#: ../../operation/messages/message_edit.php:167 +msgid "wrote" +msgstr "написано" + +#: ../../operation/messages/message_edit.php:182 +msgid "Delete conversation" +msgstr "Удалить беседу" + +#: ../../operation/messages/message_edit.php:189 +msgid "Reply" +msgstr "Ответить" + +#: ../../operation/messages/message_edit.php:216 +#, php-format +msgid "Message successfully sent to user %s" +msgstr "Сообщение успешно отправлены пользователю %s" + +#: ../../operation/messages/message_edit.php:217 +#, php-format +msgid "Error sending message to user %s" +msgstr "Ошибка при отправке сообщения пользователю %s" + +#: ../../operation/messages/message_edit.php:293 +msgid "Select user" +msgstr "Выберите пользователя" + +#: ../../operation/messages/message_edit.php:300 +msgid "OR" +msgstr "ИЛИ" + +#: ../../operation/messages/message_edit.php:308 +msgid "Select group" +msgstr "Выбрать группу" + +#: ../../operation/messages/message_edit.php:338 +msgid "Send message" +msgstr "Отправить сообщение" + +#: ../../operation/network/network_report.php:67 +#: ../../operation/network/network_usage_map.php:124 +msgid "Data to show" +msgstr "Данные к показу" + +#: ../../operation/network/network_report.php:78 +#: ../../operation/network/network_usage_map.php:104 +msgid "Number of result to show" +msgstr "Количество результатов для показа" + +#: ../../operation/network/network_report.php:109 +#: ../../operation/network/network_usage_map.php:82 +msgid "Time Period" +msgstr "Период времени" + +#: ../../operation/network/network_report.php:121 +#: ../../operation/network/network_usage_map.php:94 +#: ../../operation/netflow/nf_live_view.php:284 +msgid "Select this checkbox to write interval instead a date." +msgstr "Установите этот флажок, чтобы вместо даты записать интервал." + +#: ../../operation/network/network_report.php:186 +#: ../../operation/network/network_report.php:233 +msgid "Flows" +msgstr "Потоки" + +#: ../../operation/network/network_report.php:197 +#: ../../operation/network/network_report.php:235 +msgid "Packets" +msgstr "Пакеты" + +#: ../../operation/network/network_report.php:256 +#, php-format +msgid "Filtered by port %s. Click here to remove the filter." +msgstr "Отфильтровано по порту %s. Нажмите здесь, чтобы удалить фильтр." + +#: ../../operation/network/network_report.php:256 +#, php-format +msgid "Filtered by IP %s. Click here to remove the filter." +msgstr "Отфильтровано по IP %s. Нажмите здесь, чтобы удалить фильтр." + +#: ../../operation/network/network_usage_map.php:29 +#: ../../operation/menu.php:100 +msgid "Network usage map" +msgstr "Карта использования сети" + +#: ../../operation/network/network_usage_map.php:139 +msgid "Show netflow map" +msgstr "Показать карту потока сети" + +#: ../../operation/network/network_usage_map.php:175 +msgid "No data retrieved" +msgstr "Данные не получены" + +#: ../../operation/netflow/nf_live_view.php:123 +#: ../../operation/netflow/nf_live_view.php:145 +#: ../../operation/netflow/nf_live_view.php:151 +msgid "Netflow live view" +msgstr "Обзор живого сетевого потока" + +#: ../../operation/netflow/nf_live_view.php:162 +msgid "Error creating filter" +msgstr "Ошибка при создании фильтра" + +#: ../../operation/netflow/nf_live_view.php:164 +msgid "Filter created successfully" +msgstr "Фильтр создан успешно" + +#: ../../operation/netflow/nf_live_view.php:183 +msgid "Filter updated successfully" +msgstr "Фильтр обновлен успешно" + +#: ../../operation/netflow/nf_live_view.php:184 +msgid "Error updating filter" +msgstr "Ошибка при обновлении фильтра" + +#: ../../operation/netflow/nf_live_view.php:208 +msgid "Draw live filter" +msgstr "Извлечение фильтра в реальном времени" + +#: ../../operation/netflow/nf_live_view.php:242 +msgid "Connection" +msgstr "Подключение" + +#: ../../operation/netflow/nf_live_view.php:295 +#: ../../operation/incidents/integriaims_export_csv.php:92 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:374 +#: ../../operation/incidents/list_integriaims_incidents.php:155 +msgid "Resolution" +msgstr "Разрешение" + +#: ../../operation/netflow/nf_live_view.php:295 +msgid "The interval will be divided in chunks the length of the resolution." +msgstr "Интервал будет разделен на куски длины разрешения." + +#: ../../operation/netflow/nf_live_view.php:396 +msgid "Select a filter" +msgstr "Выбрать фильтр" + +#: ../../operation/netflow/nf_live_view.php:469 +msgid "IP address resolution" +msgstr "Разрешение IP адреса" + +#: ../../operation/netflow/nf_live_view.php:469 +msgid "Resolve the IP addresses to get their hostnames." +msgstr "Разрешить IP адреса, чтобы получить имена хостов." + +#: ../../operation/netflow/nf_live_view.php:472 +msgid "Source ip" +msgstr "IP Источник" + +#: ../../operation/netflow/nf_live_view.php:495 +msgid "Draw" +msgstr "Рисовать" + +#: ../../operation/netflow/nf_live_view.php:499 +msgid "Save as new filter" +msgstr "Сохранить как новый фильтр" + +#: ../../operation/netflow/nf_live_view.php:500 +msgid "Update current filter" +msgstr "Обновить текущий фильтр" + +#: ../../operation/netflow/nf_live_view.php:514 +msgid "No filter selected" +msgstr "Фильтр не выбран" + +#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:86 +msgid "Netflow explorer" +msgstr "Netflow explorer" + +#: ../../operation/snmpconsole/snmp_statistics.php:146 +#: ../../operation/snmpconsole/snmp_view.php:732 +msgid "There are no SNMP traps in database" +msgstr "Здесь нет прерываний SNMP в базе данных" + +#: ../../operation/snmpconsole/snmp_statistics.php:159 +msgid "Traps received by source" +msgstr "Ловушки, полученные через определённый источник" + +#: ../../operation/snmpconsole/snmp_statistics.php:173 +#: ../../operation/snmpconsole/snmp_statistics.php:241 +msgid "Number" +msgstr "Количество" + +#: ../../operation/snmpconsole/snmp_statistics.php:187 +#: ../../operation/snmpconsole/snmp_view.php:964 +msgid "View agent details" +msgstr "Просмотреть агент деталей" + +#: ../../operation/snmpconsole/snmp_statistics.php:227 +msgid "Traps received by Enterprise String" +msgstr "Ловушки, полученные строкой Enterprise" + +#: ../../operation/snmpconsole/snmp_statistics.php:240 +msgid "Trap Enterprise String" +msgstr "Строка ловушки Enterprise" + +#: ../../operation/snmpconsole/snmp_browser.php:74 +msgid "SNMP Browser" +msgstr "Браузер SNMP" + +#: ../../operation/snmpconsole/snmp_browser.php:204 +msgid "Adding modules in progress" +msgstr "Добавление модулей в процессе" + +#: ../../operation/snmpconsole/snmp_browser.php:538 +msgid "Create policy" +msgstr "Создать политику" + +#: ../../operation/snmpconsole/snmp_browser.php:630 +msgid "Are you sure you want add module?" +msgstr "Вы уверены, что хотите добавить модуль?" + +#: ../../operation/snmpconsole/snmp_view.php:624 +msgid "" +"Search by any alphanumeric field in the trap.\n" +"\t\tREMEMBER trap sources need to be searched by IP Address" +msgstr "" +"Поиск по любому буквенно-цифровому полю в ловушке.\n" +"\t\tПОМНИТЕ источники ловушек нужно искать по IP-адресу" + +#: ../../operation/snmpconsole/snmp_view.php:650 +msgid "Search by trap type" +msgstr "Поиск по типу прерывания" + +#: ../../operation/snmpconsole/snmp_view.php:674 +msgid "Group by Enterprise String/IP" +msgstr "Группировка по строке/IP Enterprise" + +#: ../../operation/snmpconsole/snmp_view.php:730 +msgid "There are no SNMP traps in database that contains this filter" +msgstr "В базе данных нет ловушек SNMP, содержащих этот фильтр" + +#: ../../operation/snmpconsole/snmp_view.php:770 +msgid "Refresh every" +msgstr "Обновлять каждые" + +#: ../../operation/snmpconsole/snmp_view.php:782 +msgid "SNMP Traps" +msgstr "SNMP-ловушки" + +#: ../../operation/snmpconsole/snmp_view.php:873 +msgid "Trap subtype" +msgstr "Подтип ловушки" + +#: ../../operation/snmpconsole/snmp_view.php:1080 +msgid "Variable bindings:" +msgstr "Переменные ссылки:" + +#: ../../operation/snmpconsole/snmp_view.php:1093 +msgid "See more details" +msgstr "Просмотрите подробную информацию" + +#: ../../operation/snmpconsole/snmp_view.php:1105 +msgid "Enterprise String:" +msgstr "Строка Enterprise:" + +#: ../../operation/snmpconsole/snmp_view.php:1157 +msgid "Trap type:" +msgstr "Тип ловушки:" + +#: ../../operation/snmpconsole/snmp_view.php:1183 +msgid "Count:" +msgstr "Посчитать" + +#: ../../operation/snmpconsole/snmp_view.php:1187 +msgid "First trap:" +msgstr "Первая ловушка:" + +#: ../../operation/snmpconsole/snmp_view.php:1191 +msgid "Last trap:" +msgstr "Последняя ловушка:" + +#: ../../operation/snmpconsole/snmp_view.php:1212 +msgid "No matching traps found" +msgstr "Соответствующих трапов не найдено" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:28 +#: ../../operation/menu.php:125 +msgid "MIB uploader" +msgstr "MIB загрузчик" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:70 +msgid "" +"MIB files will be installed on the system. Please note that a MIB may depend " +"on other MIB. To customize trap definitions use the SNMP trap editor." +msgstr "" +"Файлы MIB будут установлены в системе. Обратите внимание, что MIB может " +"зависеть от других MIB. Для настройки определений ловушек используйте " +"редактор ловушек SNMP." + +#: ../../operation/menu.php:90 +msgid "Netflow Live View" +msgstr "Обзор живого сетевого потока" + +#: ../../operation/menu.php:120 +msgid "SNMP browser" +msgstr "Браузер SNMP" + +#: ../../operation/menu.php:135 +msgid "SNMP" +msgstr "SNMP" + +#: ../../operation/menu.php:254 ../../operation/gis_maps/gis_map.php:35 +msgid "GIS Maps" +msgstr "ГИС Карты" + +#: ../../operation/menu.php:259 +msgid "List of Gis maps" +msgstr "Список карт Gis" + +#: ../../operation/menu.php:298 +msgid "Topology maps" +msgstr "Карты топологии" + +#: ../../operation/menu.php:414 +msgid "RSS" +msgstr "Ленты новостей RSS" + +#: ../../operation/menu.php:423 ../../operation/events/sound_events.php:61 +msgid "Sound Events" +msgstr "Звуковые события" + +#: ../../operation/menu.php:434 ../../operation/events/events.php:922 +msgid "Sound Alerts" +msgstr "Звуковые Оповещения" + +#: ../../operation/menu.php:456 +msgid "Configure user notifications" +msgstr "Настройка уведомлений пользователей" + +#: ../../operation/menu.php:480 +msgid "Integria IMS statistics" +msgstr "Статистика Integria IMS" + +#: ../../operation/menu.php:481 +msgid "Integria IMS ticket list" +msgstr "Список заявок Integria IMS" + +#: ../../operation/menu.php:495 +msgid "Messages List" +msgstr "Список сообщений" + +#: ../../operation/menu.php:496 +msgid "New message" +msgstr "Новое сообщение" + +#: ../../operation/menu.php:517 +msgid "Scheduled downtime" +msgstr "Предусмотренная графиком остановка" + +#: ../../operation/menu.php:591 +msgid "Tools" +msgstr "Инструменты" + +#: ../../operation/gis_maps/gis_map.php:200 +msgid "No maps found" +msgstr "Карты не найдены" + +#: ../../operation/gis_maps/gis_map.php:219 +msgid "Caution: Do you want delete the map?" +msgstr "Внимание: Вы хотите удалить карту?" + +#: ../../operation/gis_maps/gis_map.php:226 +msgid "Do you want to set default the map?" +msgstr "Вы хотите установить карту по умолчанию?" + +#: ../../operation/gis_maps/gis_map.php:234 +msgid "There was error on setup the default map." +msgstr "Найдена ошибка при настройке карты по умолчанию" + +#: ../../operation/gis_maps/render_view.php:157 +msgid "Filter by status" +msgstr "Фильтровать по статусу" + +#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275 +#: ../../operation/gis_maps/ajax.php:444 +msgid "Position (Lat, Long, Alt)" +msgstr "Позиция (Шир, Длина, Долгота)" + +#: ../../operation/gis_maps/ajax.php:238 +msgid "Start contact" +msgstr "Начальный контакт" + +#: ../../operation/gis_maps/ajax.php:240 +msgid "Num reports" +msgstr "Нум отчетов" + +#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448 +msgid "Default position of map." +msgstr "Положение карты по умолчанию." + +#: ../../operation/gis_maps/ajax.php:339 +msgid "Satellite Version" +msgstr "Версия Satellite" + +#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502 +msgid "Number of non-validated critical events" +msgstr "Количество не прошедших верификацию критических событий" + +#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512 +msgid "Alert(s) fired" +msgstr "Предупреждение(ия) сработало" + +#: ../../operation/incidents/integriaims_export_csv.php:88 +msgid "ID Ticket" +msgstr "ID-Заявка" + +#: ../../operation/incidents/integriaims_export_csv.php:90 +#: ../../operation/incidents/list_integriaims_incidents.php:263 +msgid "Group/Company" +msgstr "Группа/компания" + +#: ../../operation/incidents/integriaims_export_csv.php:95 +msgid "Started" +msgstr "Запущено" + +#: ../../operation/incidents/integriaims_export_csv.php:96 +#: ../../operation/incidents/configure_integriaims_incident.php:263 +#: ../../operation/incidents/list_integriaims_incidents.php:141 +#: ../../operation/incidents/list_integriaims_incidents.php:267 +msgid "Creator" +msgstr "Создатель" + +#: ../../operation/incidents/incident_statistics.php:35 +msgid "Incidents by status" +msgstr "Инциденты по статусу" + +#: ../../operation/incidents/incident_statistics.php:38 +msgid "Incidents by priority" +msgstr "Инциденты по важности" + +#: ../../operation/incidents/incident_statistics.php:41 +msgid "Incidents by group" +msgstr "Инциденты по группам" + +#: ../../operation/incidents/incident_statistics.php:44 +msgid "Incidents by user" +msgstr "инциденты по пользователям" + +#: ../../operation/incidents/configure_integriaims_incident.php:33 +msgid "Update Integria IMS Ticket" +msgstr "Обновить заявку Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:35 +msgid "Create Integria IMS Ticket" +msgstr "Создать заявку Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:115 +msgid "Successfully created in Integria IMS" +msgstr "Успешно создано в Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:116 +msgid "Could not be created in Integria IMS" +msgstr "Не удалось создать в Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:127 +msgid "Successfully updated in Integria IMS" +msgstr "Успешно обновлено в Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:128 +msgid "Could not be updated in Integria IMS" +msgstr "Не удалось обновить в Integria IMS" + +#: ../../operation/incidents/configure_integriaims_incident.php:275 +msgid "" +"This field corresponds to the Integria IMS user specified in Integria IMS " +"setup" +msgstr "" +"Это поле соответствует пользователю Integria IMS, указанному в настройке " +"Integria IMS" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:84 +msgid "Not yet" +msgstr "Не сейчас" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:88 +msgid "Not closed yet" +msgstr "Еще не закрыто" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:122 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:296 +msgid "Filename" +msgstr "Имя файла" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:169 +msgid "File successfully added" +msgstr "Файл успешно добавлен" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:170 +msgid "File could not be added" +msgstr "Файл не может быть добавлен" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:173 +msgid "File has an invalid extension" +msgstr "Файл имеет недопустимое расширение" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:189 +msgid "File successfully deleted" +msgstr "Файл успешно удален" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:190 +msgid "File could not be deleted" +msgstr "Файл не может быть удален" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:254 +msgid "File name" +msgstr "Имя файла" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 +msgid "Add attachment" +msgstr "Добавить вложение" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:274 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:448 +msgid "Attached files" +msgstr "Вложенные файлы" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:332 +msgid "Comment successfully added" +msgstr "Комментарий успешно добавлен" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 +msgid "Comment could not be added" +msgstr "Комментарий не может быть добавлен" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:359 +msgid "No comments found" +msgstr "Комментарии не найдены" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:400 +msgid "Created by" +msgstr "Создано" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:401 +msgid "Owned by" +msgstr "Принадлежит" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:402 +msgid "Closed by" +msgstr "Закрыто" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:419 +msgid "Closed at" +msgstr "Закрыто в" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:430 +msgid "People" +msgstr "Участники" + +#: ../../operation/incidents/list_integriaims_incidents.php:31 +msgid "Integria IMS Tickets" +msgstr "Заявки Integria IMS" + +#: ../../operation/incidents/list_integriaims_incidents.php:113 +msgid "Text filter" +msgstr "Текстовый фильтр" + +#: ../../operation/incidents/list_integriaims_incidents.php:177 +msgid "Created from" +msgstr "Создано из" + +#: ../../operation/incidents/list_integriaims_incidents.php:189 +msgid "Created to" +msgstr "Создано для" + +#: ../../operation/incidents/list_integriaims_incidents.php:262 +msgid "Ticket" +msgstr "Заявка" + +#: ../../operation/incidents/list_integriaims_incidents.php:264 +msgid "Status/Resolution" +msgstr "Статус/Решение" + +#: ../../operation/incidents/list_integriaims_incidents.php:265 +msgid "Prior" +msgstr "Предыдущий" + +#: ../../operation/incidents/list_integriaims_incidents.php:266 +msgid "Updated/Started" +msgstr "Обновлено/Запущено" + +#: ../../operation/incidents/list_integriaims_incidents.php:316 +msgid "No tickets to show" +msgstr "Нет заявок для показа" + +#: ../../operation/search_main.php:55 ../../operation/search_main.php:57 +#: ../../operation/search_main.php:65 ../../operation/search_main.php:67 +#: ../../operation/search_main.php:69 ../../operation/search_main.php:71 +#: ../../operation/search_main.php:74 +#, php-format +msgid "%s Found" +msgstr "%s Найдено" + +#: ../../operation/search_main.php:64 +msgid "Users found" +msgstr "Пользователи найдены" + +#: ../../operation/search_main.php:66 +msgid "Graphs found" +msgstr "Графики найдены" + +#: ../../operation/search_main.php:68 +msgid "Reports found" +msgstr "Отчеты найдены" + +#: ../../operation/search_main.php:83 +#, php-format +msgid "Show %s of %s. View all matches" +msgstr "Показать %s of %s. Просмотреть все совпадения" + +#: ../../operation/reporting/reporting_viewer.php:199 +msgid "View Report" +msgstr "Посмотреть отчёт" + +#: ../../operation/reporting/reporting_viewer.php:241 +msgid "Set initial date" +msgstr "Установить начальную дату" + +#: ../../operation/reporting/reporting_viewer.php:269 +msgid "Invalid date selected. Initial date must be before end date." +msgstr "" +"Выбрана неправильная дата. Начальная дата должна быть раньше конечной даты." + +#: ../../operation/reporting/reporting_viewer.php:374 +#: ../../operation/reporting/graph_viewer.php:407 +msgid "Invalid date selected" +msgstr "Выбрана неверная дата" + +#: ../../operation/reporting/custom_reporting.php:28 +#: ../../operation/reporting/graph_viewer.php:441 +msgid "There are no defined reportings" +msgstr "Здесь нет ни одного репортажа" + +#: ../../operation/reporting/graph_viewer.php:280 +msgid "No data." +msgstr "Нет данных." + +#: ../../operation/reporting/graph_viewer.php:314 +#: ../../operation/reporting/graph_viewer.php:336 +msgid "Graph defined" +msgstr "Определенный график" + +#: ../../operation/reporting/graph_viewer.php:328 +msgid "Equalize maxiddmum thresholds" +msgstr "Уравнять пороговые значения maxiddmum" + +#: ../../operation/reporting/graph_viewer.php:328 +msgid "" +"If an option is selected, all graphs will have the highest value from all " +"modules included in the graph as a maximum threshold" +msgstr "" +"Если опция выбрана, все графики будут иметь наибольшее значение из всех " +"модулей, включенных в график, в качестве максимального порога" + +#: ../../operation/reporting/graph_viewer.php:337 +msgid "Zoom x1" +msgstr "Увеличить x1" + +#: ../../operation/reporting/graph_viewer.php:338 +msgid "Zoom x2" +msgstr "Увеличить x2" + +#: ../../operation/reporting/graph_viewer.php:339 +msgid "Zoom x3" +msgstr "Увеличить x3" + +#: ../../operation/reporting/graph_viewer.php:415 +msgid "Custom graph viewer" +msgstr "Осмоторщик пользовательского графика" + +#: ../../operation/events/events_list.php:348 +#: ../../operation/events/events_list.php:1087 +msgid "No filter loaded" +msgstr "Нет загруженного фильтра" + +#: ../../operation/events/events_list.php:356 +#: ../../operation/events/events_list.php:1087 +msgid "Filter loaded" +msgstr "Фильтр загружен" + +#: ../../operation/events/events_list.php:973 +#: ../../operation/events/events.php:1033 +msgid "Group agents" +msgstr "Групповые агенты" + +#: ../../operation/events/events_list.php:1001 +#: ../../operation/events/events.php:1223 +msgid "Id source event" +msgstr "Событие источника Id" + +#: ../../operation/events/events_list.php:1093 +#: ../../operation/events/events_list.php:1095 +msgid "Event control filter" +msgstr "Фильтр контроля событий" + +#: ../../operation/events/events_list.php:1103 +msgid "Error creating filter." +msgstr "Ошибка при создании фильтра." + +#: ../../operation/events/events_list.php:1107 +msgid "Error creating filter is duplicated." +msgstr "Ошибка при создании фильтра, поскольку он дублирован." + +#: ../../operation/events/events_list.php:1111 +msgid "Filter created." +msgstr "Фильтр создан." + +#: ../../operation/events/events_list.php:1116 +msgid "Filter updated." +msgstr "Фильтр обновлен." + +#: ../../operation/events/events_list.php:1120 +msgid "Error updating filter." +msgstr "Ошибка обновления фильтра." + +#: ../../operation/events/sound_events.php:83 +msgid "Sound console" +msgstr "Звуковые консоли" + +#: ../../operation/events/events_rss.php:195 +msgid "Your IP is not into the IP list with API access." +msgstr "Ваш IP не входит в список IP с доступом к API." + +#: ../../operation/events/events_rss.php:214 +msgid "The URL of your feed has bad hash." +msgstr "URL вашего фида содержит неправильный хэш." + +#: ../../operation/events/events.php:754 +msgid "Event viewer" +msgstr "Программа просмотра событий" + +#: ../../operation/events/events.php:801 +msgid "History event list" +msgstr "Список истории событий" + +#: ../../operation/events/events.php:812 +msgid "RSS Events" +msgstr "RSS События" + +#: ../../operation/events/events.php:823 +msgid "Export to CSV file" +msgstr "Эксорт в файл CSV" + +#: ../../operation/events/events.php:834 ../../operation/events/events.php:882 +msgid "Sound events" +msgstr "Звуковые события" + +#: ../../operation/events/events.php:887 +msgid "History" +msgstr "История" + +#: ../../operation/events/events.php:948 +msgid "" +"Event viewer is disabled due event replication. For more information, please " +"contact with the administrator" +msgstr "" +"Просмотр событий отключен из-за события репликации. Для получения " +"дополнительной информации, пожалуйста, свяжитесь с администратором" + +#: ../../operation/events/events.php:1473 +msgid "Current filter" +msgstr "Текущий фильтр" + +#: ../../operation/events/events.php:1478 +msgid "Not set." +msgstr "Не задано" + +#: ../../operation/events/events.php:1491 +msgid "Any status." +msgstr "Любой статус." + +#: ../../operation/events/events.php:1495 +msgid "New events." +msgstr "Новые события." + +#: ../../operation/events/events.php:1499 +msgid "Validated." +msgstr "Подтверждено." + +#: ../../operation/events/events.php:1503 +msgid "In proccess." +msgstr "В процессе." + +#: ../../operation/events/events.php:1507 +msgid "Not validated." +msgstr "Не подтверждено." + +#: ../../operation/events/events.php:1519 +msgid "Any time." +msgstr "Любое время." + +#: ../../operation/events/events.php:1521 +#: ../../operation/events/events.php:2434 +msgid "Last hour." +msgstr "За последний час." + +#: ../../operation/events/events.php:1523 +#, php-format +msgid "Last %d hours." +msgstr "За последние %d часа(ов)." + +#: ../../operation/events/events.php:1531 +msgid "Duplicated" +msgstr "Дублировано" + +#: ../../operation/events/events.php:1534 +msgid "All events." +msgstr "Все события." + +#: ../../operation/events/events.php:1538 +msgid "Group agents." +msgstr "Агенты группы." + +#: ../../operation/events/events.php:1628 +msgid "In progress selected" +msgstr "Выбранные в процессе" + +#: ../../operation/events/events.php:1629 +msgid "Validate selected" +msgstr "Подтверждено успешно" + +#: ../../operation/events/events.php:1663 +#: ../../operation/events/events.build_table.php:1001 +msgid "Execute event response" +msgstr "Выполнить ответ на событие" + +#: ../../operation/events/events.php:1676 +#: ../../operation/events/events.build_table.php:1009 +#, php-format +msgid "A maximum of %s event custom responses can be selected" +msgstr "Можно выбрать максимум %s пользовательских ответов на событие" + +#: ../../operation/events/events.php:1681 +#: ../../operation/events/events.build_table.php:1014 +msgid "Please, select an event" +msgstr "Пожалуйста, выберите событие" + +#: ../../operation/events/events.php:1770 +msgid "has at least" +msgstr "есть как минимум" + +#: ../../operation/events/events.php:1772 +msgid "events" +msgstr "событий" + +#: ../../operation/events/events.php:2016 +msgid "Validate events" +msgstr "Подтверждение событий" + +#: ../../operation/events/events.php:2031 +#: ../../operation/events/events.build_table.php:860 +msgid "Change to in progress status" +msgstr "Изменение на статус в процессе выполнения" + +#: ../../operation/events/events.php:2040 +msgid "Delete events" +msgstr "Удалить события" + +#: ../../operation/events/events.php:2436 +msgid "hours." +msgstr "часы." + +#: ../../operation/events/events.build_table.php:81 +msgid "More detail" +msgstr "Подробнее" + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid "The Agent: " +msgstr "Агент: " + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid " has " +msgstr " имеет " + +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 +msgid " events." +msgstr " события." + +#: ../../operation/search_policies.php:36 +msgid "Id_group" +msgstr "Id_group" + +#: ../../operation/servers/recon_view.php:32 +#: ../../operation/servers/recon_view.php:38 +#: ../../operation/servers/recon_view.php:52 +msgid "Recon View" +msgstr "Обзор рекона" + +#: ../../operation/servers/recon_view.php:147 +msgid "Network recon task" +msgstr "Сеть рекон задачи" + +#: ../../operation/servers/recon_view.php:174 +msgid "has no recon tasks assigned" +msgstr "не имеет поставленных задач recon" + +#: ../../general/footer.php:54 +#, php-format +msgid "Page generated on %s" +msgstr "Страница создана на %s" + +#: ../../general/php7_message.php:38 +msgid "Access Help" +msgstr "Помощь в доступе" + +#: ../../general/php7_message.php:41 +msgid "Warning php version" +msgstr "Предостережение об опасности php версия" + +#: ../../general/first_task/incidents.php:21 +msgid "There are no incidents defined yet." +msgstr "Пока не определено ни одного инцидента." + +#: ../../general/first_task/incidents.php:31 +#: ../../general/first_task/incidents.php:46 +msgid "Create Incidents" +msgstr "Создать инциденты" + +#: ../../general/first_task/incidents.php:34 +#, php-format +msgid "" +"Besides receiving and processing data to monitor systems or applications,\n" +"\t\t\tyou're also required to monitor possible incidents which might take " +"place on these subsystems within the system's monitoring process.\n" +"\t\t\tFor it, the %s team has designed an incident manager from which any " +"user is able to open incidents,\n" +"\t\t\tthat explain what's happened on the network, and update them with " +"comments and files, at any time, in case there is a need to do so.\n" +"\t\t\tThis system allows users to work as a team, along with different roles " +"and work-flow systems which allow an incident to be\n" +"\t\t\tmoved from one group to another, and members from different groups and " +"different people could work on the same incident, sharing information and " +"files.\n" +"\t\t" +msgstr "" +"Помимо получения и обработки данных для мониторинга систем или приложений,\n" +"\t\t\t\tот вас также требуется отслеживать возможные инциденты, которые " +"могут произойти в этих подсистемах в процессе мониторинга системы.\n" +"\t\t\t\tДля этого команда %s разработала менеджер инцидентов, из которого " +"любой пользователь может открывать инциденты,\n" +"\t\t\t\tкоторые объясняют, что произошло в сети, и обновлять их " +"комментариями и файлами, в любое время, если в этом есть необходимость.\n" +"\t\t\t\tЭта система позволяет пользователям работать в команде, наряду с " +"различными ролями и системами рабочих потоков, которые позволяют инциденту " +"быть\n" +"\t\t\t\tперемещаться из одной группы в другую, а члены разных групп и разные " +"люди могут работать над одним и тем же инцидентом, обмениваясь информацией и " +"файлами.\n" +"\t\t" + +#: ../../general/first_task/recon_view.php:18 +msgid "There are no discovery tasks defined yet." +msgstr "Задачи discovery пока не определены." + +#: ../../general/first_task/recon_view.php:25 +msgid "Create Discovery Task" +msgstr "Создать задачу Discovery" + +#: ../../general/first_task/recon_view.php:28 +msgid "" +"Discovery Task are used to find new elements in the network. \n" "\t\tIf it detects any item, it will add that item to the monitoring, and if " "that item it is already being monitored, then it will \n" "\t\tignore it or will update its information.There are three types of " @@ -31188,21 +47696,148 @@ msgid "" "</strong>\n" "\t\ttype. You can define your own customized recon script." msgstr "" +"Задача Discovery используется для поиска новых элементов в сети. \n" +"\t\tЕсли она обнаружит какой-либо элемент, то добавит его в мониторинг, а " +"если этот элемент уже находится в мониторинге, то она\n" +"\t\tпроигнорирует его или обновит информацию о нем.Существует три типа " +"обнаружения: На основе <strong id=\"fuerte\"> ICMP </strong>(пинги), \n" +"\t\t<strong id=\"fuerte\">SNMP</strong> (обнаружение топологии сетей и их " +"интерфейсов), и другие <strong id=\"fuerte\">настроенные </strong>\n" +"\t\tтипы. Вы можете определить свой собственный настраиваемый сценарий " +"разведки." -#: ../../general/firts_task/network_map.php:23 +#: ../../general/first_task/recon_view.php:37 +msgid "Discover" +msgstr "Обнаружить" + +#: ../../general/first_task/HA_cluster_builder.php:37 +msgid "There are no HA clusters defined yet." +msgstr "Кластеры HA еще не определены." + +#: ../../general/first_task/HA_cluster_builder.php:45 +msgid "PANDORA FMS DB CLUSTER" +msgstr "КЛАСТЕР БАЗЫ ДАННЫХ PANDORA FMS" + +#: ../../general/first_task/HA_cluster_builder.php:48 +msgid "" +"With Pandora FMS Enterprise you can add high availability to your Pandora " +"FMS installation by adding redundant MySQL servers" +msgstr "" +"С помощью Pandora FMS Enterprise вы можете добавить высокую доступность к " +"вашей установке Pandora FMS путем добавления дополнительных серверов MySQL" + +#: ../../general/first_task/HA_cluster_builder.php:50 +msgid "" +"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " +"into a Pandora FMS DB Cluster." +msgstr "" +"Нажмите кнопку \"добавить новый узел\", чтобы начать преобразование вашего " +"кластера базы данных Pandora FMS в кластер базы данных Pandora FMS." + +#: ../../general/first_task/HA_cluster_builder.php:59 +msgid "Add new node" +msgstr "Добавить новый узел" + +#: ../../general/first_task/map_builder.php:34 +#: ../../general/first_task/map_builder.php:45 +msgid "Create Visual Console" +msgstr "Создание визуальной консоли" + +#: ../../general/first_task/map_builder.php:37 +#, php-format +msgid "" +"%s allows users to create visual maps on which each user is able to create " +"his or her own monitoring map. The new visual console editor is much more " +"practical, although the prior visual console editor had its advantages. On " +"the new visual console, we've been successful in imitating the sensation and " +"touch of a drawing application like GIMP. We've also simplified the editor " +"by dividing it into several subject-divided tabs named 'Data', 'Preview', " +"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was " +"designed to handle are 'static images', 'percentage bars', 'module graphs' " +"and 'simple values'." +msgstr "" +"%s позволяет пользователям создавать визуальные карты, на которых каждый " +"пользователь может создать свою собственную карту мониторинга. Новый " +"редактор визуальной консоли гораздо практичнее, хотя и у предыдущего " +"редактора визуальной консоли были свои преимущества. В новой визуальной " +"консоли нам удалось имитировать ощущения и прикосновения приложения для " +"рисования, такого как GIMP. Мы также упростили редактор, разделив его на " +"несколько вкладок, разделенных по темам, под названиями \"Данные\", " +"\"Предварительный просмотр\", \"Помощник\", \"Список элементов\" и " +"\"Редактор\". Элементы, для работы с которыми была разработана визуальная " +"карта %s, - это \"статические изображения\", \"процентные столбики\", " +"\"графики модулей\" и \"простые значения\"." + +#: ../../general/first_task/cluster_builder.php:38 +msgid "There are no clusters defined yet." +msgstr "Кластеры еще не определены." + +#: ../../general/first_task/cluster_builder.php:46 +#: ../../general/first_task/cluster_builder.php:64 +msgid "Create Cluster" +msgstr "Создать кластер" + +#: ../../general/first_task/cluster_builder.php:49 +msgid "" +"A cluster is a group of devices that provide the same service in high " +"availability." +msgstr "" +"Кластер - это группа сервисов, предоставляющих одну и ту же услугу в " +"условиях высокой доступности." + +#: ../../general/first_task/cluster_builder.php:51 +msgid "Depending on how they provide that service, we can find two types:" +msgstr "" +"В зависимости от того, как предоставляется эта услуга, мы можем выделить " +"два типа:" + +#: ../../general/first_task/cluster_builder.php:53 +msgid "" +"<b>Clusters to balance the service load</b>: these are active - active " +"(A/A) mode clusters. It means that all the nodes (or machines that compose " +"it) are working. They must be working because if one stops working, it will " +"overload the others." +msgstr "" +"<b>Кластеры для балансировки нагрузки на сервис</b>: это кластеры с активно-" +"активным режимом(A/A). Это означает, что все узлы (или машины, составляющие " +"его) работают. Они должны работать, потому что если один из них перестанет " +"работать, это приведет к перегрузке остальных." + +#: ../../general/first_task/cluster_builder.php:55 +msgid "" +"<b>Clusters to guarantee service</b>: these are active - passive (A/P) mode " +"clusters. It means that one of the nodes (or machines that make up the " +"cluster) will be running (primary) and another won't (secondary). When the " +"primary goes down, the secondary must take over and give the service " +"instead. Although many of the elements of this cluster are active-passive, " +"it will also have active elements in both of them that indicate that the " +"passive node is \"online\", so that in the case of a service failure in the " +"master, the active node collects this information." +msgstr "" +"<b>Кластеры для гарантированного обслуживания</b>: это кластеры с активно-" +"пассивным режимом (A/P). Это означает, что один из узлов (или машин, " +"составляющих кластер) будет работать (первичный), а другой - нет " +"(вторичный). Когда первичный выходит из строя, вторичный должен взять на " +"себя ответственность и предоставить сервис вместо него. Хотя многие элементы " +"этого кластера являются активно-пассивными, в нем также будут активные " +"элементы в обоих узлах, которые указывают, что пассивный узел находится " +"\"онлайн\", чтобы в случае сбоя обслуживания на главном узле, активный узел " +"собрал эту информацию." + +#: ../../general/first_task/network_map.php:19 msgid "There are no network map defined yet." -msgstr "" +msgstr "Карта сети еще не определена." -#: ../../general/firts_task/network_map.php:30 +#: ../../general/first_task/network_map.php:26 msgid "Network Map" -msgstr "" +msgstr "Карта Сети" -#: ../../general/firts_task/network_map.php:33 -#: ../../general/firts_task/network_map.php:49 +#: ../../general/first_task/network_map.php:29 +#: ../../general/first_task/network_map.php:50 msgid "Create Network Map" -msgstr "" +msgstr "Создайте карту сети" -#: ../../general/firts_task/network_map.php:34 +#: ../../general/first_task/network_map.php:32 msgid "" "There is also an open-source version of the network map. \n" "\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes " @@ -31210,58 +47845,295 @@ msgid "" "\t\t\t\t\t\t\t\tThere are three types of network maps:\n" "\t\t\t" msgstr "" +"Существует также версия карты сети с открытым исходным кодом. \n" +"\t\t\t\t\t\t\t\t\t\t\tЭта функция позволяет графически отобразить узлы и " +"связи, агентов, модули и группы, доступные пользователю. \n" +"\t\t\t\t\t\t\t\t\t\t\t\tСуществует три типа сетевых карт:\n" +"\t\t\t" -#: ../../general/firts_task/network_map.php:38 +#: ../../general/first_task/network_map.php:37 msgid "Topology Map" -msgstr "" +msgstr "Карта топологии" -#: ../../general/firts_task/network_map.php:39 +#: ../../general/first_task/network_map.php:38 msgid "Group Map" -msgstr "" +msgstr "Карта группы" -#: ../../general/firts_task/network_map.php:40 +#: ../../general/first_task/network_map.php:39 msgid "Radial Map (User without strict user)" -msgstr "" +msgstr "Радиальная карта (без строгого пользователя)" -#: ../../general/firts_task/network_map.php:41 +#: ../../general/first_task/network_map.php:40 msgid "Dinamic Map" -msgstr "" +msgstr "Динамическая карта" -#: ../../general/firts_task/network_map.php:42 +#: ../../general/first_task/network_map.php:41 msgid "Policy Map (Only Enterprise version)" -msgstr "" +msgstr "Карта политики (только версия Enterprise)" -#: ../../general/firts_task/custom_fields.php:23 -#: ../../general/firts_task/fields_manager.php:21 +#: ../../general/first_task/tags.php:18 +msgid "There are no tags defined yet." +msgstr "Теги еще не определены." + +#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 +msgid "Create Tags" +msgstr "Создать Теги" + +#: ../../general/first_task/tags.php:28 +msgid "" +"Access to modules can be configured by a tagging system.\n" +"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " +"chosen modules.\n" +"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " +"certain tags." +msgstr "" +"Доступ к модулям может быть настроен с помощью системы тегов.\n" +"\t\t\t\t\t\t\t\t\t\t\tТеги настраиваются в системе и назначаются выбранным " +"модулям.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tТаким образом, доступ пользователя может быть " +"ограничен модулями с определенными тегами." + +#: ../../general/first_task/omnishell.php:27 +msgid "There is no command defined yet." +msgstr "Команда еще не определена." + +#: ../../general/first_task/omnishell.php:37 +#, php-format +msgid "" +"Omnishell is an enterprise feature which allows you to execute a structured " +"command along any agent in your %s. The only requirement is to have remote " +"configuration enabled in your agent." +msgstr "" +"Omnishell - это корпоративная функция, которая позволяет вам выполнять " +"структурированную команду на любом агенте в вашем %s. Единственным " +"требованием является включение удаленной конфигурации в вашем агенте." + +#: ../../general/first_task/omnishell.php:42 +msgid "" +"You can execute any command on as many agents you need, and check the " +"execution on all of them using the Omnishell Command View" +msgstr "" +"Вы можете выполнить любую команду на любом количестве агентов и проверить ее " +"выполнение на всех из них с помощью Просмотра Команд Omnishell." + +#: ../../general/first_task/omnishell.php:50 +msgid "Define a command" +msgstr "Определите команду" + +#: ../../general/first_task/custom_fields.php:19 +#: ../../general/first_task/fields_manager.php:18 msgid "There are no custom fields defined yet." -msgstr "" +msgstr "Пользовательские поля еще не определены." -#: ../../general/firts_task/custom_fields.php:28 -msgid "Custom Fields" -msgstr "" - -#: ../../general/firts_task/custom_fields.php:31 -#: ../../general/firts_task/custom_fields.php:35 +#: ../../general/first_task/custom_fields.php:27 +#: ../../general/first_task/custom_fields.php:36 msgid "Create Custom Fields" -msgstr "" +msgstr "Создание пользовательских полей" -#: ../../general/firts_task/custom_fields.php:32 +#: ../../general/first_task/custom_fields.php:30 msgid "" "Custom fields are an easy way to personalized agent's information.\n" "\t\t You're able to create custom fields by klicking on 'Administration' -> " "'Manage monitoring' -> 'Manage custom fields'. " msgstr "" +"Пользовательские поля - это простой способ персонализировать информацию об " +"агентах.\n" +"\t\t Вы можете создать пользовательские поля, нажав на 'Администрация' -> " +"'Управление мониторингом' -> 'Управление пользовательскими полями'. " -#: ../../general/firts_task/collections.php:21 -msgid "There are no collections defined yet." +#: ../../general/first_task/fields_manager.php:22 +msgid "Fields Manager" +msgstr "Менеджер полей" + +#: ../../general/first_task/fields_manager.php:25 +msgid "Create Fields Manager" +msgstr "Создать Менеджер полей" + +#: ../../general/first_task/fields_manager.php:28 +msgid "" +"Custom fields are an easy way to personalized agent's information.\n" +"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -" +"> 'Manage monitoring' -> 'Manage custom fields'. " msgstr "" +"Пользовательские поля - это простой способ персонализировать информацию об " +"агентах.\n" +"\t\t\t\t\t\tВы можете создать пользовательские поля, нажав на " +"'Администрация' -> 'Управление мониторингом' -> 'Управление " +"пользовательскими полями'. " -#: ../../general/firts_task/collections.php:28 -#: ../../general/firts_task/collections.php:37 +#: ../../general/first_task/fields_manager.php:34 +msgid "Create Fields " +msgstr "Создать поля " + +#: ../../general/first_task/planned_downtime.php:18 +msgid "There are no planned downtime defined yet." +msgstr "Запланированные остановки пока не определены." + +#: ../../general/first_task/planned_downtime.php:25 +#: ../../general/first_task/planned_downtime.php:37 +msgid "Create Planned Downtime" +msgstr "Создание запланированной остановки" + +#: ../../general/first_task/planned_downtime.php:28 +#, php-format +msgid "" +"%s contains a scheduled downtime management system.\n" +"\t\t\t\t\t\tThis system was designed to deactivate alerts during specific " +"intervals whenever there is down time by deactivating the agent.\n" +"\t\t\t\t\t\tIf an agent is deactivated, it doesn't gather information. " +"During down time, down-time intervals aren't taken into\n" +"\t\t\t\t\t\taccount for most metrics or report types, because agents don't " +"contain any data within those intervals." +msgstr "" +"%s содержит систему управления остановками по расписанию.\n" +"\t\t\t\t\t\t\t\tЭта система была разработана для отключения оповещений в " +"определенные интервалы времени, когда происходит остановка, путем " +"деактивации агента.\n" +"\t\t\t\t\t\t\t\t\tЕсли агент деактивирован, он не собирает информацию. Во " +"время остановки интервалы времени остановки не учитываются.\n" +"\t\t\t\t\t\t\t\t\t для большинства метрик или типов отчетов, поскольку " +"агенты не содержат никаких данных в течение этих интервалов." + +#: ../../general/first_task/snmp_filters.php:18 +msgid "There are no SNMP filter defined yet." +msgstr "Фильтр SNMP еще не определен." + +#: ../../general/first_task/snmp_filters.php:22 +msgid "SNMP Filter" +msgstr "Фильтр SNMP" + +#: ../../general/first_task/snmp_filters.php:25 +#: ../../general/first_task/snmp_filters.php:37 +msgid "Create SNMP Filter" +msgstr "Создать фильтра SNMP" + +#: ../../general/first_task/snmp_filters.php:28 +msgid "" +"Some systems receive a high number of traps. \n" +"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " +"Pandora FMS versions 3.2 and above, \n" +"\t\t\t\tit's possible to filter the traps that the server obtains in order " +"to avoid straining the application unnecessarily.\n" +"\t\t\t\tIn order to define different filters, please go to 'Administration' -" +"> 'Manage SNMP Console' and 'SNMP Filters'. \n" +"\t\t\t\tOne trap which is going to run in conjunction with any of them - " +"just the ones for the server are going to get ruled out automatically. " +msgstr "" +"Некоторые системы получают большое количество ловушек. \n" +"\t\t\t\t\t\tНас интересует мониторинг только маленького процента из них. Из " +"Pandora FMS версии 3.2 и выше, \n" +"\t\t\t\t\t\tможно фильтровать ловушки, которые получает сервер, чтобы " +"избежать излишней нагрузки на приложение.\n" +"\t\t\t\t\t\tДля определения различных фильтров, пожалуйста, перейдите в " +"'Управление' -> 'Управление SNMP-консолью' и 'Фильтры SNMP'. \n" +"\t\t\t\t\tЛовушка, которая будет работать в сочетании с любой из них - " +"только те, которые находятся на сервере, будут автоматически отброшены. " + +#: ../../general/first_task/service_list.php:20 +msgid "There are no services defined yet." +msgstr "Услуги еще не определены." + +#: ../../general/first_task/service_list.php:28 +#: ../../general/first_task/service_list.php:42 +msgid "Create Services" +msgstr "Создание сервисов" + +#: ../../general/first_task/service_list.php:31 +msgid "" +"A service is a way to group your IT resources based on their " +"functionalities. \n" +"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, " +"your support application, or even your printers.\n" +"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, " +"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" +"\t\t\t\t\t\t By the following example, you're able to see more clearly what " +"a service is:\n" +"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " +"the world. \n" +"\t\t\t\t\t\t\tHis company consists of three big departments: A management, " +"an on-line shop and support." +msgstr "" +"Сервис - это способ группировки ИТ-ресурсов на основе их функциональных " +"возможностей. \n" +"\t\t\t\t\t\t\t\t\t Сервисом может быть, например, ваш официальный сайт, ваша " +"CRM-система, приложение поддержки или даже ваши принтеры.\n" +"\t\t\t\t\t\t\t\t\t Сервисы- это логические группы, которые могут включать " +"хосты, маршрутизаторы, коммутаторы, брандмауэры, CRM, ERP, веб-сайты и " +"множество других служб. \n" +"\t\t\t\t\t\t\t\t\t На следующем примере вы можете более четко увидеть, что " +"такое сервис:\n" +"\t\t\t\t\t\t\t\t\t\tПроизводитель микросхем продает компьютеры через свой " +"веб-сайт по всему миру. \n" +"\t\t\t\t\t\t\t\t\t\tЕго компания состоит из трех больших отделов: " +"Управление, интернет-магазин и служба поддержки." + +#: ../../general/first_task/custom_graphs.php:19 +msgid "There are no custom graphs defined yet." +msgstr "Пользовательские графики еще не определены." + +#: ../../general/first_task/custom_graphs.php:24 +msgid "Custom Graphs" +msgstr "Пользовательские графики" + +#: ../../general/first_task/custom_graphs.php:27 +#: ../../general/first_task/custom_graphs.php:39 +msgid "Create Custom Graph" +msgstr "Создание пользовательского графика" + +#: ../../general/first_task/custom_graphs.php:30 +#, php-format +msgid "" +"Graphs are designed to show the data collected by %s in a temporary scale " +"defined by the user.\n" +"\t\t\t\t%s Graphs display data in real time. They are generated every time " +"the operator requires any of them and display the up-to-date state.\n" +"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " +"graphs the user customizes by using one or more modules to do so." +msgstr "" +"Графики предназначены для отображения данных, собранных %s, во временном " +"масштабе, заданном пользователем. \n" +"\t\t\t\t%s Графики отображают данные в реальном времени. Они формируются " +"каждый раз, когда оператор требует любой из них, и отображают актуальное " +"состояние.\n" +"\t\t\t\tСуществует два типа графиков: автоматические графики агента и " +"графики, которые пользователь настраивает сам, используя для этого один или " +"несколько модулей." + +#: ../../general/first_task/transactional_list.php:21 +msgid "There are no transactions defined yet." +msgstr "Транзакции еще не определены." + +#: ../../general/first_task/transactional_list.php:28 +msgid "Transactions" +msgstr "Транзакции" + +#: ../../general/first_task/transactional_list.php:31 +#: ../../general/first_task/transactional_list.php:41 +msgid "Create Transactions" +msgstr "Создание транзакций" + +#: ../../general/first_task/transactional_list.php:34 +msgid "" +"The new transactional server allows you to execute tasks dependent on the " +"others following a user-defined design. This means that it is possible to " +"coordinate several executions to check a target at a given time.\n" +"\n" +"Transaction graphs represent the different processes within our " +"infrastructure that we use to deliver our service." +msgstr "" +"Новый транзакционный сервер позволяет выполнять задачи, зависящие от других, " +"следуя заданной пользователем схеме. Это означает, что можно координировать " +"исполнение нескольких задач для проверки цели в определенное время.\n" +"\n" +"Графы транзакций представляют различные процессы в нашей инфраструктуре, " +"которые мы используем для предоставления услуг." + +#: ../../general/first_task/collections.php:25 +#: ../../general/first_task/collections.php:39 msgid "Create Collections" -msgstr "" +msgstr "Создание коллекций" -#: ../../general/firts_task/collections.php:29 +#: ../../general/first_task/collections.php:28 msgid "" "A file collection is a group of files (e.g. scripts or executables) which " "are \n" @@ -31279,186 +48151,349 @@ msgid "" "can see on \n" "\t\t the picture below. " msgstr "" +"Коллекция файлов - это группа файлов (например, скриптов или исполняемых " +"файлов), которые \n" +"\t\tавтоматически копируются в определенный каталог агента (под Windows или " +"UNIX). Коллекции файлов может быть распространена\n" +"\t\tвместе с политиками для использования группой агентов, с помощью " +"'пакета' скриптов и модулей, которые их используют.\n" +"\t\tСначала мы узнаем, как использовать коллекции файлов в агенте, как " +"проводить это вручную, агент за агентом, без использования коллекций,\n" +"\t\tи как сделать то же самое с помощью политик.Наша первая задача - " +"организовать сборку файлов. Для того чтобы это сделать, перейдите в раздел " +"агента \n" +"\t\t администратора. Далее мы увидим 'под-опцию' под названием 'Коллекции'. " +"Пожалуйста, нажмите на него, чтобы создать новую коллекцию, как показано на " +"\n" +"\t\t на рисунке ниже. " -#: ../../general/firts_task/service_list.php:21 -msgid "There are no services defined yet." -msgstr "" +#: ../../general/header.php:80 +msgid "Sobre actualización de revisión menor" +msgstr "О незначительном обновлении" -#: ../../general/firts_task/service_list.php:28 -#: ../../general/firts_task/service_list.php:36 -msgid "Create Services" -msgstr "" +#: ../../general/header.php:115 ../../general/header.php:117 +msgid "Enter keywords to search" +msgstr "Введите ключевые слова для поиска" -#: ../../general/firts_task/service_list.php:29 +#: ../../general/header.php:380 +msgid "Go to support" +msgstr "Перейти к службе поддержки" + +#: ../../general/header.php:394 +msgid "Go to documentation" +msgstr "Перейти к документации" + +#: ../../general/header.php:816 +msgid "Report an issue" +msgstr "Сообщить о проблеме" + +#: ../../general/alert_enterprise.php:107 +#, php-format msgid "" -"A service is a way to group your IT resources based on their " -"functionalities. \n" -"\t\t\t\t\tA service could be e.g. your official website, your CRM system, " -"your support application, or even your printers.\n" -"\t\t\t\t\t Services are logical groups which can include hosts, routers, " -"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" -"\t\t\t\t\t By the following example, you're able to see more clearly what a " -"service is:\n" -"\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " -"the world. \n" -"\t\t\t\t\t\tHis company consists of three big departments: A management, an " -"on-line shop and support." +"This is the online help for %s console. This help is -in best cases- just a " +"brief contextual help, not intented to teach you how to use %s. Official " +"documentation of %s is about 900 pages, and you probably don't need to read " +"it entirely, but sure, you should download it and take a look.<br><br>\n" +" <a href='%s' target='_blanck' class='pandora_green_text font_10 " +"underline'>Download the official documentation</a>" msgstr "" +"Это интерактивная справка для консоли %s. Эта справка - в лучших случаях - " +"просто краткая контекстная справка, не предназначенная для того, чтобы " +"научить вас использовать %s. Официальная документация по %s составляет около " +"900 страниц, и вам, вероятно, не нужно читать ее полностью, но, конечно, вам " +"стоит скачать ее и посмотреть.<br><br>\n" +" <a href='%s' target='_blanck' class='pandora_green_text font_10 " +"underline'>Скачать официальную документацию</a>." -#: ../../general/firts_task/snmp_filters.php:21 -msgid "There are no SNMP filter defined yet." -msgstr "" - -#: ../../general/firts_task/snmp_filters.php:25 -msgid "SNMP Filter" -msgstr "" - -#: ../../general/firts_task/snmp_filters.php:28 -#: ../../general/firts_task/snmp_filters.php:35 -msgid "Create SNMP Filter" -msgstr "" - -#: ../../general/firts_task/snmp_filters.php:29 +#: ../../general/alert_enterprise.php:120 +#, php-format msgid "" -"Some systems receive a high number of traps. \n" -"\t\t\t\tWe're only interested in monitoring a tiny percentage of them. From " -"Pandora FMS versions 3.2 and above, \n" -"\t\t\t\tit's possible to filter the traps that the server obtains in order " -"to avoid straining the application unnecessarily.\n" -"\t\t\t\tIn order to define different filters, please go to 'Administration' -" -"> 'Manage SNMP Console' and 'SNMP Filters'. \n" -"\t\t\t\tOne trap which is going to run in conjunction with any of them - " -"just the ones for the server are going to get ruled out automatically. " +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance. <br> <br>\n" +" Please know that all attempts to access this page are recorded in " +"security logs of %s System Database." msgstr "" +"Доступ к этой странице ограничен только для авторизованных пользователей, " +"обратитесь к системному администратору, если вам нужна помощь. <br> <br>\n" +" Пожалуйста, знайте, что все попытки доступа к этой странице " +"регистрируются в журналах безопасности %s Базы Данных Системы." -#: ../../general/firts_task/tags.php:21 -msgid "There are no tags defined yet." -msgstr "" - -#: ../../general/firts_task/tags.php:28 ../../general/firts_task/tags.php:33 -msgid "Create Tags" -msgstr "" - -#: ../../general/firts_task/tags.php:29 +#: ../../general/alert_enterprise.php:130 +#, php-format msgid "" -"From Pandora FMS versions 5 and above, the access to modules can be " -"configured by a tags system.\n" -"\t\t\t\t\t\t\t\tTags are configured on the system and be assigned to the " -"chosen modules. \n" -"\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain " -"tags in this way. " +"The Update Manager client is included on %s. It helps system administrators " +"update their %s automatically, since the Update Manager retrieves new " +"modules, new plugins and new features (even full migrations tools for future " +"versions) automatically." msgstr "" +"Клиент Update Manager включен в %s. Он помогает системным администраторам " +"автоматически обновлять %s, поскольку Update Manager автоматически получает " +"новые модули, новые плагины и новые функции (даже полные инструменты " +"миграции для будущих версий)." -#: ../../general/firts_task/fields_manager.php:25 -msgid "Fields Manager" -msgstr "" - -#: ../../general/firts_task/fields_manager.php:28 -msgid "Create Fields Manager" -msgstr "" - -#: ../../general/firts_task/fields_manager.php:29 +#: ../../general/alert_enterprise.php:130 msgid "" -"Custom fields are an easy way to personalized agent's information.\n" -"\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -" -"> 'Manage monitoring' -> 'Manage custom fields'. " +"<b>OpenSource version updates are automated packages generated each week. " +"These updates come WITHOUT ANY warranty or support. If your system is " +"corrupted or a feature stops working properly, you will need to recover a " +"backup by yourself.</b>" msgstr "" +"<b>Обновления версий OpenSource - это автоматические пакеты, создаваемые " +"каждую неделю. Эти обновления поставляются БЕЗ какой-либо гарантии или " +"поддержки. Если ваша система повреждена или какая-либо функция перестала " +"работать должным образом, вам придется самостоятельно восстановить резервную " +"копию.</b>" -#: ../../general/firts_task/fields_manager.php:32 -msgid "Create Fields " -msgstr "" - -#: ../../general/firts_task/map_builder.php:32 -#: ../../general/firts_task/map_builder.php:40 -msgid "Create Visual Console" -msgstr "" - -#: ../../general/firts_task/map_builder.php:33 +#: ../../general/alert_enterprise.php:130 +#, php-format msgid "" -"Pandora FMS allows you to create visual maps in which each user is able to " -"create his own monitoring map.\n" -"\t\t\tThe new visual console editor is much more practical, although the old " -"visual console editor had its advantages. \n" -"\t\t\tWithin the new visual console, we've been successful in imitating the " -"sensation and touch of a drawing application like GIMP. \n" -"\t\t\tWe've also simplified the editor by dividing it into several subject-" -"matter tabs named 'Data', 'Preview', 'Wizard', 'List of Elements' and " -"'Editor'.\n" -"\t\t\tThe elements the Pandora FMS Visual Map was designed to handle are " -"'static image', 'percentage bar', 'module graph' and 'simple value'. " +"The Enterprise version comes with a different update system, with fully " +"tested, professionally-supported packages, and our support team is there to " +"help you in case of problems or queries. Update Manager is another feature " +"present in the Enterprise version and not included in the OpenSource " +"version. There are lots of advanced business-oriented features contained in " +"%s Enterprise Edition. For more information visit <a " +"href=\"http://pandorafms.com\">pandorafms.com</a>" msgstr "" +"Версия Enterprise поставляется с другой системой обновления, с полностью " +"протестированными, профессионально поддерживаемыми пакетами, а наша служба " +"поддержки готова помочь вам в случае возникновения проблем или вопросов. " +"Update Manager - это еще одна функция, присутствующая в версии Enterprise и " +"не включенная в версию OpenSource. В %s Enterprise Edition содержится " +"множество расширенных функций, ориентированных на бизнес. Для получения " +"дополнительной информации посетите <a " +"href=\"http://pandorafms.com\">pandorafms.com</a>." -#: ../../general/firts_task/incidents.php:23 -msgid "There are no incidents defined yet." -msgstr "" - -#: ../../general/firts_task/incidents.php:31 -#: ../../general/firts_task/incidents.php:40 -msgid "Create Incidents" -msgstr "" - -#: ../../general/firts_task/incidents.php:32 +#: ../../general/alert_enterprise.php:132 +#, php-format msgid "" -"Besides receiving and processing data to monitor systems or applications, \n" -"\t\t\tyou're also required to monitor possible incidents which might take " -"place on these systems within the system monitoring process.\n" -"\t\t\tFor it, the Pandora FMS team has designed an incident manager within " -"which any user is able to open incidents, \n" -"\t\t\texplaining what's happened on the network and to update them with " -"comments and files any time in case there is a need to do so.\n" -"\t\t\tThis system allows the users to work as a team, along with different " -"roles and work-flow systems which allows an incident to be \n" -"\t\t\tmoved from one group to another, and that members from different " -"groups and different people could work on the same incident, sharing " -"information and files.\n" -"\t\t" +"The new <a href=\"http://updatemanager.sourceforge.net\">Update Manager</a> " +"client is included on %s. It helps system administrators update their %s " +"automatically, since the Update Manager retrieves new modules, new plugins " +"and new features (even full migrations tools for future versions) " +"automatically." msgstr "" +"Новый клиент <a href=\"http://updatemanager.sourceforge.net\">Update " +"Manager</a> включен в %s. Он помогает системным администраторам " +"автоматически обновлять %s, поскольку Update Manager автоматически получает " +"новые модули, новые плагины и новые функции (даже инструменты полной " +"миграции для будущих версий)." -#: ../../general/firts_task/planned_downtime.php:21 -msgid "There are no planned downtime defined yet." -msgstr "" - -#: ../../general/firts_task/planned_downtime.php:28 -#: ../../general/firts_task/planned_downtime.php:34 -msgid "Create Planned Downtime" -msgstr "" - -#: ../../general/firts_task/planned_downtime.php:29 +#: ../../general/alert_enterprise.php:132 +#, php-format msgid "" -"Pandora FMS contains a scheduled downtime management system. \n" -"\t\t\t\t\t\tThis system was designed to deactivate the alerts in the " -"intervals whenever there is down time by deactivating the agent.\n" -"\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In a " -"down time, the down-time intervals aren't taken into \n" -"\t\t\t\t\t\taccount for most of the metrics or types of reports, because the " -"agents don't contain any data within those intervals. " +"The Update Manager is one of the most advanced features on the %s Enterprise " +"Edition. For more information visit <a " +"href=\"http://pandorafms.com\">http://pandorafms.com</a>." msgstr "" +"Update Manager - одна из самых продвинутых функций в %s Enterprise Edition. " +"Для получения дополнительной информации посетите <a " +"href=\"http://pandorafms.com\">http://pandorafms.com</a>." -#: ../../general/firts_task/custom_graphs.php:23 -msgid "There are no custom graphs defined yet." -msgstr "" - -#: ../../general/firts_task/custom_graphs.php:28 -msgid "Custom Graphs" -msgstr "" - -#: ../../general/firts_task/custom_graphs.php:31 -#: ../../general/firts_task/custom_graphs.php:36 -msgid "Create Custom Graph" -msgstr "" - -#: ../../general/firts_task/custom_graphs.php:32 +#: ../../general/alert_enterprise.php:132 +#, php-format msgid "" -"Graphs are designed to show the data collected by Pandora FMS in a temporary " -"scale defined by the user.\n" -"\t\t\t\tPandora FMS Graphs display data in real time. They are generated " -"every time the operator requires any of them and display the up-to-date " -"state.\n" -"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " -"graphs the user customizes by using one or more modules to do so." +"Update Manager sends anonymous information about %s usage (number of agents " +"and modules running). To disable it, please remove the remote server address " +"from the Update Manager plugin setup." msgstr "" +"Update Manager отправляет анонимную информацию об использовании %s " +"(количество запущенных агентов и модулей). Чтобы отключить его, удалите " +"адрес удаленного сервера из настроек плагина Update Manager." -#: ../../general/logon_failed.php:33 +#: ../../general/alert_enterprise.php:138 +msgid "" +"The community version doesn't have the ability to define your own library of " +"local modules, or distribute it to remote agents. You need to make those " +"changes individually on each agent which is possible by using external tools " +"and time and effort. Nor can it distribute local plugins, or have access to " +"the library of enterprise plugins to monitor applications such as VMWare, " +"RHEV or Informix between others. The Enterprise version will have all this, " +"plus the ability to distribute and manage your own local modules on your " +"systems, individually or through policies.\n" +" <br><br><img class='w105px' src='" +msgstr "" +"В версии community нет возможности определить собственную библиотеку " +"локальных модулей или распространить ее среди удаленных агентов. Вам нужно " +"вносить эти изменения индивидуально на каждом агенте, что возможно с помощью " +"внешних инструментов и требует времени и усилий. Она также не может " +"распространять локальные модули или иметь доступ к библиотеке корпоративных " +"модулей для мониторинга таких приложений, как VMWare, RHEV или Informix. " +"Версия Enterprise будет иметь все это, плюс возможность распространять и " +"управлять вашими собственными локальными модулями на ваших системах, " +"индивидуально или с помощью политик.\n" +" <br><br><img class='w105px' src='" + +#: ../../general/alert_enterprise.php:144 +#, php-format +msgid "" +"Do you want to consolidate all your system monitoring? Do you have many " +"systems, making it difficult to manage them in a comprehensive manner? Would " +"you like to deploy monitoring, alerts and even local plugins with a single " +"click? %s Enterprise Policies are exactly what you need; you'll save time, " +"effort and annoyances. More information <a " +"href='pandorafms.com'>pandorafms.com</a>" +msgstr "" +"Вы хотите консолидировать мониторинг всех своих систем? У вас много систем, " +"и это затрудняет комплексное управление ими? Вы хотите развернуть " +"мониторинг, предупреждения и даже локальные плагины одним щелчком мыши? %s " +"Enterprise Policies - это именно то, что вам нужно; вы сэкономите время, " +"усилия и раздражение. Дополнительная информация <a " +"href='pandorafms.com'>pandorafms.com</a>" + +#: ../../general/alert_enterprise.php:148 +#, php-format +msgid "" +"%s Enterprise also features event correlation. Through correlation you can " +"generate realtime alerts and / or new events based on logical rules. This " +"allows you to automate troubleshooting. If you know the value of working " +"with events, event correlation will take you to a new level." +msgstr "" +"В %s Enterprise также предусмотрена функция корреляции событий. Благодаря " +"корреляции вы можете генерировать предупреждения в реальном времени и/или " +"новые события на основе логических правил. Это позволяет автоматизировать " +"поиск и устранение неисправностей. Если вы понимаете всю ценность работы с " +"событиями, корреляция событий выведет вас на новый уровень." + +#: ../../general/alert_enterprise.php:152 +#, php-format +msgid "" +"Report generating on the Enterprise version is also more powerful: it has " +"wizards, you can schedule emails in PDF to be sent according to the schedule " +"you decide, and it has a template system to create personalized reports " +"quickly for each of your customers. It will even allow your customers to " +"generate their own reports from templates created by you. If reports are key " +"to your business, %s Enterprise version is for you." +msgstr "" +"Генерация отчетов в версии Enterprise также более мощная: в ней есть " +"помощники, вы можете запланировать отправку писем в формате PDF по " +"определенному вами расписанию, а также система шаблонов для быстрого " +"создания персонализированных отчетов для каждого из ваших клиентов. Она даже " +"позволит вашим клиентам создавать собственные отчеты на основе созданных " +"вами шаблонов. Если отчеты имеют ключевое значение для вашего бизнеса, %s " +"Enterprise версия для вас." + +#: ../../general/alert_enterprise.php:156 +msgid "These options are only effective on the Enterprise version." +msgstr "Эти опции действуют только в версии Enterprise." + +#: ../../general/alert_enterprise.php:164 +msgid "" +"This system is heavily loaded. OpenSource version could get a lot more " +"agents but fine tuning requires knowledge and time. Checkout the Enterprise " +"Version for a professional supported system." +msgstr "" +"Эта система сильно загружена. OpenSource версия может получить гораздо " +"больше агентов, но необходима тонкая настройка, которая потребует знаний и " +"времени. Установите версию Enterprise, чтобы получить поддерживаемую " +"профессиональную систему." + +#: ../../general/alert_enterprise.php:173 +#, php-format +msgid "" +"This system has too many modules per agent. OpenSource version could manage " +"thousands of modules, but is not recommended to have more than 100 modules " +"per agent. This configuration has %d modules per agent. Checkout the " +"Enterprise Version for a professional supported system." +msgstr "" +"В этой системе слишком много модулей на одного агента. OpenSource версия " +"может управлять тысячами модулей, но не рекомендуется иметь более 100 " +"модулей на агента. В этой конфигурации на одного агента приходится %d " +"модулей. Установите версию Enterprise, чтобы получить поддерживаемую " +"профессиональную систему." + +#: ../../general/alert_enterprise.php:177 +msgid "" +"Too much remote modules has been detected on this system. OpenSource version " +"could manage thousands of modules, but performance is limited on high amount " +"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " +"supported system with improved capacity on network monitoring, including " +"distributed servers." +msgstr "" +"В этой системе обнаружено слишком много удаленных модулей. OpenSource версия " +"может управлять тысячами модулей, но производительность ограничена при " +"большом количестве SNMP или ICMP запросов. Ознакомьтесь с версией Enterprise " +"для профессиональной поддерживаемой системы с улучшенными возможностями " +"мониторинга сети, включая распределенные серверы." + +#: ../../general/alert_enterprise.php:181 +msgid "" +"This system has too much events in the database. Checkout database purge " +"options. Checkout the Enterprise Version for a professional supported system." +msgstr "" +"В базе данных этой системы слишком много событий. Параметры очистки базы " +"данных кассы. Установите версию Enterprise, чтобы получить поддерживаемую " +"профессиональную систему." + +#: ../../general/alert_enterprise.php:185 +msgid "" +"You have defined a high number of alerts, this may cause you performance " +"problems in the future. In the Enterprise version, you can use event " +"correlation alerts to simplify the alerting system and have easier " +"administration and increased performance." +msgstr "" +"Вы определили большое количество оповещений, что может привести к проблемам " +"с производительностью в будущем. В версии Enterprise вы можете использовать " +"оповещения с корреляцией событий, чтобы упростить систему оповещения, " +"облегчить администрирование и повысить производительность." + +#: ../../general/login_help_dialog.php:43 +#, php-format +msgid "" +"If this is your first time using %s, we suggest a few links that'll help you " +"learn more about the software. Monitoring can be overwhelming, but take your " +"time to learn how to harness the power of %s!" +msgstr "" +"Если вы впервые используете %s, мы предлагаем несколько ссылок, которые " +"помогут вам узнать больше о программе. Мониторинг может оказаться " +"непосильной задачей, но не следует спешить, чтобы узнать, как использовать " +"все возможности %s!" + +#: ../../general/login_help_dialog.php:57 +#: ../../general/login_help_dialog.php:62 +msgid "Online help" +msgstr "Online-помощь" + +#: ../../general/login_help_dialog.php:70 +#: ../../general/login_help_dialog.php:75 +msgid "Enterprise version" +msgstr "Версия предприятия" + +#: ../../general/login_help_dialog.php:88 +msgid "Forums" +msgstr "Форумы" + +#: ../../general/login_help_dialog.php:96 +#: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:144 +msgid "Documentation" +msgstr "Документация" + +#: ../../general/login_help_dialog.php:110 +msgid "Click here to don't show again this message" +msgstr "Нажмите сюда, чтобы не показывать больше это сообщение" + +#: ../../general/logon_ok.php:165 +#, php-format +msgid "%s Overview" +msgstr "%s Обзор" + +#: ../../general/logon_ok.php:204 +msgid "by" +msgstr "исп" + +#: ../../general/logon_ok.php:218 +msgid "News board" +msgstr "доска объявлений" + +#: ../../general/logon_ok.php:294 +msgid "Latest activity" +msgstr "Последняя активность" + +#: ../../general/ui/agents_list.php:152 +msgid "No agents found" +msgstr "Не найдено ни одного агента" + +#: ../../general/logon_failed.php:30 msgid "" "Either, your password or your login are incorrect. Please check your CAPS " "LOCK key, username and password are case SeNSiTiVe.<br><br>All actions, " @@ -31470,218 +48505,1054 @@ msgstr "" "ли CAPS LOCK, ипя пользователя или пароль чувствительны к регистру. Все " "действия, включая неудачный вход, регистрируются в системе Pandora FMS." -#: ../../general/logon_ok.php:32 -msgid "Welcome to Pandora FMS Web Console" -msgstr "Добро пожаловать в консоль Pandora FMS" - -#: ../../general/logon_ok.php:114 ../../general/logon_ok.php:315 -msgid "Pandora FMS Overview" -msgstr "Обзор Pandora FMS" - -#: ../../general/logon_ok.php:179 ../../general/logon_ok.php:377 -msgid "News board" -msgstr "доска объявлений" - -#: ../../general/logon_ok.php:184 ../../general/logon_ok.php:382 -msgid "ago" -msgstr "назад" - -#: ../../general/logon_ok.php:191 ../../general/logon_ok.php:389 -msgid "by" -msgstr "исп" - -#: ../../general/logon_ok.php:226 ../../general/logon_ok.php:423 -msgid "This is your last activity in Pandora FMS console" -msgstr "Это ваше последнее действие в консоли Pandora FMS" - -#: ../../general/pandora_help.php:24 ../../general/pandora_help.php:68 -#: ../../general/pandora_help.php:95 -msgid "Pandora FMS help system" -msgstr "Справочная система Pandora FMS" - -#: ../../general/pandora_help.php:73 -msgid "Help system error" -msgstr "Ошибка справочной системы" - -#: ../../general/pandora_help.php:78 -msgid "" -"Pandora FMS help system has been called with a help reference that currently " -"don't exist. There is no help content to show." -msgstr "" -"Справочная система Pandora FMS запросила несуществующий в данный момент " -"документ. Нет данных для отображения." - -#: ../../general/noaccess.php:26 +#: ../../general/noaccess2.php:23 msgid "Access to this page is restricted" -msgstr "" +msgstr "Доступ к этой странице ограничен" -#: ../../general/noaccess.php:36 +#: ../../general/noaccess2.php:35 msgid "" "Access to this page is restricted to authorized users only, please contact " "system administrator if you need assistance. <br/> <br/>\n" "\t\t\tPlease know that all attempts to access this page are recorded in " "security logs of Pandora System Database" msgstr "" +"Доступ к этой странице ограничен только для авторизованных пользователей, " +"если вам нужна помощь, обратитесь к системному администратору. <br/> <br/>\n" +"\t\t\tПожалуйста, знайте, что все попытки получить доступ к этой странице " +"записываются в журналы безопасности системной базы данных Pandora." -#: ../../general/login_page.php:35 -msgid "Go to Pandora FMS Website" -msgstr "Перейти к вебсайту Pandora FMS" +#: ../../general/mysqlerr.php:107 +msgid "Database error" +msgstr "Ошибка базы данных" -#: ../../general/login_page.php:40 +#: ../../general/mysqlerr.php:117 +msgid "" +"Failure to connect to historical database, please check the configuration or " +"contact system administrator if you need assistance." +msgstr "" +"Невозможность подключения к исторической базе данных, пожалуйста, проверьте " +"конфигурацию или обратитесь к системному администратору, если вам нужна " +"помощь." + +#: ../../general/mysqlerr.php:119 +msgid "" +"Failure to connect to Database server, please check the configuration file " +"config.php or contact system administrator if you need assistance." +msgstr "" +"Невозможность подключения к серверу базы данных, проверьте конфигурационный " +"файл config.php или обратитесь к системному администратору, если вам нужна " +"помощь." + +#: ../../general/login_page.php:54 +#, php-format +msgid "Go to %s Website" +msgstr "Перейти на сайт %s" + +#: ../../general/login_page.php:67 msgid "Go to Login" msgstr "Ввойти" -#: ../../general/login_page.php:131 -msgid "Logged out" -msgstr "Завершил работу" +#: ../../general/login_page.php:249 +msgid "Login as admin" +msgstr "Войдите в систему как администратор" -#: ../../general/login_page.php:157 +#: ../../general/login_page.php:317 msgid "View details" msgstr "Просмотреть детали" -#: ../../general/login_page.php:218 -msgid "" -"Pandora FMS frontend is built on advanced, modern technologies and does not " -"support old browsers." -msgstr "" -"Pandora FMS интерфейс построен на передовых, современных технологиях и не " -"поддерживает старые браузеры." - -#: ../../general/login_page.php:219 -msgid "" -"It is highly recommended that you choose and install a modern browser. It is " -"free of charge and only takes a couple of minutes." -msgstr "" -"Мы настоятельно рекомендуем вам выбрать и установить современный браузер. " -"Это бесплатно и занимает всего пару минут." - -#: ../../general/login_page.php:282 -msgid "Why is it recommended to upgrade the web browser?" -msgstr "Почему рекомендуется обновить веб-браузер?" - -#: ../../general/login_page.php:287 -msgid "" -"New browsers usually come with support for new technologies, increasing web " -"page speed, better privacy settings and so on. They also resolve security " -"and functional issues." -msgstr "" -"Новые браузеры обычно поставляются с поддержкой новых технологий, увеличение " -"скорости веб-страницы, лучше настройки конфиденциальности и так далее. А " -"также помогают разрешить безопасность и функциональные вопросы." - -#: ../../general/login_page.php:296 -msgid "Continue despite this warning" -msgstr "Продолжить, несмотря на это предупреждение" - -#: ../../general/header.php:89 ../../general/header.php:91 -msgid "Enter keywords to search" -msgstr "Введите ключевые слова для поиска" - -#: ../../general/header.php:139 ../../general/header.php:140 -msgid "QR Code of the page" -msgstr "" - -#: ../../general/header.php:240 -msgid "System alerts detected - Please fix as soon as possible" -msgstr "" -"Система оповещений обнаружена - пожалуйста, исправьте как можно скорее" - -#: ../../general/header.php:251 +#: ../../general/login_page.php:345 ../../general/login_page.php:348 #, php-format -msgid "You have %d warning(s)" -msgstr "У вас есть %d предупреждение(я)" +msgid "WELCOME TO %s" +msgstr "ДОБРО ПОЖАЛОВАТЬ В %s" -#: ../../general/header.php:257 -msgid "There are not warnings" -msgstr "Здесь нет предупреждений" +#: ../../general/login_page.php:357 ../../general/login_page.php:360 +msgid "NEXT GENERATION" +msgstr "НОВОЕ ПОКОЛЕНИЕ" -#: ../../general/header.php:283 -msgid "New chat message" -msgstr "Новый чат сообщений" - -#: ../../general/header.php:292 -msgid "Message overview" -msgstr "просмотр сообщений" - -#: ../../general/header.php:293 +#: ../../general/login_page.php:512 ../../general/login_page.php:514 #, php-format -msgid "You have %d unread message(s)" -msgstr "У вас %d непрочитанных сообщений" +msgid "Problem with %s database" +msgstr "Проблема с базой данных %s" -#: ../../general/header.php:297 -msgid "Blank characters are used as AND conditions" -msgstr "Пустые символы используются в качестве И условий" - -#: ../../general/login_help_dialog.php:42 +#: ../../general/login_page.php:518 msgid "" -"If this is your first time with Pandora FMS, we propose you a few links to " -"learn more about Pandora FMS. Monitoring could be overwhelm, but take your " -"time to learn how to use the power of Pandora FMS!" +"Cannot connect to the database, please check your database setup in the " +"<b>include/config.php</b> file.<i><br/><br/>\n" +"\t\tProbably your database, hostname, user or password values are incorrect " +"or\n" +"\t\tthe database server is not running." +msgstr "" +"Не удается подключиться к базе данных, проверьте настройки базы данных в " +"файле <b>include/config.php</b>.<i><br/><br/>\n" +"\t\tВозможно, значения вашей базы данных, имени хоста, пользователя или " +"пароля неверны или\n" +"tab]\tсервер базы данных не запущен." + +#: ../../general/login_page.php:523 +msgid "DB ERROR" +msgstr "ОШИБКА БАЗЫ ДАННЫХ" + +#: ../../general/login_page.php:529 +#, php-format +msgid "" +"If you have modified the auth system, the origin of this problem could be " +"that %s cannot override the authorization variables from the config " +"database. Please remove them from your database by executing:<br><pre>DELETE " +"FROM tconfig WHERE token = \"auth\";</pre>" +msgstr "" +"Если вы модифицировали систему авторизации, причина проблемы может " +"заключаться в том, что %s не может переопределить переменные авторизации из " +"базы данных config. Пожалуйста, удалите их из вашей базы данных, " +"выполнив:<br><pre>DELETE FROM tconfig WHERE token = \"auth\";</pre>" + +#: ../../general/login_page.php:534 +msgid "Empty configuration table" +msgstr "Таблица конфигурации пуста" + +#: ../../general/login_page.php:536 +#, php-format +msgid "" +"Cannot load configuration variables from database. Please check your " +"database setup in the\n" +"\t\t\t<b>include/config.php</b> file.<i><br><br>\n" +"\t\t\tMost likely your database schema has been created but there are is no " +"data in it, you have a problem with the database access credentials or your " +"schema is out of date.\n" +"\t\t\t<br><br>%s Console cannot find <i>include/config.php</i> or this file " +"has invalid\n" +"\t\t\tpermissions and HTTP server cannot read it. Please read documentation " +"to fix this problem.</i>" +msgstr "" +"Невозможно загрузить переменные конфигурации из базы данных. Пожалуйста, " +"проверьте настройку вашей базы данных в\n" +"\t\t\t<b>include/config.php</b> файле.<i><br><br>\n" +"\t\t\t\tСкорее всего, схема вашей базы данных была создана, но в ней нет " +"данных, у вас проблема с учетными данными доступа к базе данных или схема " +"устарела.\n" +"\t\t\t<br><br>%s Console cannot find <i>include/config.php</i> or this file " +"has invalid\n" +"\t\t\t\tразрешения и HTTP-сервер не может его прочитать. Пожалуйста, " +"прочитайте документацию, чтобы решить эту проблему.</i>" + +#: ../../general/login_page.php:546 +msgid "No configuration file found" +msgstr "Файл конфигурации не найден" + +#: ../../general/login_page.php:548 +#, php-format +msgid "" +"%s Console cannot find <i>include/config.php</i> or this file has invalid\n" +"\t\tpermissions and HTTP server cannot read it. Please read documentation to " +"fix this problem." msgstr "" -#: ../../general/login_help_dialog.php:51 -#: ../../general/login_help_dialog.php:53 -msgid "Online help" -msgstr "Online-помощь" +#: ../../general/login_page.php:560 +#, php-format +msgid "You may try to run the %s<b>installation wizard</b>%s to create one." +msgstr "" +"Вы можете попробовать запустить %s<b>установку мастера</b>%s, чтобы создать " +"одну." -#: ../../general/login_help_dialog.php:59 -#: ../../general/login_help_dialog.php:61 -msgid "Enterprise version" -msgstr "Версия предприятия" +#: ../../general/login_page.php:564 +msgid "Installer active" +msgstr "установщик активных" -#: ../../general/login_help_dialog.php:69 -msgid "Forums" -msgstr "Форумы" +#: ../../general/login_page.php:566 +#, php-format +msgid "" +"For security reasons, normal operation is not possible until you delete " +"installer file.\n" +"\t\tPlease delete the <i>./install.php</i> file before running %s Console." +msgstr "" +"В целях безопасности нормальная работа невозможна до тех пор, пока вы не " +"удалите файл программы установки.\n" +"\t\tПожалуйста, удалите файл <i>./install.php</i> перед запуском %s Консоли." -#: ../../general/login_help_dialog.php:75 -#: ../../general/login_help_dialog.php:77 -msgid "Documentation" -msgstr "Документация" +#: ../../general/login_page.php:573 +msgid "Bad permission for include/config.php" +msgstr "Нежелательное разрешение для включения/конф.php" -#: ../../general/login_help_dialog.php:86 -msgid "Click here to don't show again this message" -msgstr "Нажмите сюда, чтобы не показывать больше это сообщение" +#: ../../general/login_page.php:575 +msgid "" +"For security reasons, <i>config.php</i> must have restrictive permissions, " +"and \"other\" users\n" +"\t\tshould not read it or write to it. It should be written only for owner\n" +"\t\t(usually www-data or http daemon user), normal operation is not possible " +"until you change\n" +"\t\tpermissions for <i>include/config.php</i> file. Please do it, it is for " +"your security." +msgstr "" +"В целях безопасности <i>config.php</i> должен иметь ограниченные разрешения, " +"а \"другие\" пользователи\n" +"\t\tне должны читать его или записывать на нем. Он должен быть написан " +"только для владельца\n" +"\t\t(обычно www-data или пользователь http daemon), нормальная работа " +"невозможна, пока вы не измените\n" +"\t\tразрешения для файла <i>include/config.php</i>. Пожалуйста, сделайте " +"это, это для вашей безопасности." -#: ../../general/shortcut_bar.php:165 -msgid "Press here to activate shortcut bar" -msgstr "Нажмите здесь, чтобы активировать панель быстрого запуска" +#: ../../general/login_page.php:583 +msgid "Bad defined homedir" +msgstr "Плохо определен homedir" -#: ../../general/shortcut_bar.php:202 ../../general/shortcut_bar.php:204 -msgid "Incidents opened" -msgstr "Инциденты открыты" +#: ../../general/login_page.php:584 +msgid "" +"In the config.php file in the variable $config[\"homedir\"] = add the " +"correct path" +msgstr "" +"В файле config.php в переменной $config [\"homedir\"] = добавьте правильный " +"путь" -#: ../../general/shortcut_bar.php:222 -msgid "Create new message" -msgstr "Создать новое сообщение" +#: ../../general/login_page.php:588 +msgid "Bad defined homeurl or homeurl_static" +msgstr "Плохо определен homeurl или homeurl_static" + +#: ../../general/login_page.php:589 +msgid "" +"In the config.php file in the variable $config[\"homeurl\"] or " +"$config[\"homeurl_static\"] = add the correct path" +msgstr "" +"В файле config.php в переменной $config[\"homeurl\"] или " +"$config[\"homeurl_static\"] = добавьте правильный путь" + +#: ../../general/pandora_help.php:23 +#, php-format +msgid "%s help system" +msgstr "%s справочная система" + +#: ../../general/pandora_help.php:72 +msgid "Help system error" +msgstr "Ошибка справочной системы" + +#: ../../general/pandora_help.php:77 +#, php-format +msgid "" +"%s help system has been called with a help reference that currently don't " +"exist. There is no help content to show." +msgstr "" +"Была вызвана справочная система %s с несуществующей на данный момент " +"справочной ссылкой. Нет никакого справочного контента, который можно было бы " +"показать." + +#~ msgid "Welcome to Pandora FMS Web Console" +#~ msgstr "Добро пожаловать в консоль Pandora FMS" + +#~ msgid "Pandora FMS Overview" +#~ msgstr "Обзор Pandora FMS" + +#~ msgid "This is your last activity in Pandora FMS console" +#~ msgstr "Это ваше последнее действие в консоли Pandora FMS" + +#~ msgid "" +#~ "Access to this page is restricted to authorized users only, please contact " +#~ "system administrator if you need assistance. <br><br>Please know that all " +#~ "attempts to access this page are recorded in security logs of Pandora System " +#~ "Database" +#~ msgstr "" +#~ "Доступ на данную страницу доступен только авторизированным пользователям, " +#~ "если вам нужна помощь пожалуйста свяжитесь с системным администратором. " +#~ "Помните что все попытки доступа на страницу записываются в логи безопасности " +#~ "Pandora." + +#~ msgid "Welcome to Pandora FMS" +#~ msgstr "Добро пожаловать в Pandora FMS" + +#~ msgid "Pandora FMS help system" +#~ msgstr "Справочная система Pandora FMS" + +#~ msgid "" +#~ "Pandora FMS help system has been called with a help reference that currently " +#~ "don't exist. There is no help content to show." +#~ msgstr "" +#~ "Справочная система Pandora FMS запросила несуществующий в данный момент " +#~ "документ. Нет данных для отображения." + +#, php-format +#~ msgid "You have %d unread message(s)" +#~ msgstr "У вас %d непрочитанных сообщений" + +#~ msgid "" +#~ "Your session is over. Please close your browser window to close this Pandora " +#~ "session." +#~ msgstr "" +#~ "Ваш сеанс работы завершён. Пожалуйста, закройте окно браузера для завершения " +#~ "сеанса Pandora." + +#~ msgid "Item" +#~ msgstr "Пункт" + +#~ msgid "Data value" +#~ msgstr "Значение параметра" + +#~ msgid "Global health" +#~ msgstr "Общая стабильность" + +#~ msgid "Layout" +#~ msgstr "Расположение" + +#~ msgid "Remote modules" +#~ msgstr "Удаленные модули" + +#~ msgid "Simple" +#~ msgstr "Простой" + +#~ msgid "Updated at realtime" +#~ msgstr "Обновлять в реальном времени" + +#~ msgid "Autorefresh time" +#~ msgstr "Частота обновления" + +#~ msgid "Add note" +#~ msgstr "Добавить заметку" + +#~ msgid "at" +#~ msgstr "в" + +#~ msgid "Load" +#~ msgstr "Загрузка системы" + +#~ msgid "Pandora FMS Graph configuration menu" +#~ msgstr "Меню конфигурации Графа Pandora FMS" + +#~ msgid "Please, make your changes and apply with the <i>Reload</i> button" +#~ msgstr "" +#~ "Пожалуйста внесите свои изменения и подтвердите, нажав <i>Перезагрузка</i>" + +#~ msgid "Avg. Only" +#~ msgstr "Только усредненное" + +#~ msgid "Public" +#~ msgstr "Общее" + +#~ msgid "Marquee" +#~ msgstr "Маркер" + +#~ msgid "Profiles defined in Pandora" +#~ msgstr "Профили определённые в Pandora" + +#~ msgid "Zoom level used when the map is opened" +#~ msgstr "Уровень увеличения используемое при открытии карты" + +#~ msgid "Graphic resolution (1-low, 5-high)" +#~ msgstr "Разрешение графика (1-низкое, 5-высокое)" + +#~ msgid "Language code for Pandora" +#~ msgstr "Язык веб-интерфейса Pandora" + +#~ msgid "Enable GIS features in Pandora Console" +#~ msgstr "Включить возможности ГИС в Pandora Console" + +#~ msgid "Query SQL" +#~ msgstr "Таблица SQL" + +#~ msgid "SQL preview" +#~ msgstr "Просмотр SQL" + +#~ msgid "Label color" +#~ msgstr "Цвет ярлыка" + +#~ msgid "DB information" +#~ msgstr "Информация базы данных" + +#~ msgid "Database audit" +#~ msgstr "Аудит базы данных" + +#~ msgid "Database maintenance" +#~ msgstr "Обслуживание базы данных" + +#~ msgid "" +#~ "Please be patient. This operation can take a long time depending on the " +#~ "amount of modules." +#~ msgstr "" +#~ "Пожалуйста, подождите. Эта операция может занять продолжительное время в " +#~ "зависимости от количества модулей." + +#~ msgid "Purge data" +#~ msgstr "Стереть данные" + +#~ msgid "Successfully deleted old events" +#~ msgstr "Устаревшие событий успешно удалены" + +#~ msgid "Error deleting old events" +#~ msgstr "Ошибка при удалении устаревших событий" + +#~ msgid "Records" +#~ msgstr "Записей" + +#~ msgid "Purge event data over 90 days" +#~ msgstr "Удалить события старее 90 дней" + +#~ msgid "Purge event data over 30 days" +#~ msgstr "Стереть события старее 30 дней" + +#~ msgid "Purge event data over 14 days" +#~ msgstr "Стереть события старее 14 дней" + +#~ msgid "Purge event data over 7 days" +#~ msgstr "Стереть события старее 7 дней" + +#~ msgid "Purge event data over 3 days" +#~ msgstr "Стереть события старее 3 дней" + +#~ msgid "Purge event data over 1 day" +#~ msgstr "Стереть события старее 1 дня" + +#~ msgid "Purge all event data" +#~ msgstr "Стереть все события" + +#~ msgid "Database information" +#~ msgstr "Сведения о базе данных" + +#~ msgid "Latest date" +#~ msgstr "Последнее число" + +#~ msgid "Server connection failed" +#~ msgstr "Соединение с сервером утеряно" + +#~ msgid "Today" +#~ msgstr "Сегодня" + +#~ msgid "Week" +#~ msgstr "Неделя" + +#~ msgid "Months" +#~ msgstr "Месяцы" + +#~ msgid "Outdated" +#~ msgstr "Устаревший" + +#~ msgid "" +#~ "Please check that the web server has write rights on the " +#~ "{HOMEDIR}/attachment directory" +#~ msgstr "Пожалуйста, проверьте, что имя веб-сервера написано правильно" + +#~ msgid "Alerts not fired" +#~ msgstr "Угрозы не снятия" + +#~ msgid "Monitors OK" +#~ msgstr "OK Монитор" + +#~ msgid "Monitors BAD" +#~ msgstr "BAD Монитор" + +#~ msgid "DB maintenance" +#~ msgstr "Обслуживание DB" + +#~ msgid "Database purge" +#~ msgstr "Очистка базы данных" + +#~ msgid "Database event" +#~ msgstr "Событие базы данных" + +#~ msgid "Recon script creation" +#~ msgstr "Создание рекон скрипта" + +#~ msgid "Recon script update" +#~ msgstr "Обновить рекон скрипт" + +#~ msgid "Recon scripts registered in Pandora FMS" +#~ msgstr "Рекон скрипты, зарегистрированные в Pandora FMS" + +#~ msgid "Problem deleting reconscript" +#~ msgstr "Ошибка при удалении рекон скрипта" + +#~ msgid "reconscript deleted successfully" +#~ msgstr "Рекон скрипт удален успешно" + +#~ msgid "There are no recon scripts in the system" +#~ msgstr "Нет рекон скриптов в системе" + +#~ msgid "Plugin creation" +#~ msgstr "Создание плагина" + +#~ msgid "Plugins registered in Pandora FMS" +#~ msgstr "Плагины, зарегистрированные в Pandora FMS" + +#~ msgid "Successfully deleted recon task" +#~ msgstr "Успешно удалена рекон задача" + +#~ msgid "Error deleting recon task" +#~ msgstr "Ошибка при удалении рекон задачи" + +#~ msgid "Successfully updated recon task" +#~ msgstr "Рекон задача успешно обновлена" + +#~ msgid "Error updating recon task" +#~ msgstr "Ошибка при обновлении рекон задачи" #~ msgid "Network provided is not correct" #~ msgstr "Сеть предоставлена не верно" +#~ msgid "Successfully created recon task" +#~ msgstr "Рекон задача успешно создана" + +#~ msgid "Error creating recon task" +#~ msgstr "Ошибка при создании рекон задачи" + +#~ msgid "Ports" +#~ msgstr "Порты" + +#~ msgid "There are no recon task configured" +#~ msgstr "Нет настроенной рекон задачи" + +#~ msgid "Recon server" +#~ msgstr "Рекон сервер" + +#~ msgid "" +#~ "You must select a Recon Server for the Task, otherwise the Recon Task will " +#~ "never run" +#~ msgstr "" +#~ "Вы должны выбрать Рекон сервер для Задачи, в противном случае Рекон Задача " +#~ "не будет работать" + +#~ msgid "Network sweep" +#~ msgstr "Сеть развертки" + +#~ msgid "Module template" +#~ msgstr "Модуль шаблона" + +#~ msgid "" +#~ "Ports defined like: 80 or 80,443,512 or even 0-1024 (Like Nmap command line " +#~ "format). If dont want to do a sweep using portscan, left it in blank" +#~ msgstr "" +#~ "Портов, которые определены как: 80 или 80,443,512 или даже 0-1024 (в формате " +#~ "командной строки Nmap). Если не хотите делать развертки с использованием " +#~ "сканирования портов, оставил его незаполненной" + +#~ msgid "Choose if the discovery of a new system creates an incident or not." +#~ msgstr "Выбрать, если открытие новой системы создает инцидент или нет." + +#~ msgid "SNMP Default community" +#~ msgstr "SNMP сообщества по умолчанию" + +#~ msgid "" +#~ "Maximum number of parent hosts that will be created if parent detection is " +#~ "enabled." +#~ msgstr "" +#~ "Максимальное количество исходного хоста которые будет создано, если " +#~ "первоначальное обнаружение разрешает." + +#~ msgid "Pandora servers" +#~ msgstr "Pandora серверы" + +#~ msgid "Output format" +#~ msgstr "Выходной формат" + +#~ msgid "Kilobytes" +#~ msgstr "Килобайты" + +#~ msgid "Megabytes" +#~ msgstr "Мегабайты" + +#~ msgid "Kilobytes per second" +#~ msgstr "Килобайтов в секунду" + +#~ msgid "Megabytes per second" +#~ msgstr "Мегабайтов в секунду" + +#~ msgid "Pandora audit" +#~ msgstr "Pandora аудит" + +#~ msgid "There is already an agent in the database with this name" +#~ msgstr "Агент с таким именем уже существует в базе данных" + #, php-format #~ msgid "Deleted data above %d" #~ msgstr "Удаленные данные выше %d" +#~ msgid "Save by Pandora Console" +#~ msgstr "Сохранено на Pandora Console" + +#~ msgid "Update by Pandora Console" +#~ msgstr "Обновлено Pandora Console" + +#~ msgid "Insert by Pandora Console" +#~ msgstr "Вставлено Pandora Console" + +#~ msgid "Agents defined in Pandora" +#~ msgstr "Заданный агент в Pandora" + #~ msgid "Quiet: Disable modules that we indicate below." #~ msgstr "Тихо: Отключите ниже указанные модули" #~ msgid "There are no scheduled downtimes" #~ msgstr "Здесь нет запланированных простоев" +#~ msgid "The agent's name must be the same as the one defined at the console" +#~ msgstr "Имя агент должен быть таким же, как то, которое определено в консоли" + +#~ msgid "You can remotely edit this agent configuration" +#~ msgstr "Вы можете дистанционно редактировать этот агент конфигурации" + +#~ msgid "Agent icon for GIS Maps." +#~ msgstr "Значок агента для карт GIS." + #~ msgid "Executed" #~ msgstr "Выполнено" #~ msgid "Not executed" #~ msgstr "Не выполнено" +#, php-format +#~ msgid "Free space on %s" +#~ msgstr "Свободное место на %s" + +#, php-format +#~ msgid "%s service modules created succesfully" +#~ msgstr "%s сервисные модули созданы успешно" + +#, php-format +#~ msgid "Error creating %s service modules" +#~ msgstr "Ошибка при создании %s сервисных модулей" + +#, php-format +#~ msgid "%s process modules created succesfully" +#~ msgstr "%s процессорные модули созданы успешно" + +#, php-format +#~ msgid "Error creating %s process modules" +#~ msgstr "Ошибка при создании %s процессорных модулей" + +#, php-format +#~ msgid "%s disk space modules created succesfully" +#~ msgstr "%s модули дискового пространства созданы успешно" + +#, php-format +#~ msgid "Error creating %s disk space modules" +#~ msgstr "Ошибка при создании %s модулей дискового пространства" + +#, php-format +#~ msgid "%s modules created from components succesfully" +#~ msgstr "%s модули созданы из компонентов успешно" + +#, php-format +#~ msgid "Error creating %s modules from components" +#~ msgstr "Ошибка при создании %s модулей из компонентов" + +#, php-format +#~ msgid "%s modules already exist" +#~ msgstr "%s модули уже существуют" + +#~ msgid "WMI Explore" +#~ msgstr "WMI Проводник" + +#~ msgid "Unable to do WMI explorer" +#~ msgstr "Не удается сделать WMI проводник" + +#~ msgid "Free space on disk" +#~ msgstr "Свободное место на диске" + +#~ msgid "WMI components" +#~ msgstr "Компоненты WMI" + +#~ msgid "Wizard mode" +#~ msgstr "Пошаговый режим (Wizard)" + +#~ msgid "Add to modules list" +#~ msgstr "Добавить в список модулей" + +#~ msgid "Remove from modules list" +#~ msgstr "Удалить из списка модулей" + +#~ msgid "Modules list is empty" +#~ msgstr "Список модулей пуст" + +#~ msgid "Get more modules in Pandora FMS Library" +#~ msgstr "Получить больше модулей в Pandora FMS библиотеке" + +#, php-format +#~ msgid "There was a problem deleting %s modules, none deleted." +#~ msgstr "Была проблема при удалением %s модулей, ничего не удалено." + +#~ msgid "All Modules deleted succesfully" +#~ msgstr "Все Модули удалены успешно" + +#, php-format +#~ msgid "There was a problem only deleted %s modules of %s total." +#~ msgstr "Была проблема только при удаленнии %s модулей от общего числа %s." + +#~ msgid "No agent selected or the agent does not exist" +#~ msgstr "Агент не выбран или агент не существует" + +#~ msgid "Successfully modules created" +#~ msgstr "Модули успешно созданы" + +#~ msgid "Some required fields are missed" +#~ msgstr "Некоторые обязательные поля пропущены" + +#~ msgid "name" +#~ msgstr "имя" + +#~ msgid "Processing error" +#~ msgstr "Ошибка обработки" + +#~ msgid "Unable to do SNMP walk" +#~ msgstr "Не удается сделать SNMP инвентаризацию" + +#, php-format +#~ msgid "DEBUG: Invalid module type specified in %s:%s" +#~ msgstr "ОЫЛАДКА: Неверный тип модуля указан в %s:%s" + +#~ msgid "" +#~ "Most likely you have recently upgraded from an earlier version of Pandora " +#~ "and either <br />\n" +#~ "\t\t\t\t1) forgot to use the database converter<br />\n" +#~ "\t\t\t\t2) used a bad version of the database converter (see Bugreport " +#~ "#2124706 for the solution)<br />\n" +#~ "\t\t\t\t3) found a new bug - please report a way to duplicate this error" +#~ msgstr "" +#~ "Вероятно вы недавно обновили предыдущую версию Pandora и скорее всего<br />\n" +#~ "\t\t\t\t1) забыли применить конвертор базы данных<br />\n" +#~ "\t\t\t\t2) использовали неверный конвертер базы данных (см. Отчёт об Ошибке " +#~ "# 2124706 для решения)<br />\n" +#~ "\t\t\t\t3) обнаружили новую ошибку - пожалуйста, сообщите для возможности " +#~ "дублирования этой ошибки<br />" + +#~ msgid "Module macros" +#~ msgstr "Модуль макросов" + +#~ msgid "Any value below this number is discarted." +#~ msgstr "Любое значение ниже этого числа отбрасывается." + +#~ msgid "Any value over this number is discarted." +#~ msgstr "Любое значение выше этого числа отбрасывается." + +#~ msgid "" +#~ "In case you use an Export server you can link this module and export data to " +#~ "one these." +#~ msgstr "" +#~ "В случае, если вы используете сервер экспорта вы можете соединить этот " +#~ "модуль и данные экспорта в одно." + +#~ msgid "The module still stores data but the alerts and events will be stop" +#~ msgstr "" +#~ "Модуль по-прежнему хранит данные, но оповещения и события будет останавливать" + +#~ msgid "Cron" +#~ msgstr "Крон" + +#~ msgid "" +#~ "If cron is set the module interval is ignored and the module runs on the " +#~ "specified date and time" +#~ msgstr "" +#~ "Если крон, установленный модулем интервала игнорируется и модуль работает " +#~ "по определенной дате и времени" + +#~ msgid "Activate this to prevent the relation from being updated or deleted" +#~ msgstr "" +#~ "Активируйте это, чтобы предотвратить отношение от обновления или удаления" + +#~ msgid "The SNMP remote plugin doesnt seem to be installed" +#~ msgstr "Удаленный SNMP плагин, кажется, не был установлен" + +#~ msgid "It is necessary to use some features" +#~ msgstr "Необходимо использовать некоторые функции" + +#~ msgid "" +#~ "Please, install the SNMP remote plugin (The name of the plugin must be " +#~ "snmp_remote.pl)" +#~ msgstr "" +#~ "Пожалуйста, установите удаленный SNMP плагин (Название плагина должны быть " +#~ "snmp_remote.pl)" + +#, php-format +#~ msgid "Check if the process %s is running or not" +#~ msgstr "Проверьте, процесс %s запущен или нет" + +#~ msgid "Disk use information" +#~ msgstr "Информация об использовании диска" + +#, php-format +#~ msgid "%s modules created succesfully" +#~ msgstr "%s модули созданы успешно" + +#, php-format +#~ msgid "Error creating %s modules" +#~ msgstr "Ошибка при создании %s модулей" + +#~ msgid "" +#~ "If the device is a network device, try with the SNMP Interfaces wizard" +#~ msgstr "" +#~ "Если устройство является сетевым устройством, попробуйте с SNMP интерфейсом " +#~ "мастера" + +#~ msgid "Devices" +#~ msgstr "Устройства" + +#~ msgid "Temperature sensors" +#~ msgstr "Датчики температуры" + +#~ msgid "Other SNMP data" +#~ msgstr "Другие данные SNMP" + +#~ msgid "SNMP remote plugin is necessary for this feature" +#~ msgstr "Удаленный плагин SNMP необходим для этой функции" + +#~ msgid "Device" +#~ msgstr "Устройство" + +#~ msgid "Temperature" +#~ msgstr "Температура" + +#~ msgid "Module groups defined in Pandora" +#~ msgstr "Группы модулей, определенных в Pandora" + +#~ msgid "Groups defined in Pandora" +#~ msgstr "Группы, определенные в Pandora" + +#~ msgid "Maximum is equal to minimum" +#~ msgstr "Максимум равно минимуму" + +#~ msgid "Filtering data module" +#~ msgstr "Фильтрование данных модуля" + +#~ msgid "Filtering completed" +#~ msgstr "Фильтрование завершено" + +#~ msgid "Get Info" +#~ msgstr "Получить информацию" + +#~ msgid "Purge data out of these limits" +#~ msgstr "Очистка данных вне этих пределов" + +#~ msgid "Database audit purge" +#~ msgstr "Очистка аудита баз данных" + +#~ msgid "Success data deleted" +#~ msgstr "Данные успешно удалены" + +#~ msgid "Error deleting data" +#~ msgstr "Ошибка при удалении данных" + +#~ msgid "First date" +#~ msgstr "Первые данные" + +#~ msgid "Purge audit data over 90 days" +#~ msgstr "Очистить данные аудита за срок, более 90 дней" + +#~ msgid "Purge audit data over 30 days" +#~ msgstr "Очистить данные аудита за срок, более 30 дней" + +#~ msgid "Purge audit data over 14 days" +#~ msgstr "Очистить данные аудита за срок, более 14 дней" + +#~ msgid "Purge audit data over 7 days" +#~ msgstr "Очистить данные аудита за срок, более 7 дней" + +#~ msgid "Purge audit data over 3 days" +#~ msgstr "Очистить данные аудита за срок, более 3 дней" + +#~ msgid "Purge audit data over 1 day" +#~ msgstr "Очистить данные аудита за срок, более 1 дней" + +#~ msgid "Purge all audit data" +#~ msgstr "Очистить все данные аудита" + +#~ msgid "Do it!" +#~ msgstr "Выполнить!" + +#~ msgid "" +#~ "Please check your Pandora Server setup and be sure that database maintenance " +#~ "daemon is running. It's very important to keep up-to-date database to get " +#~ "the best performance and results in Pandora" +#~ msgstr "" +#~ "Пожалуйста, ознакомьтесь с Установочным сервером Pandora и убедитесь, что " +#~ "демон обслуживания базы данных работает. Это очень важно, чтобы база данных " +#~ "отвечала современным требованиям для достижения лучших показателей и " +#~ "результатов в Pandora" + +#~ msgid "Event database cleanup" +#~ msgstr "Очистка событий базы данных" + +#~ msgid "Latest data" +#~ msgstr "Последние данные" + +#~ msgid "Get data from agent" +#~ msgstr "Получить данные из агента" + +#, php-format +#~ msgid "Purge task launched for agent %s :: Data older than %s" +#~ msgstr "Очистка задачи, запущенной для агента %s :: Данные старше чем %s" + +#, php-format +#~ msgid "Deleting records for module %s" +#~ msgstr "Удаление записей для модуля %s" + +#, php-format +#~ msgid "Total errors: %s" +#~ msgstr "Всего ошибок: %s" + +#, php-format +#~ msgid "Total records deleted: %s" +#~ msgstr "Все записи удалены: %s" + +#~ msgid "Deleting records for all agents" +#~ msgstr "Удаление записей для всех агентов" + +#~ msgid "Choose agent" +#~ msgstr "Выбрать агента" + +#~ msgid "All agents" +#~ msgstr "Все агенты" + +#~ msgid "Select the agent you want information about" +#~ msgstr "Выберите агента, о котором вам нужна информация" + +#~ msgid "Get data" +#~ msgstr "Получить данные" + +#~ msgid "Click here to get the data from the agent specified in the select box" +#~ msgstr "" +#~ "Нажмите здесь, чтобы получить данные из заданного агента в выбранной ячейке" + +#, php-format +#~ msgid "Information on agent %s in the database" +#~ msgstr "Информация о агенте %s в базе данных" + +#~ msgid "Information on all agents in the database" +#~ msgstr "Информация о всех агентах в базе данных" + +#~ msgid "Packets less than three months old" +#~ msgstr "Пакеты, созданные менее чем три месяца назад" + +#~ msgid "Packets less than one month old" +#~ msgstr "Пакеты, созданные менее чем месяц назад" + +#~ msgid "Packets less than two weeks old" +#~ msgstr "Пакеты, созданные менее чем две недели назад" + +#~ msgid "Packets less than one week old" +#~ msgstr "Пакеты, созданные менее чем неделю назад" + +#~ msgid "Packets less than three days old" +#~ msgstr "Пакеты, созданные менее чем три дня назад" + +#~ msgid "Packets less than one day old" +#~ msgstr "Пакеты, созданные менее дня назад" + +#~ msgid "Total number of packets" +#~ msgstr "Общее количество пакетов" + +#~ msgid "Purge data over 3 months" +#~ msgstr "Очистка данных за 3 месяца" + +#~ msgid "Purge data over 1 month" +#~ msgstr "Очистка данных за 1 месяц" + +#~ msgid "Purge data over 2 weeks" +#~ msgstr "Очистка данных за 2 недели" + +#~ msgid "Purge data over 1 week" +#~ msgstr "Очистка данных за 1 неделю" + +#~ msgid "Purge data over 3 days" +#~ msgstr "Очистка данных за три дня" + +#~ msgid "Purge data over 1 day" +#~ msgstr "Очистка данных за один день" + +#~ msgid "All data until now" +#~ msgstr "Все данные на данный момент" + +#~ msgid "Purge" +#~ msgstr "Очистить" + #~ msgid "There are no defined graphs" #~ msgstr "Здесь нет определенных графиков" #~ msgid "Items filter" #~ msgstr "Фильтр элементов" +#~ msgid "" +#~ "Are you sure to sort the items into the report?\\nThis action change the " +#~ "sorting of items into data base." +#~ msgstr "" +#~ "Вы дейтвительно хотите сортировать элементы в отчете?\\n Это действие " +#~ "изменит порядок сортировки элементов в базе данных." + +#~ msgid "No Validated" +#~ msgstr "Не утверждено" + +#~ msgid "Show in two columns" +#~ msgstr "Показать в двух колонках" + +#~ msgid "Show in landscape" +#~ msgstr "Показать в ландшафте" + #~ msgid "Criticity" #~ msgstr "критичность" +#~ msgid "Load default event fields" +#~ msgstr "Загрузить поля событий по умолчанию" + +#~ msgid "Default event fields will be loaded. Do you want to continue?" +#~ msgstr "Поля событий по умолчанию были загружены. Вы хотите продолжить?" + +#~ msgid "Descriptive name for the map" +#~ msgstr "Описательное имя карты" + +#~ msgid "" +#~ "At least one map connection must be defined, it will be possible to change " +#~ "between the connections in the map" +#~ msgstr "" +#~ "Как минимум одна карта соединения должна быть определена, затем можно будет " +#~ "внести изменения между соединениями на карте" + +#~ msgid "Group that owns the map" +#~ msgstr "Группа, которой принадлежит карта" + +#~ msgid "Default zoom level when opening the map" +#~ msgstr "Масштаб по умолчанию при открытии карты" + +#~ msgid "" +#~ "Each layer can show agents from one group or the agents added to that layer " +#~ "or both." +#~ msgstr "" +#~ "Каждый уровень может показывать агентов одной группы или агентов, " +#~ "добавленных к этому уровню или то и другое." + +#~ msgid "It is possible to edit, delete and reorder the layers." +#~ msgstr "Это можно редактировать, удалять и изменять порядок уровней." + +#~ msgid "Update Layer" +#~ msgstr "Обновить уровень" + +#~ msgid "" +#~ "In case you fill any Field 1, Field 2 or Field 3 above, those will replace " +#~ "the corresponding fields of this associated \"Default action\"." +#~ msgstr "" +#~ "В случае, если вы заполните любое поле-поле 1, поле 2, поле 3 или другие, то " +#~ "соответствующие поля, сопоставленные с «Действием по умолчанию» будут " +#~ "заменены." + +#~ msgid "No special days configured" +#~ msgstr "Особые дни не сконфигурированы" + +#~ msgid "Enabled / Disabled" +#~ msgstr "Включить / Выключить" + +#~ msgid "times" +#~ msgstr "раз(а)" + +#~ msgid "Users defined in Pandora" +#~ msgstr "Пользователей, определенные в Pandora" + +#~ msgid "" +#~ "The current authentication scheme doesn't support creating users from " +#~ "Pandora FMS" +#~ msgstr "" +#~ "Текущая схема идентификации не поддерживает создание пользователей Pandora " +#~ "FMS" + +#~ msgid "Pandora management" +#~ msgstr "Управление Pandora" + +#~ msgid "Interactive charts" +#~ msgstr "Интерактивные графики" + +#~ msgid "Whether to use Javascript or static PNG graphs" +#~ msgstr "Следует ли использовать Javascript или статические графики PNG" + #~ msgid "G.F." #~ msgstr "Г.Ф." @@ -31706,6 +49577,24 @@ msgstr "Создать новое сообщение" #~ msgid "O." #~ msgstr "О." +#~ msgid "Not deleted. You must select an existing user" +#~ msgstr "Не удалено. Вы должны выбрать существующего пользователя" + +#~ msgid "Select modules first" +#~ msgstr "Выберите сначала модули" + +#~ msgid "Select agents first" +#~ msgstr "Выберите сначала агентов" + +#~ msgid "Agents updated successfully" +#~ msgstr "Агенты успешно обновлены" + +#~ msgid "Agents cannot be updated" +#~ msgstr "Агенты не могут быть обновлены" + +#~ msgid "No action selected" +#~ msgstr "Нет выбранного действия" + #~ msgid "Massive alerts addition" #~ msgstr "Массовые оповещения сложения" @@ -31745,12 +49634,305 @@ msgstr "Создать новое сообщение" #~ msgid "Massive modules copy" #~ msgstr "Массовые модули копирования" +#~ msgid "Please wait..." +#~ msgstr "Пожалуйста, подождите..." + #~ msgid "There are no SNMP filters" #~ msgstr "Нет SNMP фильтров" +#~ msgid "Descriptive name for the connection" +#~ msgstr "Описательное имя для соединения" + +#~ msgid "Group that owns the connection" +#~ msgstr "Группа, которой принадлежит соединение" + +#~ msgid "Position to center the map when the map is opened" +#~ msgstr "Положение по центру карты при открытии карты" + +#~ msgid "This selects what to change by clicking on the map" +#~ msgstr "Данный параметр выбирает, чтобы изменить при нажатие на карту" + +#~ msgid "Directory where agent remote configuration is stored." +#~ msgstr "Каталог, в котором хранится агент удаленной конфигурации." + +#~ msgid "" +#~ "If SSL is not properly configured you will lose access to Pandora FMS " +#~ "Console. Do you want to continue?" +#~ msgstr "" +#~ "Если SSL не настроено должным образом, вы потеряете доступ к консоли Pandora " +#~ "FMS. Вы хотите продолжить?" + +#~ msgid "Enable Integria incidents in Pandora Console" +#~ msgstr "Включить Integria инциденты в консоли Pandora" + +#~ msgid "URL and/or Integria password are incorrect" +#~ msgstr "URL и/или Integria пароль неверны" + +#~ msgid "" +#~ "Set this value when your PandoraFMS across inverse proxy or for example with " +#~ "mod_proxy of Apache." +#~ msgstr "" +#~ "Установите это значение, когда ваши PandoraFMS через обратный прокси-сервер " +#~ "или, например, с mod_proxy из Apache." + +#~ msgid "" +#~ "When it is set as \"yes\" in some important sections check if the user have " +#~ "gone from url Pandora." +#~ msgstr "" +#~ "Когда это установлено, как \"да\" в некоторых важных разделах - проверьте, " +#~ "если пользователь вышел из url Pandora." + +#~ msgid "" +#~ "If set to yes no events or alerts will be generated, but agents will " +#~ "continue receiving data." +#~ msgstr "" +#~ "Если установлено значение да - ни события или предупреждения не будут " +#~ "созданы, но агенты продолжат прием данных." + +#~ msgid "Directory where the server logs are stored." +#~ msgstr "Каталог, в котором хранятся системные журналы сервера" + +#~ msgid "" +#~ "If Enterprise ACL System is enabled without rules you will lose access to " +#~ "Pandora FMS Console (even admin). Do you want to continue?" +#~ msgstr "" +#~ "Если предприятие системы ACL включено без правил, вы потеряете доступ к " +#~ "консоли Pandora FMS (даже администратор). Вы хотите продолжить?" + +#~ msgid "" +#~ "When the agent name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." +#~ msgstr "" +#~ "Когда в имени агента есть много символов, в некоторых местах в Консоли " +#~ "Pandora необходимо сократить N символы." + +#~ msgid "" +#~ "When the module name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." +#~ msgstr "" +#~ "Когда в имени модуля есть много символов, в некоторых местах в Консоли " +#~ "Pandora необходимо сократить N символы." + +#~ msgid "" +#~ "When the description name have a lot of characters, in some places in " +#~ "Pandora Console it is necesary truncate to N characters." +#~ msgstr "" +#~ "Когда в имени описания есть много символов, в некоторых местах в Консоли " +#~ "Pandora необходимо сократить N символы." + +#~ msgid "" +#~ "When the item title name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." +#~ msgstr "" +#~ "Когда в имени артикла названия есть много символов, в некоторых местах в " +#~ "консоли Pandora необходимо сократить число N символов." + +#~ msgid "" +#~ "This enabling this, you get a label with agent name in GIS maps. If you have " +#~ "lots of agents in the map, will be unreadable. Disabled by default." +#~ msgstr "" +#~ "Это включение этого, вы получаете метку с именем агента в картах ГИС. Если у " +#~ "вас есть много агентов в карте, то будет нечитаемо. Отключается по умолчанию." + +#~ msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" +#~ msgstr "" +#~ "Значок агент для карт ГИС. Если установлено значение \"Нет\", значок группы " +#~ "будет использоваться" + +#~ msgid "" +#~ "The dir of custom logos is in your www Pandora Console in " +#~ "\"images/custom_logo\". You can upload more files (ONLY JPEG) in upload tool " +#~ "in console." +#~ msgstr "" +#~ "Каталог пользовательских логотипы в вашей www Pandora Console in " +#~ "\"images/custom_logo\". Вы можете загружать больше файлов (только JPEG) в " +#~ "инструменте загрузок в консоли." + +#~ msgid "Directory where netflow data will be stored." +#~ msgstr "Каталог, в котором данные сетевого потока будут храниться." + +#~ msgid "Specifies the time interval in seconds to rotate netflow data files." +#~ msgstr "" +#~ "Задает временной интервал в секундах для чередования файлов данных сетевого " +#~ "потока." + +#~ msgid "" +#~ "Maximum number of points that a netflow area chart will display. The higher " +#~ "the resolution the performance. Values between 50 and 100 are recommended." +#~ msgstr "" +#~ "Максимальное количество баллов, которые область графика сетевого потока " +#~ "будут отображать. Высокое разрешение производительности. Значения между 50 и " +#~ "100 рекомендуются." + +#~ msgid "Sets the maximum lifetime for netflow data in days." +#~ msgstr "" +#~ "Устанавливает максимальный срок жизни для данных сетевого потока в днях." + +#~ msgid "Local Pandora FMS" +#~ msgstr "Местное Pandora FMS" + +#~ msgid "Data will be compacted in intervals of the specified length." +#~ msgstr "Данные будут сжаты в интервалы определенной длины." + +#~ msgid "" +#~ "If realtime statistics are disabled, statistics interval resfresh will be " +#~ "set here." +#~ msgstr "" +#~ "Если статистик реального времени отключена, статистика интервала " +#~ "перезагрузки будет установлен здесь." + +#~ msgid "" +#~ "This number is the maximum number of files in attachment directory. If this " +#~ "number is reached then a warning message will appear in the header " +#~ "notification space." +#~ msgstr "" +#~ "Это число показывает максимальным количество файлов в приложении каталога. " +#~ "Если это число будет достигнуто, то появится предупреждающее сообщение в " +#~ "заголовке для уведомления." + +#~ msgid "To get your <b>Pandora FMS Enterprise License</b>:" +#~ msgstr "Для получения вашей <b>Pandora FMS Enterprise License</b>:" + +#~ msgid "Success updatng OS" +#~ msgstr "OS успешно обновлено" + +#~ msgid "" +#~ "The new <a href=\"http://updatemanager.sourceforge.net\">Update Manager</a> " +#~ "client is shipped with Pandora FMS It helps system administrators to update " +#~ "their Pandora FMS automatically, since the Update Manager does the task of " +#~ "getting new modules, new plugins and new features (even full migrations " +#~ "tools for future versions) automatically." +#~ msgstr "" +#~ "Новый <a href=\"http://updatemanager.sourceforge.net\"> Менеджер Обновлений " +#~ "</a> клиента поставляется с Pandora FMS Это помогает системным " +#~ "администраторам обновлять свои Pandora FMS автоматически, так как Менеджер " +#~ "Обновлений выполняет задачу получения новых модулей, новых плагинов и новых " +#~ "возможностей (даже полных инструментов миграции для будущих версий) " +#~ "автоматически." + +#~ msgid "" +#~ "Update Manager is one of the most advanced features of Pandora FMS " +#~ "Enterprise version, for more information visit <a " +#~ "href=\"http://pandorafms.com\">http://pandorafms.com</a>." +#~ msgstr "" +#~ "Менеджер Обновлений является одним из самых передовых функций версии " +#~ "предприятия Pandora FMS , для получения дополнительной информации посетите " +#~ "<a href=\"http://pandorafms.com\">http://pandorafms.com</a>." + +#~ msgid "" +#~ "Update Manager sends anonymous information about Pandora FMS usage (number " +#~ "of agents and modules running). To disable it, remove remote server address " +#~ "from Update Manager plugin setup." +#~ msgstr "" +#~ "Менеджер Обновлений отправляет анонимную информацию о использовании Pandora " +#~ "FMS (число работающих агентов и модулей). Чтобы отключить ее, удалить адрес " +#~ "удаленного сервера настроики плагина Менеджера Обновлений." + +#~ msgid "Network component management" +#~ msgstr "Управление сетевыми компонентами" + +#~ msgid "Successfully deleted export target" +#~ msgstr "Успешно удален экспорт задания" + +#~ msgid "Error creating service" +#~ msgstr "Ошибка при создание сервиса" + +#~ msgid "Error updating service" +#~ msgstr "Ошибка при обновлении сервиса" + +#~ msgid "" +#~ "This values are by default because the service is auto calculate mode." +#~ msgstr "" +#~ "Это значения по умолчанию, потому что сервис в режиме авто вычисления." + +#~ msgid "Please set limit between 0 to 100." +#~ msgstr "Пожалуйста, установите лимит от 0 до 100." + +#~ msgid "Warning Service alert" +#~ msgstr "Оповещения предупреждающего сервиса" + +#~ msgid "Critical Service alert" +#~ msgstr "Оповещения критического сервиса" + +#~ msgid "SLA critical service alert" +#~ msgstr "Оповещения критического сервиса SLA" + +#~ msgid "Error empty module" +#~ msgstr "Ошибка пустой модуль" + +#~ msgid "Error empty agent" +#~ msgstr "Ошибка пустой агент" + +#~ msgid "Error empty service" +#~ msgstr "Ошибка пустой сервис" + +#~ msgid "Service element created successfully" +#~ msgstr "Сервисный элемент создан успешно" + +#~ msgid "Error creating service element" +#~ msgstr "Ошибка создания сервисного элемента" + +#~ msgid "Service element updated successfully" +#~ msgstr "Сервисный элемент успешно обновлен" + +#~ msgid "Error updating service element" +#~ msgstr "Ошибка при обновлении элемента сервиса" + +#~ msgid "Service element deleted successfully" +#~ msgstr "Сервисный элемент успешно удален" + +#~ msgid "Error deleting service element" +#~ msgstr "Ошибка при удалении элемента сервиса" + +#~ msgid "Edit element service" +#~ msgstr "Редактировать элемент сервиса" + +#~ msgid "Create element service" +#~ msgstr "Создать элементасервиса" + +#~ msgid "First select an agent" +#~ msgstr "Сначала выберите агента" + +#~ msgid "Ok weight" +#~ msgstr "Хорошая плотность" + +#~ msgid "" +#~ "Maybe delete the extended data or the audit data is previous to table " +#~ "tsession_extended." +#~ msgstr "" +#~ "Возможно, удалите расширенные данные или данные аудита предыдущей таблице " +#~ "tsession_extended." + +#~ msgid "7 days" +#~ msgstr "7 дней" + +#~ msgid "Update all" +#~ msgstr "Обновить все" + +#~ msgid "Delete remote conf agent files in Pandora" +#~ msgstr "Удалить дистанционные файлы агента конфигурации в Pandora" + +#~ msgid "HTTP auth (pass)" +#~ msgstr "HTTP-авторизации (пропуск)" + +#~ msgid "HTTP auth (server)" +#~ msgstr "HTTP-авторизации (сервер)" + +#~ msgid "HTTP auth (realm)" +#~ msgstr "HTTP-авторизации (область)" + #~ msgid ": Edit: " #~ msgstr ": Редактировать: " +#~ msgid "Variable" +#~ msgstr "Переменная" + +#~ msgid "Delete all" +#~ msgstr "Удалить всё" + +#~ msgid "Val." +#~ msgstr "Подтв." + #~ msgid "Massive alerts policy addition" #~ msgstr "Массивные оповещения политики добавления" @@ -31763,9 +49945,210 @@ msgstr "Создать новое сообщение" #~ msgid "Massive alert SNMP edition" #~ msgstr "Массивные оповещения SNMP редактирования" +#~ msgid "Error parsing MIB" +#~ msgstr "Ошибка разбора MIB" + +#, php-format +#~ msgid "Fail uploaded %s/%s traps" +#~ msgstr "Сбой загрузки %s/%s прерывания" + +#~ msgid "Log storage directory" +#~ msgstr "Директорий хранения журнала" + +#~ msgid "Directory where log data will be stored." +#~ msgstr "Директорий, где данные журнала будут сохранены." + +#~ msgid "Log max lifetime" +#~ msgstr "Макс срок службы журнала" + +#~ msgid "Sets the maximum lifetime for log data in days." +#~ msgstr "Устанавливает максимальный срок службы данных журнала в днях." + +#~ msgid "Number of days before data is transfered to history database." +#~ msgstr "" +#~ "Количество дней до того как данные передадутся в историю базы данных." + +#~ msgid "" +#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" +#~ msgstr "" +#~ "Данные размеры механизма, используемого для передачи данных (по аналогии с " +#~ "буфером данных.)" + +#~ msgid "Time interval between data transfer." +#~ msgstr "Интервал времени между передачей данных." + +#~ msgid "" +#~ "Before activating this option check your ACL Setup. You may lose access to " +#~ "the console." +#~ msgstr "" +#~ "Перед активацией данной опции проверьте настройки ACL. Вы можете потерять " +#~ "доступ к консоли." + +#~ msgid "" +#~ "The inventory modules included in the changes blacklist will not generate " +#~ "events when change." +#~ msgstr "" +#~ "Модули инвентаризации, включенные в черный список изменений не будет " +#~ "создавать события, когда изменятся." + +#~ msgid "" +#~ "Rules applied to the management of passwords. This policy applies to all " +#~ "users except the administrator." +#~ msgstr "" +#~ "Правила, применяемые к управлению паролями. Эта политика распространяется на " +#~ "всех пользователей, кроме администратора." + +#~ msgid "Remote Pandora FMS" +#~ msgstr "Удалить Pandora FMS" + +#~ msgid "Remote Babel Enterprise" +#~ msgstr "Удалить Babel предприятие" + +#~ msgid "Remote Integria" +#~ msgstr "Удалить Integria" + +#~ msgid "Pandora FMS host" +#~ msgstr "Хост Pandora FMS" + +#~ msgid "Or disable Pandora FMS enterprise" +#~ msgstr "Или отключить предприятие Pandora FMS" + +#, php-format +#~ msgid "" +#~ "<strong style=\"font-size: 11pt\">License out of limits</strong> <br><br> " +#~ "This license allows %d agents and you have %d agents configured." +#~ msgstr "" +#~ "<strong style=\"font-size: 11pt\"> Лицензия выходит за допустимые пределы " +#~ "</strong> <br><br> Эта лицензия разрешает %d агентов и у вас есть %d агенты " +#~ "конфирурации.\r\n" +#~ "." + +#~ msgid "" +#~ "To continue using Pandora FMS, please disable enterprise by renaming the " +#~ "Enterprise directory in the console.<br><br>Or contact Artica at " +#~ "info@artica.es for a valid license:" +#~ msgstr "" +#~ "Чтобы продолжить работу с Pandora FMS, пожалуйста, отключите предприятия " +#~ "путем переименования каталога предприятия в консоли. <br><br>Или свяжитесь с " +#~ "Artica на info@artica.es для действующей лицензии:" + +#~ msgid "Please contact Artica at info@artica.es to renew the license." +#~ msgstr "" +#~ "Пожалуйста, свяжитесь с Artica на info@artica.es чтобы продлить лицензию." + +#~ msgid "Latest events list" +#~ msgstr "Список последних событий" + +#~ msgid "Map made by user" +#~ msgstr "Карта выполняется пользователем" + +#~ msgid "Show a map made by user" +#~ msgstr "Показать карту, выполненную пользователем" + +#~ msgid "Alerts Fired" +#~ msgstr "Оповещвния запущены" + +#~ msgid "Alerts Fired report" +#~ msgstr "Отчет запуска оповещвний" + +#~ msgid "Show a report made by user" +#~ msgstr "Показать отчет, выполненный пользователем" + +#~ msgid "Single graph" +#~ msgstr "Один график" + +#~ msgid "Show a graph of an agent module" +#~ msgstr "показать график агента модуля" + +#~ msgid "5 hours" +#~ msgstr "5 часов" + +#~ msgid "Show the URL content" +#~ msgstr "Показать содержание URL" + #~ msgid "Height in px (zero for auto)" #~ msgstr "Высота в пикселях (ноль для авто)" +#~ msgid "My URL" +#~ msgstr "Мой URL" + +#~ msgid "Invalid URL" +#~ msgstr "Неверный адрес (URL)" + +#~ msgid "Welcome message to Pandora FMS" +#~ msgstr "Приветственное сообщение для Pandora FMS" + +#~ msgid "Thanks for using Pandora FMS" +#~ msgstr "Спасибо за использование Pandora FMS" + +#~ msgid "Show a map of the monitored network" +#~ msgstr "Показать карту контролируемой сети" + +#~ msgid "No overlap" +#~ msgstr "Нет перекрытия" + +#~ msgid "8" +#~ msgstr "8" + +#~ msgid "9" +#~ msgstr "9" + +#~ msgid "10" +#~ msgstr "10" + +#~ msgid "11" +#~ msgstr "11" + +#~ msgid "12" +#~ msgstr "12" + +#~ msgid "Maps status" +#~ msgstr "Статус карт" + +#~ msgid "General and quick visual maps report" +#~ msgstr "Общий и быстрый визуальный отчет карты" + +#~ msgid "My Post" +#~ msgstr "Мой пост" + +#~ msgid "Show a defined custom graph" +#~ msgstr "Показать определенный график пользователя" + +#~ msgid "General and quick group status report" +#~ msgstr "Общие и быстрый отчет статуса группы" + +#~ msgid "Show a list of global monitor health" +#~ msgstr "Показать список глобальный монитор здоровья" + +#~ msgid "Top N events by module." +#~ msgstr "Топ N события по модулю." + +#~ msgid "Dashboard replicate" +#~ msgstr "Информационная панель копирования" + +#~ msgid "Not copyed. Error copying data. You must select a dashboard" +#~ msgstr "" +#~ "Не копируется. Ошибка при копировании данных. Вы должны выбрать " +#~ "информационную панель" + +#~ msgid "Not copyed. Error copying data" +#~ msgstr "Не копируется. Ошибка при копировании данных." + +#~ msgid "Successfully copyed" +#~ msgstr "Успешно копировано" + +#~ msgid "Source user's group" +#~ msgstr "Источник группы пользователя" + +#~ msgid "Destination user's group" +#~ msgstr "Назначение группы пользователя" + +#~ msgid "Group Dashboards" +#~ msgstr "Группа информационных панелей" + +#~ msgid "Replicate Dashboard" +#~ msgstr "Репликация информационной панели" + #~ msgid "Dashboard successfuly updated" #~ msgstr "Информационная панель успешно загружена" @@ -31778,6 +50161,18 @@ msgstr "Создать новое сообщение" #~ msgid "Dashboard successfuly created" #~ msgstr "Информационная панель успешно создана" +#~ msgid "Next Dashboard" +#~ msgstr "Следующая панель" + +#~ msgid "Play" +#~ msgstr "Воспроизведение" + +#~ msgid "Previous Dashboard" +#~ msgstr "Предыдущая панель" + +#~ msgid "Next slide in" +#~ msgstr "Следующий слайд в" + #~ msgid "Add dashboard" #~ msgstr "Добавить панель" @@ -31790,9 +50185,33 @@ msgstr "Создать новое сообщение" #~ msgid "Dashboard options" #~ msgstr "Параметры Панели инструментов" +#~ msgid "Private dashboard" +#~ msgstr "Частная панель инструментов" + #~ msgid "Add new dashboard view" #~ msgstr "Добавить просмотр новой панели инструментов" +#~ msgid "Add new widget" +#~ msgstr "Добавить новый виджет" + +#~ msgid "Create networkmap" +#~ msgstr "Создать карту сети" + +#~ msgid "Visualmap" +#~ msgstr "Визуальная карта" + +#~ msgid "Succesful updated" +#~ msgstr "Успешно обновлено" + +#~ msgid "Unsucessful updated" +#~ msgstr "Неудачно обновлено" + +#~ msgid "Can't connect to Pandora FMS instance" +#~ msgstr "Не удается подключиться к экземпляру Pandora FMS" + +#~ msgid "Please, set a valid IP address" +#~ msgstr "Пожалуйста, выберите действительный IP адрес" + #~ msgid "License Info" #~ msgstr "Информация о лицензии" @@ -31802,12 +50221,292 @@ msgstr "Создать новое сообщение" #~ msgid "Check this to copy user original profiles" #~ msgstr "Проверьте это для копирования оригинальных профилей пользователей" +#~ msgid "Visual" +#~ msgstr "Визуальный" + +#~ msgid "" +#~ "Complete path to Pandora console without last \"/\" character. Example " +#~ msgstr "" +#~ "Полный путь к консоли Pandora без последнего символа \"/\". Например " + +#~ msgid "There aren't server added to metaconsole" +#~ msgstr "Здесь нет сервера, добавленного к мата консоли" + +#~ msgid "Please search for anything text." +#~ msgstr "Пожалуйста ищете весь текст." + +#, php-format +#~ msgid "Created/Updated %s/%s groups" +#~ msgstr "Создано/Обновлено %s/%s групп" + +#~ msgid "redirected ip server in conf into source DB" +#~ msgstr "перенаправленный IP сервер в конф исходной БД" + +#~ msgid "created agent in destination DB" +#~ msgstr "созданный агент в назначенной БД" + +#~ msgid "created agent modules in destination DB" +#~ msgstr "созданные агенты модулей в назначенной БД" + +#~ msgid "created agent alerts in destination DB" +#~ msgstr "созданный агент оповещений в назначенной БД" + +#~ msgid "created alerts actions in destination DB" +#~ msgstr "созданные агенты действий в назначенной БД" + +#~ msgid "disabled agent in source DB" +#~ msgstr "отключенный агент в исходной БД" + +#~ msgid "" +#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " +#~ "Console." +#~ msgstr "" +#~ "Не установленный IP мета консоли в \"черном списоке IP с доступом API\" " +#~ "предполагаемой консоли Pandora." + +#~ msgid "Successfully moved" +#~ msgstr "Успешно перемещено" + +#~ msgid "Could not be moved" +#~ msgstr "Не может быть перемещено" + +#~ msgid "" +#~ "In order to have the best user experience with Pandora FMS, we <b>strongly " +#~ "recommend</b> to use" +#~ msgstr "" +#~ "Для того чтобы улучшить пользовательский опыт работы с Pandora FMS, мы <b> " +#~ "настоятельно рекомендуем <b> использовать" + +#~ msgid "" +#~ "<a href='http://www.mozilla.org/en-US/firefox/fx/'>Mozilla Firefox</a> or <a " +#~ "href='https://www.google.com/chrome'>Google Chrome</a> browsers." +#~ msgstr "" +#~ "<a href='http://www.mozilla.org/en-US/firefox/fx/'>Mozilla Firefox</a> or <a " +#~ "href='https://www.google.com/chrome'>Google Chrome</a> браузеры." + +#~ msgid "Tag management" +#~ msgstr "Управление тегом" + +#~ msgid "Network map deleted successfully" +#~ msgstr "Карта сети успешно удалена" + +#~ msgid "Could not delete network map" +#~ msgstr "Не удается удалить карту сети" + +#~ msgid "Not networkmap defined." +#~ msgstr "Карта сети не определена." + +#~ msgid "Successful update the networkmap." +#~ msgstr "Карта сети успешно обновлена." + +#~ msgid "Unsuccessful update the networkmap." +#~ msgstr "Неудачное обновление карты сети." + +#~ msgid "Unnamed " +#~ msgstr "Неназвано " + +#~ msgid "Filter by agents" +#~ msgstr "Фильтр по агентам" + +#~ msgid "Filter by modules" +#~ msgstr "Фильтр по модулям" + +#~ msgid "Regenerate" +#~ msgstr "Восстановить" + +#~ msgid "Show children Metaconsole" +#~ msgstr "Показать детскую мета консоль" + +#~ msgid "No Overlap" +#~ msgstr "Нет Перекрытия" + +#~ msgid "Distance between nodes" +#~ msgstr "Расстояние между узлами" + +#~ msgid "Separation between elements in the map (in Non-overlap mode)" +#~ msgstr "Расстоянием между элементами на карте (в режиме Без перекрытий)" + +#~ msgid "Show modulegroup" +#~ msgstr "Показать модуль группы" + +#~ msgid "Map options" +#~ msgstr "Опции карты" + +#~ msgid "There is no group selected" +#~ msgstr "Здесь нет выбранных групп" + +#~ msgid "Map could not be generated" +#~ msgstr "Карта не может быть сгенерирована" + +#, php-format +#~ msgid "Cannot connect to %s Pandora to generate networkmap." +#~ msgstr "Не удается соединиться с %s Pandora для генерирования карты сети" + +#~ msgid "Go to agent detail" +#~ msgstr "Перейти к деталям агента" + +#~ msgid "Create new module" +#~ msgstr "Создать новый модуль" + +#~ msgid "Go to module detail" +#~ msgstr "Перейти к деталям модуля" + +#~ msgid "Create new alert" +#~ msgstr "Создать новое оповещение" + +#~ msgid "There was a problem loading alert" +#~ msgstr "Найдена проблема при агрузке оповещения" + +#~ msgid "Stand By" +#~ msgstr "Поддерживаемое" + +#~ msgid "Go to Alert detail" +#~ msgstr "Перейтик деталям Оповещения" + +#~ msgid "There was a problem loading tag" +#~ msgstr "Найдена проблема при загрузке тега" + #~ msgid "Copy Dashboard" #~ msgstr "Копировать панель инструментов" +#~ msgid "Network console" +#~ msgstr "Сетевая консоль" + +#~ msgid "Error deleting service" +#~ msgstr "Ошибка при удалении сервиса" + +#~ msgid "Networkmap enterprise" +#~ msgstr "Карта сетевого предприятия" + +#, php-format +#~ msgid "Networkmap enterprise - %s" +#~ msgstr "Карта сетевого производрсва - %s" + +#~ msgid "Recon task" +#~ msgstr "Рекон задачи" + +#~ msgid "The networkmap has been generated already." +#~ msgstr "Карта сети была сформирована уже." + +#~ msgid "Size of networkmap (Width x Height)" +#~ msgstr "Размер карты сети (ширина х высота)" + +#~ msgid "x" +#~ msgstr "x" + #~ msgid "Refresh networkmap state" #~ msgstr "Обновить состояние карты сети" +#~ msgid "Resize the networkmap" +#~ msgstr "Изменить размер карты сети" + +#~ msgid "This operation can't be undone, because it is on DB." +#~ msgstr "Эта операция не может быть отменена, так как она находится на БД." + +#~ msgid "Networkmap resized." +#~ msgstr "Размер карты сети изменен." + +#~ msgid "Error process map" +#~ msgstr "Ошибка процесса карты" + +#~ msgid "Details of node:" +#~ msgstr "Детали узла:" + +#~ msgid "Backup" +#~ msgstr "Резервное копирование" + +#~ msgid "Pandora database backup utility" +#~ msgstr "Утилита резервного копирования базы данных Pandora" + +#~ msgid "This is the automatic generated report" +#~ msgstr "Автоматически сформированный отчет" + +#~ msgid "Open the attached file to view it" +#~ msgstr "Открыть вложенный файл чтобы просмотреть его" + +#~ msgid "Please do not answer or reply to this email" +#~ msgstr "Пожалуйста, не отвечайте на это сообщение электронной почты" + +#~ msgid "Cron extension is not running" +#~ msgstr "Cron расширение не работает" + +#~ msgid "Cron extension has never run or it's not configured well" +#~ msgstr "" +#~ "Расширение Cron никогда не выполнялось или не было хорошо сконфигурировано" + +#~ msgid "" +#~ "This extension relies on a proper setup of cron, the time-based scheduling " +#~ "service" +#~ msgstr "" +#~ "Это расширение зависит от правильной настройки Cron, основанной на времени " +#~ "службы планирования" + +#~ msgid "Please, add the following line to your crontab file" +#~ msgstr "Пожалуйста, добавьте следующую строку в вашу вкладку cron файла" + +#~ msgid "Cron extension is running" +#~ msgstr "Расширение Cron работает" + +#~ msgid "First_execution" +#~ msgstr "Первое_выполнение" + +#~ msgid "" +#~ "Maybe the first run is not exactly equal to this value because the cron " +#~ "configuration is diferent." +#~ msgstr "" +#~ "Может быть, первый прогон не совсем равнен этому значению, потому что cron " +#~ "конфигурации другой." + +#~ msgid "First execution" +#~ msgstr "Первое выполнение" + +#~ msgid "CSV import" +#~ msgstr "Импорт CSV" + +#, php-format +#~ msgid "Created agent %s" +#~ msgstr "Созданный агент %s" + +#~ msgid "Inside limits" +#~ msgstr "Внутренние лимиты" + +#~ msgid "On the edge" +#~ msgstr "На краю" + +#~ msgid "TTRT" +#~ msgstr "TTRT - целевое время оборота маркера" + +#~ msgid "TTO" +#~ msgstr "Офис Передачи технологий (ТТО)" + +#~ msgid "MTBF" +#~ msgstr "Наработка на отказ (MTBF)" + +#~ msgid "MTTR" +#~ msgstr "среднее время восстановления (MTTR)" + +#~ msgid "Radius" +#~ msgstr "Радиус" + +#~ msgid "Network map linked" +#~ msgstr "Сетевая карта связана" + +#~ msgid "Show modules:" +#~ msgstr "Показать модули:" + +#~ msgid "Automated Pandora FMS report for user defined report" +#~ msgstr "" +#~ "Автоматизированный отчет Pandora FMS для определенного отчета пользователя" + +#~ msgid "Alert report agent" +#~ msgstr "Агент отчета оповещения" + +#~ msgid "Alert report group" +#~ msgstr "Группа отчета оповещения" + +#~ msgid "Alert report module" +#~ msgstr "Модуль отчета оповещение" + #~ msgid "Events by criticity" #~ msgstr "Events by criticity" @@ -31823,6 +50522,245 @@ msgstr "Создать новое сообщение" #~ msgid "CONTENTS" #~ msgstr "СОДЕРЖАНИЕ" +#~ msgid "SO" +#~ msgstr "SO" + +#~ msgid "There are no modules." +#~ msgstr "Здесь нет модулей." + +#~ msgid "Restoring a Pandora database backup must be done manually" +#~ msgstr "" +#~ "Восстановление из резервной копии базы данных Pandora должно быть сделано " +#~ "вручную" + +#~ msgid "Run import command using the following command" +#~ msgstr "Выполните команду импорта с помощью следующей команды" + +#~ msgid "Into your destination database." +#~ msgstr "В вашей целевой базе данных." + +#~ msgid "Database credentials not found" +#~ msgstr "Учетные данные базы данных не найдены" + +#~ msgid "Error connecting to the specified host" +#~ msgstr "Ошибка подключения к указанному хосту" + +#~ msgid "Connected to the host, but cannot found the specified database" +#~ msgstr "Подключен к хосту, но не может найти указанную базу данных" + +#~ msgid "" +#~ "\"Translate string\" extension is missed in the server. This extension is " +#~ "mandatory to be configured on metaconsole." +#~ msgstr "" +#~ "Расширение \"Перевести строку\" пропущено на сервере. Это расширение " +#~ "обязательным должно быть настроено на мета консоли." + +#~ msgid "" +#~ "Server name doesnt match. Check the node server name and configure the same " +#~ "one on metasetup" +#~ msgstr "" +#~ "Имя сервера не совпадает. Проверьте имя узла сервера и настройку одной и той " +#~ "же мета установки" + +#~ msgid "Module store the service does not exist." +#~ msgstr "Модуль запаса сервиса не существует." + +#~ msgid "Module store SLA service does not exist." +#~ msgstr "Модуль запаса SLA сервиса не существует." + +#~ msgid "Agent store the service does not exist." +#~ msgstr "Агент запаса сервиса не существует." + +#~ msgid "Agent store SLA service does not exist." +#~ msgstr "Агент запаса SLA сервиса не существует." + +#~ msgid "Alert critical SLA service does not exist." +#~ msgstr "Оповещение критического SLA сервиса не существует." + +#~ msgid "Alert warning service does not exist." +#~ msgstr "Оповещение предупреждающего SLA сервиса не существует." + +#~ msgid "Alert critical service does not exist." +#~ msgstr "Оповещение критического сервиса не существует." + +#~ msgid "Alert unknown service does not exist." +#~ msgstr "Оповещение неизвестного сервиса не существует." + +#~ msgid "You must change password" +#~ msgstr "Вы должны изменить пароль" + +#~ msgid "NEW PASS: " +#~ msgstr "НОВЫЙ ПРОПУСК: " + +#~ msgid "CONFIRM: " +#~ msgstr "ПОДТВЕРДИТЬ: " + +#~ msgid "Error updating user pass (no change?)" +#~ msgstr "Ошибка при обновлении пропуска пользователя (без изменений?)" + +#~ msgid "Networkmaps" +#~ msgstr "Сетевые карты" + +#, php-format +#~ msgid "Filter Networkmaps by %s" +#~ msgstr "Фильтр Сетевых карт по %s" + +#~ msgid "No networkmaps" +#~ msgstr "Нет сетевых карт" + +#~ msgid "Error connecting to DB pandora." +#~ msgstr "Ошибка соединения с БД pandora." + +#, php-format +#~ msgid "PandoraFMS: %s" +#~ msgstr "PandoraFMS: %s" + +#~ msgid "Avg Only" +#~ msgstr "Сред. Только" + +#~ msgid "PandoraFMS: Agents" +#~ msgstr "PandoraFMS: Агенты" + +#~ msgid "Pandora FMS mobile" +#~ msgstr "Pandora FMS мобильнаое" + +#~ msgid "Pandora FMS Diagnostic tool" +#~ msgstr "Pandora FMS инструмент диагностики" + +#~ msgid "Go to Pandora FMS Website" +#~ msgstr "Перейти к вебсайту Pandora FMS" + +#~ msgid "" +#~ "Pandora FMS frontend is built on advanced, modern technologies and does not " +#~ "support old browsers." +#~ msgstr "" +#~ "Pandora FMS интерфейс построен на передовых, современных технологиях и не " +#~ "поддерживает старые браузеры." + +#~ msgid "" +#~ "It is highly recommended that you choose and install a modern browser. It is " +#~ "free of charge and only takes a couple of minutes." +#~ msgstr "" +#~ "Мы настоятельно рекомендуем вам выбрать и установить современный браузер. " +#~ "Это бесплатно и занимает всего пару минут." + +#~ msgid "Why is it recommended to upgrade the web browser?" +#~ msgstr "Почему рекомендуется обновить веб-браузер?" + +#~ msgid "" +#~ "New browsers usually come with support for new technologies, increasing web " +#~ "page speed, better privacy settings and so on. They also resolve security " +#~ "and functional issues." +#~ msgstr "" +#~ "Новые браузеры обычно поставляются с поддержкой новых технологий, увеличение " +#~ "скорости веб-страницы, лучше настройки конфиденциальности и так далее. А " +#~ "также помогают разрешить безопасность и функциональные вопросы." + +#~ msgid "Continue despite this warning" +#~ msgstr "Продолжить, несмотря на это предупреждение" + +#~ msgid "System alerts detected - Please fix as soon as possible" +#~ msgstr "" +#~ "Система оповещений обнаружена - пожалуйста, исправьте как можно скорее" + +#, php-format +#~ msgid "You have %d warning(s)" +#~ msgstr "У вас есть %d предупреждение(я)" + +#~ msgid "There are not warnings" +#~ msgstr "Здесь нет предупреждений" + +#~ msgid "New chat message" +#~ msgstr "Новый чат сообщений" + +#~ msgid "Message overview" +#~ msgstr "просмотр сообщений" + +#~ msgid "Blank characters are used as AND conditions" +#~ msgstr "Пустые символы используются в качестве И условий" + +#~ msgid "Press here to activate shortcut bar" +#~ msgstr "Нажмите здесь, чтобы активировать панель быстрого запуска" + +#~ msgid "Incidents opened" +#~ msgstr "Инциденты открыты" + +#~ msgid "Create new message" +#~ msgstr "Создать новое сообщение" + +#~ msgid "Recon view" +#~ msgstr "Просмотеть рекон" + +#~ msgid "CSV File" +#~ msgstr "CSV файл" + +#~ msgid "WebChat" +#~ msgstr "Веб Чат" + +#~ msgid "Bytes per second" +#~ msgstr "Байт в секунду" + +#~ msgid "" +#~ "Agent statuses are re-calculated by the server, they are not shown in real " +#~ "time." +#~ msgstr "" +#~ "Статусы агента пересчитаны на сервере, они не показаны в реальном времени." + +#~ msgid "Last position in " +#~ msgstr "Последняя позиция в " + +#~ msgid "positional data" +#~ msgstr "данные о местоположении" + +#~ msgid "Full list of monitors" +#~ msgstr "Полный список мониторов" + +#~ msgid "Network map created successfully" +#~ msgstr "Карта сети успешно создана" + +#~ msgid "Could not create network map" +#~ msgstr "Не удалось создать карту сети" + +#~ msgid "Network map saved successfully" +#~ msgstr "Карта сети успешно сохранена" + +#~ msgid "Could not save network map" +#~ msgstr "Не удается сохранить карту сети" + +#~ msgid "Policies view" +#~ msgstr "Просмотр политики" + +#~ msgid "Topology view" +#~ msgstr "Просмотр топологии" + +#~ msgid "Delete map" +#~ msgstr "Удалить карту" + +#~ msgid "Show interfaces" +#~ msgstr "Показать интерфейсы" + +#~ msgid "Depth" +#~ msgstr "Глубина" + +#~ msgid "Only modules with alerts" +#~ msgstr "Только модули с оповещениями" + +#~ msgid "Hide policy modules" +#~ msgstr "Спрятать пилитику модулей" + +#~ msgid "Only run with it is filter for any group" +#~ msgstr "работать только с этим фильтром для любой группы" + +#~ msgid "" +#~ "Show events is disabled because this Pandora node is set the event " +#~ "replication." +#~ msgstr "" +#~ "Показать события, которые отключены поскольку этот узел Pandora установлен " +#~ "случаем репликации." + +#~ msgid "Show event graph" +#~ msgstr "Показать событие графика" + #~ msgid "Time compare" #~ msgstr "Сравнить время" @@ -31832,21 +50770,273 @@ msgstr "Создать новое сообщение" #~ msgid "Separated" #~ msgstr "Разделены" +#~ msgid "Current data at" +#~ msgstr "Текущие данные в" + #~ msgid "Alerts found" #~ msgstr "Оповещения найдены" +#~ msgid "Maps found" +#~ msgstr "Карты найдены" + +#~ msgid "Message successfully sent" +#~ msgstr "Сообщение успешно отправлено" + +#, php-format +#~ msgid "Error sending message to group %s" +#~ msgstr "Ошибка при отправке сообщения в группу %s" + #~ msgid "There are no messages" #~ msgstr "Сообщений нет" +#~ msgid "Event graph by user" +#~ msgstr "События графика по пользователю" + +#~ msgid "Show events graph" +#~ msgstr "Показать события графика" + +#~ msgid "Events generated -by agent-" +#~ msgstr "События, сгенерированные - агентом-" + +#~ msgid "Marquee display" +#~ msgstr "Отображение \"Бегущая строка\"" + +#~ msgid "Main event view" +#~ msgstr "Просмотр главных событий" + +#~ msgid "No events selected" +#~ msgstr "Нет выбранных событий" + +#~ msgid "Successfully validated" +#~ msgstr "Успешно подтверждено" + +#~ msgid "Could not be validated" +#~ msgstr "Не может быть подтверждено" + +#~ msgid "Successfully set in process" +#~ msgstr "Успешно настроено в процессе" + +#~ msgid "Could not be set in process" +#~ msgstr "Активные настройки не могут быть удалены" + +#~ msgid "Error deleting event" +#~ msgstr "Ошибка при удалении события" + +#~ msgid "Refresh: " +#~ msgstr "Обновить: " + +#~ msgid "Show agents by state: " +#~ msgstr "Показывать агенты по положению: " + +#~ msgid "Webchat" +#~ msgstr "Веб-чат" + +#~ msgid "Users Online" +#~ msgstr "Пользователей онлайн" + +#~ msgid "Connection established...get last 24h messages..." +#~ msgstr "Соединение установлено ... сообщения за последние 24 часа..." + +#~ msgid "Error in connection." +#~ msgstr "Ошибка соединения." + +#~ msgid "Error sendding message." +#~ msgstr "Ошибка при отправке сообщения." + +#~ msgid "Error login." +#~ msgstr "Ошибка входа в систему." + +#, php-format +#~ msgid "Error updating passwords: %s" +#~ msgstr "Ошибка при обновлении паролей : %s" + +#~ msgid "" +#~ "You can not change your password from Pandora FMS under the current " +#~ "authentication scheme" +#~ msgstr "" +#~ "Вы не можете изменить свой пароль в Pandora FMS при текущей системе " +#~ "аутентификации" + +#~ msgid "Shortcut bar" +#~ msgstr "Панель быстрого доступа" + +#~ msgid "" +#~ "This will activate a shortcut bar with alerts, events, messages... " +#~ "information" +#~ msgstr "" +#~ "Это позволит активизировать панель быстрого доступа с оповещениями, " +#~ "событиями, сообщениями ... информацией" + +#~ msgid "" +#~ "User can customize the home page. By default, will display 'Agent Detail'. " +#~ "Example: Select 'Other' and type " +#~ "sec=estado&sec2=operation/agentes/estado_agente to show agent detail view" +#~ msgstr "" +#~ "Пользователь может настроить главную страницу. По умолчанию будет " +#~ "отображаться как \"Агент Деталей\". Например: Выберите «Другие» и тип " +#~ "sec=estado&sec2=operation/agentes/estado_agente чтобы показать агент деталей " +#~ "подробно" + +#~ msgid "" +#~ "You can not change your user info from Pandora FMS under the current " +#~ "authentication scheme" +#~ msgstr "" +#~ "Вы не можете изменить вашу пользовательскую информацию в Pandora FMS " +#~ "притекущей системе аутентификации" + #~ msgid "This user doesn't have any assigned profile/group" #~ msgstr "У этого пользователя нет назначенного профиля/ группы" +#~ msgid "Incident management" +#~ msgstr "инцидент управления" + +#~ msgid "Successfully reclaimed ownership" +#~ msgstr "Права собственности успешно восстановлены" + +#~ msgid "Could not reclame ownership" +#~ msgstr "Права собственности не могут быть восстановлены" + +#~ msgid "Error creating incident" +#~ msgstr "Ошибка при создании инцидента" + +#~ msgid "Incident created" +#~ msgstr "Инцидент создан" + +#~ msgid "All incidents" +#~ msgstr "все инциденты" + +#~ msgid "All priorities" +#~ msgstr "Все приоритеты" + #~ msgid "No incidents match your search filter" #~ msgstr "Нет инцидентов, соответствующих вашему поисковому фильтру" +#~ msgid "Delete incidents" +#~ msgstr "Удалить инциденты" + +#~ msgid "Become owner" +#~ msgstr "Стать владельцем" + +#~ msgid "Create incident" +#~ msgstr "создать инцидент" + +#~ msgid "Incidents by source" +#~ msgstr "Инциденты по инсточнику" + +#~ msgid "File could not be saved due to database error" +#~ msgstr "Файл не может быть сохранена из-за ошибки базы данных" + +#~ msgid "File uploaded" +#~ msgstr "Файл загружен" + +#~ msgid "File could not be uploaded" +#~ msgstr "файл не может быть загружен" + +#~ msgid "Incident details" +#~ msgstr "Детали инцидента" + +#~ msgid "Opened at" +#~ msgstr "открыто на" + +#~ msgid "Update incident" +#~ msgstr "Обновить инцидент" + +#~ msgid "Notes attached to incident" +#~ msgstr "Примечания приклепленны к инциденту" + #~ msgid "Search by any alphanumeric field in the trap" #~ msgstr "Поиск по какому-либо алфавитно-цифровому полю в прерывании" +#~ msgid "Add a file" +#~ msgstr "Добавить файл" + +#~ msgid "Delete file" +#~ msgstr "Удалить файл" + +#~ msgid "New Incident" +#~ msgstr "Новый инцидент" + +#~ msgid "Workunits" +#~ msgstr "Рабочие единицы" + +#~ msgid "Incident updated" +#~ msgstr "Инцидент обновлен" + +#~ msgid "" +#~ "There was a problem updating the incident, please check if any field was " +#~ "modified and the values are correct." +#~ msgstr "" +#~ "Найдена проблема при обновлении инцидента, пожалуйста, проверьте, если какое-" +#~ "любо поле была модифицировано и правильны ли значения." + +#~ msgid "There was a problem creating incident" +#~ msgstr "Найдена проблема при создании инцидента" + +#~ msgid "There was a problem uploading file" +#~ msgstr "Найдена проблема при загрузке файла" + +#~ msgid "File is too big" +#~ msgstr "Фаил слишком большой" + +#~ msgid "File was partially uploaded. Please try again" +#~ msgstr "Файл был загружен не полностью. Пожалуйста, попробуйте еще раз" + +#~ msgid "Generic upload error" +#~ msgstr "Общая ошибка загрузки" + +#~ msgid "File deleted" +#~ msgstr "Файл удален" + +#~ msgid "You user doesn't have enough rights to delete this file" +#~ msgstr "Ваш пользователь не имеет достаточно прав для удаления этого файла" + +#~ msgid "Incident deleted" +#~ msgstr "Инцидент удален" + +#~ msgid "There was a problem deteling incident" +#~ msgstr "найдена проблема при удалении инцидента" + +#~ msgid "Workunit added" +#~ msgstr "Рабочая единича добавлена" + +#~ msgid "There was a problem adding workunit" +#~ msgstr "Ошибка при добавлении рабочего блока" + +#~ msgid "" +#~ "There is a error in the message from your Integria or there is not " +#~ "connection." +#~ msgstr "Есть ошибка в сообщении от Integra или нет соединения." + +#~ msgid "Assigned user" +#~ msgstr "Сопоставленный пользователь" + +#~ msgid "Resolution epilog" +#~ msgstr "Разрешение эпилога" + +#~ msgid "Not closed" +#~ msgstr "Не закрыто" + +#~ msgid "Search string" +#~ msgstr "Искать строку" + +#~ msgid "Delete incident" +#~ msgstr "Удалить инцидент" + +#~ msgid "View incident details" +#~ msgstr "Просмотреть инцидент деталей" + +#~ msgid "Time used" +#~ msgstr "Время израсходовано" + +#~ msgid "Have cost" +#~ msgstr "Должно стоить" + +#~ msgid "Add workunit" +#~ msgstr "Добавить рабочую единицу" + +#~ msgid "said" +#~ msgstr "сказано" + #, php-format #~ msgid "" #~ "This extension makes registration of server plugins more easy. Here you can " @@ -31861,11 +51051,1087 @@ msgstr "Создать новое сообщение" #~ "серверы плагинов Pandora FMS. <br><br>Вы можете получить больше плагинов в " #~ "нашей <a href='%s'> Общественной библиотеке ресурсов </a>" +#, php-format +#~ msgid "" +#~ "This extension makes registration of resource template more easy. Here you " +#~ "can upload a resource template in Pandora FMS 3.x format (.ptr). Please " +#~ "refer to documentation on how to obtain and use Pandora FMS resources. " +#~ "<br><br>You can get more resurces in our <a href='%s'>Public Resource " +#~ "Library</a>" +#~ msgstr "" +#~ "Это расширение облегчает регистрацию ресурсов шаблона. Здесь вы можете " +#~ "загрузить ресурс шаблона в Pandora FMS 3.x формате (.ptr). Пожалуйста, " +#~ "обратитесь к документации о том, как получить и использовать ресурсы Pandora " +#~ "FMS. <br><br>Вы можете получить больше ресурсов в нашей <a href='%s'> " +#~ "Общественной библиотеке ресурсов</a>" + +#~ msgid "" +#~ "This extension makes exportation of resource template more easy. Here you " +#~ "can export as a resource template in Pandora FMS 3.x format (.ptr). " +#~ msgstr "" +#~ "Это экспортирование облегчает экспортирование шаблонов ресурсов. Здесь вы " +#~ "можете экспортировать в виде ресурса шаблона в Pandora FMS 3.x формате " +#~ "(.ptr). " + +#~ msgid "" +#~ "You can set the command path in the menu Administration -> Extensions -" +#~ "> Config Network Tools" +#~ msgstr "" +#~ "Вы можете установить путь команды в меню Управление -> Расширение -> " +#~ "Конфиг Инструментов Сети" + +#~ msgid "Traceroute to " +#~ msgstr "трассировать в " + #~ msgid "Ping to " #~ msgstr "Перебросить в " +#~ msgid "Basic TCP Scan on " +#~ msgstr "Основное TCP сканирование в " + +#~ msgid "SNMPget executable does not exist." +#~ msgstr "SNMPget выполнение не существует." + +#~ msgid "Config Network Tools" +#~ msgstr "Конф Сетевых Инстр" + +#~ msgid "Set the paths." +#~ msgstr "Настройка путей." + +#~ msgid "If it is empty, Pandora searchs the traceroute system." +#~ msgstr "Если пусто, Pandora ищет трассировку системы." + +#~ msgid "If it is empty, Pandora searchs the ping system." +#~ msgstr "Если пусто, Pandora ищет пинг системы." + +#~ msgid "If it is empty, Pandora searchs the nmap system." +#~ msgstr "Если пусто, Pandora ищет nmap системы." + +#~ msgid "If it is empty, Pandora searchs the dig system." +#~ msgstr "Если пусто, Pandora ищет dig системы." + +#~ msgid "If it is empty, Pandora searchs the snmpget system." +#~ msgstr "Если пусто, Pandora ищет snmpget системы." + +#~ msgid "Pandora Console URL" +#~ msgstr "Pandora Console URL" + +#~ msgid "Previous templates" +#~ msgstr "Предыдущие шаблоны" + +#~ msgid "More templates" +#~ msgstr "Еще шаблоны" + +#~ msgid "VNC Display (:0 by default)" +#~ msgstr "VNC отображение (:0 по умолчанию)" + +#~ msgid "VNC view" +#~ msgstr "Просмотр VNC" + +#~ msgid "Cannot read file" +#~ msgstr "Не удается прочитать файл" + +#~ msgid "There was an error with the zip file" +#~ msgstr "Произошла ошибка с архивированным файлом" + +#~ msgid "" +#~ "This extension can run as PHP script in a shell for extract more " +#~ "information, but it must be run as root or across sudo. For example: <i>sudo " +#~ "php /var/www/pandora_console/extensions/system_info.php -d -s -c</i>" +#~ msgstr "" +#~ "Это расширение может работать как PHP скрипт в оболочке для извлечения " +#~ "дополнительной информации, но он должен быть запущен как корень или через " +#~ "судо. Например: <i>sudo php " +#~ "/var/www/pandora_console/extensions/system_info.php -d -s -c</i>" + +#~ msgid "Pandora Diagnostic info" +#~ msgstr "Pandora диагностическая информация" + +#~ msgid "System info" +#~ msgstr "Системная информация" + +#~ msgid "Log Info" +#~ msgstr "Информация журнала" + +#~ msgid "Number lines of log" +#~ msgstr "Число линий журнала" + +#~ msgid "Generate file" +#~ msgstr "Создайте файл" + +#~ msgid "File is too large (> 500KB)" +#~ msgstr "Файл слишком большой (> 500KB)" + +#~ msgid "" +#~ "This tool is used just to view your Pandora FMS system logfiles directly " +#~ "from console" +#~ msgstr "" +#~ "Этот инструмент используется только для просмотра ваших Pandora FMS файлов " +#~ "системного журнала непосредственно из консоли" + +#~ msgid "Number fired of alerts" +#~ msgstr "Число запусков оповещений" + +#~ msgid "Pandora Server CPU" +#~ msgstr "Pandora Сервер CPU" + +#~ msgid "Pandora Server Disk IO Wait" +#~ msgstr "Pandora Сервер Диск IO в ожидании" + +#~ msgid "Pandora Server MySQL load" +#~ msgstr "Pandora Сервер MySQL Нагрузка" + +#~ msgid "You need to specify a user and a host address" +#~ msgstr "Вам нужно указать пользователя и хост-адрес" + +#, php-format +#~ msgid "For security reasons the following characters are not allowed: %s" +#~ msgstr "В целях безопасности следующие символы не допускаются: %s" + +#~ msgid "Port (use 0 for default)" +#~ msgstr "Порт (использовать 0 по умолчанию)" + +#~ msgid "Connect mode" +#~ msgstr "Режим подключения" + +#~ msgid "ITIL" +#~ msgstr "ITIL" + +#~ msgid "Netflow pie chart" +#~ msgstr "Секторная диаграмма сетевого потока" + +#~ msgid "Netflow statistics table" +#~ msgstr "Таблица статистики сетевого потока" + +#~ msgid "Going down to critical state" +#~ msgstr "Спуститься к критическому положению" + +#~ msgid "Recon server detected a new host" +#~ msgstr "Recon сервер определил нового хозяина" + +#~ msgid "Agent address" +#~ msgstr "Адрес агента" + +#~ msgid "Agent id" +#~ msgstr "id агента" + +#~ msgid "Total alerts monitored" +#~ msgstr "Всего обработанных оповещений" + +#~ msgid "Total monitors" +#~ msgstr "всего мониторов" + +#~ msgid "Monitors down on period" +#~ msgstr "Мониторы вниз по периоду" + +#~ msgid "Minimal" +#~ msgstr "Минимум" + +#~ msgid "No set or get or help operation." +#~ msgstr "Нет установлены или не получены или не помогли операции." + +#~ msgid "Id does not exist in BD." +#~ msgstr "Id не существует в БД." + +#~ msgid "Correct Delete" +#~ msgstr "Правильное удаление" + +#~ msgid "Error in creation network module. Agent name doesn't exists." +#~ msgstr "Ошибка в создании модуля сети. Имя агента не существует." + +#~ msgid "" +#~ "Error in creation network module. Id_module_type is not correct for network " +#~ "modules." +#~ msgstr "" +#~ "Ошибка в создани модуля сети. Id_модуль_тип не подходит для сетевых модулей." + +#~ msgid "Error in creation network module." +#~ msgstr "Ошибка при создании сетевого модуля." + +#~ msgid "Error updating network module. Module name cannot be left blank." +#~ msgstr "" +#~ "Ошибка при обновлении сетевого модуля. Имя модуля не может быть пустым." + +#~ msgid "Error updating network module. Id_module doesn't exists." +#~ msgstr "Ошибка при обновлении сетевой модуль. Id_модуль не существует." + +#~ msgid "Error updating network module. Id_module exists in the new agent." +#~ msgstr "" +#~ "Ошибка при обновлении сетевого модуля. Id_модуль существует в новом агенте." + +#~ msgid "Error in creation plugin module. Id_plugin cannot be left blank." +#~ msgstr "Ошибка при создании плагина модуля. Id_плагин не может быть пустым." + +#~ msgid "Error in creation plugin module. Agent name doesn't exists." +#~ msgstr "Ошибка при создании плагина модуля. Имя агента не существует." + +#~ msgid "Error in creation plugin module." +#~ msgstr "Ошибка в создании плагина модуля." + +#~ msgid "Error updating plugin module. Id_module cannot be left blank." +#~ msgstr "" +#~ "Ошибка при обновлении плагина модуля. Id_модуль не может быть пустым." + +#~ msgid "Error updating plugin module. Id_module doesn't exists." +#~ msgstr "Ошибка при обновлении плагина модуля. Id_модуль не существует." + +#~ msgid "Error updating plugin module. Id_module exists in the new agent." +#~ msgstr "" +#~ "Ошибка при обновлении плагина модуля. Id_модуль существует в новом агенте." + +#~ msgid "Error in creation data module. Module_name cannot be left blank." +#~ msgstr "Ошибка при создании данных модуля. Модуль_имя не должно быть пустым." + +#~ msgid "Error in creation data module. Agent name doesn't exists." +#~ msgstr "Ошибка при создании данных модуля. Имя агента не существует." + +#~ msgid "Error in creation data module." +#~ msgstr "Ошибка при создании данных модуля." + +#~ msgid "Error updating data module. Id_module cannot be left blank." +#~ msgstr "" +#~ "Ошибка при обновлении данных модуля. Id_модуль не должно быть пустым." + +#~ msgid "Error updating data module. Id_module doesn't exists." +#~ msgstr "Ошибка при обновлении данных модуля. Id_модуль не существует." + +#~ msgid "Error updating data module. Id_module exists in the new agent." +#~ msgstr "" +#~ "Ошибка при обновлении данных модуля. Id_модуль существует в новом агенте." + +#~ msgid "Error in creation SNMP module. Module_name cannot be left blank." +#~ msgstr "Ошибка в создании SNMP модуля. Модуль_имя не может быть пустым." + +#~ msgid "" +#~ "Error in creation SNMP module. Invalid id_module_type for a SNMP module." +#~ msgstr "" +#~ "Ошибка в создании SNMP модуля. Недействительный id_модуль_тип для SNMP " +#~ "модуля." + +#~ msgid "Error in creation SNMP module. Agent name doesn't exists." +#~ msgstr "Ошибка в создании SNMP модуля. Имя агента не существует." + +#~ msgid "" +#~ "Error in creation SNMP module. snmp3_priv_method doesn't exists. Set it to " +#~ "'AES' or 'DES'. " +#~ msgstr "" +#~ "Ошибка в создании SNMP модуля. snmp3_priv_method не существует. Установить " +#~ "его в 'AES' или 'DES'. " + +#~ msgid "" +#~ "Error in creation SNMP module. snmp3_sec_level doesn't exists. Set it to " +#~ "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +#~ msgstr "" +#~ "Ошибка в создании SNMP модуля. snmp3_sec_level не существует. Установить " +#~ "его в 'authNoPriv' или 'authPriv' или 'noAuthNoPriv'. " + +#~ msgid "" +#~ "Error in creation SNMP module. snmp3_auth_method doesn't exists. Set it to " +#~ "'MD5' or 'SHA'. " +#~ msgstr "" +#~ "Ошибка в создании SNMP модуля. snmp3_auth_method не существует. Установить " +#~ "его в 'MD5' или 'SHA'. " + +#~ msgid "Error in creation SNMP module." +#~ msgstr "Ошибка в создании SNMP модуля." + +#~ msgid "Error updating SNMP module. Id_module cannot be left blank." +#~ msgstr "Ошибка в создании SNMP модуля. Id_модуль не может быть пустым." + +#~ msgid "Error updating SNMP module. Id_module doesn't exists." +#~ msgstr "Ошибка в создании SNMP модуля. Id_модуль не существует." + +#~ msgid "Error updating SNMP module. Id_module exists in the new agent." +#~ msgstr "Ошибка в создании SNMP модуля. Id_модуль существует в новом агенте." + +#~ msgid "" +#~ "Error creating network component. Network component name cannot be left " +#~ "blank." +#~ msgstr "" +#~ "Ошибка при создании компонент сети. Имя сетевого компонента не может быть " +#~ "пустым." + +#~ msgid "" +#~ "Error creating network component. Incorrect value for Network component type " +#~ "field." +#~ msgstr "" +#~ "Ошибка при создании сетевого компонента. Неверное значение для сетевого " +#~ "компонента типа сети." + +#~ msgid "" +#~ "Error creating network component. Network component group cannot be left " +#~ "blank." +#~ msgstr "" +#~ "Ошибка при создании сетевого компонента. Группа сетевого компонента не может " +#~ "быть незаполненной." + +#~ msgid "" +#~ "Error creating network component. This network component already exists." +#~ msgstr "" +#~ "Ошибка при создании сетевого компонента. Данный сетевой компонент уже " +#~ "существует." + +#~ msgid "" +#~ "Error creating plugin component. Plugin component name cannot be left blank." +#~ msgstr "" +#~ "Ошибка при создании плагина компонента. Имя плагина компонента не может быть " +#~ "незаполненным." + +#~ msgid "Error creating plugin component. Incorrect value for Id plugin." +#~ msgstr "" +#~ "Ошибка при создании плагина компонента. Неврное значение для Id плагина." + +#~ msgid "" +#~ "Error creating plugin component. Plugin component group cannot be left blank." +#~ msgstr "" +#~ "Ошибка при создании плагина компонента. Плагин компонента группы не может " +#~ "быть пустым." + +#~ msgid "" +#~ "Error creating plugin component. This plugin component already exists." +#~ msgstr "" +#~ "Ошибка при создании плагина компонента. Данный плагин компонента уже " +#~ "существует." + +#~ msgid "" +#~ "Error creating SNMP component. SNMP component name cannot be left blank." +#~ msgstr "" +#~ "Ошибка при создании SNMP компонента. Имя SNMP компонента не может быть " +#~ "пустым." + +#~ msgid "" +#~ "Error creating SNMP component. Incorrect value for Snmp component type field." +#~ msgstr "" +#~ "Ошибка при создании SNMP компонента. Неверное значение для типа поля Snmp " +#~ "компонента." + +#~ msgid "" +#~ "Error creating SNMP component. Snmp component group cannot be left blank." +#~ msgstr "" +#~ "Ошибка при создании SNMP компонента. Snmp компонент группы не может быть " +#~ "пустым." + +#~ msgid "" +#~ "Error creating SNMP component. snmp3_priv_method doesn't exists. Set it to " +#~ "'AES' or 'DES'. " +#~ msgstr "" +#~ "Ошибка при создании Snmp компонента. snmp3_priv_method не существует. " +#~ "Установите это в 'AES' или 'DES'. " + +#~ msgid "" +#~ "Error creating SNMP component. snmp3_sec_level doesn't exists. Set it to " +#~ "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +#~ msgstr "" +#~ "Ошибка при создании Snmp компонента. snmp3_sec_level не существует. " +#~ "Установите это в 'authNoPriv' или 'authPriv' или 'noAuthNoPriv'. " + +#~ msgid "" +#~ "Error creating SNMP component. snmp3_auth_method doesn't exists. Set it to " +#~ "'MD5' or 'SHA'. " +#~ msgstr "" +#~ "Ошибка при создании SNMP компонента. snmp3_auth_method не существует. " +#~ "Установите это в 'MD5' или 'SHA'. " + +#~ msgid "Error creating SNMP component. This SNMP component already exists." +#~ msgstr "" +#~ "Ошибка при создании SNMP компонента. Данный SNMP компонент уже существует." + +#~ msgid "" +#~ "Error creating local component. Local component name cannot be left blank." +#~ msgstr "" +#~ "Ошибка при создании местного компонента. Имя местного компонента не может " +#~ "быть пустым." + +#~ msgid "" +#~ "Error creating local component. Local component group cannot be left blank." +#~ msgstr "" +#~ "Ошибка при создании местного компонента. Местный компонент группы не может " +#~ "быть пустым." + +#~ msgid "Error creating local component." +#~ msgstr "Ошибка при создании местного компонента." + +#~ msgid "Error creating local component. This local component already exists." +#~ msgstr "" +#~ "Ошибка при создании местного компонента. Данный местный компонент уже " +#~ "существует." + +#~ msgid "" +#~ "Error getting module value from all agents. Module name cannot be left blank." +#~ msgstr "" +#~ "Ошибка при получении значения модуля из всех агентов. Имя модуля не может " +#~ "быть пустым." + +#~ msgid "" +#~ "Error getting module value from all agents. Module name doesn't exists." +#~ msgstr "" +#~ "Ошибка при получении значения модуля из всех агентов. Имя модуля не " +#~ "существует." + +#~ msgid "Error creating alert template. Template name cannot be left blank." +#~ msgstr "" +#~ "Ошибка при создании шаблона оповещения. Имя шаблона не может быть пустым." + +#~ msgid "Error creating alert template." +#~ msgstr "Ошибка при создании шаблона оповещения." + +#~ msgid "Error updating alert template. Id_template cannot be left blank." +#~ msgstr "" +#~ "Ошибка при создании шаблона оповещения. Id_шаблона не может быть пустым." + +#~ msgid "Error updating alert template. Id_template doesn't exists." +#~ msgstr "Ошибка при обновлении шаблона оповещения. Id_шаблона не существует." + +#~ msgid "Error updating alert template." +#~ msgstr "Ошибка при обновлении шаблона оповещения." + +#~ msgid "Correct updating of alert template" +#~ msgstr "Правильное обновление шаблона оповещения" + +#~ msgid "Error deleting alert template. Id_template cannot be left blank." +#~ msgstr "" +#~ "Ошибка при удалении шаблона оповещения. Id_шаблона не может быть пустым." + +#~ msgid "Error deleting alert template." +#~ msgstr "Ошибка при удалении шаблона оповещения." + +#~ msgid "Correct deleting of alert template." +#~ msgstr "Правильное удаление шаблона оповещения." + +#~ msgid "Error getting all alert templates." +#~ msgstr "Ошибка при получении всех шаблонов оповещений." + +#~ msgid "Error getting alert template. Id_template doesn't exists." +#~ msgstr "Ошибка при получении шаблона оповещения. Id_шаблона не существует." + +#~ msgid "Error getting alert template." +#~ msgstr "Ошибка при получении шаблона оповещения." + +#~ msgid "Error getting module groups." +#~ msgstr "Ошибка получения групп модуля." + +#~ msgid "Error getting plugins." +#~ msgstr "Ошибка при получении плагинов." + +#~ msgid "Error creating module from network component. Agent doesn't exists." +#~ msgstr "" +#~ "Ошибка при создании модуля из сетевого компонента. Агент не существует." + +#~ msgid "" +#~ "Error creating module from network component. Network component doesn't " +#~ "exists." +#~ msgstr "" +#~ "Ошибка при создании модуля из сетевого компонента. Сетевой компонент не " +#~ "существует." + +#~ msgid "Error creating module from network component. Error creating module." +#~ msgstr "" +#~ "Ошибка при создании модуля из сетевого компонента. Ошибка создания модуля." + +#~ msgid "Error assigning module to template. Id_template cannot be left blank." +#~ msgstr "Ошибка назначения модуля к шаблону. Id_шаблона не может быть пустым." + +#~ msgid "Error assigning module to template. Id_module cannot be left blank." +#~ msgstr "Ошибка назначения модуля к шаблону. Id_модуля не может быть пустым." + +#~ msgid "Error assigning module to template. Id_agent cannot be left blank." +#~ msgstr "Ошибка назначения модуля к шаблону. Id_агента не может быть пустым." + +#~ msgid "Error assigning module to template. Id_template doensn't exists." +#~ msgstr "Ошибка назначения модуля к шаблону. Id_шаблона не существует." + +#~ msgid "Error assigning module to template. Id_agent doesn't exists." +#~ msgstr "Ошибка назначения модуля к шаблону. Id_агента не существует." + +#~ msgid "Error assigning module to template. Id_module doesn't exists." +#~ msgstr "Ошибка назначения модуля к шаблону. Id_модуля не существует." + +#~ msgid "Error assigning module to template." +#~ msgstr "Ошибка назначения модуля к шаблону." + +#~ msgid "" +#~ "Error deleting module template. Id_module_template cannot be left blank." +#~ msgstr "" +#~ "Ошибка удаления модуля шаблона. Id_модуля_шаблона не может быть пустым." + +#~ msgid "Error deleting module template. Id_module_template doesn't exists." +#~ msgstr "Ошибка удаления модуля шаблона. Id_модуля_шаблона не существует." + +#~ msgid "Error deleting module template." +#~ msgstr "Ошибка удаления модуля шаблона." + +#~ msgid "Error validate all alerts. Failed " +#~ msgstr "Ошибка при подтверждении всех оповещений. Сбой " + +#~ msgid "Correct validating of all alerts." +#~ msgstr "Верное утверждение всех оповещений." + +#~ msgid "Error validating all alert policies." +#~ msgstr "Ошибка при подтверждении всех оповещений политики." + +#~ msgid "Error validate all policy alerts. Failed " +#~ msgstr "Ошибка при подтверждении всех оповещений политики. Сбой " + +#~ msgid "Correct validating of all policy alerts." +#~ msgstr "Правильное подтверждение всех оповещений политики." + +#~ msgid "Error stopping downtime. Id_downtime cannot be left blank." +#~ msgstr "Ошибка при остановке простоя. Id_простой не может быть пустым." + +#~ msgid "Error adding agent to policy. Id_policy cannot be left blank." +#~ msgstr "Ошибка добавления агента политики. Id_политики не может быть пустым." + +#~ msgid "Error adding agent to policy. Id_agent cannot be left blank." +#~ msgstr "Ошибка добавления агента политики. Id_агент не может быть пустым." + +#~ msgid "Error adding agent to policy. Id_agent doesn't exists." +#~ msgstr "Ошибка добавления агента политики. Id_политики не существует." + +#~ msgid "Error adding agent to policy." +#~ msgstr "Ошибка добавления агента политики." + +#~ msgid "Error adding agent to policy. The agent is already in the policy." +#~ msgstr "" +#~ "Ошибка добавления агента политики. Данный агент уже находится в политике." + +#~ msgid "Error adding data module to policy. Id_policy cannot be left blank." +#~ msgstr "" +#~ "Ошибка добавления данных модуля к политики. Id_политики не может быть пустым." + +#~ msgid "Error adding data module to policy. Module_name cannot be left blank." +#~ msgstr "" +#~ "Ошибка добавления данных модуля к политики. Модуль_имя не может быть пустым." + +#~ msgid "Error adding data module to policy." +#~ msgstr "Ошибка добавления данных модуля к политики." + +#~ msgid "" +#~ "Error adding data module to policy. The module is already in the policy." +#~ msgstr "" +#~ "Ошибка добавления данных модуля к политики. Данный модуль уже существует в " +#~ "политике." + +#~ msgid "Error updating data module in policy. Id_policy cannot be left blank." +#~ msgstr "" +#~ "Ошибка обновления данных модуля в политике. Id_политики не может быть " +#~ "пустым." + +#~ msgid "" +#~ "Error updating data module in policy. Id_policy_module cannot be left blank." +#~ msgstr "" +#~ "Ошибка обновления данных модуля в политике. Id_политики_модуля не может " +#~ "быть пустым." + +#~ msgid "Error updating data module in policy. Module doesn't exists." +#~ msgstr "Ошибка обновления данных модуля в политике. Модуль не существует." + +#~ msgid "" +#~ "Error adding network module to policy. Id_policy cannot be left blank." +#~ msgstr "" +#~ "Ошибка добавления сетевого модуля к политики. Id_политики не может быть " +#~ "пустым." + +#~ msgid "" +#~ "Error adding network module to policy. Module_name cannot be left blank." +#~ msgstr "" +#~ "Ошибка добавления сетевого модуля к политики. Модуля_имя не может быть " +#~ "пустым." + +#~ msgid "" +#~ "Error adding network module to policy. Id_module_type is not correct for " +#~ "network modules." +#~ msgstr "" +#~ "Ошибка добавления сетевого модуля к политики. Неверный Id_модуль_тип для " +#~ "сетевых модулей." + +#~ msgid "Error adding network module to policy." +#~ msgstr "Ошибка добавления сетевого модуля к политики." + +#~ msgid "" +#~ "Error adding network module to policy. The module is already in the policy." +#~ msgstr "" +#~ "Ошибка добавления сетевого модуля к политики. Модуль уже находится в " +#~ "политике." + +#~ msgid "" +#~ "Error updating network module in policy. Id_policy cannot be left blank." +#~ msgstr "" +#~ "Ошибка обновления сетевого модуля в политике. Id_политики не может быть " +#~ "пустым." + +#~ msgid "" +#~ "Error updating network module in policy. Id_policy_module cannot be left " +#~ "blank." +#~ msgstr "" +#~ "Ошибка обновления сетевого модуля в политике. Id_политики_модуль не может " +#~ "быть пустым." + +#~ msgid "Error updating network module in policy. Module doesn't exists." +#~ msgstr "Ошибка обновления сетевого модуля в политике. Модуль не существует." + +#~ msgid "" +#~ "Error updating network module in policy. Module type is not network type." +#~ msgstr "" +#~ "Ошибка обновления сетевого модуля в политике. Тип модуля - не сетевой тип." + +#~ msgid "Error adding plugin module to policy. Id_policy cannot be left blank." +#~ msgstr "" +#~ "Ошибка добавления плагина модуля к политикие Id_политики не может быть " +#~ "пустым." + +#~ msgid "" +#~ "Error adding plugin module to policy. Module_name cannot be left blank." +#~ msgstr "" +#~ "Ошибка добавления плагина модуля к политикие Модуль_имя не может быть " +#~ "пустым." + +#~ msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." +#~ msgstr "" +#~ "Ошибка добавления плагина модуля к политике. Id_плагин не может быть пустым." + +#~ msgid "Error adding plugin module to policy." +#~ msgstr "Ошибка добавления плагина модуля к политике." + +#~ msgid "" +#~ "Error adding plugin module to policy. The module is already in the policy." +#~ msgstr "" +#~ "Ошибка добавления плагина модуля к политике. Модуль уже находится в политике." + +#~ msgid "" +#~ "Error updating plugin module in policy. Id_policy cannot be left blank." +#~ msgstr "" +#~ "Ошибка обновления плагина модуля в политике. Id_политики не может быть " +#~ "пустым." + +#~ msgid "" +#~ "Error updating plugin module in policy. Id_policy_module cannot be left " +#~ "blank." +#~ msgstr "" +#~ "Ошибка обновления плагина модуля в политике. Id_политики_модуля не может " +#~ "быть пустым." + +#~ msgid "Error updating plugin module in policy. Module doesn't exists." +#~ msgstr "Ошибка обновления плагина модуля в политике. Модуль не существует." + +#~ msgid "" +#~ "Error updating plugin module in policy. Module type is not network type." +#~ msgstr "" +#~ "Ошибка обновления плагина модуля в политике. Тип модуля - не сетевой тип." + +#~ msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." +#~ msgstr "" +#~ "Ошибка добавления SNMP модуля кполитике. Id_политики не может быть пустым." + +#~ msgid "Error adding SNMP module to policy. Module_name cannot be left blank." +#~ msgstr "" +#~ "Ошибка добавления SNMP модуля кполитике. Модуль_имя не может быть пустым." + +#~ msgid "Error adding SNMP module to policy." +#~ msgstr "Ошибка добавления SNMP модуля к политике." + +#~ msgid "" +#~ "Error adding SNMP module to policy. Id_module_type is not correct for SNMP " +#~ "modules." +#~ msgstr "" +#~ "Ошибка добавления SNMP модуля кполитике. Id_модуль_тип неверен для SNMP " +#~ "модулей." + +#~ msgid "" +#~ "Error adding SNMP module to policy. The module is already in the policy." +#~ msgstr "" +#~ "Ошибка добавления SNMP модуля к политике. Модуль уже находится в политике." + +#~ msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." +#~ msgstr "" +#~ "Ошибка обновления SNMP модуля в политике. Id_политики не может быть пустым." + +#~ msgid "" +#~ "Error updating SNMP module in policy. Id_policy_module cannot be left blank." +#~ msgstr "" +#~ "Ошибка обновления SNMP модуля в политике. Id_политики_модуль не может быть " +#~ "пустым." + +#~ msgid "Error updating SNMP module in policy. Module doesn't exists." +#~ msgstr "Ошибка обновления SNMP модуля в политике. Модуль не существует." + +#~ msgid "Error updating SNMP module in policy. Module type is not SNMP type." +#~ msgstr "Ошибка обновления SNMP модуля в политике. Тип модуля - не SNMP тип." + +#~ msgid "" +#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to " +#~ "'AES' or 'DES'. " +#~ msgstr "" +#~ "Ошибка обновления SNMP модуля. snmp3_priv_method не существует. Установите " +#~ "это к 'AES' или 'DES'. " + +#~ msgid "" +#~ "Error updating SNMP module. snmp3_sec_level doesn't exists. Set it to " +#~ "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +#~ msgstr "" +#~ "Ошибка обновления SNMP модуля. snmp3_sec_level не существует. Установите это " +#~ "в 'authNoPriv' или 'authPriv' или 'noAuthNoPriv'. " + +#~ msgid "" +#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to " +#~ "'MD5' or 'SHA'. " +#~ msgstr "" +#~ "Ошибка обновления SNMP модуля. snmp3_auth_method не существует. Установите " +#~ "это в 'MD5' или 'SHA'. " + +#~ msgid "Error applying policy. Id_policy cannot be left blank." +#~ msgstr "Ошибка применения политики. Id_политики не может быть пустым." + +#~ msgid "Error applying policy." +#~ msgstr "Ошибка применения политики." + +#~ msgid "Error applying policy. This policy is already pending to apply." +#~ msgstr "" +#~ "Ошибка применения политики. Политика уже находится в режиме ожидания для " +#~ "применения." + +#~ msgid "Error applying all policies." +#~ msgstr "Ошибка применения всех политик." + +#~ msgid "Error in group creation. Group_name cannot be left blank." +#~ msgstr "Ошибка в создании группы. Группа_имя не может быть пустым." + +#~ msgid "Error in group creation. Icon_name cannot be left blank." +#~ msgstr "Ошибка в создании группы. Значок_имя не может быть пустым." + +#~ msgid "Error in group creation. Id_parent_group doesn't exists." +#~ msgstr "Ошибка в создании группы. Id_родитель_группа не может быть пустым." + +#~ msgid "Error in group creation." +#~ msgstr "Ошибка в создании группы." + +#~ msgid "Error in netflow filter creation. Filter name cannot be left blank." +#~ msgstr "" +#~ "Ошибка в создании сетевого фильтра. Имя фильтра не может быть пустым." + +#~ msgid "Error in netflow filter creation. Group id cannot be left blank." +#~ msgstr "Ошибка в создании сетевого фильтра. Id группы не может быть пустым." + +#~ msgid "Error in netflow filter creation. Filter cannot be left blank." +#~ msgstr "Ошибка в создании сетевого фильтра. Фильтр не может быть пустым." + +#~ msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." +#~ msgstr "" +#~ "Ошибка в создании сетевого фильтра. Совокупность _по не может быть пустым." + +#~ msgid "Error in netflow filter creation. Output_format cannot be left blank." +#~ msgstr "" +#~ "Ошибка в создании сетевого фильтра. Выработка_формат не может быть пустым." + +#~ msgid "Error in netflow filter creation." +#~ msgstr "Ошибка в создании сетевого фильтра." + +#~ msgid "Create user." +#~ msgstr "Создать пользователя." + +#~ msgid "Error updating user. Id_user cannot be left blank." +#~ msgstr "" +#~ "Ошибка обновления пользователя. Id_пользователя не может быть пустым." + +#~ msgid "Error updating user. Id_user doesn't exists." +#~ msgstr "Ошибка обновления пользователя. Id_пользователя не существует." + +#~ msgid "Error updating user. Password info incorrect." +#~ msgstr "Ошибка обновления пользователя. Неправильная информация о пароле." + +#~ msgid "Updated user." +#~ msgstr "Обновить пользователя." + +#~ msgid "Error in user enabling/disabling." +#~ msgstr "Ошибка в отключении/подключении пользователя." + +#~ msgid "Delete user." +#~ msgstr "Удалить пользователя." + +#~ msgid "Add user profile." +#~ msgstr "Добавить профиль пользователя." + +#~ msgid "Delete user profile." +#~ msgstr "Удалить профиль пользователя." + +#~ msgid "Correct module disable" +#~ msgstr "Правильное отключение модуля" + +#~ msgid "Error disabling module" +#~ msgstr "Ошибка отключения модуля" + +#~ msgid "Correct module enable" +#~ msgstr "Правильное подключение модуля" + +#~ msgid "Error enabling module" +#~ msgstr "Ошибка подключения модуля" + +#~ msgid "Error in agent enabling/disabling." +#~ msgstr "Ошибка агента включения/отключения." + +#~ msgid "Error creating special day. Invalid date format." +#~ msgstr "Ошибка при создании особого дня. Недопустимый формат даты." + +#~ msgid "Error in creation special day." +#~ msgstr "Ошибка при создании особого дня." + +#~ msgid "Target IP cannot be blank." +#~ msgstr "Целевой IP не может быть пустым." + +#~ msgid "Does not exist agent with this name." +#~ msgstr "Нет агента с таким именем." + +#~ msgid "Problem with Pandora FMS database" +#~ msgstr "Проблема с базой данных Pandora FMS" + +#~ msgid "" +#~ "Cannot connect to the database, please check your database setup in the " +#~ "<b>include/config.php</b> file.<i><br/><br/>\n" +#~ "\t\t\tProbably your database, hostname, user or password values are " +#~ "incorrect or \n" +#~ "\t\t\tthe database server is not running." +#~ msgstr "" +#~ "Не удается подключиться к базе данных, пожалуйста, проверьте ваши настройки " +#~ "базы данных в <b>include/config.php</b> file.<i><br/><br/>\n" +#~ "\t\t\t Возможно ваша база данных, имя хоста, пользователя или значения " +#~ "пароля неверны \n" +#~ "\t\t\t сервер базы данных не работает." + +#~ msgid "" +#~ "If you have modified auth system, this problem could be because Pandora " +#~ "cannot override authorization variables from the config database. Remove " +#~ "them from your database by executing:<br><pre>DELETE FROM tconfig WHERE " +#~ "token = \"auth\";</pre>" +#~ msgstr "" +#~ "Если вы изменили систему авторизации, то эта проблема может возникнуть, " +#~ "потому что Pandora не может переопределить переменные авторизации из " +#~ "конфигурационной базы данных. Удалите их из своей базы данных, выполнив: " +#~ "<br><pre>DELETE FROM tconfig WHERE token = \"auth\";</pre>" + +#~ msgid "" +#~ "Cannot load configuration variables from database. Please check your " +#~ "database setup in the\n" +#~ "\t\t\t<b>include/config.php</b> file.<i><br><br>\n" +#~ "\t\t\tMost likely your database schema has been created but there are is no " +#~ "data in it, you have a problem with the database access credentials or your " +#~ "schema is out of date.\n" +#~ "\t\t\t<br><br>Pandora FMS Console cannot find <i>include/config.php</i> or " +#~ "this file has invalid\n" +#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " +#~ "to fix this problem.</i>" +#~ msgstr "" +#~ "Не удается загрузить переменные конфигурации из базы данных. Пожалуйста, " +#~ "проверьте настройки базы данных в\n" +#~ "\t\t\t <b>include/config.php</b> файл.<i><br><br>\n" +#~ "\t\t\t Скорее всего, ваша схема базы данных была создана, но в ней нет " +#~ "никаких данных, у вас проблемы с учетными данными доступа к базе данных или " +#~ "ваша схема устарела.\n" +#~ "\t\t\t <br><br> Консоль Pandora FMS не может найти <i>include/config.php</i> " +#~ "или этот файл недействителен\n" +#~ "\t\t\t разрешения и HTTP сервер не может это прочитать. Пожалуйста, " +#~ "ознакомьтесь с документацией, чтобы исправить эту проблему.</i>" + +#~ msgid "" +#~ "Pandora FMS Console cannot find <i>include/config.php</i> or this file has " +#~ "invalid\n" +#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " +#~ "to fix this problem." +#~ msgstr "" +#~ "Консоль Pandora FMS не может найти <i>include/config.php</i> или этот файл " +#~ "недействителен\n" +#~ "\t\t\t разрешения и HTTP сервер не может это прочитать. Пожалуйста, " +#~ "ознакомьтесь с документацией, чтобы исправить эту проблему." + +#~ msgid "" +#~ "For security reasons, normal operation is not possible until you delete " +#~ "installer file.\n" +#~ "\t\t\tPlease delete the <i>./install.php</i> file before running Pandora FMS " +#~ "Console." +#~ msgstr "" +#~ "В соображениях безопасности, нормальная работа не представляется возможной, " +#~ "пока не удалите установщика файла.\n" +#~ "\t\t\t Пожалуйста, удалите <i>./install.php</i> файл перед запуском консоли " +#~ "Pandora FMS." + +#~ msgid "" +#~ "For security reasons, <i>config.php</i> must have restrictive permissions, " +#~ "and \"other\" users \n" +#~ "\t\t\tshould not read it or write to it. It should be written only for owner " +#~ "\n" +#~ "\t\t\t(usually www-data or http daemon user), normal operation is not " +#~ "possible until you change \n" +#~ "\t\t\tpermissions for <i>include/config.php</i> file. Please do it, it is " +#~ "for your security." +#~ msgstr "" +#~ "В соображениях безопасности, <i>config.php</i> должен иметь ограниченные " +#~ "разрешения, и «чужие» пользователи \n" +#~ "\t\t\t не должны читать или записывать сюда. это должно быть записано только " +#~ "для владельца \n" +#~ "\t\t\t (обычно веб-данных или HTTP демон пользователя), нормальная работа не " +#~ "возможна, пока вы не измените\n" +#~ "\t\t\t разрешения для <i>include/config.php</i> файла. Пожалуйста, сделайте " +#~ "это, это для вашей безопасности." + +#~ msgid "Width proportional" +#~ msgstr "Ширина пропорциональна" + #~ msgid "Auto Save" #~ msgstr "Автосохранение" +#~ msgid "Could not be save" +#~ msgstr "Не может быть сохранено" + +#~ msgid "Show branch children" +#~ msgstr "Показать детское отделение" + +#~ msgid "Copy dashboard" +#~ msgstr "Копировать панель" + #~ msgid "Empty graph" #~ msgstr "Пустой график" + +#, php-format +#~ msgid "User %s login at %s" +#~ msgstr "Пользователь %s вход в %s" + +#, php-format +#~ msgid "User %s was deleted in the DB at %s" +#~ msgstr "Пользователь %s был удален в БД в %s" + +#, php-format +#~ msgid "User %s logout at %s" +#~ msgstr "Пользователь %s выход из %s" + +#~ msgid "Units. Value" +#~ msgstr "Единицы. Значение" + +#, php-format +#~ msgid "projection for %s" +#~ msgstr "проекция для %s" + +#~ msgid "Open incident" +#~ msgstr "Открытый инцидент" + +#~ msgid "Closed incident" +#~ msgstr "Закрытый инцидент" + +#~ msgid "Units" +#~ msgstr "Единицы" + +#~ msgid "Pie graph and Summary table" +#~ msgstr "Секторный график и Таблица суммирования" + +#~ msgid "Statistics table" +#~ msgstr "Таблица статистики" + +#~ msgid "10 mins" +#~ msgstr "10 мин." + +#~ msgid "15 mins" +#~ msgstr "15 мин." + +#~ msgid "30 mins" +#~ msgstr "30 мин" + +#~ msgid "5 days" +#~ msgstr "5 дней" + +#~ msgid "Last year" +#~ msgstr "Прошлый год" + +#~ msgid "1 min" +#~ msgstr "1 мин" + +#~ msgid "2 mins" +#~ msgstr "2 мин" + +#~ msgid "5 mins" +#~ msgstr "5 мин." + +#~ msgid "Aggregate" +#~ msgstr "Совокупность" + +#~ msgid "Error generating report" +#~ msgstr "Ошибка при формировани отчета" + +#~ msgid "MB" +#~ msgstr "МБ" + +#~ msgid "MB/s" +#~ msgstr "МБ/c" + +#~ msgid "kB" +#~ msgstr "Кбайт" + +#~ msgid "kB/s" +#~ msgstr "кб/с" + +#~ msgid "B/s" +#~ msgstr "Б/с" + +#~ msgid "Map summary" +#~ msgstr "Суммарная карта" + +#~ msgid "Default password for \"Admin\" user has not been changed." +#~ msgstr "Пароль по умолчанию для \"Админ\" пользователя не был изменен." + +#~ msgid "" +#~ "Please change the default password because is a common vulnerability " +#~ "reported." +#~ msgstr "" +#~ "Пожалуйста, измените пароль по умолчанию, потому что сообщает об общей " +#~ "уязвимости." + +#~ msgid "Remote configuration directory is not writtable for the console" +#~ msgstr "Дистанционный каталог конфигурации не доступен для записи в консоли" + +#~ msgid "Too much files in your tempora/attachment directory" +#~ msgstr "Слишком много файлов в приложениях директория" + +#~ msgid "" +#~ "There are too much files in attachment directory. This is not fatal, but you " +#~ "should consider cleaning up your attachment directory manually" +#~ msgstr "" +#~ "Слишком много файлов во приложении директория. Это не критично, но вы должны " +#~ "рассмотреть очистку вашего приложения директория вручную" + +#~ msgid "files" +#~ msgstr "файлы" + +#~ msgid "Database maintance problem" +#~ msgstr "Проблема обслуживания базы данных" + +#~ msgid "" +#~ "Your database is not well maintained. Seems that it have more than 48hr " +#~ "without a proper maintance. Please review Pandora FMS documentation about " +#~ "how to execute this maintance process (pandora_db.pl) and enable it as soon " +#~ "as possible" +#~ msgstr "" +#~ "Ваша база данных не в хорошем состоянии. Кажется, что она находится более " +#~ "чем 48 часов без надлежащего обслуживания. Пожалуйста, ознакомьтесь с " +#~ "документацией Pandora FMS о том, как выполнять этот процесс обслуживания В " +#~ "процессе (pandora_db.pl) и начать его как можно скорее" + +#~ msgid "Default font doesnt exist" +#~ msgstr "Шрифт по умолчанию не существует" + +#~ msgid "" +#~ "Your defined font doesnt exist or is not defined. Please check font " +#~ "parameters in your config" +#~ msgstr "" +#~ "Установленный вами шрифт не существует или не определен. Пожалуйста, " +#~ "проверьте параметры шрифта в вашей конфигурации" + +#~ msgid "" +#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a " +#~ "developer mode and should be disabled in a production system. This value is " +#~ "written in the main index.php file" +#~ msgstr "" +#~ "Ваш Pandora FMS режим \"develop_bypass\" включен. Это режим разработчика и " +#~ "должны быть отключен в производственной системе. Это значение записывается в " +#~ "главный файл index.php" + +#~ msgid "Error first setup Open update" +#~ msgstr "Ошибка первой установки Открыть обновление" + +#~ msgid "New update of Pandora Console" +#~ msgstr "Новое обновление Консоли Pandora" diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index 09393879ba..121c377823 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -55,7 +55,9 @@ table.databox, input.sub, .introjs-tooltip, button.sub, -.bg_general { +.bg_general, +.show_result_interpreter, +div#rules::after { background-color: #222 !important; color: #fff; } @@ -232,7 +234,8 @@ div#foot { } /* Overwrite inline styles */ -.textodialogo td .white_important { +.textodialogo td .white_important, +.multi-select-container { color: #fff !important; } @@ -884,6 +887,7 @@ div#dashboard-controls { text-anchor: middle; fill: #fff; font-family: Verdana; + color: #fff; } .tickLabel { @@ -1027,3 +1031,18 @@ table.alternate tr:nth-child(2n + 1) td { table.alternate tr:nth-child(2n) td { background-color: #111; } + +.results-found { + background-color: #111; + color: #fff; +} + +#graph_container { + background-color: #111 !important; + color: #fff; +} + +#elasticsearch_editor, +#elasticsearch_view { + filter: invert(100%); +} diff --git a/pandora_console/operation/reporting/reporting_viewer.php b/pandora_console/operation/reporting/reporting_viewer.php index 34f3b7819c..6fef0568b2 100755 --- a/pandora_console/operation/reporting/reporting_viewer.php +++ b/pandora_console/operation/reporting/reporting_viewer.php @@ -96,7 +96,10 @@ if (check_acl_restricted_all($config['id_user'], $report_group, 'RW')) { $options['main']['text'] = '<a href="index.php?sec=reporting&sec2=godmode/reporting/reporting_builder&tab=main&action=edit&id_report='.$id_report.'&pure='.$pure.'">'.html_print_image( 'images/op_reporting.png', true, - ['title' => __('Main data')] + [ + 'title' => __('Main data'), + 'class' => 'invert_filter', + ] ).'</a>'; $options['list_items']['text'] = '<a href="index.php?sec=reporting&sec2=godmode/reporting/reporting_builder&tab=list_items&action=edit&id_report='.$id_report.'&pure='.$pure.'">'.html_print_image(