From 3e90c362503a1b3a1c98d5fd581219651b80e9c4 Mon Sep 17 00:00:00 2001 From: sergio Date: Mon, 28 Nov 2022 11:31:44 +0100 Subject: [PATCH 001/100] #9713 New button for real path in filemanager --- .../include/functions_filemanager.php | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/pandora_console/include/functions_filemanager.php b/pandora_console/include/functions_filemanager.php index 94e16e822b..cfa7ed143c 100644 --- a/pandora_console/include/functions_filemanager.php +++ b/pandora_console/include/functions_filemanager.php @@ -571,6 +571,40 @@ function filemanager_file_explorer( } }).show(); } + + function show_modal_real_path (path) { + $('#modal_real_path').addClass('file_table_modal_active'); + $('#real_path').empty(); + $('#real_path').html(path); + title_action = ""; + $('#modal_real_path') + .dialog({ + title: title_action, + resizable: true, + draggable: true, + modal: true, + overlay: { + opacity: 0.5, + background: "black" + }, + width: 448, + minWidth: 448, + minHeight: 213, + maxWidth: 800, + maxHeight: 300, + close: function () { + $('#modal_real_path').removeClass('file_table_modal_active'); + } + }).show(); + + $("#submit-submit").on("click",copyToClipboard); + } + + function copyToClipboard() { + navigator.clipboard.writeText($("#real_path").text()).then(function (){ + $('#modal_real_path').dialog('close'); + }); + } '; } + if (is_writable($fileinfo['realpath']) === true + && (is_dir($fileinfo['realpath']) === false || count(scandir($fileinfo['realpath'])) < 3) + && ($readOnly === false) + ) { + $data[4] .= ''.html_print_image('images/book_edit.png', true, ['style' => 'margin-top: 2px;', 'title' => __('Real path'), 'class' => 'invert_filter']).''; + } + $data[4] .= ''; array_push($table->data, $data); @@ -925,6 +966,18 @@ function filemanager_file_explorer( ); echo ''; + // Show Modal Real Path + $modal_real_path = "
Real path to plugin execution is:
+
+
".html_print_submit_button(__('Copy'), 'submit', false, 'class="sub next"', true).'
'; + html_print_div( + [ + 'id' => 'modal_real_path', + 'class' => 'invisible', + 'content' => $modal_real_path, + ] + ); + echo ''; } else { echo "
"; From 9cf50d005cc1b34676de072b348f41c7c9847b7e Mon Sep 17 00:00:00 2001 From: KANAYAMA Akihiro Date: Tue, 20 Dec 2022 12:06:18 +0900 Subject: [PATCH 002/100] fixed typo --- pandora_server/util/plugin/pandora_snmp_bandwidth.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/util/plugin/pandora_snmp_bandwidth.pl b/pandora_server/util/plugin/pandora_snmp_bandwidth.pl index 9b28848b48..db38b8444d 100755 --- a/pandora_server/util/plugin/pandora_snmp_bandwidth.pl +++ b/pandora_server/util/plugin/pandora_snmp_bandwidth.pl @@ -563,7 +563,7 @@ foreach my $iface (keys %{$analysis_tree}) { $inUsage += $analysis_tree->{$iface}{'inUsage'}; $j++; } - if (is_enabled($analysis_tree->{$iface}{'outUsage'}) || $analysis_tree->{$iface}{'inUsage'} == 0) { + if (is_enabled($analysis_tree->{$iface}{'outUsage'}) || $analysis_tree->{$iface}{'outUsage'} == 0) { $outUsage += $analysis_tree->{$iface}{'outUsage'}; $k++; } From c503836634e995f7337db335fbe3c47c82604fe3 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Thu, 12 Jan 2023 12:28:40 +0100 Subject: [PATCH 003/100] Restrict access to collections with nms license --- .../godmode/agentes/configurar_agente.php | 8 +++++--- pandora_console/godmode/menu.php | 3 ++- pandora_console/include/constants.php | 1 + pandora_console/include/functions.php | 16 ++++++++++++++++ pandora_console/include/functions_api.php | 10 ++++++++++ pandora_console/operation/agentes/ver_agente.php | 8 +++++--- 6 files changed, 39 insertions(+), 7 deletions(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index 4432fef1cd..62807fa7c9 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -485,10 +485,12 @@ if ($id_agente) { } // Collection. - $collectiontab = enterprise_hook('collection_tab'); + if ($config['license_nms'] !== 1) { + $collectiontab = enterprise_hook('collection_tab'); - if ($collectiontab == -1) { - $collectiontab = ''; + if ($collectiontab == -1) { + $collectiontab = ''; + } } // NetworkConfigManager tab. diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index fef71922e3..7e9a7964a3 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -26,7 +26,8 @@ * GNU General Public License for more details. * ============================================================================ */ - +$config['license_nms'] = 1; +// ! Eliminar! // Begin. require_once 'include/config.php'; require_once 'include/functions_menu.php'; diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php index 96fb1c216b..18b32b6de4 100644 --- a/pandora_console/include/constants.php +++ b/pandora_console/include/constants.php @@ -805,6 +805,7 @@ define('AUDIT_LOG_DASHBOARD_MANAGEMENT', 'Dashboard management'); define('AUDIT_LOG_SERVICE_MANAGEMENT', 'Service management'); define('AUDIT_LOG_INCIDENT_MANAGEMENT', 'Incident management'); define('AUDIT_LOG_UMC', 'Warp Manager'); +define('AUDIT_LOG_NMS_VIOLATION', 'NMS Violation'); // MIMEs. define( diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index 7c2df5603b..a333006da8 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -6342,3 +6342,19 @@ function setDownloadCookieToken() ); } } + + +/** + * Check nms license on api. + * + * @return boolean + */ +function nms_check_api() +{ + global $config; + + if ($config['license_nms'] === 1) { + returnError('license_error'); + return true; + } +} diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index db79ed3c86..f322f5c2de 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -198,6 +198,16 @@ function returnError($typeError, $returnType='string') ); break; + case 'license_error': + returnData( + $returnType, + [ + 'type' => 'string', + 'data' => __('License not allowed for this operation.'), + ] + ); + break; + default: returnData( $returnType, diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php index 2ee6781f00..89c7c70d8e 100644 --- a/pandora_console/operation/agentes/ver_agente.php +++ b/pandora_console/operation/agentes/ver_agente.php @@ -1461,9 +1461,11 @@ if ($inventorytab == -1 || $inventoryCount === 0) { } // Collection. -$collectiontab = enterprise_hook('collection_tab'); -if ($collectiontab == -1) { - $collectiontab = ''; +if ($config['license_nms'] !== 1) { + $collectiontab = enterprise_hook('collection_tab'); + if ($collectiontab == -1) { + $collectiontab = ''; + } } From 4392bd7fa8b7f96ff74aa5e1f84cefd1b94d30d7 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Fri, 13 Jan 2023 12:09:15 +0100 Subject: [PATCH 004/100] 9220 Restrict access to collections with nms license --- pandora_console/godmode/menu.php | 3 +-- pandora_console/godmode/servers/modificar_server.php | 10 ++++++---- .../include/class/SatelliteCollection.class.php | 9 +++++++++ 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index 7e9a7964a3..fef71922e3 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -26,8 +26,7 @@ * GNU General Public License for more details. * ============================================================================ */ -$config['license_nms'] = 1; -// ! Eliminar! + // Begin. require_once 'include/config.php'; require_once 'include/functions_menu.php'; diff --git a/pandora_console/godmode/servers/modificar_server.php b/pandora_console/godmode/servers/modificar_server.php index 17f2020d13..748c707227 100644 --- a/pandora_console/godmode/servers/modificar_server.php +++ b/pandora_console/godmode/servers/modificar_server.php @@ -141,11 +141,13 @@ if (isset($_GET['server'])) { ]; - $buttons['collections'] = [ - 'active' => false, - 'text' => ''.html_print_image('images/collection.png', true, ['title' => __('Collections')]).'', + if ($config['license_nms'] !== 1) { + $buttons['collections'] = [ + 'active' => false, + 'text' => ''.html_print_image('images/collection.png', true, ['title' => __('Collections')]).'', - ]; + ]; + } } $buttons[$tab]['active'] = true; diff --git a/pandora_console/include/class/SatelliteCollection.class.php b/pandora_console/include/class/SatelliteCollection.class.php index 34348fdc7a..b8535f5cc6 100644 --- a/pandora_console/include/class/SatelliteCollection.class.php +++ b/pandora_console/include/class/SatelliteCollection.class.php @@ -84,6 +84,15 @@ class SatelliteCollection extends HTML return; } + if ($config['license_nms'] === 1) { + db_pandora_audit( + AUDIT_LOG_NMS_VIOLATION, + 'Trying to access satellite collections' + ); + include $config['homedir'].'/general/noaccess.php'; + return; + } + // Set the ajax controller. $this->ajaxController = $ajaxController; // Capture all parameters before start. From 67b7234e583a2094926799f3dfeb90d2942b958c Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Thu, 19 Jan 2023 10:49:48 +0100 Subject: [PATCH 005/100] implement filter save and load feature in monitor view --- pandora_console/extras/mr/62.sql | 23 + pandora_console/include/ajax/module.php | 536 ++++++++++++++++++ .../operation/agentes/status_monitor.php | 202 ++++++- pandora_console/pandoradb.sql | 23 + 4 files changed, 756 insertions(+), 28 deletions(-) create mode 100644 pandora_console/extras/mr/62.sql diff --git a/pandora_console/extras/mr/62.sql b/pandora_console/extras/mr/62.sql new file mode 100644 index 0000000000..c2a309eb32 --- /dev/null +++ b/pandora_console/extras/mr/62.sql @@ -0,0 +1,23 @@ +START TRANSACTION; + +CREATE TABLE IF NOT EXISTS `tmonitor_filter` ( + `id_filter` INT UNSIGNED NOT NULL AUTO_INCREMENT, + `id_name` VARCHAR(600) NOT NULL, + `id_group_filter` INT NOT NULL DEFAULT 0, + `ag_group` INT NOT NULL DEFAULT 0, + `recursion` TEXT, + `status` INT NOT NULL DEFAULT -1, + `ag_modulename` TEXT, + `ag_freestring` TEXT, + `tag_filter` TEXT, + `moduletype` TEXT, + `module_option` INT DEFAULT 1, + `modulegroup` INT NOT NULL DEFAULT -1, + `min_hours_status` TEXT, + `datatype` TEXT, + `not_condition` TEXT, + `ag_custom_fields` TEXT, + PRIMARY KEY (`id_filter`) +) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; + +COMMIT; diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index 61720a99a4..03eb150573 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -66,6 +66,12 @@ if (check_login()) { 0 ); + $load_filter_modal = get_parameter('load_filter_modal', 0); + $save_filter_modal = get_parameter('save_filter_modal', 0); + $get_monitor_filters = get_parameter('get_monitor_filters', 0); + $save_monitor_filter = get_parameter('save_monitor_filter', 0); + $update_monitor_filter = get_parameter('update_monitor_filter', 0); + if ($get_agent_modules_json_by_name === true) { $agent_name = get_parameter('agent_name'); @@ -1629,4 +1635,534 @@ if (check_login()) { return; } + + // Saves an event filter. + if ($save_monitor_filter) { + $values = []; + $values['id_name'] = get_parameter('id_name'); + $values['id_group_filter'] = get_parameter('id_group_filter'); + $values['ag_group'] = get_parameter('ag_group'); + $values['modulegroup'] = get_parameter('modulegroup'); + $values['recursion'] = get_parameter('recursion'); + $values['status'] = get_parameter('status'); + $values['ag_modulename'] = get_parameter('ag_modulename'); + $values['ag_freestring'] = get_parameter('ag_freestring'); + $values['tag_filter'] = json_encode(get_parameter('tag_filter')); + $values['moduletype'] = get_parameter('moduletype'); + $values['module_option'] = get_parameter('module_option'); + $values['min_hours_status'] = get_parameter('min_hours_status'); + $values['datatype'] = get_parameter('datatype'); + $values['not_condition'] = get_parameter('not_condition'); + $values['ag_custom_fields'] = get_parameter('ag_custom_fields'); + + $exists = (bool) db_get_value_filter( + 'id_filter', + 'tmonitor_filter', + $values + ); + + if ($exists === true) { + echo 'duplicate'; + } else { + $result = db_process_sql_insert('tmonitor_filter', $values); + + if ($result === false) { + echo 'error'; + } else { + echo $result; + } + } + } + + if ($update_monitor_filter) { + $values = []; + $id = get_parameter('id'); + + $values['ag_group'] = get_parameter('ag_group'); + $values['modulegroup'] = get_parameter('modulegroup'); + $values['recursion'] = get_parameter('recursion'); + $values['status'] = get_parameter('status'); + $values['ag_modulename'] = get_parameter('ag_modulename'); + $values['ag_freestring'] = get_parameter('ag_freestring'); + $values['tag_filter'] = json_encode(get_parameter('tag_filter')); + $values['moduletype'] = get_parameter('moduletype'); + $values['module_option'] = get_parameter('module_option'); + $values['min_hours_status'] = get_parameter('min_hours_status'); + $values['datatype'] = get_parameter('datatype'); + $values['not_condition'] = get_parameter('not_condition'); + $values['ag_custom_fields'] = get_parameter('ag_custom_fields'); + + $result = db_process_sql_update( + 'tmonitor_filter', + $values, + ['id_filter' => $id] + ); + + if ($result === false) { + echo 'error'; + } else { + echo 'ok'; + } + } + + if ($get_monitor_filters) { + $sql = 'SELECT id_filter, id_name FROM tmonitor_filter'; + + $monitor_filters = db_get_all_rows_sql($sql); + + $result = []; + + if ($monitor_filters !== false) { + foreach ($monitor_filters as $monitor_filter) { + $result[$monitor_filter['id_filter']] = $monitor_filter['id_name']; + } + } + + echo io_json_mb_encode($result); + } + + if ((int) $load_filter_modal === 1) { + $user_groups = users_get_groups( + $config['id_user'], + 'AR', + users_can_manage_group_all(), + true + ); + + $sql = 'SELECT id_filter, id_name + FROM tmonitor_filter + WHERE id_group_filter IN ('.implode(',', array_keys($user_groups)).')'; + + $event_filters = db_get_all_rows_sql($sql); + + $filters = []; + foreach ($event_filters as $event_filter) { + $filters[$event_filter['id_filter']] = $event_filter['id_name']; + } + + echo '
'; + echo '
'; + + $table = new StdClass; + $table->id = 'load_filter_form'; + $table->width = '100%'; + $table->cellspacing = 4; + $table->cellpadding = 4; + $table->class = 'databox'; + if (is_metaconsole()) { + $table->cellspacing = 0; + $table->cellpadding = 0; + $table->class = 'databox filters'; + } + + $table->styleTable = 'font-weight: bold; color: #555; text-align:left;'; + $filter_id_width = '200px'; + if (is_metaconsole()) { + $filter_id_width = '150px'; + } + + $data = []; + $table->rowid[3] = 'update_filter_row1'; + $data[0] = __('Load filter').$jump; + $data[0] .= html_print_select( + $filters, + 'filter_id', + $current, + '', + __('None'), + 0, + true, + false, + true, + '', + false, + 'margin-left:5px; width:'.$filter_id_width.';' + ); + $data[1] = html_print_submit_button( + __('Load filter'), + 'load_filter', + false, + 'class="sub upd"', + true + ); + $data[1] .= html_print_input_hidden('load_filter', 1, true); + $table->data[] = $data; + $table->rowclass[] = ''; + + html_print_table($table); + echo '
'; + echo '
'; + ?> + + + '; + if (check_acl($config['id_user'], 0, 'EW') + || check_acl($config['id_user'], 0, 'EM') + ) { + echo '
'; + $table = new StdClass; + $table->id = 'save_filter_form'; + $table->width = '100%'; + $table->cellspacing = 4; + $table->cellpadding = 4; + $table->class = 'databox'; + if (is_metaconsole()) { + $table->class = 'databox filters'; + $table->cellspacing = 0; + $table->cellpadding = 0; + } + + $table->styleTable = 'font-weight: bold; text-align:left;'; + if (!is_metaconsole()) { + $table->style[0] = 'width: 50%; width:50%;'; + } + + $data = []; + $table->rowid[0] = 'update_save_selector'; + $data[0] = html_print_radio_button( + 'filter_mode', + 'new', + '', + true, + true + ).__('New filter').''; + + $data[1] = html_print_radio_button( + 'filter_mode', + 'update', + '', + false, + true + ).__('Update filter').''; + + $table->data[] = $data; + $table->rowclass[] = ''; + + $data = []; + $table->rowid[1] = 'save_filter_row1'; + $data[0] = __('Filter name').$jump; + $data[0] .= html_print_input_text('id_name', '', '', 15, 255, true); + if (is_metaconsole()) { + $data[1] = __('Save in Group').$jump; + } else { + $data[1] = __('Filter group').$jump; + } + + $user_groups_array = users_get_groups_for_select( + $config['id_user'], + 'EW', + users_can_manage_group_all(), + true + ); + + $data[1] .= html_print_select( + $user_groups_array, + 'id_group_filter_dialog', + $id_group_filter, + '', + '', + 0, + true, + false, + false, + 'w130' + ); + + $table->data[] = $data; + $table->rowclass[] = ''; + + $data = []; + $table->rowid[2] = 'save_filter_row2'; + + $table->data[] = $data; + $table->rowclass[] = ''; + + $data = []; + $table->rowid[3] = 'update_filter_row1'; + $data[0] = __('Overwrite filter').$jump; + + $sql = 'SELECT id_filter, id_name FROM tmonitor_filter'; + $monitor_filters = db_get_all_rows_sql($sql); + + $_filters_update = []; + + if ($monitor_filters !== false) { + foreach ($monitor_filters as $monitor_filter) { + $_filters_update[$monitor_filter['id_filter']] = $monitor_filter['id_name']; + } + } + + $data[0] .= html_print_select( + $_filters_update, + 'overwrite_filter', + '', + '', + '', + 0, + true + ); + $data[1] = html_print_submit_button( + __('Update filter'), + 'update_filter', + false, + 'class="sub upd" onclick="save_update_filter();"', + true + ); + + $table->data[] = $data; + $table->rowclass[] = ''; + + html_print_table($table); + echo '
'; + echo html_print_submit_button( + __('Save filter'), + 'save_filter', + false, + 'class="sub upd float-right" onclick="save_new_filter();"', + true + ); + echo '
'; + } else { + include 'general/noaccess.php'; + } + + echo '
'; + ?> + + 0) { + $user_groups_fl = users_get_groups( + $config['id_user'], + 'AR', + users_can_manage_group_all(), + true + ); + + $sql = sprintf( + 'SELECT id_filter, id_name + FROM tmonitor_filter + WHERE id_filter = %d AND id_group_filter IN (%s)', + $load_filter_id, + implode(',', array_keys($user_groups_fl)) + ); + + $loaded_filter = db_get_row_sql($sql); +} + +if ($loaded_filter['id_filter'] > 0) { + $query_filter['id_filter'] = $load_filter_id; + $filter = db_get_row_filter('tmonitor_filter', $query_filter, false); + if ($filter !== false) { + $ag_group = $filter['ag_group']; + $recursion = $filter['recursion']; + $status = $filter['status']; + $modulegroup = $filter['modulegroup']; + $ag_modulename = $filter['ag_modulename']; + $ag_freestring = $filter['ag_freestring']; + $tag_filter = $filter['tag_filter']; + $moduletype = $filter['moduletype']; + $module_option = $filter['module_option']; + $min_hours_status = $filter['min_hours_status']; + $datatype = $filter['datatype']; + $not_condition = $filter['not_condition']; + $ag_custom_fields = $filter['ag_custom_fields']; + + if ($not_condition === 'false') { + $not_condition = ''; + } + + if ($not_condition !== '') { + $is_none = 'None'; + $not_condition = 'NOT'; + } + + if ($not_condition !== '') { + $condition_query = '!='; + } + + if (is_array($tag_filter) === false) { + $tag_filter = json_decode($tag_filter, true); + } + if ($tag_filter === '') { + $tag_filter = [0 => 0]; + } + + if (is_array($ag_custom_fields) === false) { + $ag_custom_fields = json_decode(io_safe_output($ag_custom_fields), true); + } + } +} + // Agent group selector. if (!$is_metaconsole) { if ($ag_group > 0 && check_acl($config['id_user'], $ag_group, 'AR')) { @@ -370,19 +436,21 @@ if (!empty($ag_custom_fields)) { } } +$all_tags = in_array(0, $tag_filter); + // Filter by tag. -if ($tag_filter !== 0) { - if ($is_metaconsole) { - $sql_conditions .= ' AND tagente_modulo.id_agente_modulo IN ( - SELECT ttag_module.id_agente_modulo - FROM ttag_module - WHERE ttag_module.id_tag '.$not_condition.' IN ('.$tag_filter.'))'; - } else { - $sql_conditions .= ' AND tagente_modulo.id_agente_modulo IN ( - SELECT ttag_module.id_agente_modulo - FROM ttag_module - WHERE ttag_module.id_tag '.$condition_query.' '.$tag_filter.')'; +if ($all_tags === false) { + $sql_conditions .= ' AND tagente_modulo.id_agente_modulo IN ( + SELECT ttag_module.id_agente_modulo + FROM ttag_module + WHERE 1=1'; + + if ($all_tags === false) { + $sql_conditions .= ' AND ttag_module.id_tag '.$not_condition.' IN ('.implode(',', $tag_filter).'))'; } +} else if ($not_condition === 'NOT') { + // Match nothing if not condition has been selected along with all tags selected (none). + $sql_conditions .= ' AND 0=0'; } @@ -475,13 +543,14 @@ $table->data[0][1] .= html_print_select_groups( false, $not_condition ); + $table->data[0][1] .= '
'; $table->data[0][1] .= html_print_input( [ 'type' => 'checkbox', 'name' => 'recursion', 'return' => true, - 'checked' => $recursion, + 'checked' => ($recursion === true || $recursion === 'true' || $recursion === '1') ? 'checked' : false, 'value' => 1, ] ); @@ -556,13 +625,13 @@ if (empty($tags)) { } else { $table->data[1][5] = html_print_select( $tags, - 'tag_filter', + 'tag_filter[]', $tag_filter, '', - __($is_none), - '', + __('All'), + 0, + true, true, - false, true, '', false, @@ -666,7 +735,6 @@ $table2->data[1][0] = 'data[1][0] .= '>'.__('Data type').''; $table2->data[1][1] .= '
'; - switch ($moduletype) { case 1: $sql = sprintf( @@ -771,7 +839,7 @@ $table2->data[1][3] = html_print_div( 'type' => 'switch', 'name' => 'not_condition', 'return' => false, - 'checked' => $check_not_condition, + 'checked' => ($check_not_condition === true || $check_not_condition === 'true' || $check_not_condition === '1') ? 'checked' : false, 'value' => 'NOT', 'id' => 'not_condition_switch', 'onclick' => 'changeNotConditionStatus(this)', @@ -855,9 +923,30 @@ $table->data[3][0] = ui_toggle( 'white_table_graph' ); -$table->colspan[4][0] = 7; +$table->colspan[4][0] = 2; $table->cellstyle[4][0] = 'padding-top: 0px;'; -$table->data[4][0] = html_print_submit_button( +$table->data[4][0] = html_print_button( + __('Load filter'), + 'load-filter', + false, + '', + 'class="float-left margin-right-2 sub config"', + true +); + +$table->cellstyle[4][0] .= 'padding-top: 0px;'; +$table->data[4][0] .= html_print_button( + __('Save filter'), + 'save-filter', + false, + '', + 'class="float-left margin-right-2 sub wand"', + true +); + +$table->colspan[4][2] = 5; +$table->cellstyle[4][2] = 'padding-top: 0px;'; +$table->data[4][2] = html_print_submit_button( __('Show'), 'uptbutton', false, @@ -2017,16 +2106,76 @@ if (!empty($result)) { } - // End Build List Result. - echo "
"; +// End Build List Result. +echo "
"; - enterprise_hook('close_meta_frame'); +// Load filter div for dialog. +echo ''; +echo ''; - ui_require_javascript_file('pandora_modules'); +enterprise_hook('close_meta_frame'); + +ui_require_javascript_file('pandora_modules'); ?> From 5d3b21b36de73642afcd5a9028a52e112e3ae01e Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Fri, 3 Feb 2023 11:07:52 +0100 Subject: [PATCH 037/100] #10249 Fixed groups --- .../operation/agentes/status_monitor.php | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pandora_console/operation/agentes/status_monitor.php b/pandora_console/operation/agentes/status_monitor.php index 8da3b9b2ba..b5f44898f3 100644 --- a/pandora_console/operation/agentes/status_monitor.php +++ b/pandora_console/operation/agentes/status_monitor.php @@ -391,17 +391,17 @@ if ($tag_filter !== 0) { $sql_conditions_tags = ''; if (!users_is_admin()) { - $sql_conditions_tags = tags_get_acl_tags( - $config['id_user'], - ($recursion) ? $all_groups : $ag_group, - 'AR', - 'module_condition', - 'AND', - 'tagente_modulo', - true, - [], - false - ); + $sql_conditions_tags = tags_get_acl_tags( + $config['id_user'], + ($recursion) ? array_flip($all_groups) : $ag_group, + 'AR', + 'module_condition', + 'AND', + 'tagente_modulo', + true, + [], + false + ); if (is_numeric($sql_conditions_tags)) { $sql_conditions_tags = ' AND 1 = 0'; From c133e77ce03b99c4a130d84f0d4abc3a12025e0d Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 3 Feb 2023 12:23:47 +0100 Subject: [PATCH 038/100] #10305 fixed calculate last run pandora db when report never has been executed --- pandora_console/include/class/Diagnostics.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/class/Diagnostics.class.php b/pandora_console/include/class/Diagnostics.class.php index b0f698252b..14c63fec81 100644 --- a/pandora_console/include/class/Diagnostics.class.php +++ b/pandora_console/include/class/Diagnostics.class.php @@ -619,7 +619,7 @@ class Diagnostics extends Wizard $currentTime = time(); $pandoraDbLastRun = __('Pandora DB has never been executed'); - if ($dateDbMantenaince !== false) { + if ($dateDbMantenaince !== false && empty($dateDbMantenaince) === false) { $difference = ($currentTime - $dateDbMantenaince); $pandoraDbLastRun = human_time_description_raw( $difference, From cc3d8261170d630c228de4a315193ed5cb6d12fa Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 3 Feb 2023 12:35:20 +0100 Subject: [PATCH 039/100] Added cookie management to api curl and wget calls --- extras/deploy-scripts/pandora_deploy_community.sh | 4 ++-- extras/deploy-scripts/pandora_deploy_community_el8.sh | 4 ++-- extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh | 4 ++-- extras/docker/centos8/pandora-stack/sources/init_pandora.sh | 4 ++-- pandora_console/include/class/ConsoleSupervisor.php | 2 +- pandora_server/bin/pandora_server | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/extras/deploy-scripts/pandora_deploy_community.sh b/extras/deploy-scripts/pandora_deploy_community.sh index 873b9a3068..78f1ef0e41 100644 --- a/extras/deploy-scripts/pandora_deploy_community.sh +++ b/extras/deploy-scripts/pandora_deploy_community.sh @@ -639,8 +639,8 @@ systemctl enable tentacle_serverd &>> $LOGFILE execute_cmd "service tentacle_serverd start" "Starting Tentacle Server" # Enabling condole cron -execute_cmd "echo \"* * * * * root wget -q -O - --no-check-certificate http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log\" >> /etc/crontab" "Enabling Pandora FMS Console cron" -echo "* * * * * root wget -q -O - --no-check-certificate http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log" >> /etc/crontab +execute_cmd "echo \"* * * * * root wget -q -O - --no-check-certificate --load-cookies /tmp/cron-session-cookies --save-cookies /tmp/cron-session-cookies --keep-session-cookies http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log\" >> /etc/crontab" "Enabling Pandora FMS Console cron" +echo "* * * * * root wget -q -O - --no-check-certificate --load-cookies /tmp/cron-session-cookies --save-cookies /tmp/cron-session-cookies --keep-session-cookies http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log" >> /etc/crontab ## Enabling agent systemctl enable pandora_agent_daemon &>> $LOGFILE execute_cmd "systemctl start pandora_agent_daemon" "Starting Pandora FMS Agent" diff --git a/extras/deploy-scripts/pandora_deploy_community_el8.sh b/extras/deploy-scripts/pandora_deploy_community_el8.sh index 794e11f8fe..13f90fcf85 100644 --- a/extras/deploy-scripts/pandora_deploy_community_el8.sh +++ b/extras/deploy-scripts/pandora_deploy_community_el8.sh @@ -732,8 +732,8 @@ systemctl enable tentacle_serverd &>> "$LOGFILE" execute_cmd "service tentacle_serverd start" "Starting Tentacle Server" # Enabling condole cron -execute_cmd "echo \"* * * * * root wget -q -O - --no-check-certificate http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log\" >> /etc/crontab" "Enabling Pandora FMS Console cron" -echo "* * * * * root wget -q -O - --no-check-certificate http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log" >> /etc/crontab +execute_cmd "echo \"* * * * * root wget -q -O - --no-check-certificate --load-cookies /tmp/cron-session-cookies --save-cookies /tmp/cron-session-cookies --keep-session-cookies http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log\" >> /etc/crontab" "Enabling Pandora FMS Console cron" +echo "* * * * * root wget -q -O - --no-check-certificate --load-cookies /tmp/cron-session-cookies --save-cookies /tmp/cron-session-cookies --keep-session-cookies http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log" >> /etc/crontab ## Enabling agent systemctl enable pandora_agent_daemon &>> "$LOGFILE" execute_cmd "systemctl start pandora_agent_daemon" "Starting Pandora FMS Agent" diff --git a/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh b/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh index f52eb625e2..b22d5d163f 100644 --- a/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh +++ b/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh @@ -732,8 +732,8 @@ execute_cmd "service tentacle_serverd start" "Starting Tentacle Server" systemctl enable tentacle_serverd &>> "$LOGFILE" # Enabling condole cron -execute_cmd "echo \"* * * * * root wget -q -O - --no-check-certificate http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log\" >> /etc/crontab" "Enabling Pandora FMS Console cron" -echo "* * * * * root wget -q -O - --no-check-certificate http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log" >> /etc/crontab +execute_cmd "echo \"* * * * * root wget -q -O - --no-check-certificate --load-cookies /tmp/cron-session-cookies --save-cookies /tmp/cron-session-cookies --keep-session-cookies http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log\" >> /etc/crontab" "Enabling Pandora FMS Console cron" +echo "* * * * * root wget -q -O - --no-check-certificate --load-cookies /tmp/cron-session-cookies --save-cookies /tmp/cron-session-cookies --keep-session-cookies http://127.0.0.1/pandora_console/enterprise/cron.php >> $PANDORA_CONSOLE/log/cron.log" >> /etc/crontab ## Enabling agent adn configuring Agente sed -i "s/^remote_config.*$/remote_config 1/g" $PANDORA_AGENT_CONF &>> "$LOGFILE" diff --git a/extras/docker/centos8/pandora-stack/sources/init_pandora.sh b/extras/docker/centos8/pandora-stack/sources/init_pandora.sh index 76a0954bb8..e9265a0981 100755 --- a/extras/docker/centos8/pandora-stack/sources/init_pandora.sh +++ b/extras/docker/centos8/pandora-stack/sources/init_pandora.sh @@ -277,8 +277,8 @@ export ORACLE_HOME=/usr/lib/oracle/$VERSION/client64 EOF_ENV echo ">> Enable discovery cron: " -#while true ; do wget -q -O - --no-check-certificate http://localhost/pandora_console/enterprise/cron.php >> /var/www/html/pandora_console/pandora_console.log && sleep 60 ; done & -echo "*/5 * * * * wget -q -O - --no-check-certificate http://localhost/pandora_console/enterprise/cron.php >> /var/www/html/pandora_console/log/cron.log" >> /opt/pandora/crontasks +#while true ; do wget -q -O - --no-check-certificate --load-cookies /tmp/cron-session-cookies --save-cookies /tmp/cron-session-cookies --keep-session-cookies http://localhost/pandora_console/enterprise/cron.php >> /var/www/html/pandora_console/pandora_console.log && sleep 60 ; done & +echo "*/5 * * * * wget -q -O - --no-check-certificate --load-cookies /tmp/cron-session-cookies --save-cookies /tmp/cron-session-cookies --keep-session-cookies http://localhost/pandora_console/enterprise/cron.php >> /var/www/html/pandora_console/log/cron.log" >> /opt/pandora/crontasks echo ">> Enable pandora_db cron: " /usr/bin/perl /usr/share/pandora_server/util/pandora_db.pl /etc/pandora/pandora_server.conf diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index b6a6d3df43..2c04aa0ae3 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -2379,7 +2379,7 @@ class ConsoleSupervisor if (strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') { $message_conf_cron .= __('Discovery relies on an appropriate cron setup.'); $message_conf_cron .= '. '.__('Please, add the following line to your crontab file:'); - $message_conf_cron .= '
* * * * * <user> wget -q -O - --no-check-certificate ';
+                $message_conf_cron .= '
* * * * * <user> wget -q -O - --no-check-certificate --load-cookies /tmp/cron-session-cookies --save-cookies /tmp/cron-session-cookies --keep-session-cookies ';
                 $message_conf_cron .= str_replace(
                     ENTERPRISE_DIR.'/meta/',
                     '',
diff --git a/pandora_server/bin/pandora_server b/pandora_server/bin/pandora_server
index fd8fa0d99d..05d846b3ec 100755
--- a/pandora_server/bin/pandora_server
+++ b/pandora_server/bin/pandora_server
@@ -799,7 +799,7 @@ sub main() {
 	# Testing API url
 	my $curl_execution = "'".$Config{'console_api_url'}."?op=get&op2=test&apipass=".$Config{"console_api_pass"}."&user=".$Config{"console_user"}."&pass=".$Config{"console_pass"}."'";
 	# More than 30 secs is highly unrecommendated
-	my $command = $Config{'plugin_exec'}.' 30 curl '.$curl_execution.' 2>/dev/null';
+	my $command = $Config{'plugin_exec'}.' 30 curl --cookie-jar /tmp/cron-session-cookies '.$curl_execution.' 2>/dev/null';
 	my $exe_testing_api = `$command`;
 	my @res_testing_api = split(',', $exe_testing_api);
 	if ( $res_testing_api[0] ne 'OK' ) {

From 0437e46b5b38b055b135b72441ed8cc76041c1ee Mon Sep 17 00:00:00 2001
From: Jonathan 
Date: Fri, 3 Feb 2023 14:14:44 +0100
Subject: [PATCH 040/100] #10217 CSRF for enable/disable users

---
 pandora_console/godmode/users/user_list.php | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php
index e5d15006fe..85e713bed0 100644
--- a/pandora_console/godmode/users/user_list.php
+++ b/pandora_console/godmode/users/user_list.php
@@ -402,6 +402,11 @@ if ($delete_user === true) {
         __('There was a problem deleting the profile')
     );
 } else if ($disable_user !== false) {
+    // CSRF Validator.
+    if (html_print_csrf_error()) {
+        return;
+    }
+
     // Disable_user.
     $id_user = get_parameter('id', 0);
 
@@ -646,6 +651,8 @@ $limit = (int) $config['block_size'];
 $rowPair = true;
 $iterator = 0;
 $cont = 0;
+// Creates csrf.
+$csrf = html_print_csrf_hidden(true);
 foreach ($info as $user_id => $user_info) {
     if (empty($user_id) === true) {
         continue;
@@ -815,6 +822,8 @@ foreach ($info as $user_id => $user_info) {
                     $user_info['id_user'],
                     true
                 );
+                // Same csrf for every disable button for submit.
+                $data[6] .= $csrf;
                 $data[6] .= html_print_input_hidden(
                     'disable_user',
                     $toDoAction,

From d674ef36342a382e6cda9a9dfdc5f9f09c20476e Mon Sep 17 00:00:00 2001
From: artica 
Date: Sat, 4 Feb 2023 01:02:35 +0100
Subject: [PATCH 041/100] Auto-updated build strings.

---
 pandora_agents/unix/DEBIAN/control             | 2 +-
 pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +-
 pandora_agents/unix/pandora_agent              | 2 +-
 pandora_agents/unix/pandora_agent.redhat.spec  | 2 +-
 pandora_agents/unix/pandora_agent.spec         | 2 +-
 pandora_agents/unix/pandora_agent_installer    | 2 +-
 pandora_agents/win32/installer/pandora.mpi     | 2 +-
 pandora_agents/win32/pandora.cc                | 2 +-
 pandora_agents/win32/versioninfo.rc            | 2 +-
 pandora_console/DEBIAN/control                 | 2 +-
 pandora_console/DEBIAN/make_deb_package.sh     | 2 +-
 pandora_console/include/config_process.php     | 2 +-
 pandora_console/install.php                    | 2 +-
 pandora_console/pandora_console.redhat.spec    | 2 +-
 pandora_console/pandora_console.rhel7.spec     | 2 +-
 pandora_console/pandora_console.spec           | 2 +-
 pandora_server/DEBIAN/control                  | 2 +-
 pandora_server/DEBIAN/make_deb_package.sh      | 2 +-
 pandora_server/lib/PandoraFMS/Config.pm        | 2 +-
 pandora_server/lib/PandoraFMS/PluginTools.pm   | 2 +-
 pandora_server/pandora_server.redhat.spec      | 2 +-
 pandora_server/pandora_server.spec             | 2 +-
 pandora_server/pandora_server_installer        | 2 +-
 pandora_server/util/pandora_db.pl              | 2 +-
 pandora_server/util/pandora_manage.pl          | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control
index 52844ccf4e..643d55c6fb 100644
--- a/pandora_agents/unix/DEBIAN/control
+++ b/pandora_agents/unix/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-agent-unix
-Version: 7.0NG.768-230203
+Version: 7.0NG.768-230204
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh
index 56b49f892b..c965ec8ffa 100644
--- a/pandora_agents/unix/DEBIAN/make_deb_package.sh
+++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.768-230203"
+pandora_version="7.0NG.768-230204"
 
 echo "Test if you has the tools for to make the packages."
 whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null
diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent
index 4ea39cebf9..b9b9508816 100755
--- a/pandora_agents/unix/pandora_agent
+++ b/pandora_agents/unix/pandora_agent
@@ -1015,7 +1015,7 @@ my $Sem = undef;
 my $ThreadSem = undef;
 
 use constant AGENT_VERSION => '7.0NG.768';
-use constant AGENT_BUILD => '230203';
+use constant AGENT_BUILD => '230204';
 
 # Agent log default file size maximum and instances
 use constant DEFAULT_MAX_LOG_SIZE => 600000;
diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec
index 893d2e2114..280fdf8709 100644
--- a/pandora_agents/unix/pandora_agent.redhat.spec
+++ b/pandora_agents/unix/pandora_agent.redhat.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_linux
 %define version     7.0NG.768
-%define release     230203
+%define release     230204
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec
index b28241dfc0..4f88b17ef2 100644
--- a/pandora_agents/unix/pandora_agent.spec
+++ b/pandora_agents/unix/pandora_agent.spec
@@ -3,7 +3,7 @@
 #
 %define name        pandorafms_agent_linux
 %define version     7.0NG.768
-%define release     230203
+%define release     230204
 
 Summary:            Pandora FMS Linux agent, PERL version
 Name:               %{name}
diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer
index e1d4835d97..ae0a9f9fad 100755
--- a/pandora_agents/unix/pandora_agent_installer
+++ b/pandora_agents/unix/pandora_agent_installer
@@ -10,7 +10,7 @@
 # **********************************************************************
 
 PI_VERSION="7.0NG.768"
-PI_BUILD="230203"
+PI_BUILD="230204"
 OS_NAME=`uname -s`
 
 FORCE=0
diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi
index 4c8755872a..0324ef4463 100644
--- a/pandora_agents/win32/installer/pandora.mpi
+++ b/pandora_agents/win32/installer/pandora.mpi
@@ -186,7 +186,7 @@ UpgradeApplicationID
 {}
 
 Version
-{230203}
+{230204}
 
 ViewReadme
 {Yes}
diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc
index 85564a8d4e..dddb8f62ab 100644
--- a/pandora_agents/win32/pandora.cc
+++ b/pandora_agents/win32/pandora.cc
@@ -30,7 +30,7 @@ using namespace Pandora;
 using namespace Pandora_Strutils;
 
 #define PATH_SIZE    _MAX_PATH+1
-#define PANDORA_VERSION ("7.0NG.768 Build 230203")
+#define PANDORA_VERSION ("7.0NG.768 Build 230204")
 
 string pandora_path;
 string pandora_dir;
diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc
index 0c740c8dd5..e7e49f7432 100644
--- a/pandora_agents/win32/versioninfo.rc
+++ b/pandora_agents/win32/versioninfo.rc
@@ -11,7 +11,7 @@ BEGIN
       VALUE "LegalCopyright", "Artica ST"
       VALUE "OriginalFilename", "PandoraAgent.exe"
       VALUE "ProductName", "Pandora FMS Windows Agent"
-      VALUE "ProductVersion", "(7.0NG.768(Build 230203))"
+      VALUE "ProductVersion", "(7.0NG.768(Build 230204))"
       VALUE "FileVersion", "1.0.0.0"
     END
   END
diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control
index dddc5bfaf0..ce66384e2a 100644
--- a/pandora_console/DEBIAN/control
+++ b/pandora_console/DEBIAN/control
@@ -1,5 +1,5 @@
 package: pandorafms-console
-Version: 7.0NG.768-230203
+Version: 7.0NG.768-230204
 Architecture: all
 Priority: optional
 Section: admin
diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh
index 046ef8206f..15df851667 100644
--- a/pandora_console/DEBIAN/make_deb_package.sh
+++ b/pandora_console/DEBIAN/make_deb_package.sh
@@ -14,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
-pandora_version="7.0NG.768-230203"
+pandora_version="7.0NG.768-230204"
 
 package_pear=0
 package_pandora=1
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 7a1df87826..7be023899b 100644
--- a/pandora_console/include/config_process.php
+++ b/pandora_console/include/config_process.php
@@ -20,7 +20,7 @@
 /**
  * Pandora build version and version
  */
-$build_version = 'PC230203';
+$build_version = 'PC230204';
 $pandora_version = 'v7.0NG.768';
 
 // Do not overwrite default timezone set if defined.
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 9542fd4a64..6a06699dba 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -131,7 +131,7 @@
         
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 85a0c0f370..8f10542deb 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230203 +%define release 230204 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index a863c10426..622af05f8f 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230203 +%define release 230204 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index ead614a9fe..c65acc3cce 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230203" +PI_BUILD="230204" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 4c9faa6194..854e2ef086 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.768 Build 230203"; +my $version = "7.0NG.768 Build 230204"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 1c72cae187..9d9da8fba2 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.768 Build 230203"; +my $version = "7.0NG.768 Build 230204"; # save program name for logging my $progname = basename($0); From 1308ebf64192fa779bd59f129431f9f2bec5402c Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 5 Feb 2023 01:01:09 +0100 Subject: [PATCH 042/100] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 643d55c6fb..01194d51ee 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.768-230204 +Version: 7.0NG.768-230205 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index c965ec8ffa..5d9df8dfcc 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230204" +pandora_version="7.0NG.768-230205" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index b9b9508816..5537d5304a 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.768'; -use constant AGENT_BUILD => '230204'; +use constant AGENT_BUILD => '230205'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 280fdf8709..909b7fe091 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230204 +%define release 230205 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 4f88b17ef2..12e11a0b9e 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230204 +%define release 230205 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index ae0a9f9fad..3c970e85f1 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230204" +PI_BUILD="230205" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 0324ef4463..3eaa41ac0b 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230204} +{230205} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index dddb8f62ab..6c26d489a3 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.768 Build 230204") +#define PANDORA_VERSION ("7.0NG.768 Build 230205") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index e7e49f7432..e5351123c2 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.768(Build 230204))" + VALUE "ProductVersion", "(7.0NG.768(Build 230205))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index ce66384e2a..5da12f05e1 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.768-230204 +Version: 7.0NG.768-230205 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 15df851667..3b9c339823 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230204" +pandora_version="7.0NG.768-230205" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 7be023899b..b4ad406742 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230204'; +$build_version = 'PC230205'; $pandora_version = 'v7.0NG.768'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 6a06699dba..8f218a9371 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 8f10542deb..ee14a3431b 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230204 +%define release 230205 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 622af05f8f..8038180b3c 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230204 +%define release 230205 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index c65acc3cce..f6c5adb1a2 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230204" +PI_BUILD="230205" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 854e2ef086..ed8f4f9783 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.768 Build 230204"; +my $version = "7.0NG.768 Build 230205"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 9d9da8fba2..d328bfc719 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.768 Build 230204"; +my $version = "7.0NG.768 Build 230205"; # save program name for logging my $progname = basename($0); From e1d550142c7949c1eb7ab330c0591ff27855542a Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 6 Feb 2023 01:02:18 +0100 Subject: [PATCH 043/100] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 01194d51ee..0bfa840d67 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.768-230205 +Version: 7.0NG.768-230206 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 5d9df8dfcc..dcc6d6d60b 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230205" +pandora_version="7.0NG.768-230206" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 5537d5304a..f75da86403 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.768'; -use constant AGENT_BUILD => '230205'; +use constant AGENT_BUILD => '230206'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 909b7fe091..c914f7980f 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230205 +%define release 230206 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 12e11a0b9e..55d75e5a3b 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230205 +%define release 230206 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 3c970e85f1..576ca855d7 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230205" +PI_BUILD="230206" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 3eaa41ac0b..2186ecad7d 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230205} +{230206} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 6c26d489a3..ee0fdf0656 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.768 Build 230205") +#define PANDORA_VERSION ("7.0NG.768 Build 230206") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index e5351123c2..86c232f941 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.768(Build 230205))" + VALUE "ProductVersion", "(7.0NG.768(Build 230206))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 5da12f05e1..3ca190021f 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.768-230205 +Version: 7.0NG.768-230206 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 3b9c339823..49d5606517 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230205" +pandora_version="7.0NG.768-230206" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index b4ad406742..6824d7dce1 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230205'; +$build_version = 'PC230206'; $pandora_version = 'v7.0NG.768'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 8f218a9371..f11b15d38d 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index ee14a3431b..2760e9c975 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230205 +%define release 230206 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 8038180b3c..fbc20d43e9 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230205 +%define release 230206 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index f6c5adb1a2..dbc954a5fe 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230205" +PI_BUILD="230206" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index ed8f4f9783..7990961fa8 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.768 Build 230205"; +my $version = "7.0NG.768 Build 230206"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index d328bfc719..668b90c852 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.768 Build 230205"; +my $version = "7.0NG.768 Build 230206"; # save program name for logging my $progname = basename($0); From b12b3c2a2c8b417a52337e7d5e2ebf3415c31897 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Mon, 6 Feb 2023 10:48:25 +0100 Subject: [PATCH 044/100] Limit the number of unknown modules processed per iteration. --- pandora_server/conf/pandora_server.conf.new | 5 ++- pandora_server/lib/PandoraFMS/Config.pm | 40 +++++++++++---------- pandora_server/lib/PandoraFMS/Core.pm | 2 +- 3 files changed, 26 insertions(+), 21 deletions(-) diff --git a/pandora_server/conf/pandora_server.conf.new b/pandora_server/conf/pandora_server.conf.new index 93c6857382..d04de89830 100644 --- a/pandora_server/conf/pandora_server.conf.new +++ b/pandora_server/conf/pandora_server.conf.new @@ -598,6 +598,9 @@ unknown_events 1 # Time interval (as a multiple of the module interval) before a module becomes unknown. Twice the module's interval by default. #unknown_interval 2 +# Number of unknown modules that will be processed per iteration. +unknown_block_size 1000 + # Maximum executing time of an alert (in seconds) global_alert_timeout 15 @@ -732,4 +735,4 @@ tentacle_service_watchdog 1 # Enable (1) or disable (0) the parameter of mysql ssl certification (mysql_ssl_verify_server_cert) (enabled by default). -verify_mysql_ssl_cert 1 \ No newline at end of file +verify_mysql_ssl_cert 1 diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm index 0b93dfd8b1..5f85f686ad 100644 --- a/pandora_server/lib/PandoraFMS/Config.pm +++ b/pandora_server/lib/PandoraFMS/Config.pm @@ -527,33 +527,35 @@ sub pandora_load_config { $pa_config->{"unknown_updates"} = 0; # 7.0.718 - $pa_config->{"provisioningserver"} = 1; # 7.0 720 - $pa_config->{"provisioningserver_threads"} = 1; # 7.0 720 - $pa_config->{"provisioning_cache_interval"} = 300; # 7.0 720 + $pa_config->{"provisioningserver"} = 1; # 7.0.720 + $pa_config->{"provisioningserver_threads"} = 1; # 7.0.720 + $pa_config->{"provisioning_cache_interval"} = 300; # 7.0.720 - $pa_config->{"autoconfigure_agents"} = 1; # 7.0 725 - $pa_config->{"autoconfigure_agents_threshold"} = 300; #7.0 764 + $pa_config->{"autoconfigure_agents"} = 1; # 7.0.725 + $pa_config->{"autoconfigure_agents_threshold"} = 300; #7.0.764 - $pa_config->{'snmp_extlog'} = ""; # 7.0 726 + $pa_config->{'snmp_extlog'} = ""; # 7.0.726 - $pa_config->{"fsnmp"} = "/usr/bin/pandorafsnmp"; # 7.0 732 + $pa_config->{"fsnmp"} = "/usr/bin/pandorafsnmp"; # 7.0.732 - $pa_config->{"event_inhibit_alerts"} = 0; # 7.0 737 + $pa_config->{"event_inhibit_alerts"} = 0; # 7.0.737 - $pa_config->{"alertserver"} = 0; # 7.0 756 - $pa_config->{"alertserver_threads"} = 1; # 7.0 756 - $pa_config->{"alertserver_warn"} = 180; # 7.0 756 - $pa_config->{"alertserver_queue"} = 0; # 7.0 764 + $pa_config->{"alertserver"} = 0; # 7.0.756 + $pa_config->{"alertserver_threads"} = 1; # 7.0.756 + $pa_config->{"alertserver_warn"} = 180; # 7.0.756 + $pa_config->{"alertserver_queue"} = 0; # 7.0.764 - $pa_config->{'ncmserver'} = 0; # 7.0 758 - $pa_config->{'ncmserver_threads'} = 1; # 7.0 758 - $pa_config->{'ncm_ssh_utility'} = '/usr/share/pandora_server/util/ncm_ssh_extension'; # 7.0 758 + $pa_config->{'ncmserver'} = 0; # 7.0.758 + $pa_config->{'ncmserver_threads'} = 1; # 7.0.758 + $pa_config->{'ncm_ssh_utility'} = '/usr/share/pandora_server/util/ncm_ssh_extension'; # 7.0.758 - $pa_config->{"pandora_service_cmd"} = 'service pandora_server'; # 7.0 761 - $pa_config->{"tentacle_service_cmd"} = 'service tentacle_serverd'; # 7.0 761 - $pa_config->{"tentacle_service_watchdog"} = 1; # 7.0 761 + $pa_config->{"pandora_service_cmd"} = 'service pandora_server'; # 7.0.761 + $pa_config->{"tentacle_service_cmd"} = 'service tentacle_serverd'; # 7.0.761 + $pa_config->{"tentacle_service_watchdog"} = 1; # 7.0.761 - $pa_config->{"dataserver_smart_queue"} = 0; # 765. + $pa_config->{"dataserver_smart_queue"} = 0; # 7.0.765 + + $pa_config->{"unknown_block_size"} = 1000; # 7.0.769 # Check for UID0 if ($pa_config->{"quiet"} != 0){ diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 57c3284b70..27f08b0bc7 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -6214,7 +6214,7 @@ sub pandora_module_unknown ($$) { ') ) AND tagente_estado.utimestamp != 0 - AND (tagente_estado.current_interval * ?) + tagente_estado.utimestamp < UNIX_TIMESTAMP()', $pa_config->{'unknown_interval'}); + AND (tagente_estado.current_interval * ?) + tagente_estado.utimestamp < UNIX_TIMESTAMP() LIMIT ?', $pa_config->{'unknown_interval'}, $pa_config->{'unknown_block_size'}); foreach my $module (@modules) { From 3e45b548b6e833aff67ea34a8d7608ab7e2ee2a5 Mon Sep 17 00:00:00 2001 From: Calvo Date: Mon, 6 Feb 2023 11:58:50 +0100 Subject: [PATCH 045/100] Pandora db delete /tmp/cron-session-cookies file --- pandora_server/util/pandora_db.pl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index f0437a5bfb..84fdfb75d5 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -1067,12 +1067,18 @@ sub pandora_delete_old_session_data { $ulimit_timestamp = time() - $session_timeout; - log_message ('PURGE', "Deleting old session data from tsessions_php\n"); + log_message ('PURGE', "Deleting old session data from tsessions_php"); while(db_delete_limit ($dbh, 'tsessions_php', 'last_active < ?', $SMALL_OPERATION_STEP, $ulimit_timestamp) ne '0E0') { usleep (10000); }; db_do ($dbh, "DELETE FROM tsessions_php WHERE data IS NULL OR id_session REGEXP '^cron-'"); + + # Delete cron cookies file + my $cookie_file = '/tmp/cron-session-cookies'; + log_message ('PURGE', "Deleting cron session file"); + unlink($cookie_file) or die log_message ('PURGE', "Could not delete session file"); + } ############################################################################### From bdb29231bc73e27fe93c9bbdd80b184778716027 Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 6 Feb 2023 14:12:17 +0100 Subject: [PATCH 046/100] mr changes --- pandora_console/extras/mr/61.sql | 20 ++++++++++++++++++++ pandora_console/extras/mr/62.sql | 23 ----------------------- 2 files changed, 20 insertions(+), 23 deletions(-) diff --git a/pandora_console/extras/mr/61.sql b/pandora_console/extras/mr/61.sql index e3e8e9abaa..b73069c058 100644 --- a/pandora_console/extras/mr/61.sql +++ b/pandora_console/extras/mr/61.sql @@ -2,6 +2,26 @@ START TRANSACTION; ALTER TABLE `tserver` ADD COLUMN `server_keepalive_utimestamp` BIGINT NOT NULL DEFAULT 0; +CREATE TABLE IF NOT EXISTS `tmonitor_filter` ( + `id_filter` INT UNSIGNED NOT NULL AUTO_INCREMENT, + `id_name` VARCHAR(600) NOT NULL, + `id_group_filter` INT NOT NULL DEFAULT 0, + `ag_group` INT NOT NULL DEFAULT 0, + `recursion` TEXT, + `status` INT NOT NULL DEFAULT -1, + `ag_modulename` TEXT, + `ag_freestring` TEXT, + `tag_filter` TEXT, + `moduletype` TEXT, + `module_option` INT DEFAULT 1, + `modulegroup` INT NOT NULL DEFAULT -1, + `min_hours_status` TEXT, + `datatype` TEXT, + `not_condition` TEXT, + `ag_custom_fields` TEXT, + PRIMARY KEY (`id_filter`) +) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; + CREATE TABLE IF NOT EXISTS `tsesion_filter` ( `id_filter` INT NOT NULL AUTO_INCREMENT, `id_name` TEXT NULL, diff --git a/pandora_console/extras/mr/62.sql b/pandora_console/extras/mr/62.sql index c2a309eb32..e69de29bb2 100644 --- a/pandora_console/extras/mr/62.sql +++ b/pandora_console/extras/mr/62.sql @@ -1,23 +0,0 @@ -START TRANSACTION; - -CREATE TABLE IF NOT EXISTS `tmonitor_filter` ( - `id_filter` INT UNSIGNED NOT NULL AUTO_INCREMENT, - `id_name` VARCHAR(600) NOT NULL, - `id_group_filter` INT NOT NULL DEFAULT 0, - `ag_group` INT NOT NULL DEFAULT 0, - `recursion` TEXT, - `status` INT NOT NULL DEFAULT -1, - `ag_modulename` TEXT, - `ag_freestring` TEXT, - `tag_filter` TEXT, - `moduletype` TEXT, - `module_option` INT DEFAULT 1, - `modulegroup` INT NOT NULL DEFAULT -1, - `min_hours_status` TEXT, - `datatype` TEXT, - `not_condition` TEXT, - `ag_custom_fields` TEXT, - PRIMARY KEY (`id_filter`) -) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; - -COMMIT; From 97ade7c4616509b588babb1c31259573d856046d Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 6 Feb 2023 14:13:14 +0100 Subject: [PATCH 047/100] deleted --- pandora_console/extras/mr/62.sql | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 pandora_console/extras/mr/62.sql diff --git a/pandora_console/extras/mr/62.sql b/pandora_console/extras/mr/62.sql deleted file mode 100644 index e69de29bb2..0000000000 From 64c27cdd0f49f23d74f6a79e2d240cd7b809fb3c Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 7 Feb 2023 01:01:47 +0100 Subject: [PATCH 048/100] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 0bfa840d67..41c4d14609 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.768-230206 +Version: 7.0NG.768-230207 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index dcc6d6d60b..8356fb5e9a 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230206" +pandora_version="7.0NG.768-230207" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index f75da86403..8b85b2f4f8 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.768'; -use constant AGENT_BUILD => '230206'; +use constant AGENT_BUILD => '230207'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index c914f7980f..6fd83ca74f 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230206 +%define release 230207 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 55d75e5a3b..339dd209ba 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230206 +%define release 230207 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 576ca855d7..1a412689bb 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230206" +PI_BUILD="230207" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 2186ecad7d..8488ced2e5 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230206} +{230207} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index ee0fdf0656..b5110d1f98 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.768 Build 230206") +#define PANDORA_VERSION ("7.0NG.768 Build 230207") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 86c232f941..075e64c86e 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.768(Build 230206))" + VALUE "ProductVersion", "(7.0NG.768(Build 230207))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 3ca190021f..a56cde214b 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.768-230206 +Version: 7.0NG.768-230207 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 49d5606517..15b27b4dff 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230206" +pandora_version="7.0NG.768-230207" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 6824d7dce1..e3ab2c4a2a 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230206'; +$build_version = 'PC230207'; $pandora_version = 'v7.0NG.768'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index f11b15d38d..89d4d17655 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 2760e9c975..02ff4577ac 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230206 +%define release 230207 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index fbc20d43e9..ae0f408b01 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230206 +%define release 230207 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index dbc954a5fe..ed97ed63d9 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230206" +PI_BUILD="230207" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 7990961fa8..887f138e91 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.768 Build 230206"; +my $version = "7.0NG.768 Build 230207"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 668b90c852..55eb14fda9 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.768 Build 230206"; +my $version = "7.0NG.768 Build 230207"; # save program name for logging my $progname = basename($0); From 380f80be29f68ae325397cb510ea925545d1c5bc Mon Sep 17 00:00:00 2001 From: Junichi Satoh Date: Tue, 7 Feb 2023 17:13:08 +0900 Subject: [PATCH 049/100] Updated Japanese console translations. --- pandora_console/include/languages/ja.mo | Bin 849684 -> 857870 bytes pandora_console/include/languages/ja.po | 29282 ++++++++++++---------- 2 files changed, 15743 insertions(+), 13539 deletions(-) diff --git a/pandora_console/include/languages/ja.mo b/pandora_console/include/languages/ja.mo index 8c0a60b47cd4134b04227ebeb4e62978354bd684..4821137b337690c7b5ef50a1d1f29c32b57b99bb 100644 GIT binary patch delta 206191 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

1v58kg{Q639P}ZuR*CY9zeU=_Vl#J}x#W&t4 GsC)v$X#X1k delta 200958 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 HJNW+qFElIV diff --git a/pandora_console/include/languages/ja.po b/pandora_console/include/languages/ja.po index 163f9bcefe..027502fc13 100644 --- a/pandora_console/include/languages/ja.po +++ b/pandora_console/include/languages/ja.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: pandora-fms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-28 08:55+0200\n" -"PO-Revision-Date: 2022-11-02 12:13+0900\n" +"POT-Creation-Date: 2023-01-17 10:25+0100\n" +"PO-Revision-Date: 2023-02-07 17:00+0900\n" "Last-Translator: Junichi Satoh \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2021-09-10 08:44+0000\n" -"X-Generator: Poedit 3.2\n" +"X-Generator: Poedit 3.2.2\n" #: ../../views/calendar/list.php:39 msgid "Calendars" @@ -25,21 +25,20 @@ msgstr "カレンダー" #: ../../views/calendar/list.php:57 ../../views/calendar/special_days_edit.php:58 #: ../../views/calendar/edit.php:58 ../../views/calendar/special_days.php:59 #: ../../enterprise/extensions/csv_import_group.php:43 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:56 -#: ../../enterprise/godmode/modules/local_components.php:256 +#: ../../enterprise/godmode/modules/local_components.php:257 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:343 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:118 #: ../../enterprise/godmode/agentes/collections.data.php:398 #: ../../enterprise/godmode/agentes/collections.editor.php:112 -#: ../../enterprise/godmode/agentes/collections.php:95 +#: ../../enterprise/godmode/agentes/collections.php:144 #: ../../enterprise/godmode/policies/policy_plugins.php:31 #: ../../enterprise/godmode/policies/policy_alerts.php:57 #: ../../enterprise/godmode/policies/configure_policy.php:76 -#: ../../enterprise/godmode/policies/policy_modules.php:469 +#: ../../enterprise/godmode/policies/policy_modules.php:470 #: ../../enterprise/godmode/policies/policy_queue.php:211 #: ../../enterprise/godmode/policies/policies.php:265 #: ../../enterprise/godmode/policies/policy_linking.php:110 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:311 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:313 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 #: ../../enterprise/godmode/policies/policy_collections.php:43 #: ../../enterprise/godmode/policies/policy_agents.php:319 @@ -52,44 +51,48 @@ msgstr "カレンダー" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206 #: ../../enterprise/include/lib/Policy/Queue.php:162 #: ../../enterprise/include/lib/Policy/Queue.php:163 -#: ../../enterprise/include/lib/Policy/Queue.php:406 +#: ../../enterprise/include/lib/Policy/Queue.php:429 +#: ../../enterprise/include/lib/Policy/Queue.php:435 #: ../../enterprise/operation/agentes/policy_view.php:51 #: ../../extensions/resource_registration.php:1107 #: ../../godmode/modules/manage_nc_groups.php:286 -#: ../../godmode/modules/manage_network_components.php:306 -#: ../../godmode/groups/group_list.php:396 ../../godmode/groups/modu_group_list.php:85 -#: ../../godmode/users/profile_list.php:108 ../../godmode/users/user_list.php:425 +#: ../../godmode/modules/manage_inventory_modules.php:56 +#: ../../godmode/modules/manage_network_components.php:307 +#: ../../godmode/groups/group_list.php:401 +#: ../../godmode/groups/modu_group_list.php:85 +#: ../../godmode/users/profile_list.php:108 ../../godmode/users/user_list.php:485 #: ../../godmode/agentes/modificar_agente.php:117 -#: ../../godmode/massive/massive_operations.php:388 +#: ../../godmode/massive/massive_operations.php:393 +#: ../../godmode/massive/massive_edit_users.php:47 #: ../../godmode/massive/massive_delete_profiles.php:45 #: ../../godmode/massive/massive_add_profiles.php:45 #: ../../godmode/alerts/configure_alert_command.php:189 #: ../../godmode/alerts/alert_actions.php:215 -#: ../../godmode/alerts/alert_commands.php:722 +#: ../../godmode/alerts/alert_commands.php:723 #: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/configure_alert_action.php:113 #: ../../godmode/alerts/configure_alert_template.php:412 -#: ../../godmode/setup/os.list.php:49 ../../godmode/servers/plugin_registration.php:79 -#: ../../godmode/tag/tag.php:188 ../../godmode/category/category.php:101 -#: ../../operation/users/user_edit.php:247 +#: ../../godmode/setup/os.list.php:49 +#: ../../godmode/servers/plugin_registration.php:79 ../../godmode/tag/tag.php:188 +#: ../../godmode/category/category.php:101 +#: ../../operation/users/user_edit.php:254 msgid "metaconsole" msgstr "メタコンソール" #: ../../views/calendar/list.php:60 ../../views/calendar/special_days_edit.php:61 #: ../../views/calendar/edit.php:61 ../../views/calendar/special_days.php:62 #: ../../enterprise/extensions/csv_import_group.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:58 -#: ../../enterprise/godmode/modules/local_components.php:258 +#: ../../enterprise/godmode/modules/local_components.php:259 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:345 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:120 #: ../../enterprise/godmode/policies/policy_plugins.php:33 #: ../../enterprise/godmode/policies/policy_alerts.php:59 #: ../../enterprise/godmode/policies/configure_policy.php:78 -#: ../../enterprise/godmode/policies/policy_modules.php:471 +#: ../../enterprise/godmode/policies/policy_modules.php:472 #: ../../enterprise/godmode/policies/policy_queue.php:213 #: ../../enterprise/godmode/policies/policies.php:267 #: ../../enterprise/godmode/policies/policy_linking.php:112 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:313 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:315 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 #: ../../enterprise/godmode/policies/policy_collections.php:45 #: ../../enterprise/godmode/policies/policy_agents.php:321 @@ -103,21 +106,25 @@ msgstr "メタコンソール" #: ../../enterprise/operation/agentes/policy_view.php:53 #: ../../extensions/resource_registration.php:1109 #: ../../godmode/modules/manage_nc_groups.php:288 -#: ../../godmode/modules/manage_network_components.php:308 -#: ../../godmode/groups/group_list.php:398 ../../godmode/groups/modu_group_list.php:87 -#: ../../godmode/users/profile_list.php:110 ../../godmode/users/user_list.php:427 +#: ../../godmode/modules/manage_inventory_modules.php:58 +#: ../../godmode/modules/manage_network_components.php:309 +#: ../../godmode/groups/group_list.php:403 +#: ../../godmode/groups/modu_group_list.php:87 +#: ../../godmode/users/profile_list.php:110 ../../godmode/users/user_list.php:487 #: ../../godmode/agentes/modificar_agente.php:119 -#: ../../godmode/massive/massive_operations.php:390 +#: ../../godmode/massive/massive_operations.php:395 +#: ../../godmode/massive/massive_edit_users.php:49 #: ../../godmode/massive/massive_delete_profiles.php:47 #: ../../godmode/massive/massive_add_profiles.php:47 #: ../../godmode/alerts/configure_alert_command.php:191 #: ../../godmode/alerts/alert_actions.php:217 -#: ../../godmode/alerts/alert_commands.php:724 +#: ../../godmode/alerts/alert_commands.php:725 #: ../../godmode/alerts/alert_templates.php:263 #: ../../godmode/alerts/configure_alert_action.php:115 #: ../../godmode/alerts/configure_alert_template.php:414 #: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:190 -#: ../../godmode/category/category.php:103 ../../operation/users/user_edit.php:249 +#: ../../godmode/category/category.php:103 +#: ../../operation/users/user_edit.php:256 msgid "any node" msgstr "任意のノード" @@ -125,31 +132,33 @@ msgstr "任意のノード" #: ../../views/calendar/edit.php:66 ../../views/calendar/special_days.php:67 #, php-format msgid "" -"This node is configured with centralized mode. All alert calendar information is read " -"only. Go to %s to manage it." +"This node is configured with centralized mode. All alert calendar information " +"is read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートカレンダー情報は読み取" -"り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのアラートカレンダー情報は" +"読み取り専用です。管理するには %s に移動します。" #: ../../views/calendar/list.php:92 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 #: ../../enterprise/tools/ipam/ipam_list.php:587 -#: ../../enterprise/tools/ipam/ipam_excel.php:130 -#: ../../enterprise/tools/ipam/ipam_excel.php:199 +#: ../../enterprise/tools/ipam/ipam_excel.php:136 +#: ../../enterprise/tools/ipam/ipam_excel.php:207 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:660 -#: ../../extensions/api_checker.php:161 ../../godmode/modules/module_list.php:61 -#: ../../godmode/groups/group_list.php:840 ../../godmode/groups/modu_group_list.php:251 -#: ../../godmode/agentes/fields_manager.php:118 +#: ../../extensions/api_checker.php:245 ../../godmode/modules/module_list.php:61 +#: ../../godmode/groups/group_list.php:845 +#: ../../godmode/groups/modu_group_list.php:251 +#: ../../godmode/agentes/fields_manager.php:121 #: ../../godmode/agentes/agent_manager.php:219 #: ../../godmode/agentes/agent_incidents.php:88 #: ../../godmode/agentes/module_manager_editor_common.php:230 -#: ../../godmode/alerts/alert_commands.php:742 ../../godmode/setup/os.list.php:68 +#: ../../godmode/alerts/alert_commands.php:743 ../../godmode/setup/os.list.php:68 #: ../../operation/incidents/list_integriaims_incidents.php:515 msgid "ID" msgstr "ID" #: ../../views/calendar/list.php:93 ../../views/calendar/edit.php:86 -#: ../../views/dashboard/list.php:95 ../../views/dashboard/formDashboard.php:77 +#: ../../views/cluster/list.php:58 ../../views/dashboard/list.php:95 +#: ../../views/dashboard/formDashboard.php:77 #: ../../enterprise/views/ncm/snippets/list.php:70 #: ../../enterprise/views/ncm/snippets/edit.php:81 #: ../../enterprise/views/ncm/templates/list.php:73 @@ -161,7 +170,6 @@ msgstr "ID" #: ../../enterprise/views/ncm/models/edit.php:68 #: ../../enterprise/views/ncm/vendors/list.php:70 #: ../../enterprise/views/ncm/vendors/edit.php:67 -#: ../../enterprise/views/cluster/list.php:58 #: ../../enterprise/views/ipam/sites/list.php:46 #: ../../enterprise/views/ipam/sites/edit.php:40 #: ../../enterprise/meta/advanced/servers.build_table.php:60 @@ -172,28 +180,25 @@ msgstr "ID" #: ../../enterprise/meta/include/functions_wizard_meta.php:1457 #: ../../enterprise/meta/include/functions_wizard_meta.php:1579 #: ../../enterprise/meta/include/functions_wizard_meta.php:1682 -#: ../../enterprise/meta/agentsearch.php:327 -#: ../../enterprise/godmode/modules/configure_local_component.php:156 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:272 -#: ../../enterprise/godmode/modules/local_components.php:621 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 +#: ../../enterprise/meta/agentsearch.php:335 +#: ../../enterprise/godmode/modules/configure_local_component.php:158 +#: ../../enterprise/godmode/modules/local_components.php:624 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:371 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:751 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:136 #: ../../enterprise/godmode/agentes/collection_manager.php:109 #: ../../enterprise/godmode/agentes/collection_manager.php:206 -#: ../../enterprise/godmode/agentes/inventory_manager.php:220 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:579 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 #: ../../enterprise/godmode/policies/configure_policy.php:102 -#: ../../enterprise/godmode/policies/policy_modules.php:1464 +#: ../../enterprise/godmode/policies/policy_modules.php:1469 #: ../../enterprise/godmode/policies/policies.php:410 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:302 #: ../../enterprise/godmode/policies/policy_collections.php:169 #: ../../enterprise/godmode/policies/policy_collections.php:263 -#: ../../enterprise/godmode/policies/policy_agents.php:847 -#: ../../enterprise/godmode/policies/policy_agents.php:1367 +#: ../../enterprise/godmode/policies/policy_agents.php:883 +#: ../../enterprise/godmode/policies/policy_agents.php:1403 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 #: ../../enterprise/godmode/services/services.service.php:579 #: ../../enterprise/godmode/setup/setup_skins.php:87 @@ -205,10 +210,10 @@ msgstr "ID" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:108 #: ../../enterprise/godmode/reporting/visual_console_template.php:203 #: ../../enterprise/godmode/reporting/visual_console_template.php:270 -#: ../../enterprise/godmode/reporting/mysql_builder.php:96 -#: ../../enterprise/godmode/reporting/mysql_builder.php:227 -#: ../../enterprise/godmode/reporting/mysql_builder.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1677 +#: ../../enterprise/godmode/reporting/mysql_builder.php:97 +#: ../../enterprise/godmode/reporting/mysql_builder.php:229 +#: ../../enterprise/godmode/reporting/mysql_builder.php:230 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1697 #: ../../enterprise/godmode/servers/manage_export.php:137 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 @@ -219,20 +224,17 @@ msgstr "ID" #: ../../enterprise/include/ajax/servers.ajax.php:100 #: ../../enterprise/include/ajax/servers.ajax.php:158 #: ../../enterprise/include/ajax/servers.ajax.php:284 -#: ../../enterprise/include/functions_reporting_csv.php:759 -#: ../../enterprise/include/class/Omnishell.class.php:668 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:764 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2945 +#: ../../enterprise/include/functions_reporting_csv.php:763 +#: ../../enterprise/include/class/Omnishell.class.php:670 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:766 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 #: ../../enterprise/include/functions_services.php:1603 #: ../../enterprise/include/functions_ipam.php:1348 -#: ../../enterprise/include/functions_ipam.php:1987 +#: ../../enterprise/include/functions_ipam.php:1995 #: ../../enterprise/operation/agentes/policy_view.php:163 #: ../../enterprise/operation/agentes/policy_view.php:395 #: ../../enterprise/operation/agentes/tag_view.php:677 #: ../../enterprise/operation/agentes/collection_view.php:75 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:186 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:363 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:489 #: ../../enterprise/operation/services/services.service.php:118 #: ../../enterprise/operation/services/massive/services.create.php:660 #: ../../enterprise/operation/services/services.list.php:497 @@ -240,39 +242,46 @@ msgstr "ID" #: ../../enterprise/tools/ipam/ipam_list.php:600 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:135 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:257 -#: ../../enterprise/tools/ipam/ipam_excel.php:131 -#: ../../enterprise/tools/ipam/ipam_excel.php:200 +#: ../../enterprise/tools/ipam/ipam_excel.php:137 +#: ../../enterprise/tools/ipam/ipam_excel.php:208 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:667 #: ../../enterprise/tools/ipam/ipam_editor.php:140 #: ../../extensions/files_repo/files_repo_list.php:55 #: ../../godmode/modules/manage_nc_groups_form.php:68 #: ../../godmode/modules/manage_network_templates_form.php:168 #: ../../godmode/modules/manage_nc_groups.php:241 +#: ../../godmode/modules/manage_inventory_modules.php:278 #: ../../godmode/modules/manage_network_components_form_common.php:46 +#: ../../godmode/modules/manage_inventory_modules_form.php:103 #: ../../godmode/modules/module_list.php:62 -#: ../../godmode/modules/manage_network_templates.php:246 -#: ../../godmode/groups/configure_group.php:150 ../../godmode/groups/group_list.php:842 +#: ../../godmode/modules/manage_network_templates.php:248 +#: ../../godmode/groups/configure_group.php:150 +#: ../../godmode/groups/group_list.php:847 #: ../../godmode/groups/configure_modu_group.php:67 -#: ../../godmode/groups/modu_group_list.php:252 ../../godmode/users/user_list.php:480 +#: ../../godmode/groups/modu_group_list.php:252 +#: ../../godmode/users/user_list.php:540 +#: ../../godmode/agentes/inventory_manager.php:221 #: ../../godmode/agentes/planned_downtime.editor.php:820 -#: ../../godmode/agentes/planned_downtime.editor.php:1218 +#: ../../godmode/agentes/planned_downtime.editor.php:1206 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132 -#: ../../godmode/agentes/configure_field.php:74 +#: ../../godmode/agentes/configure_field.php:77 #: ../../godmode/agentes/module_manager_editor_common.php:215 -#: ../../godmode/agentes/module_manager_editor_common.php:1212 -#: ../../godmode/agentes/module_manager.php:834 ../../godmode/netflow/nf_edit.php:159 +#: ../../godmode/agentes/module_manager_editor_common.php:1226 +#: ../../godmode/agentes/module_manager.php:870 +#: ../../godmode/netflow/nf_edit.php:159 #: ../../godmode/netflow/nf_edit_form.php:199 #: ../../godmode/alerts/configure_alert_command.php:224 #: ../../godmode/alerts/alert_actions.php:326 -#: ../../godmode/alerts/alert_commands.php:741 +#: ../../godmode/alerts/alert_commands.php:742 #: ../../godmode/alerts/alert_templates.php:384 #: ../../godmode/alerts/configure_alert_action.php:181 #: ../../godmode/alerts/configure_alert_template.php:1052 #: ../../godmode/setup/os.builder.php:36 ../../godmode/setup/os.list.php:69 -#: ../../godmode/setup/setup_integria.php:337 ../../godmode/setup/setup_integria.php:458 +#: ../../godmode/setup/setup_integria.php:337 +#: ../../godmode/setup/setup_integria.php:458 #: ../../godmode/reporting/create_container.php:223 #: ../../godmode/reporting/reporting_builder.item_editor.php:83 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1080 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1088 #: ../../godmode/reporting/reporting_builder.main.php:89 #: ../../godmode/reporting/reporting_builder.main.php:93 #: ../../godmode/reporting/graph_builder.main.php:125 @@ -280,43 +289,49 @@ msgstr "ID" #: ../../godmode/events/event_responses.editor.php:86 #: ../../godmode/events/event_responses.list.php:50 #: ../../godmode/servers/servers.build_table.php:79 -#: ../../godmode/servers/modificar_server.php:58 ../../godmode/servers/plugin.php:339 -#: ../../godmode/servers/plugin.php:815 ../../godmode/tag/tag.php:228 -#: ../../godmode/tag/edit_tag.php:211 ../../godmode/category/edit_category.php:180 +#: ../../godmode/servers/modificar_server.php:58 +#: ../../godmode/servers/plugin.php:339 ../../godmode/servers/plugin.php:794 +#: ../../godmode/tag/tag.php:228 ../../godmode/tag/edit_tag.php:211 +#: ../../godmode/category/edit_category.php:180 #: ../../include/functions_reporting_html.php:1052 #: ../../include/functions_reporting_html.php:1060 #: ../../include/functions_reporting_html.php:1715 -#: ../../include/functions_reporting_html.php:2540 -#: ../../include/functions_reporting_html.php:2899 -#: ../../include/functions_reporting_html.php:3596 -#: ../../include/functions_reporting_html.php:6285 -#: ../../include/functions_treeview.php:78 ../../include/class/NetworkMap.class.php:2906 -#: ../../include/class/NetworkMap.class.php:2947 -#: ../../include/class/NetworkMap.class.php:2965 -#: ../../include/class/NetworkMap.class.php:3268 +#: ../../include/functions_reporting_html.php:2551 +#: ../../include/functions_reporting_html.php:2910 +#: ../../include/functions_reporting_html.php:3613 +#: ../../include/functions_reporting_html.php:6320 +#: ../../include/functions_treeview.php:78 +#: ../../include/class/NetworkMap.class.php:3039 +#: ../../include/class/NetworkMap.class.php:3080 +#: ../../include/class/NetworkMap.class.php:3098 +#: ../../include/class/NetworkMap.class.php:3401 #: ../../include/class/ManageNetScanScripts.class.php:403 #: ../../include/class/ManageNetScanScripts.class.php:545 -#: ../../include/class/ModuleTemplates.class.php:892 -#: ../../include/class/ModuleTemplates.class.php:1050 +#: ../../include/class/ModuleTemplates.class.php:893 +#: ../../include/class/ModuleTemplates.class.php:1051 #: ../../include/class/CalendarManager.class.php:1026 +#: ../../include/class/SatelliteCollection.class.php:128 #: ../../include/functions_filemanager.php:604 -#: ../../include/functions_snmp_browser.php:1670 ../../include/functions_events.php:4073 -#: ../../include/functions_events.php:4162 ../../operation/search_users.php:44 +#: ../../include/functions_snmp_browser.php:1670 +#: ../../include/functions_events.php:4186 +#: ../../include/functions_events.php:4275 ../../operation/search_users.php:44 #: ../../operation/search_helps.php:31 -#: ../../operation/agentes/pandora_networkmap.editor.php:273 -#: ../../operation/agentes/pandora_networkmap.php:707 -#: ../../operation/agentes/pandora_networkmap.view.php:100 -#: ../../operation/netflow/nf_live_view.php:370 ../../operation/gis_maps/gis_map.php:102 +#: ../../operation/agentes/pandora_networkmap.editor.php:291 +#: ../../operation/agentes/pandora_networkmap.php:714 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +#: ../../operation/netflow/nf_live_view.php:370 +#: ../../operation/gis_maps/gis_map.php:102 #: ../../operation/incidents/configure_integriaims_incident.php:217 #: ../../operation/search_policies.php:35 ../../operation/search_maps.php:28 msgid "Name" msgstr "名前" -#: ../../views/calendar/list.php:94 ../../views/calendar/special_days_edit.php:106 +#: ../../views/calendar/list.php:94 +#: ../../views/calendar/special_days_edit.php:106 #: ../../views/calendar/edit.php:97 ../../views/calendar/special_days.php:112 -#: ../../views/dashboard/list.php:97 ../../views/dashboard/formDashboard.php:108 +#: ../../views/cluster/list.php:60 ../../views/dashboard/list.php:97 +#: ../../views/dashboard/formDashboard.php:108 #: ../../enterprise/views/ncm/devices/list.php:116 -#: ../../enterprise/views/cluster/list.php:60 #: ../../enterprise/meta/advanced/cron_main.php:428 #: ../../enterprise/meta/advanced/collections.php:366 #: ../../enterprise/meta/monitoring/custom_fields_view.php:146 @@ -328,19 +343,20 @@ msgstr "名前" #: ../../enterprise/meta/include/functions_wizard_meta.php:191 #: ../../enterprise/meta/include/functions_wizard_meta.php:1805 #: ../../enterprise/meta/include/functions_events_meta.php:74 -#: ../../enterprise/meta/agentsearch.php:138 ../../enterprise/meta/agentsearch.php:329 -#: ../../enterprise/godmode/modules/configure_local_component.php:274 -#: ../../enterprise/godmode/modules/local_components.php:498 -#: ../../enterprise/godmode/modules/local_components.php:623 +#: ../../enterprise/meta/agentsearch.php:139 +#: ../../enterprise/meta/agentsearch.php:337 +#: ../../enterprise/godmode/modules/configure_local_component.php:276 +#: ../../enterprise/godmode/modules/local_components.php:501 +#: ../../enterprise/godmode/modules/local_components.php:626 #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:196 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:139 -#: ../../enterprise/godmode/agentes/collections.php:381 +#: ../../enterprise/godmode/agentes/collections.php:444 #: ../../enterprise/godmode/policies/configure_policy.php:105 #: ../../enterprise/godmode/policies/policies.php:312 #: ../../enterprise/godmode/policies/policies.php:412 -#: ../../enterprise/godmode/policies/policy_agents.php:798 -#: ../../enterprise/godmode/policies/policy_agents.php:855 +#: ../../enterprise/godmode/policies/policy_agents.php:834 +#: ../../enterprise/godmode/policies/policy_agents.php:891 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 #: ../../enterprise/godmode/services/services.service.php:602 @@ -351,22 +367,22 @@ msgstr "名前" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:500 #: ../../enterprise/godmode/reporting/visual_console_template.php:218 #: ../../enterprise/godmode/reporting/visual_console_template.php:271 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1398 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2000 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1413 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2051 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:600 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:673 #: ../../enterprise/include/functions_tasklist.php:177 #: ../../enterprise/include/ajax/ipam.ajax.php:487 -#: ../../enterprise/include/functions_reporting_csv.php:722 -#: ../../enterprise/include/functions_reporting_csv.php:2605 -#: ../../enterprise/include/functions_reporting_csv.php:2784 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/functions_reporting_csv.php:2609 +#: ../../enterprise/include/functions_reporting_csv.php:2788 #: ../../enterprise/include/class/Azure.cloud.php:835 #: ../../enterprise/include/class/VMware.app.php:763 #: ../../enterprise/include/class/Omnishell.class.php:399 #: ../../enterprise/include/class/Omnishell.class.php:428 -#: ../../enterprise/include/class/Omnishell.class.php:678 +#: ../../enterprise/include/class/Omnishell.class.php:680 #: ../../enterprise/include/class/DB2.app.php:469 #: ../../enterprise/include/class/Aws.S3.php:434 #: ../../enterprise/include/class/SAP.app.php:644 @@ -376,21 +392,16 @@ msgstr "名前" #: ../../enterprise/include/class/Google.cloud.php:785 #: ../../enterprise/include/class/Oracle.app.php:476 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:776 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:926 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2841 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2946 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:823 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:778 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:928 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2843 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2948 #: ../../enterprise/include/functions_events.php:30 -#: ../../enterprise/operation/agentes/transactional_map.php:208 #: ../../enterprise/operation/agentes/tag_view.php:108 #: ../../enterprise/operation/agentes/tag_view.php:604 #: ../../enterprise/operation/agentes/ver_agente.php:52 #: ../../enterprise/operation/agentes/ver_agente.php:73 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:366 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:492 -#: ../../enterprise/operation/log/log_viewer.php:533 -#: ../../enterprise/operation/inventory/inventory.php:336 +#: ../../enterprise/operation/log/log_viewer.php:534 #: ../../enterprise/operation/services/services.service.php:121 #: ../../enterprise/operation/services/massive/services.create.php:682 #: ../../enterprise/operation/services/services.list.php:260 @@ -402,55 +413,59 @@ msgstr "名前" #: ../../godmode/modules/manage_network_templates_form.php:303 #: ../../godmode/modules/manage_network_templates_form.php:339 #: ../../godmode/modules/manage_network_components_form_common.php:131 -#: ../../godmode/modules/manage_network_components.php:618 -#: ../../godmode/modules/manage_network_components.php:752 -#: ../../godmode/users/user_list.php:390 ../../godmode/agentes/configurar_agente.php:498 +#: ../../godmode/modules/manage_network_components.php:621 +#: ../../godmode/modules/manage_network_components.php:755 +#: ../../godmode/users/user_list.php:450 +#: ../../godmode/agentes/configurar_agente.php:519 #: ../../godmode/agentes/modificar_agente.php:289 #: ../../godmode/agentes/modificar_agente.php:651 -#: ../../godmode/agentes/planned_downtime.list.php:621 +#: ../../godmode/agentes/planned_downtime.list.php:658 #: ../../godmode/agentes/planned_downtime.editor.php:830 -#: ../../godmode/agentes/planned_downtime.editor.php:1219 +#: ../../godmode/agentes/planned_downtime.editor.php:1207 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 -#: ../../godmode/agentes/agent_incidents.php:92 ../../godmode/netflow/nf_edit.php:160 +#: ../../godmode/agentes/agent_incidents.php:92 +#: ../../godmode/netflow/nf_edit.php:160 #: ../../godmode/netflow/nf_edit_form.php:203 #: ../../godmode/snmpconsole/snmp_alert.php:802 #: ../../godmode/gis_maps/configure_gis_map.php:498 #: ../../godmode/gis_maps/configure_gis_map.php:635 #: ../../godmode/massive/massive_copy_modules.php:100 #: ../../godmode/massive/massive_copy_modules.php:253 -#: ../../godmode/massive/massive_standby_alerts.php:185 -#: ../../godmode/massive/massive_delete_action_alerts.php:209 +#: ../../godmode/massive/massive_standby_alerts.php:186 +#: ../../godmode/massive/massive_delete_action_alerts.php:210 #: ../../godmode/massive/massive_add_alerts.php:211 -#: ../../godmode/massive/massive_enable_disable_alerts.php:169 +#: ../../godmode/massive/massive_enable_disable_alerts.php:170 #: ../../godmode/massive/massive_edit_agents.php:694 -#: ../../godmode/massive/massive_delete_profiles.php:152 -#: ../../godmode/massive/massive_delete_alerts.php:289 -#: ../../godmode/massive/massive_add_action_alerts.php:197 +#: ../../godmode/massive/massive_delete_profiles.php:153 +#: ../../godmode/massive/massive_delete_alerts.php:290 +#: ../../godmode/massive/massive_add_action_alerts.php:198 #: ../../godmode/massive/massive_add_profiles.php:203 #: ../../godmode/alerts/configure_alert_command.php:265 -#: ../../godmode/alerts/alert_actions.php:260 ../../godmode/alerts/alert_actions.php:328 +#: ../../godmode/alerts/alert_actions.php:260 +#: ../../godmode/alerts/alert_actions.php:328 #: ../../godmode/alerts/alert_list.list.php:157 -#: ../../godmode/alerts/alert_commands.php:743 +#: ../../godmode/alerts/alert_commands.php:744 #: ../../godmode/alerts/alert_templates.php:385 #: ../../godmode/alerts/configure_alert_action.php:212 #: ../../godmode/alerts/configure_alert_template.php:1074 -#: ../../godmode/setup/news.php:186 ../../godmode/setup/gis.php:69 -#: ../../godmode/setup/gis_step_2.php:216 ../../godmode/setup/setup_integria.php:361 +#: ../../godmode/setup/news.php:186 ../../godmode/setup/gis.php:70 +#: ../../godmode/setup/gis_step_2.php:217 +#: ../../godmode/setup/setup_integria.php:361 #: ../../godmode/setup/setup_integria.php:483 #: ../../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:356 -#: ../../godmode/reporting/map_builder.php:385 ../../godmode/reporting/graphs.php:231 -#: ../../godmode/reporting/graphs.php:313 +#: ../../godmode/reporting/map_builder.php:385 +#: ../../godmode/reporting/graphs.php:231 ../../godmode/reporting/graphs.php:313 #: ../../godmode/reporting/visual_console_favorite.php:161 #: ../../godmode/reporting/reporting_builder.item_editor.php:72 #: ../../godmode/reporting/reporting_builder.item_editor.php:87 -#: ../../godmode/reporting/reporting_builder.item_editor.php:210 -#: ../../godmode/reporting/reporting_builder.item_editor.php:882 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1574 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3429 +#: ../../godmode/reporting/reporting_builder.item_editor.php:212 +#: ../../godmode/reporting/reporting_builder.item_editor.php:890 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1613 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3448 #: ../../godmode/reporting/visual_console_builder.elements.php:104 #: ../../godmode/reporting/visual_console_builder.elements.php:314 #: ../../godmode/reporting/reporting_builder.main.php:101 @@ -459,17 +474,19 @@ msgstr "名前" #: ../../godmode/reporting/graph_builder.main.php:143 #: ../../godmode/events/event_filter.php:137 #: ../../godmode/events/event_responses.editor.php:105 -#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:326 #: ../../godmode/events/event_responses.list.php:52 #: ../../godmode/events/custom_events.php:100 -#: ../../godmode/wizards/HostDevices.class.php:932 ../../mobile/operation/agents.php:95 -#: ../../mobile/operation/agents.php:157 ../../mobile/operation/agents.php:234 -#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:405 -#: ../../mobile/operation/modules.php:171 ../../mobile/operation/modules.php:176 -#: ../../mobile/operation/modules.php:266 ../../mobile/operation/modules.php:267 -#: ../../mobile/operation/alerts.php:113 ../../mobile/operation/alerts.php:118 -#: ../../mobile/operation/alerts.php:231 ../../mobile/operation/alerts.php:232 -#: ../../mobile/operation/visualmaps.php:113 ../../mobile/operation/visualmaps.php:118 +#: ../../godmode/wizards/HostDevices.class.php:934 +#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157 +#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235 +#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171 +#: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266 +#: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113 +#: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231 +#: ../../mobile/operation/alerts.php:232 +#: ../../mobile/operation/visualmaps.php:113 +#: ../../mobile/operation/visualmaps.php:118 #: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671 #: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954 #: ../../mobile/operation/events.php:955 @@ -477,62 +494,70 @@ msgstr "名前" #: ../../include/functions_visual_map_editor.php:594 #: ../../include/functions_visual_map_editor.php:1397 #: ../../include/functions_reporting_html.php:1569 -#: ../../include/functions_reporting_html.php:2257 -#: ../../include/functions_reporting_html.php:3547 -#: ../../include/functions_reporting_html.php:3600 -#: ../../include/functions_reporting_html.php:6373 ../../include/functions_cron.php:494 -#: ../../include/ajax/heatmap.ajax.php:110 ../../include/ajax/heatmap.ajax.php:344 -#: ../../include/ajax/custom_fields.php:628 ../../include/ajax/custom_fields.php:677 -#: ../../include/functions_graph.php:5159 ../../include/functions_gis.php:228 -#: ../../include/functions_profile.php:214 ../../include/functions_visual_map.php:4262 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:549 -#: ../../include/rest-api/models/VisualConsole/Item.php:2139 +#: ../../include/functions_reporting_html.php:2266 +#: ../../include/functions_reporting_html.php:3564 +#: ../../include/functions_reporting_html.php:3617 +#: ../../include/functions_reporting_html.php:6408 +#: ../../include/functions_cron.php:505 ../../include/ajax/heatmap.ajax.php:111 +#: ../../include/ajax/heatmap.ajax.php:350 +#: ../../include/ajax/custom_fields.php:630 +#: ../../include/ajax/custom_fields.php:679 +#: ../../include/functions_graph.php:4951 ../../include/functions_gis.php:228 +#: ../../include/functions_profile.php:214 +#: ../../include/functions_visual_map.php:4215 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:551 +#: ../../include/rest-api/models/VisualConsole/Item.php:2140 #: ../../include/functions_html.php:1531 #: ../../include/functions_massive_operations.php:126 -#: ../../include/class/NetworkMap.class.php:2841 -#: ../../include/class/NetworkMap.class.php:2890 -#: ../../include/class/NetworkMap.class.php:3206 +#: ../../include/class/NetworkMap.class.php:2974 +#: ../../include/class/NetworkMap.class.php:3023 +#: ../../include/class/NetworkMap.class.php:3339 #: ../../include/class/AgentsAlerts.class.php:761 -#: ../../include/class/CredentialStore.class.php:802 -#: ../../include/class/CredentialStore.class.php:833 -#: ../../include/class/CredentialStore.class.php:923 +#: ../../include/class/CredentialStore.class.php:840 +#: ../../include/class/CredentialStore.class.php:871 +#: ../../include/class/CredentialStore.class.php:961 #: ../../include/class/CustomNetScan.class.php:500 -#: ../../include/class/ModuleTemplates.class.php:780 +#: ../../include/class/ModuleTemplates.class.php:781 #: ../../include/class/CalendarManager.class.php:1027 #: ../../include/functions_container.php:149 #: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237 -#: ../../include/functions_snmp_browser.php:1673 ../../include/functions_events.php:203 -#: ../../include/functions_events.php:256 ../../include/functions_events.php:4717 -#: ../../operation/heatmap.php:115 ../../operation/heatmap.php:117 -#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:52 -#: ../../operation/users/user_edit.php:841 ../../operation/visual_console/view.php:351 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:823 +#: ../../include/functions_snmp_browser.php:1673 +#: ../../include/functions_events.php:203 ../../include/functions_events.php:256 +#: ../../include/functions_events.php:4838 ../../operation/heatmap.php:119 +#: ../../operation/heatmap.php:121 ../../operation/search_agents.php:46 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:913 +#: ../../operation/visual_console/view.php:353 #: ../../operation/agentes/estado_agente.php:254 #: ../../operation/agentes/estado_agente.php:754 -#: ../../operation/agentes/pandora_networkmap.editor.php:289 -#: ../../operation/agentes/pandora_networkmap.editor.php:337 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 +#: ../../operation/agentes/pandora_networkmap.editor.php:355 #: ../../operation/agentes/interface_view.functions.php:37 #: ../../operation/agentes/exportdata.php:227 #: ../../operation/agentes/status_monitor.php:450 #: ../../operation/agentes/group_view.php:222 -#: ../../operation/agentes/pandora_networkmap.view.php:103 -#: ../../operation/agentes/pandora_networkmap.view.php:137 -#: ../../operation/agentes/ver_agente.php:1018 +#: ../../operation/agentes/pandora_networkmap.view.php:140 +#: ../../operation/agentes/pandora_networkmap.view.php:174 +#: ../../operation/agentes/ver_agente.php:1036 #: ../../operation/agentes/estado_generalagente.php:403 #: ../../operation/agentes/alerts_status.functions.php:91 -#: ../../operation/netflow/nf_live_view.php:380 ../../operation/gis_maps/gis_map.php:103 -#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 +#: ../../operation/netflow/nf_live_view.php:380 +#: ../../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:266 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 #: ../../operation/incidents/list_integriaims_incidents.php:331 -#: ../../operation/events/events.php:1579 ../../operation/search_maps.php:29 +#: ../../operation/inventory/inventory.php:339 +#: ../../operation/events/events.php:1658 ../../operation/search_maps.php:29 #: ../../general/ui/agents_list.php:76 msgid "Group" msgstr "グループ" -#: ../../views/calendar/list.php:95 ../../views/calendar/special_days_edit.php:138 -#: ../../views/calendar/edit.php:109 ../../enterprise/views/ncm/devices/list.php:115 -#: ../../enterprise/views/cluster/list.php:59 -#: ../../enterprise/views/cluster/view.php:286 +#: ../../views/calendar/list.php:95 +#: ../../views/calendar/special_days_edit.php:138 +#: ../../views/calendar/edit.php:109 ../../views/cluster/list.php:59 +#: ../../views/cluster/view.php:285 +#: ../../enterprise/views/ncm/devices/list.php:115 #: ../../enterprise/views/ipam/sites/list.php:47 #: ../../enterprise/views/ipam/sites/edit.php:51 #: ../../enterprise/meta/advanced/collections.php:389 @@ -546,25 +571,23 @@ msgstr "グループ" #: ../../enterprise/meta/include/functions_wizard_meta.php:1686 #: ../../enterprise/meta/include/functions_wizard_meta.php:1809 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 -#: ../../enterprise/meta/agentsearch.php:135 ../../enterprise/meta/agentsearch.php:328 -#: ../../enterprise/godmode/modules/configure_local_component.php:477 -#: ../../enterprise/godmode/modules/configure_local_component.php:636 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:273 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 +#: ../../enterprise/meta/agentsearch.php:136 +#: ../../enterprise/meta/agentsearch.php:336 +#: ../../enterprise/godmode/modules/configure_local_component.php:489 +#: ../../enterprise/godmode/modules/configure_local_component.php:648 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:374 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:137 #: ../../enterprise/godmode/agentes/collection_manager.php:111 #: ../../enterprise/godmode/agentes/collection_manager.php:208 -#: ../../enterprise/godmode/agentes/inventory_manager.php:221 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 -#: ../../enterprise/godmode/agentes/collections.php:382 +#: ../../enterprise/godmode/agentes/collections.php:445 #: ../../enterprise/godmode/policies/configure_policy.php:121 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 #: ../../enterprise/godmode/policies/policy_collections.php:171 #: ../../enterprise/godmode/policies/policy_collections.php:265 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:78 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:388 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:97 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166 @@ -578,107 +601,103 @@ msgstr "グループ" #: ../../enterprise/godmode/reporting/graph_template_editor.php:199 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:498 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1694 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1714 #: ../../enterprise/mobile/include/enterprise.class.php:87 #: ../../enterprise/include/functions_cron.php:282 #: ../../enterprise/include/ajax/ipam.ajax.php:371 #: ../../enterprise/include/ajax/ipam.ajax.php:615 -#: ../../enterprise/include/functions_reporting_pdf.php:1840 -#: ../../enterprise/include/functions_reporting_csv.php:486 +#: ../../enterprise/include/functions_reporting_pdf.php:1843 #: ../../enterprise/include/functions_reporting_csv.php:489 -#: ../../enterprise/include/functions_reporting_csv.php:709 -#: ../../enterprise/include/functions_reporting_csv.php:711 -#: ../../enterprise/include/functions_reporting_csv.php:722 -#: ../../enterprise/include/functions_reporting_csv.php:754 -#: ../../enterprise/include/functions_reporting_csv.php:756 -#: ../../enterprise/include/functions_reporting_csv.php:759 -#: ../../enterprise/include/functions_reporting_csv.php:843 -#: ../../enterprise/include/functions_reporting_csv.php:845 -#: ../../enterprise/include/functions_reporting_csv.php:872 -#: ../../enterprise/include/functions_reporting_csv.php:874 -#: ../../enterprise/include/functions_reporting_csv.php:911 -#: ../../enterprise/include/functions_reporting_csv.php:913 -#: ../../enterprise/include/functions_reporting_csv.php:955 -#: ../../enterprise/include/functions_reporting_csv.php:957 -#: ../../enterprise/include/functions_reporting_csv.php:987 -#: ../../enterprise/include/functions_reporting_csv.php:989 -#: ../../enterprise/include/functions_reporting_csv.php:1024 -#: ../../enterprise/include/functions_reporting_csv.php:1026 -#: ../../enterprise/include/functions_reporting_csv.php:1047 -#: ../../enterprise/include/functions_reporting_csv.php:1049 -#: ../../enterprise/include/functions_reporting_csv.php:1138 -#: ../../enterprise/include/functions_reporting_csv.php:1140 -#: ../../enterprise/include/functions_reporting_csv.php:1199 -#: ../../enterprise/include/functions_reporting_csv.php:1201 -#: ../../enterprise/include/functions_reporting_csv.php:1225 -#: ../../enterprise/include/functions_reporting_csv.php:1227 -#: ../../enterprise/include/functions_reporting_csv.php:1230 -#: ../../enterprise/include/functions_reporting_csv.php:1256 -#: ../../enterprise/include/functions_reporting_csv.php:1258 -#: ../../enterprise/include/functions_reporting_csv.php:1261 -#: ../../enterprise/include/functions_reporting_csv.php:1311 -#: ../../enterprise/include/functions_reporting_csv.php:1313 -#: ../../enterprise/include/functions_reporting_csv.php:1316 -#: ../../enterprise/include/functions_reporting_csv.php:1366 -#: ../../enterprise/include/functions_reporting_csv.php:1368 -#: ../../enterprise/include/functions_reporting_csv.php:1415 -#: ../../enterprise/include/functions_reporting_csv.php:1417 -#: ../../enterprise/include/functions_reporting_csv.php:1420 -#: ../../enterprise/include/functions_reporting_csv.php:1470 -#: ../../enterprise/include/functions_reporting_csv.php:1472 -#: ../../enterprise/include/functions_reporting_csv.php:1475 -#: ../../enterprise/include/functions_reporting_csv.php:1499 -#: ../../enterprise/include/functions_reporting_csv.php:1501 -#: ../../enterprise/include/functions_reporting_csv.php:1536 -#: ../../enterprise/include/functions_reporting_csv.php:1538 -#: ../../enterprise/include/functions_reporting_csv.php:1660 -#: ../../enterprise/include/functions_reporting_csv.php:1776 -#: ../../enterprise/include/functions_reporting_csv.php:1922 -#: ../../enterprise/include/functions_reporting_csv.php:1924 -#: ../../enterprise/include/functions_reporting_csv.php:1972 -#: ../../enterprise/include/functions_reporting_csv.php:1974 -#: ../../enterprise/include/functions_reporting_csv.php:2016 -#: ../../enterprise/include/functions_reporting_csv.php:2084 -#: ../../enterprise/include/functions_reporting_csv.php:2223 -#: ../../enterprise/include/functions_reporting_csv.php:2265 +#: ../../enterprise/include/functions_reporting_csv.php:492 +#: ../../enterprise/include/functions_reporting_csv.php:712 +#: ../../enterprise/include/functions_reporting_csv.php:714 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/functions_reporting_csv.php:758 +#: ../../enterprise/include/functions_reporting_csv.php:760 +#: ../../enterprise/include/functions_reporting_csv.php:763 +#: ../../enterprise/include/functions_reporting_csv.php:847 +#: ../../enterprise/include/functions_reporting_csv.php:849 +#: ../../enterprise/include/functions_reporting_csv.php:876 +#: ../../enterprise/include/functions_reporting_csv.php:878 +#: ../../enterprise/include/functions_reporting_csv.php:915 +#: ../../enterprise/include/functions_reporting_csv.php:917 +#: ../../enterprise/include/functions_reporting_csv.php:959 +#: ../../enterprise/include/functions_reporting_csv.php:961 +#: ../../enterprise/include/functions_reporting_csv.php:991 +#: ../../enterprise/include/functions_reporting_csv.php:993 +#: ../../enterprise/include/functions_reporting_csv.php:1028 +#: ../../enterprise/include/functions_reporting_csv.php:1030 +#: ../../enterprise/include/functions_reporting_csv.php:1051 +#: ../../enterprise/include/functions_reporting_csv.php:1053 +#: ../../enterprise/include/functions_reporting_csv.php:1142 +#: ../../enterprise/include/functions_reporting_csv.php:1144 +#: ../../enterprise/include/functions_reporting_csv.php:1203 +#: ../../enterprise/include/functions_reporting_csv.php:1205 +#: ../../enterprise/include/functions_reporting_csv.php:1229 +#: ../../enterprise/include/functions_reporting_csv.php:1231 +#: ../../enterprise/include/functions_reporting_csv.php:1234 +#: ../../enterprise/include/functions_reporting_csv.php:1260 +#: ../../enterprise/include/functions_reporting_csv.php:1262 +#: ../../enterprise/include/functions_reporting_csv.php:1265 +#: ../../enterprise/include/functions_reporting_csv.php:1315 +#: ../../enterprise/include/functions_reporting_csv.php:1317 +#: ../../enterprise/include/functions_reporting_csv.php:1320 +#: ../../enterprise/include/functions_reporting_csv.php:1370 +#: ../../enterprise/include/functions_reporting_csv.php:1372 +#: ../../enterprise/include/functions_reporting_csv.php:1419 +#: ../../enterprise/include/functions_reporting_csv.php:1421 +#: ../../enterprise/include/functions_reporting_csv.php:1424 +#: ../../enterprise/include/functions_reporting_csv.php:1474 +#: ../../enterprise/include/functions_reporting_csv.php:1476 +#: ../../enterprise/include/functions_reporting_csv.php:1479 +#: ../../enterprise/include/functions_reporting_csv.php:1503 +#: ../../enterprise/include/functions_reporting_csv.php:1505 +#: ../../enterprise/include/functions_reporting_csv.php:1540 +#: ../../enterprise/include/functions_reporting_csv.php:1542 +#: ../../enterprise/include/functions_reporting_csv.php:1664 +#: ../../enterprise/include/functions_reporting_csv.php:1780 +#: ../../enterprise/include/functions_reporting_csv.php:1926 +#: ../../enterprise/include/functions_reporting_csv.php:1928 +#: ../../enterprise/include/functions_reporting_csv.php:1976 +#: ../../enterprise/include/functions_reporting_csv.php:1978 +#: ../../enterprise/include/functions_reporting_csv.php:2020 +#: ../../enterprise/include/functions_reporting_csv.php:2088 +#: ../../enterprise/include/functions_reporting_csv.php:2227 #: ../../enterprise/include/functions_reporting_csv.php:2269 -#: ../../enterprise/include/functions_reporting_csv.php:2322 -#: ../../enterprise/include/functions_reporting_csv.php:2324 -#: ../../enterprise/include/functions_reporting_csv.php:2353 -#: ../../enterprise/include/functions_reporting_csv.php:2355 -#: ../../enterprise/include/functions_reporting_csv.php:2389 -#: ../../enterprise/include/functions_reporting_csv.php:2391 -#: ../../enterprise/include/functions_reporting_csv.php:2442 -#: ../../enterprise/include/functions_reporting_csv.php:2444 -#: ../../enterprise/include/functions_reporting_csv.php:2464 -#: ../../enterprise/include/functions_reporting_csv.php:2466 -#: ../../enterprise/include/functions_reporting_csv.php:2505 -#: ../../enterprise/include/functions_reporting_csv.php:2507 -#: ../../enterprise/include/functions_reporting_csv.php:2559 -#: ../../enterprise/include/functions_reporting_csv.php:2561 -#: ../../enterprise/include/functions_reporting_csv.php:2588 -#: ../../enterprise/include/functions_reporting_csv.php:2590 -#: ../../enterprise/include/functions_reporting_csv.php:2664 -#: ../../enterprise/include/functions_reporting_csv.php:2666 -#: ../../enterprise/include/functions_reporting_csv.php:2715 -#: ../../enterprise/include/functions_reporting_csv.php:2717 -#: ../../enterprise/include/functions_reporting_csv.php:2763 -#: ../../enterprise/include/functions_reporting_csv.php:2769 -#: ../../enterprise/include/functions_reporting_csv.php:2841 -#: ../../enterprise/include/functions_reporting_csv.php:2843 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:796 +#: ../../enterprise/include/functions_reporting_csv.php:2273 +#: ../../enterprise/include/functions_reporting_csv.php:2326 +#: ../../enterprise/include/functions_reporting_csv.php:2328 +#: ../../enterprise/include/functions_reporting_csv.php:2357 +#: ../../enterprise/include/functions_reporting_csv.php:2359 +#: ../../enterprise/include/functions_reporting_csv.php:2393 +#: ../../enterprise/include/functions_reporting_csv.php:2395 +#: ../../enterprise/include/functions_reporting_csv.php:2446 +#: ../../enterprise/include/functions_reporting_csv.php:2448 +#: ../../enterprise/include/functions_reporting_csv.php:2468 +#: ../../enterprise/include/functions_reporting_csv.php:2470 +#: ../../enterprise/include/functions_reporting_csv.php:2509 +#: ../../enterprise/include/functions_reporting_csv.php:2511 +#: ../../enterprise/include/functions_reporting_csv.php:2563 +#: ../../enterprise/include/functions_reporting_csv.php:2565 +#: ../../enterprise/include/functions_reporting_csv.php:2592 +#: ../../enterprise/include/functions_reporting_csv.php:2594 +#: ../../enterprise/include/functions_reporting_csv.php:2668 +#: ../../enterprise/include/functions_reporting_csv.php:2670 +#: ../../enterprise/include/functions_reporting_csv.php:2719 +#: ../../enterprise/include/functions_reporting_csv.php:2721 +#: ../../enterprise/include/functions_reporting_csv.php:2767 +#: ../../enterprise/include/functions_reporting_csv.php:2773 +#: ../../enterprise/include/functions_reporting_csv.php:2845 +#: ../../enterprise/include/functions_reporting_csv.php:2847 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:798 #: ../../enterprise/include/class/ManageBackups.class.php:162 #: ../../enterprise/include/functions_services.php:1604 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:812 #: ../../enterprise/include/functions_ipam.php:1374 -#: ../../enterprise/include/functions_ipam.php:1988 +#: ../../enterprise/include/functions_ipam.php:1996 #: ../../enterprise/operation/agentes/policy_view.php:68 -#: ../../enterprise/operation/agentes/transactional_map.php:207 #: ../../enterprise/operation/agentes/tag_view.php:600 #: ../../enterprise/operation/agentes/ver_agente.php:60 #: ../../enterprise/operation/agentes/collection_view.php:77 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:364 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:490 #: ../../enterprise/operation/services/services.service.php:119 #: ../../enterprise/operation/services/massive/services.create.php:671 #: ../../enterprise/operation/services/services.list.php:500 @@ -687,8 +706,8 @@ msgstr "グループ" #: ../../enterprise/tools/ipam/ipam_list.php:606 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411 #: ../../enterprise/tools/ipam/ipam_vlan_network.php:40 -#: ../../enterprise/tools/ipam/ipam_excel.php:132 -#: ../../enterprise/tools/ipam/ipam_excel.php:201 +#: ../../enterprise/tools/ipam/ipam_excel.php:138 +#: ../../enterprise/tools/ipam/ipam_excel.php:209 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:345 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:681 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:84 @@ -697,20 +716,24 @@ msgstr "グループ" #: ../../extensions/files_repo/files_repo_list.php:56 #: ../../godmode/modules/manage_network_templates_form.php:172 #: ../../godmode/modules/manage_network_templates_form.php:234 -#: ../../godmode/modules/manage_network_components_form_common.php:335 -#: ../../godmode/modules/manage_network_components.php:751 -#: ../../godmode/modules/manage_network_components_form_wizard.php:451 +#: ../../godmode/modules/manage_inventory_modules.php:279 +#: ../../godmode/modules/manage_network_components_form_common.php:346 +#: ../../godmode/modules/manage_network_components.php:754 +#: ../../godmode/modules/manage_network_components_form_wizard.php:457 +#: ../../godmode/modules/manage_inventory_modules_form.php:105 #: ../../godmode/modules/module_list.php:63 -#: ../../godmode/modules/manage_network_templates.php:247 -#: ../../godmode/groups/configure_group.php:242 ../../godmode/groups/group_list.php:850 -#: ../../godmode/users/user_list.php:485 ../../godmode/agentes/agent_template.php:237 +#: ../../godmode/modules/manage_network_templates.php:249 +#: ../../godmode/groups/configure_group.php:242 +#: ../../godmode/groups/group_list.php:855 ../../godmode/users/user_list.php:545 +#: ../../godmode/agentes/agent_template.php:238 +#: ../../godmode/agentes/inventory_manager.php:222 #: ../../godmode/agentes/modificar_agente.php:652 -#: ../../godmode/agentes/planned_downtime.list.php:620 +#: ../../godmode/agentes/planned_downtime.list.php:657 #: ../../godmode/agentes/planned_downtime.editor.php:846 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 #: ../../godmode/agentes/agent_manager.php:479 -#: ../../godmode/agentes/module_manager_editor_common.php:1081 -#: ../../godmode/agentes/module_manager.php:869 +#: ../../godmode/agentes/module_manager_editor_common.php:1095 +#: ../../godmode/agentes/module_manager.php:905 #: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:766 #: ../../godmode/snmpconsole/snmp_alert.php:1269 @@ -720,7 +743,7 @@ msgstr "グループ" #: ../../godmode/massive/massive_edit_agents.php:774 #: ../../godmode/massive/massive_edit_modules.php:743 #: ../../godmode/alerts/configure_alert_command.php:283 -#: ../../godmode/alerts/alert_commands.php:744 +#: ../../godmode/alerts/alert_commands.php:745 #: ../../godmode/alerts/alert_templates.php:46 #: ../../godmode/alerts/configure_alert_template.php:1106 #: ../../godmode/setup/os.builder.php:37 ../../godmode/setup/os.list.php:70 @@ -729,45 +752,50 @@ msgstr "グループ" #: ../../godmode/reporting/graphs.php:311 #: ../../godmode/reporting/reporting_builder.item_editor.php:74 #: ../../godmode/reporting/reporting_builder.item_editor.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1152 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1160 #: ../../godmode/reporting/reporting_builder.main.php:215 #: ../../godmode/reporting/reporting_builder.php:909 #: ../../godmode/reporting/graph_builder.main.php:180 #: ../../godmode/events/event_responses.editor.php:111 #: ../../godmode/events/event_responses.list.php:51 -#: ../../godmode/servers/modificar_server.php:66 ../../godmode/servers/plugin.php:358 -#: ../../godmode/servers/plugin.php:485 ../../godmode/tag/tag.php:228 -#: ../../godmode/tag/tag.php:278 ../../godmode/tag/edit_tag.php:219 -#: ../../mobile/operation/tactical.php:352 -#: ../../include/functions_reporting_html.php:155 +#: ../../godmode/servers/modificar_server.php:66 +#: ../../godmode/servers/plugin.php:358 ../../godmode/servers/plugin.php:478 +#: ../../godmode/tag/tag.php:228 ../../godmode/tag/tag.php:278 +#: ../../godmode/tag/edit_tag.php:219 ../../mobile/operation/tactical.php:352 +#: ../../include/functions_reporting_html.php:156 #: ../../include/functions_reporting_html.php:1573 #: ../../include/functions_reporting_html.php:1716 -#: ../../include/functions_reporting_html.php:3550 -#: ../../include/functions_reporting_html.php:3601 -#: ../../include/functions_reporting_html.php:5365 -#: ../../include/functions_reporting_html.php:6286 -#: ../../include/ajax/events_extended.php:91 ../../include/ajax/heatmap.ajax.php:232 -#: ../../include/ajax/heatmap.ajax.php:271 ../../include/ajax/heatmap.ajax.php:331 -#: ../../include/ajax/module.php:979 ../../include/functions_treeview.php:127 -#: ../../include/functions_treeview.php:652 ../../include/class/ConfigPEN.class.php:448 +#: ../../include/functions_reporting_html.php:3567 +#: ../../include/functions_reporting_html.php:3618 +#: ../../include/functions_reporting_html.php:5404 +#: ../../include/functions_reporting_html.php:6321 +#: ../../include/ajax/events_extended.php:91 +#: ../../include/ajax/heatmap.ajax.php:238 +#: ../../include/ajax/heatmap.ajax.php:277 +#: ../../include/ajax/heatmap.ajax.php:337 ../../include/ajax/module.php:992 +#: ../../include/ajax/events.php:2532 ../../include/functions_treeview.php:127 +#: ../../include/functions_treeview.php:652 +#: ../../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:893 -#: ../../include/class/ModuleTemplates.class.php:1062 -#: ../../include/class/ModuleTemplates.class.php:1210 -#: ../../include/class/AgentWizard.class.php:1198 -#: ../../include/class/AgentWizard.class.php:4061 +#: ../../include/class/ModuleTemplates.class.php:894 +#: ../../include/class/ModuleTemplates.class.php:1063 +#: ../../include/class/ModuleTemplates.class.php:1211 +#: ../../include/class/SatelliteCollection.class.php:130 +#: ../../include/class/AgentWizard.class.php:1281 +#: ../../include/class/AgentWizard.class.php:4184 #: ../../include/functions_container.php:147 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:812 #: ../../include/functions_snmp_browser.php:570 -#: ../../include/functions_snmp_browser.php:1690 ../../include/functions_events.php:3512 +#: ../../include/functions_snmp_browser.php:1690 #: ../../operation/search_users.php:48 ../../operation/search_agents.php:43 #: ../../operation/search_agents.php:49 ../../operation/agentes/gis_view.php:222 #: ../../operation/agentes/estado_agente.php:742 -#: ../../operation/agentes/pandora_networkmap.editor.php:321 +#: ../../operation/agentes/pandora_networkmap.editor.php:339 #: ../../operation/agentes/custom_fields.php:69 -#: ../../operation/agentes/pandora_networkmap.view.php:109 +#: ../../operation/agentes/pandora_networkmap.view.php:146 #: ../../operation/agentes/estado_generalagente.php:237 #: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 #: ../../operation/incidents/configure_integriaims_incident.php:342 @@ -778,69 +806,75 @@ msgstr "グループ" #: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59 #: ../../operation/search_graphs.php:31 #: ../../operation/reporting/custom_reporting.php:35 -#: ../../operation/reporting/graph_viewer.php:525 ../../operation/search_policies.php:36 +#: ../../operation/reporting/graph_viewer.php:522 +#: ../../operation/search_policies.php:36 msgid "Description" msgstr "説明" -#: ../../views/calendar/list.php:96 ../../views/dashboard/header.php:80 +#: ../../views/calendar/list.php:96 ../../views/cluster/list.php:64 +#: ../../views/dashboard/header.php:80 #: ../../enterprise/views/ncm/snippets/list.php:71 #: ../../enterprise/views/ncm/agent/details.php:92 #: ../../enterprise/views/ncm/templates/list.php:77 #: ../../enterprise/views/ncm/firmwares/list.php:77 #: ../../enterprise/views/ncm/models/list.php:73 #: ../../enterprise/views/ncm/vendors/list.php:71 -#: ../../enterprise/views/cluster/list.php:64 #: ../../enterprise/views/ipam/sites/list.php:49 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266 #: ../../enterprise/extensions/vmware/vmware_view.php:1333 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 #: ../../enterprise/include/class/DeploymentCenter.class.php:764 -#: ../../enterprise/include/class/AgentRepository.class.php:675 +#: ../../enterprise/include/class/AgentRepository.class.php:690 #: ../../enterprise/include/class/Omnishell.class.php:402 #: ../../enterprise/include/class/LogSource.class.php:630 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2341 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2950 -#: ../../godmode/menu.php:555 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2343 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2952 +#: ../../godmode/menu.php:558 #: ../../godmode/reporting/reporting_builder.list_items.php:427 -#: ../../include/ajax/events.php:2251 ../../include/class/ConfigPEN.class.php:601 -#: ../../include/class/CredentialStore.class.php:807 +#: ../../include/ajax/events.php:2223 ../../include/class/ConfigPEN.class.php:601 +#: ../../include/class/CredentialStore.class.php:845 #: ../../include/class/ExternalTools.class.php:383 #: ../../include/functions_events.php:310 +#: ../../operation/agentes/pandora_networkmap.view.php:2353 msgid "Options" msgstr "オプション" -#: ../../views/calendar/list.php:119 ../../enterprise/views/ncm/snippets/list.php:102 +#: ../../views/calendar/list.php:119 ../../views/cluster/list.php:97 +#: ../../enterprise/views/ncm/snippets/list.php:102 #: ../../enterprise/views/ncm/templates/list.php:108 #: ../../enterprise/views/ncm/devices/list.php:155 #: ../../enterprise/views/ncm/firmwares/list.php:108 #: ../../enterprise/views/ncm/models/list.php:96 #: ../../enterprise/views/ncm/vendors/list.php:94 -#: ../../enterprise/views/cluster/list.php:96 #: ../../enterprise/views/ipam/sites/list.php:73 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:874 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:917 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:755 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3255 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3306 #: ../../enterprise/include/class/LogSource.class.php:656 #: ../../enterprise/include/lib/Metaconsole/Node.php:571 #: ../../enterprise/include/functions_events.php:50 -#: ../../enterprise/include/functions_ipam.php:1663 +#: ../../enterprise/include/functions_ipam.php:1671 #: ../../godmode/update_manager/update_manager.history.php:67 #: ../../godmode/snmpconsole/snmp_alert.php:1161 -#: ../../godmode/events/event_edit_filter.php:366 ../../mobile/operation/agents.php:253 -#: ../../mobile/operation/modules.php:318 ../../mobile/operation/alerts.php:241 -#: ../../mobile/operation/events.php:992 ../../include/ajax/module.php:292 -#: ../../include/class/ConfigPEN.class.php:627 -#: ../../include/class/CredentialStore.class.php:845 -#: ../../operation/snmpconsole/snmp_view.php:600 ../../operation/events/events.php:1646 +#: ../../godmode/events/event_edit_filter.php:388 +#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 +#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 +#: ../../include/ajax/module.php:299 ../../include/class/ConfigPEN.class.php:627 +#: ../../include/class/CredentialStore.class.php:883 +#: ../../include/class/SnmpConsole.class.php:436 +#: ../../operation/events/events.php:1740 msgid "Free search" msgstr "検索語" -#: ../../views/calendar/list.php:144 ../../views/calendar/special_days_edit.php:163 -#: ../../views/calendar/special_days_edit.php:206 ../../views/calendar/edit.php:126 -#: ../../views/calendar/special_days.php:323 ../../views/calendar/special_days.php:406 -#: ../../views/calendar/special_days.php:481 ../../views/calendar/special_days.php:505 +#: ../../views/calendar/list.php:144 +#: ../../views/calendar/special_days_edit.php:163 +#: ../../views/calendar/special_days_edit.php:206 +#: ../../views/calendar/edit.php:126 ../../views/calendar/special_days.php:323 +#: ../../views/calendar/special_days.php:406 +#: ../../views/calendar/special_days.php:481 +#: ../../views/calendar/special_days.php:505 #: ../../enterprise/views/ncm/snippets/list.php:127 #: ../../enterprise/views/ncm/snippets/edit.php:106 #: ../../enterprise/views/ncm/templates/list.php:133 @@ -868,10 +902,8 @@ msgstr "検索語" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300 #: ../../enterprise/meta/include/functions_autoprovision.php:588 #: ../../enterprise/meta/include/functions_autoprovision.php:789 -#: ../../enterprise/godmode/modules/configure_local_component.php:680 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:343 -#: ../../enterprise/godmode/modules/local_components.php:716 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145 +#: ../../enterprise/godmode/modules/configure_local_component.php:692 +#: ../../enterprise/godmode/modules/local_components.php:719 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:791 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:840 #: ../../enterprise/godmode/agentes/collections.agents.php:38 @@ -882,13 +914,13 @@ msgstr "検索語" #: ../../enterprise/godmode/agentes/collections.data.php:240 #: ../../enterprise/godmode/agentes/collections.data.php:296 #: ../../enterprise/godmode/agentes/collections.editor.php:169 -#: ../../enterprise/godmode/agentes/collections.php:466 +#: ../../enterprise/godmode/agentes/collections.php:531 #: ../../enterprise/godmode/policies/configure_policy.php:144 -#: ../../enterprise/godmode/policies/policy_modules.php:432 +#: ../../enterprise/godmode/policies/policy_modules.php:433 #: ../../enterprise/godmode/policies/policies.php:649 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:89 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:430 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:41 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:108 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 #: ../../enterprise/godmode/services/services.service.php:973 #: ../../enterprise/godmode/setup/edit_skin.php:299 @@ -897,8 +929,7 @@ msgstr "検索語" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599 #: ../../enterprise/godmode/servers/manage_export.php:130 #: ../../enterprise/godmode/servers/manage_export.php:169 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3139 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:405 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3141 #: ../../enterprise/tools/ipam/ipam_list.php:772 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:148 @@ -907,18 +938,21 @@ msgstr "検索語" #: ../../godmode/modules/manage_nc_groups_form.php:93 #: ../../godmode/modules/manage_network_templates_form.php:180 #: ../../godmode/modules/manage_nc_groups.php:318 -#: ../../godmode/modules/manage_network_components_form.php:376 -#: ../../godmode/modules/manage_network_components.php:934 -#: ../../godmode/modules/manage_network_templates.php:309 +#: ../../godmode/modules/manage_inventory_modules.php:349 +#: ../../godmode/modules/manage_network_components_form.php:379 +#: ../../godmode/modules/manage_network_components.php:937 +#: ../../godmode/modules/manage_inventory_modules_form.php:171 +#: ../../godmode/modules/manage_network_templates.php:311 #: ../../godmode/groups/configure_group.php:279 #: ../../godmode/groups/configure_modu_group.php:86 -#: ../../godmode/users/profile_list.php:463 ../../godmode/users/configure_user.php:1508 -#: ../../godmode/agentes/module_manager_editor.php:788 -#: ../../godmode/agentes/planned_downtime.list.php:591 -#: ../../godmode/agentes/planned_downtime.list.php:883 -#: ../../godmode/agentes/agent_manager.php:981 -#: ../../godmode/agentes/configure_field.php:141 -#: ../../godmode/agentes/module_manager.php:229 +#: ../../godmode/users/profile_list.php:463 +#: ../../godmode/users/configure_user.php:1723 +#: ../../godmode/agentes/module_manager_editor.php:790 +#: ../../godmode/agentes/planned_downtime.list.php:628 +#: ../../godmode/agentes/planned_downtime.list.php:920 +#: ../../godmode/agentes/agent_manager.php:1010 +#: ../../godmode/agentes/configure_field.php:155 +#: ../../godmode/agentes/module_manager.php:219 #: ../../godmode/netflow/nf_edit_form.php:272 #: ../../godmode/snmpconsole/snmp_alert.php:1142 #: ../../godmode/snmpconsole/snmp_alert.php:1514 @@ -927,25 +961,27 @@ msgstr "検索語" #: ../../godmode/alerts/configure_alert_command.php:387 #: ../../godmode/alerts/alert_actions.php:471 #: ../../godmode/alerts/alert_list.list.php:975 -#: ../../godmode/alerts/alert_commands.php:834 +#: ../../godmode/alerts/alert_commands.php:832 #: ../../godmode/alerts/alert_templates.php:482 #: ../../godmode/alerts/configure_alert_action.php:402 -#: ../../godmode/alerts/alert_list.php:496 ../../godmode/setup/news.php:231 -#: ../../godmode/setup/gis.php:97 ../../godmode/setup/os.php:95 +#: ../../godmode/alerts/alert_list.php:521 ../../godmode/setup/news.php:231 +#: ../../godmode/setup/gis.php:98 ../../godmode/setup/os.php:95 #: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:127 #: ../../godmode/reporting/create_container.php:333 #: ../../godmode/reporting/map_builder.php:559 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2282 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2285 #: ../../godmode/reporting/graph_builder.main.php:294 #: ../../godmode/events/event_responses.editor.php:219 -#: ../../godmode/events/event_edit_filter.php:681 ../../godmode/servers/plugin.php:596 -#: ../../godmode/tag/edit_tag.php:281 ../../godmode/category/edit_category.php:205 +#: ../../godmode/events/event_edit_filter.php:781 +#: ../../godmode/servers/plugin.php:575 ../../godmode/tag/edit_tag.php:281 +#: ../../godmode/category/edit_category.php:205 #: ../../include/functions_visual_map_editor.php:884 #: ../../include/class/ManageNetScanScripts.class.php:763 -#: ../../include/class/ModuleTemplates.class.php:960 -#: ../../include/class/ModuleTemplates.class.php:1007 +#: ../../include/class/ModuleTemplates.class.php:961 +#: ../../include/class/ModuleTemplates.class.php:1008 #: ../../include/functions_filemanager.php:813 -#: ../../include/functions_filemanager.php:874 ../../operation/gis_maps/gis_map.php:207 +#: ../../include/functions_filemanager.php:874 +#: ../../operation/gis_maps/gis_map.php:207 #: ../../operation/incidents/configure_integriaims_incident.php:380 #: ../../operation/incidents/list_integriaims_incidents.php:573 msgid "Create" @@ -960,7 +996,7 @@ msgstr "作成" #: ../../enterprise/meta/include/functions_wizard_meta.php:1534 #: ../../enterprise/meta/include/functions_wizard_meta.php:1627 #: ../../enterprise/meta/include/functions_wizard_meta.php:1752 -#: ../../enterprise/meta/agentsearch.php:141 +#: ../../enterprise/meta/agentsearch.php:142 #: ../../enterprise/godmode/policies/policy_alerts.php:46 #: ../../enterprise/godmode/policies/policies.php:523 #: ../../enterprise/godmode/alerts/alert_inventory.php:78 @@ -969,13 +1005,15 @@ msgstr "作成" #: ../../enterprise/include/functions_policies.php:3764 #: ../../enterprise/operation/agentes/tag_view.php:608 #: ../../enterprise/operation/services/massive/services.create.php:901 -#: ../../godmode/groups/configure_group.php:230 ../../godmode/groups/group_list.php:846 -#: ../../godmode/agentes/configurar_agente.php:425 -#: ../../godmode/agentes/modificar_agente.php:824 -#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:259 +#: ../../godmode/groups/configure_group.php:230 +#: ../../godmode/groups/group_list.php:851 +#: ../../godmode/agentes/configurar_agente.php:433 +#: ../../godmode/agentes/modificar_agente.php:820 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:262 #: ../../godmode/massive/massive_copy_modules.php:216 #: ../../godmode/alerts/configure_alert_command.php:60 -#: ../../godmode/alerts/alert_actions.php:74 ../../godmode/alerts/alert_commands.php:580 +#: ../../godmode/alerts/alert_actions.php:74 +#: ../../godmode/alerts/alert_commands.php:581 #: ../../godmode/alerts/alert_templates.php:131 #: ../../godmode/alerts/alert_templates.php:183 #: ../../godmode/alerts/alert_templates.php:206 @@ -985,18 +1023,22 @@ msgstr "作成" #: ../../godmode/alerts/configure_alert_template.php:99 #: ../../godmode/alerts/configure_alert_template.php:123 #: ../../godmode/alerts/configure_alert_template.php:155 -#: ../../godmode/alerts/alert_list.php:494 ../../godmode/alerts/alert_list.php:496 +#: ../../godmode/alerts/alert_list.php:519 +#: ../../godmode/alerts/alert_list.php:521 #: ../../mobile/include/functions_web.php:26 ../../mobile/operation/agents.php:98 #: ../../mobile/operation/agents.php:407 ../../mobile/operation/home.php:74 #: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194 -#: ../../include/functions_reporting_html.php:2493 -#: ../../include/functions_reporting_html.php:5545 -#: ../../include/functions_treeview.php:405 ../../include/functions_reports.php:843 -#: ../../include/functions_reports.php:847 ../../include/functions_reports.php:853 +#: ../../include/functions_reporting_html.php:2504 +#: ../../include/functions_reporting_html.php:5584 +#: ../../include/functions_treeview.php:405 +#: ../../include/functions_reports.php:843 +#: ../../include/functions_reports.php:847 +#: ../../include/functions_reports.php:853 #: ../../include/functions_reports.php:859 -#: ../../include/class/AgentsAlerts.class.php:542 ../../operation/search_agents.php:57 -#: ../../operation/search_results.php:106 ../../operation/agentes/estado_agente.php:766 -#: ../../operation/agentes/ver_agente.php:1427 +#: ../../include/class/AgentsAlerts.class.php:542 +#: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 +#: ../../operation/agentes/estado_agente.php:766 +#: ../../operation/agentes/ver_agente.php:1445 msgid "Alerts" msgstr "アラート" @@ -1007,141 +1049,150 @@ msgstr "特別日設定" #: ../../views/calendar/special_days_edit.php:80 #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_inventory.php:882 -#: ../../enterprise/include/functions_reporting_pdf.php:716 -#: ../../enterprise/include/functions_reporting_csv.php:822 -#: ../../enterprise/include/functions_reporting_csv.php:878 -#: ../../enterprise/include/functions_reporting_csv.php:923 -#: ../../enterprise/include/functions_reporting_csv.php:2564 +#: ../../enterprise/include/functions_reporting_pdf.php:718 +#: ../../enterprise/include/functions_reporting_csv.php:826 +#: ../../enterprise/include/functions_reporting_csv.php:882 +#: ../../enterprise/include/functions_reporting_csv.php:927 +#: ../../enterprise/include/functions_reporting_csv.php:2568 #: ../../enterprise/include/class/ManageBackups.class.php:163 -#: ../../enterprise/include/functions_reporting.php:2144 -#: ../../enterprise/include/functions_reporting.php:2181 -#: ../../enterprise/include/functions_reporting.php:2216 -#: ../../enterprise/include/functions_reporting.php:2234 -#: ../../enterprise/operation/agentes/agent_inventory.php:127 -#: ../../enterprise/operation/inventory/inventory.php:432 +#: ../../enterprise/include/functions_reporting.php:2145 +#: ../../enterprise/include/functions_reporting.php:2182 +#: ../../enterprise/include/functions_reporting.php:2217 +#: ../../enterprise/include/functions_reporting.php:2235 #: ../../extensions/insert_data.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2169 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2172 #: ../../mobile/operation/tactical.php:350 #: ../../include/functions_reporting_html.php:1929 -#: ../../include/functions_reporting_html.php:2743 -#: ../../include/functions_reporting_html.php:2752 -#: ../../include/functions_reporting_html.php:2757 -#: ../../include/functions_reporting_html.php:2766 -#: ../../include/functions_reporting_html.php:2771 -#: ../../include/functions_reporting_html.php:2778 -#: ../../include/functions_reporting_html.php:2827 -#: ../../include/functions_reporting_html.php:2900 -#: ../../include/functions_reporting_html.php:5887 ../../include/functions.php:3053 -#: ../../include/class/AuditLog.class.php:110 ../../include/functions_reporting.php:4348 -#: ../../include/functions_reporting.php:4389 +#: ../../include/functions_reporting_html.php:2754 +#: ../../include/functions_reporting_html.php:2763 +#: ../../include/functions_reporting_html.php:2768 +#: ../../include/functions_reporting_html.php:2777 +#: ../../include/functions_reporting_html.php:2782 +#: ../../include/functions_reporting_html.php:2789 +#: ../../include/functions_reporting_html.php:2838 +#: ../../include/functions_reporting_html.php:2911 +#: ../../include/functions_reporting_html.php:5926 +#: ../../include/functions.php:3099 ../../include/functions_inventory.php:882 +#: ../../include/class/AuditLog.class.php:109 +#: ../../include/functions_reporting.php:4624 +#: ../../include/functions_reporting.php:4665 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:623 +#: ../../operation/agentes/agent_inventory.php:127 #: ../../operation/incidents/list_integriaims_incidents.php:371 -#: ../../operation/reporting/graph_viewer.php:348 ../../general/logon_ok.php:251 +#: ../../operation/inventory/inventory.php:435 +#: ../../operation/reporting/graph_viewer.php:320 ../../general/logon_ok.php:251 msgid "Date" msgstr "日付" #: ../../views/calendar/special_days_edit.php:116 -#: ../../views/calendar/special_days.php:92 ../../views/calendar/special_days.php:358 +#: ../../views/calendar/special_days.php:92 +#: ../../views/calendar/special_days.php:358 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1851 -#: ../../enterprise/include/functions_reporting.php:1732 -#: ../../enterprise/include/functions_reporting.php:2463 -#: ../../enterprise/include/functions_reporting.php:2781 -#: ../../enterprise/include/functions_reporting.php:3406 -#: ../../enterprise/include/functions_reporting.php:4382 -#: ../../godmode/alerts/alert_templates.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1463 -#: ../../include/functions_html.php:2270 -msgid "Monday" -msgstr "月曜日" - -#: ../../views/calendar/special_days_edit.php:117 -#: ../../views/calendar/special_days.php:93 ../../views/calendar/special_days.php:362 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1859 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1871 #: ../../enterprise/include/functions_reporting.php:1733 #: ../../enterprise/include/functions_reporting.php:2464 #: ../../enterprise/include/functions_reporting.php:2782 #: ../../enterprise/include/functions_reporting.php:3407 #: ../../enterprise/include/functions_reporting.php:4383 -#: ../../godmode/alerts/alert_templates.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1471 -#: ../../include/functions_html.php:2271 -msgid "Tuesday" -msgstr "火曜日" +#: ../../godmode/alerts/alert_templates.php:64 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1502 +#: ../../include/functions_html.php:2263 +msgid "Monday" +msgstr "月曜日" -#: ../../views/calendar/special_days_edit.php:118 -#: ../../views/calendar/special_days.php:94 ../../views/calendar/special_days.php:366 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1867 +#: ../../views/calendar/special_days_edit.php:117 +#: ../../views/calendar/special_days.php:93 +#: ../../views/calendar/special_days.php:362 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1879 #: ../../enterprise/include/functions_reporting.php:1734 #: ../../enterprise/include/functions_reporting.php:2465 #: ../../enterprise/include/functions_reporting.php:2783 #: ../../enterprise/include/functions_reporting.php:3408 #: ../../enterprise/include/functions_reporting.php:4384 -#: ../../godmode/alerts/alert_templates.php:66 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1479 -#: ../../include/functions_html.php:2272 -msgid "Wednesday" -msgstr "水曜日" +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1510 +#: ../../include/functions_html.php:2264 +msgid "Tuesday" +msgstr "火曜日" -#: ../../views/calendar/special_days_edit.php:119 -#: ../../views/calendar/special_days.php:95 ../../views/calendar/special_days.php:370 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1875 +#: ../../views/calendar/special_days_edit.php:118 +#: ../../views/calendar/special_days.php:94 +#: ../../views/calendar/special_days.php:366 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1887 #: ../../enterprise/include/functions_reporting.php:1735 #: ../../enterprise/include/functions_reporting.php:2466 #: ../../enterprise/include/functions_reporting.php:2784 #: ../../enterprise/include/functions_reporting.php:3409 #: ../../enterprise/include/functions_reporting.php:4385 -#: ../../godmode/alerts/alert_templates.php:67 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1487 -#: ../../include/functions_html.php:2273 -msgid "Thursday" -msgstr "木曜日" +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1518 +#: ../../include/functions_html.php:2265 +msgid "Wednesday" +msgstr "水曜日" -#: ../../views/calendar/special_days_edit.php:120 -#: ../../views/calendar/special_days.php:96 ../../views/calendar/special_days.php:374 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1883 +#: ../../views/calendar/special_days_edit.php:119 +#: ../../views/calendar/special_days.php:95 +#: ../../views/calendar/special_days.php:370 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1895 #: ../../enterprise/include/functions_reporting.php:1736 #: ../../enterprise/include/functions_reporting.php:2467 #: ../../enterprise/include/functions_reporting.php:2785 #: ../../enterprise/include/functions_reporting.php:3410 #: ../../enterprise/include/functions_reporting.php:4386 -#: ../../godmode/alerts/alert_templates.php:68 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1495 -#: ../../include/functions_html.php:2274 -msgid "Friday" -msgstr "金曜日" +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1526 +#: ../../include/functions_html.php:2266 +msgid "Thursday" +msgstr "木曜日" -#: ../../views/calendar/special_days_edit.php:121 -#: ../../views/calendar/special_days.php:97 ../../views/calendar/special_days.php:378 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1891 +#: ../../views/calendar/special_days_edit.php:120 +#: ../../views/calendar/special_days.php:96 +#: ../../views/calendar/special_days.php:374 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1903 #: ../../enterprise/include/functions_reporting.php:1737 #: ../../enterprise/include/functions_reporting.php:2468 #: ../../enterprise/include/functions_reporting.php:2786 #: ../../enterprise/include/functions_reporting.php:3411 #: ../../enterprise/include/functions_reporting.php:4387 -#: ../../godmode/alerts/alert_templates.php:69 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1503 -#: ../../include/functions_html.php:2275 -msgid "Saturday" -msgstr "土曜日" +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1534 +#: ../../include/functions_html.php:2267 +msgid "Friday" +msgstr "金曜日" -#: ../../views/calendar/special_days_edit.php:122 -#: ../../views/calendar/special_days.php:98 ../../views/calendar/special_days.php:382 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1899 +#: ../../views/calendar/special_days_edit.php:121 +#: ../../views/calendar/special_days.php:97 +#: ../../views/calendar/special_days.php:378 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1911 #: ../../enterprise/include/functions_reporting.php:1738 #: ../../enterprise/include/functions_reporting.php:2469 #: ../../enterprise/include/functions_reporting.php:2787 #: ../../enterprise/include/functions_reporting.php:3412 #: ../../enterprise/include/functions_reporting.php:4388 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1542 +#: ../../include/functions_html.php:2268 +msgid "Saturday" +msgstr "土曜日" + +#: ../../views/calendar/special_days_edit.php:122 +#: ../../views/calendar/special_days.php:98 +#: ../../views/calendar/special_days.php:382 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1919 +#: ../../enterprise/include/functions_reporting.php:1739 +#: ../../enterprise/include/functions_reporting.php:2470 +#: ../../enterprise/include/functions_reporting.php:2788 +#: ../../enterprise/include/functions_reporting.php:3413 +#: ../../enterprise/include/functions_reporting.php:4389 #: ../../godmode/alerts/alert_templates.php:70 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1511 -#: ../../include/functions_html.php:2269 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1550 +#: ../../include/functions_html.php:2262 msgid "Sunday" msgstr "日曜日" @@ -1155,7 +1206,8 @@ msgstr "休日" msgid "Same day of the week" msgstr "同一の曜日" -#: ../../views/calendar/special_days_edit.php:163 ../../views/calendar/edit.php:126 +#: ../../views/calendar/special_days_edit.php:163 +#: ../../views/calendar/edit.php:126 #: ../../enterprise/views/ncm/snippets/edit.php:106 #: ../../enterprise/views/ncm/templates/edit.php:315 #: ../../enterprise/views/ncm/firmwares/edit.php:169 @@ -1165,9 +1217,9 @@ msgstr "同一の曜日" #: ../../enterprise/meta/advanced/metasetup.visual.php:1158 #: ../../enterprise/meta/advanced/metasetup.translate_string.php:231 #: ../../enterprise/meta/advanced/metasetup.relations.php:278 -#: ../../enterprise/meta/advanced/metasetup.password.php:157 -#: ../../enterprise/meta/advanced/metasetup.mail.php:133 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:720 +#: ../../enterprise/meta/advanced/metasetup.password.php:181 +#: ../../enterprise/meta/advanced/metasetup.mail.php:157 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:763 #: ../../enterprise/meta/advanced/links.php:139 #: ../../enterprise/meta/advanced/collections.data.php:157 #: ../../enterprise/meta/advanced/collections.data.php:232 @@ -1178,24 +1230,20 @@ msgstr "同一の曜日" #: ../../enterprise/meta/advanced/collections.editor.php:223 #: ../../enterprise/meta/advanced/cron_main.php:469 #: ../../enterprise/meta/advanced/metasetup.setup.php:401 -#: ../../enterprise/meta/advanced/metasetup.performance.php:188 +#: ../../enterprise/meta/advanced/metasetup.performance.php:159 #: ../../enterprise/meta/event/custom_events.php:213 #: ../../enterprise/meta/include/functions_autoprovision.php:590 #: ../../enterprise/meta/include/functions_autoprovision.php:791 #: ../../enterprise/extensions/translate_string.php:364 #: ../../enterprise/extensions/vmware/vmware_view.php:1257 #: ../../enterprise/extensions/vmware/vmware_view.php:1762 -#: ../../enterprise/godmode/modules/configure_local_component.php:677 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:313 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143 +#: ../../enterprise/godmode/modules/configure_local_component.php:689 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:475 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:793 #: ../../enterprise/godmode/agentes/collection_manager.php:153 #: ../../enterprise/godmode/agentes/collection_manager.php:154 #: ../../enterprise/godmode/agentes/collection_manager.php:268 #: ../../enterprise/godmode/agentes/collection_manager.php:269 -#: ../../enterprise/godmode/agentes/inventory_manager.php:183 -#: ../../enterprise/godmode/agentes/inventory_manager.php:253 #: ../../enterprise/godmode/agentes/collections.data.php:107 #: ../../enterprise/godmode/agentes/collections.data.php:264 #: ../../enterprise/godmode/agentes/collections.data.php:342 @@ -1206,23 +1254,27 @@ msgstr "同一の曜日" #: ../../enterprise/godmode/agentes/plugins_manager.php:194 #: ../../enterprise/godmode/agentes/plugins_manager.php:251 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257 +#: ../../enterprise/godmode/agentes/collections.php:72 +#: ../../enterprise/godmode/agentes/collections.php:73 +#: ../../enterprise/godmode/policies/policy_plugins.php:187 +#: ../../enterprise/godmode/policies/policy_plugins.php:228 #: ../../enterprise/godmode/policies/configure_policy.php:141 -#: ../../enterprise/godmode/policies/policy_modules.php:428 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:373 +#: ../../enterprise/godmode/policies/policy_modules.php:429 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:375 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:261 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:338 #: ../../enterprise/godmode/policies/policy_collections.php:222 #: ../../enterprise/godmode/policies/policy_collections.php:294 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:86 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:410 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:105 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 #: ../../enterprise/godmode/services/services.service.php:980 -#: ../../enterprise/godmode/setup/setup_history.php:591 -#: ../../enterprise/godmode/setup/setup.php:354 -#: ../../enterprise/godmode/setup/setup.php:543 +#: ../../enterprise/godmode/setup/setup_history.php:669 +#: ../../enterprise/godmode/setup/setup.php:270 +#: ../../enterprise/godmode/setup/setup.php:478 #: ../../enterprise/godmode/setup/setup_module_library.php:62 #: ../../enterprise/godmode/setup/setup_metaconsole.php:245 #: ../../enterprise/godmode/setup/setup_log_collector.php:74 @@ -1231,15 +1283,15 @@ msgstr "同一の曜日" #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149 #: ../../enterprise/godmode/reporting/graph_template_editor.php:267 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187 -#: ../../enterprise/godmode/reporting/mysql_builder.php:143 -#: ../../enterprise/godmode/reporting/mysql_builder.php:155 -#: ../../enterprise/godmode/reporting/mysql_builder.php:164 -#: ../../enterprise/godmode/reporting/mysql_builder.php:242 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 +#: ../../enterprise/godmode/reporting/mysql_builder.php:144 +#: ../../enterprise/godmode/reporting/mysql_builder.php:156 +#: ../../enterprise/godmode/reporting/mysql_builder.php:165 +#: ../../enterprise/godmode/reporting/mysql_builder.php:244 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:177 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1197 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1261 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1385 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1451 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 #: ../../enterprise/godmode/servers/manage_export_form.php:136 #: ../../enterprise/include/ajax/log_viewer.ajax.php:99 @@ -1247,19 +1299,16 @@ msgstr "同一の曜日" #: ../../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:891 -#: ../../enterprise/include/class/AgentRepository.class.php:945 -#: ../../enterprise/include/class/Omnishell.class.php:646 +#: ../../enterprise/include/class/DatabaseHA.class.php:890 +#: ../../enterprise/include/class/AgentRepository.class.php:971 +#: ../../enterprise/include/class/Omnishell.class.php:648 #: ../../enterprise/include/class/LogSource.class.php:849 #: ../../enterprise/include/class/SAPView.class.php:325 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2284 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2286 #: ../../enterprise/operation/agentes/policy_view.php:208 #: ../../enterprise/operation/agentes/policy_view.php:209 #: ../../enterprise/operation/agentes/collection_view.php:117 #: ../../enterprise/operation/agentes/collection_view.php:118 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:264 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:532 #: ../../enterprise/tools/ipam/ipam_network.php:696 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:145 #: ../../enterprise/tools/ipam/ipam_massive.php:112 @@ -1267,21 +1316,25 @@ msgstr "同一の曜日" #: ../../extensions/files_repo/files_repo_form.php:99 #: ../../godmode/modules/manage_nc_groups_form.php:90 #: ../../godmode/modules/manage_network_templates_form.php:178 -#: ../../godmode/modules/manage_network_components_form.php:372 +#: ../../godmode/modules/manage_inventory_modules.php:319 +#: ../../godmode/modules/manage_network_components_form.php:375 +#: ../../godmode/modules/manage_inventory_modules_form.php:169 #: ../../godmode/groups/configure_group.php:276 #: ../../godmode/groups/configure_modu_group.php:83 #: ../../godmode/update_manager/update_manager.setup.php:382 -#: ../../godmode/users/configure_profile.php:408 -#: ../../godmode/users/configure_user.php:1515 -#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/users/configure_profile.php:409 +#: ../../godmode/users/configure_user.php:1730 +#: ../../godmode/agentes/agent_template.php:261 #: ../../godmode/agentes/status_monitor_custom_fields.php:206 -#: ../../godmode/agentes/module_manager_editor.php:770 -#: ../../godmode/agentes/agent_conf_gis.php:134 -#: ../../godmode/agentes/planned_downtime.list.php:771 -#: ../../godmode/agentes/planned_downtime.list.php:816 -#: ../../godmode/agentes/planned_downtime.editor.php:1171 -#: ../../godmode/agentes/agent_manager.php:972 -#: ../../godmode/agentes/configure_field.php:138 +#: ../../godmode/agentes/module_manager_editor.php:772 +#: ../../godmode/agentes/inventory_manager.php:183 +#: ../../godmode/agentes/inventory_manager.php:254 +#: ../../godmode/agentes/agent_conf_gis.php:135 +#: ../../godmode/agentes/planned_downtime.list.php:808 +#: ../../godmode/agentes/planned_downtime.list.php:853 +#: ../../godmode/agentes/planned_downtime.editor.php:1160 +#: ../../godmode/agentes/agent_manager.php:1001 +#: ../../godmode/agentes/configure_field.php:152 #: ../../godmode/netflow/nf_edit_form.php:269 #: ../../godmode/snmpconsole/snmp_alert.php:1140 #: ../../godmode/snmpconsole/snmp_alert.php:1364 @@ -1292,52 +1345,58 @@ msgstr "同一の曜日" #: ../../godmode/alerts/alert_list.list.php:171 #: ../../godmode/alerts/alert_list.list.php:178 #: ../../godmode/alerts/alert_list.list.php:934 -#: ../../godmode/alerts/configure_alert_action.php:387 ../../godmode/setup/news.php:233 -#: ../../godmode/setup/setup_ehorus.php:179 -#: ../../godmode/setup/setup_websocket_engine.php:89 ../../godmode/setup/os.php:73 -#: ../../godmode/setup/os.php:142 ../../godmode/setup/setup_auth.php:467 +#: ../../godmode/alerts/configure_alert_action.php:387 +#: ../../godmode/setup/news.php:233 ../../godmode/setup/setup_ehorus.php:179 +#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142 +#: ../../godmode/setup/setup_auth.php:485 #: ../../godmode/setup/setup_integria.php:632 ../../godmode/setup/links.php:129 -#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/setup/setup_netflow.php:81 -#: ../../godmode/setup/setup_visuals.php:1583 ../../godmode/setup/setup_general.php:638 -#: ../../godmode/setup/performance.php:731 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/setup/setup_netflow.php:81 +#: ../../godmode/setup/setup_visuals.php:1604 +#: ../../godmode/setup/setup_general.php:719 +#: ../../godmode/setup/performance.php:741 #: ../../godmode/reporting/visual_console_builder.data.php:232 #: ../../godmode/reporting/create_container.php:330 #: ../../godmode/reporting/visual_console_builder.elements.php:761 #: ../../godmode/reporting/reporting_builder.main.php:56 #: ../../godmode/reporting/graph_builder.main.php:294 #: ../../godmode/events/event_responses.editor.php:227 -#: ../../godmode/events/event_edit_filter.php:678 +#: ../../godmode/events/event_edit_filter.php:778 #: ../../godmode/events/custom_events.php:188 -#: ../../godmode/servers/modificar_server.php:100 ../../godmode/servers/plugin.php:198 -#: ../../godmode/servers/plugin.php:598 ../../godmode/tag/edit_tag.php:272 +#: ../../godmode/servers/modificar_server.php:100 +#: ../../godmode/servers/plugin.php:198 ../../godmode/servers/plugin.php:577 +#: ../../godmode/tag/edit_tag.php:272 #: ../../godmode/category/edit_category.php:195 #: ../../include/functions_visual_map_editor.php:880 #: ../../include/ajax/alert_list.ajax.php:564 #: ../../include/class/ConfigPEN.class.php:697 #: ../../include/class/ConfigPEN.class.php:698 -#: ../../include/class/NetworkMap.class.php:3069 #: ../../include/class/ManageNetScanScripts.class.php:765 -#: ../../include/class/CredentialStore.class.php:1246 -#: ../../include/class/ModuleTemplates.class.php:1012 +#: ../../include/class/CredentialStore.class.php:1673 +#: ../../include/class/ModuleTemplates.class.php:1013 #: ../../include/class/ExternalTools.class.php:392 -#: ../../include/functions_events.php:3308 ../../include/functions_events.php:3387 -#: ../../operation/users/user_edit.php:804 ../../operation/agentes/datos_agente.php:218 +#: ../../include/functions_events.php:3371 +#: ../../include/functions_events.php:3450 +#: ../../operation/users/user_edit.php:876 +#: ../../operation/agentes/datos_agente.php:218 #: ../../operation/network/network_report.php:132 -#: ../../operation/snmpconsole/snmp_view.php:660 #: ../../operation/incidents/configure_integriaims_incident.php:378 #: ../../operation/reporting/reporting_viewer.php:311 msgid "Update" msgstr "更新" #: ../../views/calendar/special_days_edit.php:207 -#: ../../views/calendar/special_days.php:407 ../../views/calendar/special_days.php:506 -#: ../../views/dashboard/header.php:69 ../../views/dashboard/header.php:103 -#: ../../views/dashboard/list.php:225 ../../enterprise/views/ncm/agent/details.php:690 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1152 +#: ../../views/calendar/special_days.php:407 +#: ../../views/calendar/special_days.php:506 ../../views/dashboard/header.php:69 +#: ../../views/dashboard/header.php:103 ../../views/dashboard/list.php:225 +#: ../../enterprise/views/ncm/agent/details.php:690 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1157 #: ../../enterprise/meta/event/custom_events.php:250 #: ../../enterprise/godmode/services/services.service.php:1038 #: ../../enterprise/godmode/services/services.elements.php:887 #: ../../enterprise/godmode/services/services.elements.php:898 +#: ../../enterprise/godmode/setup/setup.php:543 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:281 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 #: ../../enterprise/include/functions_HA_cluster.php:492 @@ -1346,11 +1405,11 @@ msgstr "更新" #: ../../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:844 -#: ../../enterprise/include/class/AgentRepository.class.php:942 +#: ../../enterprise/include/class/AgentRepository.class.php:870 +#: ../../enterprise/include/class/AgentRepository.class.php:968 #: ../../enterprise/include/class/LogSource.class.php:845 #: ../../enterprise/include/class/LogSource.class.php:898 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3051 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3053 #: ../../enterprise/include/class/ManageBackups.class.php:446 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1298 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1322 @@ -1360,35 +1419,42 @@ msgstr "更新" #: ../../godmode/agentes/status_monitor_custom_fields.php:242 #: ../../godmode/snmpconsole/snmp_alert.php:1547 #: ../../godmode/snmpconsole/snmp_alert.php:1562 -#: ../../godmode/massive/massive_operations.php:371 -#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/events/custom_events.php:224 +#: ../../godmode/massive/massive_operations.php:376 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/events/custom_events.php:224 #: ../../include/functions_visual_map_editor.php:880 #: ../../include/functions_visual_map_editor.php:884 -#: ../../include/functions_register.php:179 ../../include/class/ConfigPEN.class.php:669 +#: ../../include/functions_register.php:179 +#: ../../include/class/ConfigPEN.class.php:669 #: ../../include/class/ConfigPEN.class.php:693 -#: ../../include/class/SatelliteAgent.class.php:673 -#: ../../include/class/SatelliteAgent.class.php:718 +#: ../../include/class/SatelliteAgent.class.php:1127 +#: ../../include/class/SatelliteAgent.class.php:1172 +#: ../../include/class/SatelliteAgent.class.php:1220 +#: ../../include/class/SatelliteAgent.class.php:1282 #: ../../include/class/TreeGroupEdition.class.php:165 -#: ../../include/class/NetworkMap.class.php:2807 -#: ../../include/class/CredentialStore.class.php:1242 -#: ../../include/class/CredentialStore.class.php:1294 -#: ../../include/class/ModuleTemplates.class.php:1382 +#: ../../include/class/NetworkMap.class.php:2940 +#: ../../include/class/CredentialStore.class.php:1669 +#: ../../include/class/CredentialStore.class.php:1721 +#: ../../include/class/ModuleTemplates.class.php:1383 #: ../../include/class/WelcomeWindow.class.php:174 -#: ../../include/class/AgentWizard.class.php:6041 -#: ../../operation/agentes/pandora_networkmap.editor.php:603 +#: ../../include/class/SatelliteCollection.class.php:550 +#: ../../include/class/SatelliteCollection.class.php:593 +#: ../../include/class/AgentWizard.class.php:6216 +#: ../../operation/agentes/pandora_networkmap.editor.php:634 #: ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:551 -#: ../../operation/snmpconsole/snmp_browser.php:631 -#: ../../operation/snmpconsole/snmp_browser.php:646 ../../general/header.php:827 +#: ../../operation/snmpconsole/snmp_browser.php:549 +#: ../../operation/snmpconsole/snmp_browser.php:629 +#: ../../operation/snmpconsole/snmp_browser.php:644 ../../general/header.php:827 msgid "Cancel" msgstr "キャンセル" #: ../../views/calendar/special_days_edit.php:211 -#: ../../views/calendar/special_days.php:411 ../../views/calendar/special_days.php:510 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4349 -#: ../../godmode/agentes/planned_downtime.list.php:705 +#: ../../views/calendar/special_days.php:411 +#: ../../views/calendar/special_days.php:510 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4351 +#: ../../godmode/agentes/planned_downtime.list.php:742 #: ../../godmode/alerts/configure_alert_template.php:1550 -#: ../../include/class/AgentWizard.class.php:5993 +#: ../../include/class/AgentWizard.class.php:6168 msgid "Loading, this operation might take several minutes..." msgstr "読み込み中、この操作は数分かかります..." @@ -1430,34 +1496,43 @@ msgstr "アップロード" msgid "Display range: " msgstr "表示範囲: " -#: ../../views/calendar/special_days.php:174 ../../views/calendar/special_days.php:186 +#: ../../views/calendar/special_days.php:174 +#: ../../views/calendar/special_days.php:186 #: ../../enterprise/meta/advanced/metasetup.visual.php:513 #: ../../enterprise/meta/advanced/metasetup.visual.php:547 #: ../../enterprise/meta/advanced/metasetup.visual.php:1070 #: ../../enterprise/meta/monitoring/wizard/wizard.php:141 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:487 #: ../../enterprise/godmode/policies/policy_alerts.php:406 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:445 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:136 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:105 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:135 #: ../../enterprise/operation/agentes/policy_view.php:332 -#: ../../godmode/users/configure_user.php:934 -#: ../../godmode/users/configure_user.php:1137 -#: ../../godmode/agentes/module_manager_editor_common.php:635 +#: ../../godmode/users/configure_user.php:1145 +#: ../../godmode/users/configure_user.php:1348 +#: ../../godmode/agentes/module_manager_editor_common.php:650 +#: ../../godmode/massive/massive_edit_users.php:243 +#: ../../godmode/massive/massive_edit_users.php:274 #: ../../godmode/massive/massive_edit_agents.php:1034 -#: ../../godmode/alerts/alert_list.list.php:630 ../../godmode/alerts/alert_view.php:58 -#: ../../godmode/setup/gis_step_2.php:578 ../../godmode/setup/gis_step_2.php:664 -#: ../../godmode/setup/setup_visuals.php:197 ../../godmode/setup/setup_visuals.php:219 -#: ../../godmode/setup/setup_visuals.php:439 ../../godmode/setup/setup_visuals.php:458 +#: ../../godmode/alerts/alert_list.list.php:630 +#: ../../godmode/alerts/alert_view.php:58 ../../godmode/setup/gis_step_2.php:579 +#: ../../godmode/setup/gis_step_2.php:665 +#: ../../godmode/setup/setup_visuals.php:197 +#: ../../godmode/setup/setup_visuals.php:219 +#: ../../godmode/setup/setup_visuals.php:439 +#: ../../godmode/setup/setup_visuals.php:458 #: ../../godmode/setup/setup_visuals.php:1204 -#: ../../godmode/events/event_edit_filter.php:404 ../../include/functions_ui.php:1240 +#: ../../godmode/events/event_edit_filter.php:435 +#: ../../include/functions_ui.php:1240 #: ../../include/class/AgentsAlerts.class.php:928 -#: ../../operation/users/user_edit.php:320 ../../operation/users/user_edit.php:323 -#: ../../operation/users/user_edit.php:334 ../../operation/users/user_edit.php:359 -#: ../../operation/snmpconsole/snmp_view.php:566 +#: ../../include/class/SnmpConsole.class.php:362 +#: ../../operation/users/user_edit.php:394 +#: ../../operation/users/user_edit.php:397 +#: ../../operation/users/user_edit.php:408 +#: ../../operation/users/user_edit.php:433 #: ../../operation/gis_maps/gis_map.php:106 msgid "Default" msgstr "デフォルト" @@ -1465,140 +1540,147 @@ msgstr "デフォルト" #: ../../views/calendar/special_days.php:224 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 #: ../../godmode/agentes/planned_downtime.editor.php:944 -#: ../../include/functions.php:1101 ../../include/class/CalendarManager.class.php:1035 -#: ../../include/functions_reporting.php:14408 +#: ../../include/functions.php:1147 +#: ../../include/class/CalendarManager.class.php:1035 +#: ../../include/functions_reporting.php:14723 msgid "Sun" msgstr "日" #: ../../views/calendar/special_days.php:225 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:938 -#: ../../include/functions.php:1077 ../../include/class/CalendarManager.class.php:1029 -#: ../../include/functions_reporting.php:14378 +#: ../../include/functions.php:1123 +#: ../../include/class/CalendarManager.class.php:1029 +#: ../../include/functions_reporting.php:14693 msgid "Mon" msgstr "月" #: ../../views/calendar/special_days.php:226 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:426 #: ../../godmode/agentes/planned_downtime.editor.php:939 -#: ../../include/functions.php:1081 ../../include/class/CalendarManager.class.php:1030 -#: ../../include/functions_reporting.php:14383 +#: ../../include/functions.php:1127 +#: ../../include/class/CalendarManager.class.php:1030 +#: ../../include/functions_reporting.php:14698 msgid "Tue" msgstr "火" #: ../../views/calendar/special_days.php:227 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:427 #: ../../godmode/agentes/planned_downtime.editor.php:940 -#: ../../include/functions.php:1085 ../../include/class/CalendarManager.class.php:1031 -#: ../../include/functions_reporting.php:14388 +#: ../../include/functions.php:1131 +#: ../../include/class/CalendarManager.class.php:1031 +#: ../../include/functions_reporting.php:14703 msgid "Wed" msgstr "水" #: ../../views/calendar/special_days.php:228 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:428 #: ../../godmode/agentes/planned_downtime.editor.php:941 -#: ../../include/functions.php:1089 ../../include/class/CalendarManager.class.php:1032 -#: ../../include/functions_reporting.php:14393 +#: ../../include/functions.php:1135 +#: ../../include/class/CalendarManager.class.php:1032 +#: ../../include/functions_reporting.php:14708 msgid "Thu" msgstr "木" #: ../../views/calendar/special_days.php:229 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:429 #: ../../godmode/agentes/planned_downtime.editor.php:942 -#: ../../include/functions.php:1093 ../../include/class/CalendarManager.class.php:1033 -#: ../../include/functions_reporting.php:14398 +#: ../../include/functions.php:1139 +#: ../../include/class/CalendarManager.class.php:1033 +#: ../../include/functions_reporting.php:14713 msgid "Fri" msgstr "金" #: ../../views/calendar/special_days.php:230 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:430 #: ../../godmode/agentes/planned_downtime.editor.php:943 -#: ../../include/functions.php:1097 ../../include/class/CalendarManager.class.php:1034 -#: ../../include/functions_reporting.php:14403 +#: ../../include/functions.php:1143 +#: ../../include/class/CalendarManager.class.php:1034 +#: ../../include/functions_reporting.php:14718 msgid "Sat" msgstr "土" #: ../../views/calendar/special_days.php:245 -#: ../../enterprise/include/functions_reporting.php:1775 -#: ../../enterprise/include/functions_reporting.php:2822 -#: ../../enterprise/include/functions_reporting.php:3824 +#: ../../enterprise/include/functions_reporting.php:1776 +#: ../../enterprise/include/functions_reporting.php:2823 +#: ../../enterprise/include/functions_reporting.php:3825 msgid "January" msgstr "1月" #: ../../views/calendar/special_days.php:249 -#: ../../enterprise/include/functions_reporting.php:1779 -#: ../../enterprise/include/functions_reporting.php:2826 -#: ../../enterprise/include/functions_reporting.php:3828 +#: ../../enterprise/include/functions_reporting.php:1780 +#: ../../enterprise/include/functions_reporting.php:2827 +#: ../../enterprise/include/functions_reporting.php:3829 msgid "February" msgstr "2月" #: ../../views/calendar/special_days.php:253 -#: ../../enterprise/include/functions_reporting.php:1783 -#: ../../enterprise/include/functions_reporting.php:2830 -#: ../../enterprise/include/functions_reporting.php:3832 +#: ../../enterprise/include/functions_reporting.php:1784 +#: ../../enterprise/include/functions_reporting.php:2831 +#: ../../enterprise/include/functions_reporting.php:3833 msgid "March" msgstr "3月" #: ../../views/calendar/special_days.php:257 -#: ../../enterprise/include/functions_reporting.php:1787 -#: ../../enterprise/include/functions_reporting.php:2834 -#: ../../enterprise/include/functions_reporting.php:3836 +#: ../../enterprise/include/functions_reporting.php:1788 +#: ../../enterprise/include/functions_reporting.php:2835 +#: ../../enterprise/include/functions_reporting.php:3837 msgid "April" msgstr "4月" #: ../../views/calendar/special_days.php:261 -#: ../../enterprise/include/functions_reporting.php:1791 -#: ../../enterprise/include/functions_reporting.php:2838 -#: ../../enterprise/include/functions_reporting.php:3840 +#: ../../enterprise/include/functions_reporting.php:1792 +#: ../../enterprise/include/functions_reporting.php:2839 +#: ../../enterprise/include/functions_reporting.php:3841 msgid "May" msgstr "5月" #: ../../views/calendar/special_days.php:265 -#: ../../enterprise/include/functions_reporting.php:1795 -#: ../../enterprise/include/functions_reporting.php:2842 -#: ../../enterprise/include/functions_reporting.php:3844 +#: ../../enterprise/include/functions_reporting.php:1796 +#: ../../enterprise/include/functions_reporting.php:2843 +#: ../../enterprise/include/functions_reporting.php:3845 msgid "June" msgstr "6月" #: ../../views/calendar/special_days.php:269 -#: ../../enterprise/include/functions_reporting.php:1799 -#: ../../enterprise/include/functions_reporting.php:2846 -#: ../../enterprise/include/functions_reporting.php:3848 +#: ../../enterprise/include/functions_reporting.php:1800 +#: ../../enterprise/include/functions_reporting.php:2847 +#: ../../enterprise/include/functions_reporting.php:3849 msgid "July" msgstr "7月" #: ../../views/calendar/special_days.php:273 -#: ../../enterprise/include/functions_reporting.php:1803 -#: ../../enterprise/include/functions_reporting.php:2850 -#: ../../enterprise/include/functions_reporting.php:3852 +#: ../../enterprise/include/functions_reporting.php:1804 +#: ../../enterprise/include/functions_reporting.php:2851 +#: ../../enterprise/include/functions_reporting.php:3853 msgid "August" msgstr "8月" #: ../../views/calendar/special_days.php:277 -#: ../../enterprise/include/functions_reporting.php:1807 -#: ../../enterprise/include/functions_reporting.php:2854 -#: ../../enterprise/include/functions_reporting.php:3856 +#: ../../enterprise/include/functions_reporting.php:1808 +#: ../../enterprise/include/functions_reporting.php:2855 +#: ../../enterprise/include/functions_reporting.php:3857 msgid "September" msgstr "9月" #: ../../views/calendar/special_days.php:281 -#: ../../enterprise/include/functions_reporting.php:1811 -#: ../../enterprise/include/functions_reporting.php:2858 -#: ../../enterprise/include/functions_reporting.php:3860 +#: ../../enterprise/include/functions_reporting.php:1812 +#: ../../enterprise/include/functions_reporting.php:2859 +#: ../../enterprise/include/functions_reporting.php:3861 msgid "October" msgstr "10月" #: ../../views/calendar/special_days.php:285 -#: ../../enterprise/include/functions_reporting.php:1815 -#: ../../enterprise/include/functions_reporting.php:2862 -#: ../../enterprise/include/functions_reporting.php:3864 +#: ../../enterprise/include/functions_reporting.php:1816 +#: ../../enterprise/include/functions_reporting.php:2863 +#: ../../enterprise/include/functions_reporting.php:3865 msgid "November" msgstr "11月" #: ../../views/calendar/special_days.php:289 -#: ../../enterprise/include/functions_reporting.php:1820 -#: ../../enterprise/include/functions_reporting.php:2867 -#: ../../enterprise/include/functions_reporting.php:3869 +#: ../../enterprise/include/functions_reporting.php:1821 +#: ../../enterprise/include/functions_reporting.php:2868 +#: ../../enterprise/include/functions_reporting.php:3870 msgid "December" msgstr "12月" @@ -1630,17 +1712,14 @@ msgstr "テンプレート表示" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382 #: ../../enterprise/include/functions_tasklist.php:623 #: ../../enterprise/include/functions_tasklist.php:665 -#: ../../enterprise/include/ajax/transactional.ajax.php:117 -#: ../../enterprise/include/ajax/transactional.ajax.php:205 #: ../../enterprise/include/class/NetworkConfigManager.class.php:612 #: ../../enterprise/include/class/NetworkConfigManager.class.php:784 #: ../../enterprise/include/class/NetworkConfigManager.class.php:960 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1107 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1315 -#: ../../enterprise/include/class/Omnishell.class.php:1137 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2426 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3080 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:618 +#: ../../enterprise/include/class/Omnishell.class.php:1139 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2428 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3082 #: ../../enterprise/include/lib/Metaconsole/Node.php:1097 #: ../../enterprise/include/lib/Metaconsole/Node.php:1098 #: ../../enterprise/operation/agentes/tag_view.php:742 @@ -1648,25 +1727,30 @@ msgstr "テンプレート表示" #: ../../enterprise/tools/ipam/ipam_ajax.php:122 #: ../../enterprise/tools/ipam/ipam_ajax.php:527 #: ../../extensions/files_repo/files_repo_list.php:138 -#: ../../godmode/groups/group_list.php:917 ../../godmode/groups/group_list.php:918 -#: ../../godmode/users/profile_list.php:434 ../../godmode/users/user_list.php:796 -#: ../../godmode/agentes/modificar_agente.php:804 -#: ../../godmode/agentes/modificar_agente.php:810 -#: ../../godmode/agentes/planned_downtime.list.php:633 -#: ../../godmode/agentes/fields_manager.php:154 ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/groups/group_list.php:922 +#: ../../godmode/groups/group_list.php:923 +#: ../../godmode/users/profile_list.php:434 ../../godmode/users/user_list.php:856 +#: ../../godmode/agentes/modificar_agente.php:801 +#: ../../godmode/agentes/modificar_agente.php:806 +#: ../../godmode/agentes/planned_downtime.list.php:670 +#: ../../godmode/agentes/fields_manager.php:157 +#: ../../godmode/setup/snmp_wizard.php:110 #: ../../godmode/reporting/reporting_builder.list_items.php:624 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2290 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2293 #: ../../godmode/reporting/reporting_builder.php:1167 #: ../../godmode/events/event_responses.list.php:79 #: ../../godmode/servers/servers.build_table.php:234 -#: ../../godmode/servers/plugin.php:179 ../../godmode/servers/plugin.php:880 -#: ../../include/functions_cron.php:910 ../../include/functions_cron.php:938 -#: ../../include/ajax/module.php:1110 ../../include/class/NetworkMap.class.php:3013 +#: ../../godmode/servers/plugin.php:179 ../../godmode/servers/plugin.php:859 +#: ../../include/functions_cron.php:921 ../../include/functions_cron.php:949 +#: ../../include/ajax/module.php:1123 +#: ../../include/class/NetworkMap.class.php:3146 #: ../../include/class/CalendarManager.class.php:703 -#: ../../operation/agentes/estado_agente.php:877 -#: ../../operation/agentes/estado_agente.php:880 -#: ../../operation/agentes/pandora_networkmap.php:713 -#: ../../operation/agentes/status_monitor.php:1509 +#: ../../include/lib/ClusterViewer/ClusterManager.php:618 +#: ../../operation/visual_console/view.php:447 +#: ../../operation/agentes/estado_agente.php:874 +#: ../../operation/agentes/estado_agente.php:876 +#: ../../operation/agentes/pandora_networkmap.php:720 +#: ../../operation/agentes/status_monitor.php:1522 #: ../../operation/gis_maps/gis_map.php:190 #: ../../operation/incidents/list_integriaims_incidents.php:550 #: ../../operation/search_reports.php:68 @@ -1674,37 +1758,35 @@ msgid "Edit" msgstr "編集" #: ../../views/calendar/special_days.php:438 ../../views/dashboard/list.php:185 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:566 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:683 #: ../../enterprise/meta/advanced/metasetup.relations.php:584 #: ../../enterprise/meta/advanced/links.php:173 #: ../../enterprise/meta/advanced/policymanager.queue.php:349 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1150 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1155 #: ../../enterprise/meta/monitoring/wizard/wizard.php:143 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:316 -#: ../../enterprise/godmode/modules/local_components.php:694 -#: ../../enterprise/godmode/agentes/inventory_manager.php:248 +#: ../../enterprise/godmode/modules/local_components.php:697 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 #: ../../enterprise/godmode/policies/policy_alerts.php:518 -#: ../../enterprise/godmode/policies/policy_modules.php:1545 -#: ../../enterprise/godmode/policies/policy_modules.php:1561 -#: ../../enterprise/godmode/policies/policy_modules.php:1612 +#: ../../enterprise/godmode/policies/policy_modules.php:1550 +#: ../../enterprise/godmode/policies/policy_modules.php:1566 +#: ../../enterprise/godmode/policies/policy_modules.php:1617 #: ../../enterprise/godmode/policies/policy_queue.php:770 #: ../../enterprise/godmode/policies/policy_queue.php:804 #: ../../enterprise/godmode/policies/policy_queue.php:820 #: ../../enterprise/godmode/policies/policies.php:564 #: ../../enterprise/godmode/policies/policies.php:585 #: ../../enterprise/godmode/policies/policies.php:620 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:522 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:524 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:328 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:333 #: ../../enterprise/godmode/policies/policy_agents.php:401 -#: ../../enterprise/godmode/policies/policy_agents.php:724 -#: ../../enterprise/godmode/policies/policy_agents.php:1040 -#: ../../enterprise/godmode/policies/policy_agents.php:1155 -#: ../../enterprise/godmode/policies/policy_agents.php:1304 -#: ../../enterprise/godmode/policies/policy_agents.php:1519 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:414 +#: ../../enterprise/godmode/policies/policy_agents.php:760 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 +#: ../../enterprise/godmode/policies/policy_agents.php:1191 +#: ../../enterprise/godmode/policies/policy_agents.php:1340 +#: ../../enterprise/godmode/policies/policy_agents.php:1555 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:412 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 #: ../../enterprise/godmode/setup/setup_skins.php:147 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837 @@ -1714,30 +1796,25 @@ msgstr "編集" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:619 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:638 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 -#: ../../enterprise/godmode/reporting/mysql_builder.php:104 +#: ../../enterprise/godmode/reporting/mysql_builder.php:105 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1189 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 #: ../../enterprise/include/functions_tasklist.php:638 #: ../../enterprise/include/functions_tasklist.php:673 -#: ../../enterprise/include/ajax/transactional.ajax.php:118 -#: ../../enterprise/include/ajax/transactional.ajax.php:207 #: ../../enterprise/include/ajax/ipam.ajax.php:755 #: ../../enterprise/include/ajax/ipam.ajax.php:833 #: ../../enterprise/include/class/DeploymentCenter.class.php:1558 -#: ../../enterprise/include/class/AgentRepository.class.php:835 +#: ../../enterprise/include/class/AgentRepository.class.php:861 #: ../../enterprise/include/class/Omnishell.class.php:504 -#: ../../enterprise/include/class/Omnishell.class.php:1155 +#: ../../enterprise/include/class/Omnishell.class.php:1157 #: ../../enterprise/include/class/LogSource.class.php:892 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3088 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3400 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3090 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3402 #: ../../enterprise/include/class/ManageBackups.class.php:443 #: ../../enterprise/include/functions_services.php:2026 #: ../../enterprise/include/lib/Metaconsole/Node.php:1183 -#: ../../enterprise/operation/agentes/transactional_map.php:414 -#: ../../enterprise/operation/agentes/transactional_map.php:478 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268 -#: ../../enterprise/operation/services/services.list.php:649 -#: ../../enterprise/operation/services/services.list.php:743 +#: ../../enterprise/operation/services/services.list.php:651 +#: ../../enterprise/operation/services/services.list.php:745 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1209 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1347 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:287 @@ -1748,41 +1825,48 @@ msgstr "編集" #: ../../update_manager_client/views/online.php:164 #: ../../extensions/files_repo/files_repo_list.php:146 #: ../../godmode/modules/manage_nc_groups.php:275 -#: ../../godmode/modules/manage_network_components.php:864 -#: ../../godmode/modules/manage_network_templates.php:272 -#: ../../godmode/modules/manage_network_templates.php:287 -#: ../../godmode/groups/group_list.php:926 ../../godmode/groups/modu_group_list.php:273 -#: ../../godmode/groups/modu_group_list.php:276 ../../godmode/users/profile_list.php:439 -#: ../../godmode/users/configure_user.php:1666 -#: ../../godmode/users/configure_user.php:1961 -#: ../../godmode/agentes/agent_template.php:259 -#: ../../godmode/agentes/modificar_agente.php:930 -#: ../../godmode/agentes/planned_downtime.editor.php:1313 -#: ../../godmode/agentes/fields_manager.php:155 +#: ../../godmode/modules/manage_inventory_modules.php:322 +#: ../../godmode/modules/manage_network_components.php:867 +#: ../../godmode/modules/manage_network_templates.php:274 +#: ../../godmode/modules/manage_network_templates.php:289 +#: ../../godmode/groups/group_list.php:931 +#: ../../godmode/groups/modu_group_list.php:273 +#: ../../godmode/groups/modu_group_list.php:276 +#: ../../godmode/users/profile_list.php:439 +#: ../../godmode/users/configure_user.php:1940 +#: ../../godmode/users/configure_user.php:2237 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/inventory_manager.php:249 +#: ../../godmode/agentes/modificar_agente.php:924 +#: ../../godmode/agentes/planned_downtime.editor.php:1301 +#: ../../godmode/agentes/fields_manager.php:158 #: ../../godmode/agentes/agent_manager.php:237 #: ../../godmode/agentes/module_manager_editor_common.php:233 -#: ../../godmode/agentes/module_manager.php:1186 -#: ../../godmode/agentes/module_manager.php:1200 -#: ../../godmode/agentes/module_manager.php:1225 -#: ../../godmode/agentes/module_manager.php:1248 -#: ../../godmode/agentes/module_manager.php:1273 -#: ../../godmode/netflow/nf_item_list.php:262 ../../godmode/netflow/nf_edit.php:195 +#: ../../godmode/agentes/module_manager.php:1226 +#: ../../godmode/agentes/module_manager.php:1240 +#: ../../godmode/agentes/module_manager.php:1265 +#: ../../godmode/agentes/module_manager.php:1288 +#: ../../godmode/agentes/module_manager.php:1313 +#: ../../godmode/netflow/nf_item_list.php:262 +#: ../../godmode/netflow/nf_edit.php:195 #: ../../godmode/snmpconsole/snmp_alert.php:1308 -#: ../../godmode/snmpconsole/snmp_alert.php:1641 +#: ../../godmode/snmpconsole/snmp_alert.php:1646 #: ../../godmode/snmpconsole/snmp_filters.php:301 #: ../../godmode/snmpconsole/snmp_filters.php:312 -#: ../../godmode/massive/massive_operations.php:369 -#: ../../godmode/massive/massive_standby_alerts.php:254 +#: ../../godmode/massive/massive_operations.php:374 +#: ../../godmode/massive/massive_standby_alerts.php:255 #: ../../godmode/massive/massive_edit_plugins.php:576 -#: ../../godmode/massive/massive_enable_disable_alerts.php:226 +#: ../../godmode/massive/massive_enable_disable_alerts.php:227 #: ../../godmode/alerts/alert_actions.php:424 #: ../../godmode/alerts/alert_list.list.php:1130 +#: ../../godmode/alerts/alert_commands.php:804 #: ../../godmode/alerts/alert_commands.php:807 -#: ../../godmode/alerts/alert_commands.php:810 #: ../../godmode/alerts/alert_templates.php:437 ../../godmode/setup/news.php:290 -#: ../../godmode/setup/links.php:160 ../../godmode/reporting/create_container.php:682 +#: ../../godmode/setup/links.php:160 +#: ../../godmode/reporting/create_container.php:682 #: ../../godmode/reporting/map_builder.php:512 -#: ../../godmode/reporting/map_builder.php:523 ../../godmode/reporting/graphs.php:362 +#: ../../godmode/reporting/map_builder.php:523 +#: ../../godmode/reporting/graphs.php:362 #: ../../godmode/reporting/visual_console_builder.elements.php:497 #: ../../godmode/reporting/reporting_builder.php:1177 #: ../../godmode/reporting/reporting_builder.php:1199 @@ -1792,27 +1876,35 @@ msgstr "編集" #: ../../godmode/wizards/DiscoveryTaskList.class.php:999 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1012 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1023 -#: ../../godmode/servers/plugin.php:884 ../../godmode/tag/tag.php:395 -#: ../../godmode/category/category.php:192 ../../godmode/category/category.php:211 -#: ../../include/functions_profile.php:278 ../../include/class/ConfigPEN.class.php:666 -#: ../../include/class/SatelliteAgent.class.php:712 +#: ../../godmode/servers/plugin.php:864 ../../godmode/tag/tag.php:395 +#: ../../godmode/category/category.php:192 +#: ../../godmode/category/category.php:211 +#: ../../include/functions_profile.php:312 +#: ../../include/class/ConfigPEN.class.php:666 +#: ../../include/class/SatelliteAgent.class.php:1166 +#: ../../include/class/SatelliteAgent.class.php:1214 +#: ../../include/class/SatelliteAgent.class.php:1276 #: ../../include/class/TreeGroupEdition.class.php:166 -#: ../../include/class/CredentialStore.class.php:1288 -#: ../../include/class/ModuleTemplates.class.php:918 -#: ../../include/class/ModuleTemplates.class.php:933 +#: ../../include/class/CredentialStore.class.php:1715 +#: ../../include/class/SnmpConsole.class.php:499 +#: ../../include/class/SnmpConsole.class.php:1274 +#: ../../include/class/SnmpConsole.class.php:1301 +#: ../../include/class/ModuleTemplates.class.php:919 +#: ../../include/class/ModuleTemplates.class.php:934 #: ../../include/class/WelcomeWindow.class.php:171 -#: ../../include/functions_filemanager.php:715 ../../include/functions_container.php:190 +#: ../../include/class/SatelliteCollection.class.php:545 +#: ../../include/class/SatelliteCollection.class.php:588 +#: ../../include/functions_filemanager.php:715 +#: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3442 ../../operation/users/user_edit.php:1195 -#: ../../operation/agentes/pandora_networkmap.editor.php:600 -#: ../../operation/agentes/pandora_networkmap.php:801 +#: ../../include/functions_events.php:3505 +#: ../../operation/users/user_edit.php:1267 +#: ../../operation/agentes/pandora_networkmap.editor.php:631 +#: ../../operation/agentes/pandora_networkmap.php:811 #: ../../operation/messages/message_list.php:272 #: ../../operation/messages/message_list.php:275 -#: ../../operation/snmpconsole/snmp_browser.php:643 -#: ../../operation/snmpconsole/snmp_view.php:1033 -#: ../../operation/snmpconsole/snmp_view.php:1046 -#: ../../operation/snmpconsole/snmp_view.php:1220 +#: ../../operation/snmpconsole/snmp_browser.php:641 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 #: ../../operation/incidents/list_integriaims_incidents.php:554 msgid "Are you sure?" @@ -1825,11 +1917,12 @@ msgstr "よろしいですか?" #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 #: ../../enterprise/include/functions_ui.php:120 #: ../../enterprise/include/functions_ui.php:168 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4347 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4349 #: ../../godmode/alerts/configure_alert_template.php:1548 -#: ../../godmode/events/event_edit_filter.php:542 -#: ../../godmode/events/event_edit_filter.php:595 ../../operation/events/events.php:1169 -#: ../../operation/events/events.php:1241 +#: ../../godmode/events/event_edit_filter.php:593 +#: ../../godmode/events/event_edit_filter.php:646 +#: ../../include/functions_ui.php:6936 ../../include/functions_ui.php:6984 +#: ../../operation/events/events.php:1246 ../../operation/events/events.php:1318 msgid "Remove" msgstr "削除" @@ -1837,14 +1930,578 @@ msgstr "削除" msgid "Load calendar" msgstr "カレンダー読み込み" +#: ../../views/cluster/list.php:31 +#: ../../enterprise/meta/general/main_header.php:91 +#: ../../enterprise/meta/general/logon_ok.php:75 +#: ../../enterprise/meta/general/main_menu.php:189 +#: ../../enterprise/extensions/vmware/vmware_view.php:1388 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53 +#: ../../enterprise/godmode/services/services.massive.meta.php:42 +#: ../../enterprise/godmode/services/services.massive.elements.php:44 +#: ../../enterprise/godmode/reporting/aws_view.php:115 +#: ../../enterprise/godmode/reporting/aws_view.php:148 +#: ../../enterprise/include/ajax/ipam.ajax.php:455 +#: ../../enterprise/include/class/SAPView.class.php:155 +#: ../../enterprise/include/class/SAPView.class.php:199 +#: ../../enterprise/operation/agentes/tag_view.php:50 +#: ../../enterprise/operation/services/massive/services.delete.php:42 +#: ../../enterprise/operation/services/massive/services.create.php:595 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:105 +#: ../../enterprise/operation/services/massive/service.create.elements.php:243 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:146 +#: ../../enterprise/operation/services/services.treeview_services.php:62 +#: ../../enterprise/operation/services/services.list.php:58 +#: ../../enterprise/operation/services/services.table_services.php:38 +#: ../../enterprise/tools/ipam/ipam_editor.php:261 +#: ../../extensions/agents_modules.php:474 ../../extensions/module_groups.php:260 +#: ../../extensions/realtime_graphs.php:67 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:47 +#: ../../godmode/snmpconsole/snmp_filters.php:55 +#: ../../include/class/AgentsAlerts.class.php:738 +#: ../../include/class/SnmpConsole.class.php:227 ../../operation/heatmap.php:137 +#: ../../operation/tree.php:183 ../../operation/agentes/alerts_status.php:199 +#: ../../operation/agentes/estado_agente.php:224 +#: ../../operation/agentes/interface_view.php:72 +#: ../../operation/agentes/status_monitor.php:104 +#: ../../operation/agentes/group_view.php:98 +#: ../../operation/agentes/ver_agente.php:1945 +#: ../../operation/agentes/tactical.php:79 +#: ../../operation/snmpconsole/snmp_statistics.php:98 +#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:56 +#: ../../operation/menu.php:33 ../../operation/menu.php:164 +#: ../../operation/inventory/inventory.php:149 +#: ../../general/first_task/cluster_builder.php:38 +msgid "Monitoring" +msgstr "モニタリング" + +#: ../../views/cluster/list.php:31 +#: ../../general/first_task/HA_cluster_builder.php:42 +#: ../../general/first_task/cluster_builder.php:29 +#: ../../general/first_task/cluster_builder.php:51 +msgid "Clusters" +msgstr "クラスタ" + +#: ../../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:214 +#: ../../enterprise/godmode/policies/policy_modules.php:1470 +#: ../../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:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1674 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 +#: ../../enterprise/include/functions_reporting_csv.php:1655 +#: ../../enterprise/include/functions_reporting_csv.php:1771 +#: ../../enterprise/include/functions_reporting_csv.php:2011 +#: ../../enterprise/include/functions_reporting_csv.php:2079 +#: ../../enterprise/include/functions_services.php:1602 +#: ../../enterprise/operation/agentes/policy_view.php:396 +#: ../../enterprise/operation/agentes/tag_view.php:605 +#: ../../enterprise/operation/agentes/ver_agente.php:32 +#: ../../godmode/modules/manage_network_templates_form.php:232 +#: ../../godmode/modules/manage_network_components_form_common.php:64 +#: ../../godmode/modules/manage_network_components.php:753 +#: ../../godmode/update_manager/update_manager.history.php:41 +#: ../../godmode/agentes/agent_template.php:237 +#: ../../godmode/agentes/modificar_agente.php:650 +#: ../../godmode/agentes/planned_downtime.list.php:659 +#: ../../godmode/agentes/planned_downtime.editor.php:856 +#: ../../godmode/agentes/module_manager_editor_common.php:288 +#: ../../godmode/agentes/module_manager_editor_common.php:401 +#: ../../godmode/agentes/module_manager_editor_common.php:1319 +#: ../../godmode/agentes/module_manager.php:201 +#: ../../godmode/agentes/module_manager.php:893 +#: ../../godmode/alerts/alert_templates.php:37 +#: ../../godmode/alerts/alert_templates.php:302 +#: ../../godmode/alerts/alert_templates.php:387 ../../godmode/setup/news.php:247 +#: ../../godmode/setup/gis_step_2.php:236 +#: ../../godmode/setup/setup_integria.php:408 +#: ../../godmode/setup/setup_integria.php:530 +#: ../../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:1058 +#: ../../godmode/reporting/visual_console_builder.wizard.php:135 +#: ../../godmode/reporting/visual_console_builder.wizard.php:283 +#: ../../godmode/events/event_responses.editor.php:159 +#: ../../godmode/servers/servers.build_table.php:81 +#: ../../godmode/servers/modificar_server.php:72 +#: ../../godmode/servers/plugin.php:795 ../../mobile/operation/visualmaps.php:125 +#: ../../mobile/operation/visualmaps.php:126 +#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 +#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 +#: ../../mobile/operation/events.php:973 +#: ../../include/functions_visual_map_editor.php:702 +#: ../../include/functions_visual_map_editor.php:720 +#: ../../include/functions_visual_map_editor.php:848 +#: ../../include/functions_reporting_html.php:1053 +#: ../../include/functions_reporting_html.php:1061 +#: ../../include/functions_reporting_html.php:1315 +#: ../../include/functions_reporting_html.php:1323 +#: ../../include/functions_reporting_html.php:2552 +#: ../../include/functions_reporting_html.php:3614 +#: ../../include/functions_reporting_html.php:5403 +#: ../../include/ajax/heatmap.ajax.php:75 ../../include/ajax/module.php:990 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 +#: ../../include/functions_reports.php:1074 ../../include/functions_html.php:5581 +#: ../../include/class/ModuleTemplates.class.php:1210 +#: ../../include/class/CalendarManager.class.php:1028 +#: ../../include/class/CalendarManager.class.php:1062 +#: ../../include/class/AgentWizard.class.php:1280 +#: ../../include/class/AgentWizard.class.php:4177 +#: ../../include/lib/Dashboard/Widgets/service_view.php:249 +#: ../../include/lib/Dashboard/Widgets/custom_graph.php:364 +#: ../../include/lib/Dashboard/Widgets/clock.php:221 +#: ../../include/functions_snmp_browser.php:564 +#: ../../include/functions_events.php:2524 +#: ../../include/functions_events.php:4756 +#: ../../operation/agentes/estado_agente.php:757 +#: ../../operation/agentes/ver_agente.php:1171 +#: ../../operation/netflow/nf_live_view.php:319 +#: ../../operation/incidents/configure_integriaims_incident.php:234 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 +#: ../../operation/search_modules.php:34 +msgid "Type" +msgstr "種類" + +#: ../../views/cluster/list.php:62 +#: ../../include/functions_reporting_html.php:5838 +#: ../../operation/agentes/pandora_networkmap.php:715 +msgid "Nodes" +msgstr "ノード" + +#: ../../views/cluster/list.php:63 +#: ../../enterprise/views/ncm/devices/list.php:120 +#: ../../enterprise/meta/advanced/servers.build_table.php:61 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:583 +#: ../../enterprise/meta/advanced/policymanager.queue.php:225 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:707 +#: ../../enterprise/meta/include/functions_events_meta.php:78 +#: ../../enterprise/meta/agentsearch.php:141 +#: ../../enterprise/meta/agentsearch.php:338 +#: ../../enterprise/extensions/vmware/vmware_view.php:1085 +#: ../../enterprise/godmode/agentes/collection_manager.php:112 +#: ../../enterprise/godmode/agentes/collection_manager.php:209 +#: ../../enterprise/godmode/policies/policy_alerts.php:354 +#: ../../enterprise/godmode/policies/policy_modules.php:1471 +#: ../../enterprise/godmode/policies/policy_queue.php:616 +#: ../../enterprise/godmode/policies/policies.php:409 +#: ../../enterprise/godmode/policies/policy_collections.php:172 +#: ../../enterprise/godmode/policies/policy_collections.php:266 +#: ../../enterprise/godmode/policies/policy_agents.php:888 +#: ../../enterprise/godmode/policies/policy_agents.php:1404 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125 +#: ../../enterprise/godmode/admin_access_logs.php:50 +#: ../../enterprise/godmode/servers/HA_cluster.php:175 +#: ../../enterprise/godmode/servers/list_satellite.php:38 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/functions_reporting_csv.php:931 +#: ../../enterprise/include/functions_reporting_csv.php:2043 +#: ../../enterprise/include/functions_reporting_csv.php:2789 +#: ../../enterprise/include/class/ManageBackups.class.php:165 +#: ../../enterprise/include/functions_reporting.php:1859 +#: ../../enterprise/include/functions_reporting.php:2898 +#: ../../enterprise/include/functions_reporting.php:3885 +#: ../../enterprise/include/functions_reporting.php:6135 +#: ../../enterprise/include/functions_services.php:1613 +#: ../../enterprise/operation/agentes/policy_view.php:66 +#: ../../enterprise/operation/agentes/policy_view.php:166 +#: ../../enterprise/operation/agentes/policy_view.php:262 +#: ../../enterprise/operation/agentes/policy_view.php:397 +#: ../../enterprise/operation/agentes/tag_view.php:607 +#: ../../enterprise/operation/agentes/tag_view.php:685 +#: ../../enterprise/operation/agentes/collection_view.php:78 +#: ../../enterprise/operation/services/services.service.php:127 +#: ../../enterprise/operation/services/services.list.php:243 +#: ../../enterprise/operation/services/services.list.php:507 +#: ../../enterprise/operation/services/services.table_services.php:165 +#: ../../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:906 +#: ../../godmode/massive/massive_copy_modules.php:121 +#: ../../godmode/massive/massive_copy_modules.php:281 +#: ../../godmode/massive/massive_delete_modules.php:415 +#: ../../godmode/massive/massive_edit_users.php:502 +#: ../../godmode/massive/massive_edit_agents.php:926 +#: ../../godmode/alerts/alert_list.list.php:142 +#: ../../godmode/alerts/alert_list.list.php:496 +#: ../../godmode/alerts/alert_view.php:114 +#: ../../godmode/setup/setup_integria.php:426 +#: ../../godmode/setup/setup_integria.php:548 +#: ../../godmode/reporting/reporting_builder.item_editor.php:77 +#: ../../godmode/events/custom_events.php:101 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:602 +#: ../../godmode/servers/servers.build_table.php:80 +#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144 +#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244 +#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163 +#: ../../mobile/operation/modules.php:164 ../../mobile/operation/modules.php:275 +#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:603 +#: ../../mobile/operation/modules.php:609 ../../mobile/operation/modules.php:615 +#: ../../mobile/operation/modules.php:621 ../../mobile/operation/modules.php:632 +#: ../../mobile/operation/modules.php:640 ../../mobile/operation/modules.php:648 +#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:732 +#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105 +#: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247 +#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350 +#: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650 +#: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963 +#: ../../mobile/operation/events.php:964 +#: ../../include/functions_reporting_html.php:552 +#: ../../include/functions_reporting_html.php:1050 +#: ../../include/functions_reporting_html.php:1059 +#: ../../include/functions_reporting_html.php:1313 +#: ../../include/functions_reporting_html.php:1321 +#: ../../include/functions_reporting_html.php:1589 +#: ../../include/functions_reporting_html.php:2267 +#: ../../include/functions_reporting_html.php:2546 +#: ../../include/functions_reporting_html.php:2913 +#: ../../include/functions_reporting_html.php:3568 +#: ../../include/functions_reporting_html.php:3621 +#: ../../include/functions_reporting_html.php:5216 +#: ../../include/ajax/alert_list.ajax.php:296 +#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:993 +#: ../../include/ajax/custom_fields.php:416 ../../include/functions_snmp.php:369 +#: ../../include/functions_massive_operations.php:154 +#: ../../include/class/NetworkMap.class.php:3040 +#: ../../include/class/AgentsAlerts.class.php:894 +#: ../../include/class/SnmpConsole.class.php:336 +#: ../../include/class/SnmpConsole.class.php:444 +#: ../../include/class/SnmpConsole.class.php:504 +#: ../../include/class/ExternalTools.class.php:801 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:322 +#: ../../include/functions_snmp_browser.php:594 +#: ../../include/functions_events.php:204 ../../include/functions_events.php:259 +#: ../../include/functions_events.php:2542 +#: ../../include/functions_events.php:4801 ../../operation/search_agents.php:56 +#: ../../operation/agentes/estado_agente.php:275 +#: ../../operation/agentes/estado_agente.php:763 +#: ../../operation/agentes/interface_view.functions.php:497 +#: ../../operation/agentes/status_monitor.php:1347 +#: ../../operation/agentes/alerts_status.functions.php:105 +#: ../../operation/messages/message_list.php:192 +#: ../../operation/incidents/integriaims_export_csv.php:83 +#: ../../operation/incidents/configure_integriaims_incident.php:250 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322 +#: ../../operation/incidents/list_integriaims_incidents.php:320 +#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 +msgid "Status" +msgstr "状態" + +#: ../../views/cluster/list.php:88 +#: ../../enterprise/views/ncm/snippets/list.php:94 +#: ../../enterprise/views/ncm/templates/list.php:100 +#: ../../enterprise/views/ncm/devices/list.php:147 +#: ../../enterprise/views/ncm/firmwares/list.php:100 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:336 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:452 +#: ../../enterprise/godmode/policies/policy_agents.php:436 +#: ../../enterprise/godmode/policies/policy_agents.php:468 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 +#: ../../enterprise/include/class/Omnishell.class.php:814 +#: ../../enterprise/include/class/Omnishell.class.php:893 +#: ../../include/ajax/events.php:787 ../../include/functions_html.php:1244 +#: ../../include/functions_html.php:1397 +#: ../../include/functions_snmp_browser.php:1486 +msgid "Filter group" +msgstr "フィルターグループ" + +#: ../../views/cluster/list.php:123 +msgid "New cluster" +msgstr "新規クラスタ" + +#: ../../views/cluster/view.php:42 ../../views/cluster/view.php:61 +#: ../../views/cluster/edit.php:41 ../../views/cluster/edit.php:68 +msgid "Cluster list" +msgstr "クラスタ一覧" + +#: ../../views/cluster/view.php:48 ../../views/cluster/view.php:79 +msgid "Cluster details" +msgstr "クラスタ詳細" + +#: ../../views/cluster/view.php:72 +msgid "Edit this cluster" +msgstr "このクラスタを編集" + +#: ../../views/cluster/view.php:161 ../../views/cluster/view.php:163 +#: ../../enterprise/meta/include/functions_wizard_meta.php:240 +#: ../../enterprise/meta/include/functions_wizard_meta.php:525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1145 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1530 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1623 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1817 +#: ../../enterprise/meta/agentsearch.php:252 +#: ../../enterprise/meta/agentsearch.php:255 +#: ../../enterprise/meta/agentsearch.php:262 +#: ../../enterprise/meta/agentsearch.php:265 +#: ../../enterprise/godmode/modules/configure_local_component.php:471 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118 +#: ../../enterprise/godmode/policies/policy_agents.php:1775 +#: ../../enterprise/godmode/policies/policy_agents.php:1790 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701 +#: ../../enterprise/godmode/setup/edit_skin.php:276 +#: ../../enterprise/include/class/VMware.app.php:889 +#: ../../enterprise/include/class/DatabaseHA.class.php:211 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2040 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3257 +#: ../../enterprise/include/lib/NetworkManager.php:190 +#: ../../enterprise/include/functions_policies.php:4783 +#: ../../godmode/groups/group_list.php:913 +#: ../../godmode/agentes/modificar_agente.php:760 +#: ../../godmode/agentes/module_manager_editor_common.php:257 +#: ../../godmode/agentes/module_manager_editor_common.php:911 +#: ../../godmode/agentes/module_manager_editor_common.php:1073 +#: ../../godmode/massive/massive_edit_agents.php:938 +#: ../../godmode/massive/massive_edit_agents.php:1138 +#: ../../godmode/massive/massive_edit_modules.php:765 +#: ../../godmode/alerts/alert_list.list.php:149 +#: ../../godmode/alerts/configure_alert_template.php:899 +#: ../../godmode/alerts/alert_view.php:541 ../../mobile/operation/agent.php:167 +#: ../../mobile/operation/alerts.php:68 +#: ../../include/functions_visual_map_editor.php:826 +#: ../../include/functions_reporting_html.php:3580 +#: ../../include/functions_treeview.php:72 +#: ../../include/functions_treeview.php:613 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 +#: ../../include/functions_reporting.php:6888 +#: ../../operation/search_agents.php:93 +#: ../../operation/agentes/estado_generalagente.php:99 +#: ../../operation/agentes/estado_generalagente.php:101 +#: ../../operation/agentes/alerts_status.functions.php:99 +msgid "Disabled" +msgstr "無効" + +#: ../../views/cluster/view.php:167 ../../views/cluster/view.php:169 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 +#: ../../enterprise/godmode/services/services.service.php:779 +#: ../../enterprise/operation/services/massive/services.create.php:843 +#: ../../godmode/agentes/modificar_agente.php:774 +#: ../../godmode/agentes/planned_downtime.list.php:701 +#: ../../godmode/agentes/planned_downtime.editor.php:862 +#: ../../godmode/agentes/agent_manager.php:692 +#: ../../godmode/agentes/module_manager_editor_common.php:1070 +#: ../../godmode/agentes/module_manager.php:1028 +#: ../../godmode/massive/massive_edit_agents.php:1108 +#: ../../godmode/massive/massive_edit_modules.php:1104 +#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1141 +#: ../../include/class/Tree.class.php:907 ../../operation/search_agents.php:100 +#: ../../operation/agentes/estado_agente.php:831 +#: ../../operation/agentes/estado_generalagente.php:110 +#: ../../operation/agentes/estado_generalagente.php:120 +msgid "Quiet" +msgstr "静観" + +#: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185 +#: ../../godmode/agentes/modificar_agente.php:782 +#: ../../operation/search_agents.php:111 +#: ../../operation/agentes/estado_agente.php:839 +#: ../../operation/agentes/estado_generalagente.php:131 +#: ../../operation/agentes/estado_generalagente.php:139 +msgid "Agent in scheduled downtime" +msgstr "計画停止内エージェント" + +#: ../../views/cluster/view.php:222 +msgid "Force cluster status calculation" +msgstr "クラスタの状態計算を強制する" + +#: ../../views/cluster/view.php:252 ../../enterprise/meta/agentsearch.php:137 +#: ../../enterprise/godmode/modules/configure_local_component.php:179 +#: ../../enterprise/godmode/modules/local_components.php:564 +#: ../../enterprise/godmode/modules/local_components.php:589 +#: ../../enterprise/godmode/modules/local_components.php:625 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../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:356 +#: ../../enterprise/include/class/AgentRepository.class.php:685 +#: ../../enterprise/include/class/AgentRepository.class.php:731 +#: ../../enterprise/operation/agentes/tag_view.php:602 +#: ../../enterprise/tools/ipam/ipam_network.php:399 +#: ../../godmode/modules/manage_inventory_modules.php:280 +#: ../../godmode/modules/manage_inventory_modules_form.php:107 +#: ../../godmode/agentes/modificar_agente.php:649 +#: ../../godmode/agentes/planned_downtime.editor.php:1208 +#: ../../godmode/agentes/agent_manager.php:401 +#: ../../godmode/massive/massive_edit_agents.php:733 +#: ../../godmode/reporting/reporting_builder.item_editor.php:71 +#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 +#: ../../include/functions_reporting_html.php:1565 +#: ../../include/functions_reporting_html.php:3565 +#: ../../include/ajax/heatmap.ajax.php:331 +#: ../../include/class/Diagnostics.class.php:749 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:332 +#: ../../include/functions_events.php:4224 ../../operation/search_agents.php:44 +#: ../../operation/search_agents.php:50 ../../operation/tree.php:78 +#: ../../operation/tree.php:146 ../../operation/agentes/estado_agente.php:748 +#: ../../operation/agentes/estado_generalagente.php:194 +#: ../../operation/gis_maps/ajax.php:297 +msgid "OS" +msgstr "OS" + +#: ../../views/cluster/view.php:272 +#: ../../operation/agentes/estado_generalagente.php:212 +msgid "IP address" +msgstr "IP アドレス" + +#: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292 +#: ../../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:895 +#: ../../enterprise/include/functions_visual_map.php:320 +#: ../../enterprise/include/functions_servicemap.php:471 +#: ../../enterprise/include/functions_aws.php:509 +#: ../../enterprise/include/functions_aws.php:510 +#: ../../enterprise/include/functions_reporting.php:6153 +#: ../../enterprise/include/functions_services.php:1190 +#: ../../enterprise/include/functions_services.php:1371 +#: ../../enterprise/include/functions_services.php:2081 +#: ../../enterprise/include/lib/Metaconsole/Node.php:453 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1129 +#: ../../enterprise/tools/ipam/ipam_network.php:436 +#: ../../enterprise/tools/ipam/ipam_network.php:516 +#: ../../enterprise/tools/ipam/ipam_ajax.php:366 +#: ../../enterprise/tools/ipam/ipam_ajax.php:387 +#: ../../godmode/modules/manage_network_components.php:779 +#: ../../godmode/modules/manage_network_components.php:780 +#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201 +#: ../../godmode/agentes/planned_downtime.list.php:859 +#: ../../godmode/alerts/alert_view.php:135 +#: ../../godmode/servers/servers.build_table.php:147 +#: ../../godmode/servers/servers.build_table.php:148 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 +#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 +#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 +#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 +#: ../../include/functions_servers.php:1359 +#: ../../include/functions_reporting_html.php:656 +#: ../../include/functions_reporting_html.php:659 +#: ../../include/functions_reporting_html.php:5477 +#: ../../include/functions_reporting_html.php:5530 +#: ../../include/functions.php:1170 ../../include/functions.php:1176 +#: ../../include/functions.php:1180 ../../include/ajax/module.php:1181 +#: ../../include/functions_treeview.php:162 +#: ../../include/functions_treeview.php:327 +#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2619 +#: ../../include/functions_ui.php:2627 ../../include/functions_db.php:241 +#: ../../include/class/SnmpConsole.class.php:828 +#: ../../include/class/SnmpConsole.class.php:846 +#: ../../include/functions_events.php:3531 +#: ../../include/functions_events.php:3665 +#: ../../include/functions_events.php:3685 +#: ../../include/functions_events.php:3694 +#: ../../include/functions_events.php:3703 +#: ../../include/functions_events.php:3704 +#: ../../include/functions_events.php:3716 +#: ../../include/functions_events.php:3776 +#: ../../include/functions_events.php:3809 +#: ../../include/functions_events.php:3875 +#: ../../include/functions_events.php:3892 +#: ../../include/functions_events.php:3899 +#: ../../include/functions_events.php:3965 +#: ../../include/functions_events.php:4057 +#: ../../include/functions_events.php:4181 +#: ../../include/functions_events.php:4220 +#: ../../include/functions_events.php:4234 +#: ../../include/functions_events.php:4239 +#: ../../include/functions_events.php:4269 +#: ../../include/functions_events.php:4355 +#: ../../include/functions_events.php:4435 +#: ../../include/functions_events.php:4445 +#: ../../include/functions_events.php:4662 +#: ../../include/functions_events.php:4736 +#: ../../include/functions_events.php:4830 +#: ../../include/functions_events.php:4859 +#: ../../include/functions_events.php:4874 +#: ../../include/functions_events.php:4884 +#: ../../include/functions_events.php:4894 +#: ../../include/functions_events.php:5368 +#: ../../include/functions_events.php:5382 +#: ../../include/functions_events.php:5387 +#: ../../include/functions_events.php:5390 +#: ../../include/functions_events.php:5398 +#: ../../include/functions_events.php:5407 +#: ../../include/functions_events.php:5419 +#: ../../include/functions_events.php:5472 +#: ../../include/functions_events.php:5499 +#: ../../include/functions_events.php:5524 +#: ../../include/functions_events.php:5568 +#: ../../operation/agentes/interface_view.functions.php:682 +#: ../../operation/agentes/interface_view.functions.php:683 +#: ../../operation/agentes/interface_view.functions.php:684 +#: ../../operation/agentes/interface_view.functions.php:685 +#: ../../operation/agentes/interface_view.functions.php:686 +#: ../../operation/agentes/status_monitor.php:1743 +#: ../../operation/agentes/estado_generalagente.php:217 +#: ../../operation/agentes/estado_generalagente.php:230 +#: ../../operation/agentes/estado_generalagente.php:242 +#: ../../operation/agentes/estado_generalagente.php:411 +#: ../../operation/agentes/estado_generalagente.php:427 +#: ../../operation/agentes/estado_generalagente.php:438 +msgid "N/A" +msgstr "N/A" + +#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:724 +#: ../../operation/agentes/estado_generalagente.php:225 +#: ../../operation/gis_maps/ajax.php:341 +msgid "Agent Version" +msgstr "エージェントバージョン" + +#: ../../views/cluster/view.php:313 +msgid "Cluster agent" +msgstr "クラスタエージェント" + +#: ../../views/cluster/view.php:368 +#: ../../operation/agentes/estado_generalagente.php:899 +msgid "Events (Last 24h)" +msgstr "イベント (直近 24時間)" + +#: ../../views/cluster/view.php:440 ../../operation/agentes/stat_win.php:451 +#: ../../operation/agentes/interface_traffic_graph_win.php:278 +msgid "Reload" +msgstr "再読み込み" + +#: ../../views/cluster/edit.php:57 +msgid "cluster " +msgstr "クラスタ " + +#: ../../views/cluster/edit.php:88 +msgid "View this cluster" +msgstr "このクラスタを表示" + +#: ../../views/dashboard/layout.php:81 ../../views/dashboard/cell.php:42 +msgid "New widget" +msgstr "新規ウィジェット" + #: ../../views/dashboard/header.php:43 #: ../../enterprise/meta/screens/screens.visualmap.php:274 -#: ../../enterprise/operation/agentes/manage_transmap.php:141 #: ../../extensions/disabled/matrix_events.php:35 -#: ../../extensions/agents_modules.php:380 ../../extensions/agents_modules.php:387 +#: ../../extensions/agents_modules.php:380 +#: ../../extensions/agents_modules.php:387 #: ../../extensions/agents_modules.php:390 #: ../../include/class/AgentsAlerts.class.php:792 -#: ../../operation/visual_console/view.php:210 +#: ../../operation/visual_console/view.php:212 #: ../../operation/visual_console/legacy_view.php:205 #: ../../operation/gis_maps/render_view.php:136 #: ../../operation/reporting/reporting_viewer.php:186 @@ -1853,12 +2510,13 @@ msgid "Full screen mode" msgstr "フルスクリーンモード" #: ../../views/dashboard/header.php:57 ../../extensions/agents_modules.php:531 -#: ../../include/class/AgentsAlerts.class.php:797 ../../operation/heatmap.php:210 -#: ../../operation/visual_console/view.php:444 +#: ../../include/class/AgentsAlerts.class.php:797 ../../operation/heatmap.php:214 +#: ../../operation/visual_console/view.php:482 #: ../../operation/visual_console/legacy_view.php:253 #: ../../operation/gis_maps/render_view.php:138 #: ../../operation/reporting/reporting_viewer.php:195 -#: ../../operation/reporting/graph_viewer.php:243 ../../operation/events/events.php:1295 +#: ../../operation/reporting/graph_viewer.php:243 +#: ../../operation/events/events.php:1372 msgid "Back to normal mode" msgstr "通常モードへ戻る" @@ -1867,16 +2525,18 @@ msgid "Update Dashboard" msgstr "ダッシュボードの更新" #: ../../views/dashboard/header.php:68 ../../views/dashboard/header.php:102 -#: ../../views/dashboard/list.php:224 ../../enterprise/load_enterprise.php:643 -#: ../../enterprise/load_enterprise.php:1139 +#: ../../views/dashboard/list.php:224 ../../enterprise/load_enterprise.php:647 +#: ../../enterprise/load_enterprise.php:1143 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 #: ../../enterprise/godmode/services/services.elements.php:886 #: ../../enterprise/godmode/services/services.elements.php:897 -#: ../../enterprise/include/class/Omnishell.class.php:1499 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3050 +#: ../../enterprise/godmode/setup/setup.php:544 +#: ../../enterprise/godmode/setup/setup.php:559 +#: ../../enterprise/godmode/setup/setup.php:566 +#: ../../enterprise/godmode/setup/setup.php:575 +#: ../../enterprise/include/class/Omnishell.class.php:1501 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3052 #: ../../enterprise/include/lib/Metaconsole/Node.php:406 -#: ../../enterprise/operation/agentes/transactional_map.php:321 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:64 #: ../../enterprise/operation/services/services.service.php:161 #: ../../enterprise/operation/services/services.service_map.php:151 #: ../../enterprise/operation/services/services.list.php:237 @@ -1885,7 +2545,9 @@ msgstr "ダッシュボードの更新" #: ../../godmode/snmpconsole/snmp_alert.php:1548 #: ../../godmode/snmpconsole/snmp_alert.php:1563 #: ../../godmode/massive/massive_edit_agents.php:1043 -#: ../../include/functions_config.php:1282 ../../include/functions_config.php:3193 +#: ../../include/functions_config.php:1283 +#: ../../include/functions_config.php:3269 +#: ../../include/class/SatelliteAgent.class.php:1290 #: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 #: ../../operation/gis_maps/render_view.php:166 msgid "Ok" @@ -1907,25 +2569,28 @@ msgstr "スライドモード" msgid "Show link to public dashboard" msgstr "公開ダッシュボードへのリンク表示" -#: ../../views/dashboard/header.php:158 ../../enterprise/views/ncm/devices/list.php:171 +#: ../../views/dashboard/header.php:158 +#: ../../enterprise/views/ncm/devices/list.php:171 #: ../../enterprise/meta/advanced/policymanager.queue.php:238 #: ../../enterprise/godmode/policies/policy_queue.php:801 -#: ../../enterprise/godmode/servers/HA_cluster.php:416 -#: ../../enterprise/include/class/Omnishell.class.php:544 -#: ../../enterprise/include/class/Omnishell.class.php:1329 +#: ../../enterprise/godmode/servers/HA_cluster.php:421 +#: ../../enterprise/include/class/Omnishell.class.php:546 +#: ../../enterprise/include/class/Omnishell.class.php:1331 #: ../../enterprise/include/functions_ipam.php:1398 #: ../../extensions/agents_modules.php:543 #: ../../godmode/wizards/DiscoveryTaskList.class.php:193 -#: ../../include/ajax/heatmap.ajax.php:47 ../../include/ajax/module.php:1054 -#: ../../include/class/NetworkMap.class.php:2801 -#: ../../include/class/AgentsAlerts.class.php:836 ../../operation/heatmap.php:168 -#: ../../operation/visual_console/view.php:457 +#: ../../include/ajax/heatmap.ajax.php:47 ../../include/ajax/module.php:1067 +#: ../../include/class/NetworkMap.class.php:2935 +#: ../../include/class/AgentsAlerts.class.php:836 ../../operation/heatmap.php:172 +#: ../../operation/visual_console/view.php:495 #: ../../operation/visual_console/legacy_public_view.php:141 #: ../../operation/visual_console/legacy_view.php:267 #: ../../operation/visual_console/public_view.php:123 +#: ../../operation/agentes/pandora_networkmap.editor.php:455 #: ../../operation/gis_maps/render_view.php:160 -#: ../../operation/reporting/graph_viewer.php:399 ../../operation/events/events.php:1307 -#: ../../general/login_page.php:75 ../../general/login_page.php:318 +#: ../../operation/reporting/graph_viewer.php:371 +#: ../../operation/events/events.php:1384 ../../general/login_page.php:75 +#: ../../general/login_page.php:318 msgid "Refresh" msgstr "リフレッシュ" @@ -1935,28 +2600,30 @@ msgstr "セルの追加" #: ../../views/dashboard/header.php:278 ../../views/dashboard/list.php:42 #: ../../enterprise/meta/general/main_header.php:222 -#: ../../enterprise/meta/general/main_menu.php:319 +#: ../../enterprise/meta/general/main_menu.php:342 msgid "Dashboards" msgstr "ダッシュボード" #: ../../views/dashboard/header.php:278 #: ../../enterprise/godmode/alerts/alert_inventory.php:78 #: ../../godmode/agentes/planned_downtime.editor.php:60 -#: ../../godmode/alerts/alert_list.php:494 ../../godmode/category/category.php:89 -#: ../../include/functions_html.php:1906 ../../include/functions_html.php:1907 -#: ../../include/functions_html.php:2017 ../../include/functions_html.php:2018 -#: ../../include/functions_html.php:2197 ../../include/functions_html.php:2198 -#: ../../include/functions_html.php:6344 ../../include/functions_html.php:6345 +#: ../../godmode/alerts/alert_list.php:519 ../../godmode/category/category.php:89 +#: ../../include/functions_html.php:1901 ../../include/functions_html.php:1902 +#: ../../include/functions_html.php:2012 ../../include/functions_html.php:2013 +#: ../../include/functions_html.php:2190 ../../include/functions_html.php:2191 +#: ../../include/functions_html.php:6339 ../../include/functions_html.php:6340 +#: ../../include/class/SnmpConsole.class.php:197 +#: ../../include/class/SnmpConsole.class.php:207 #: ../../operation/snmpconsole/snmp_statistics.php:66 -#: ../../operation/snmpconsole/snmp_view.php:107 ../../operation/events/events.php:1463 +#: ../../operation/events/events.php:1542 msgid "List" msgstr "一覧" #: ../../views/dashboard/list.php:53 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:288 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:295 #: ../../enterprise/meta/advanced/metasetup.relations.php:86 #: ../../enterprise/meta/advanced/links.php:84 -#: ../../enterprise/godmode/modules/local_components.php:417 +#: ../../enterprise/godmode/modules/local_components.php:420 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:68 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:118 #: ../../enterprise/godmode/setup/setup_metaconsole.php:138 @@ -1967,20 +2634,21 @@ msgstr "一覧" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165 -#: ../../enterprise/include/class/DatabaseHA.class.php:1057 -#: ../../enterprise/operation/agentes/transactional_map.php:182 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82 +#: ../../enterprise/include/class/DatabaseHA.class.php:1056 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:152 #: ../../enterprise/tools/ipam/ipam_action.php:102 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:87 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 -#: ../../extensions/files_repo.php:184 ../../godmode/modules/manage_nc_groups.php:152 -#: ../../godmode/modules/manage_network_components.php:552 -#: ../../godmode/users/profile_list.php:133 ../../godmode/users/user_list.php:293 -#: ../../godmode/users/user_list.php:340 ../../godmode/users/configure_user.php:152 -#: ../../godmode/users/configure_user.php:172 -#: ../../godmode/agentes/planned_downtime.list.php:242 -#: ../../godmode/netflow/nf_item_list.php:120 ../../godmode/netflow/nf_item_list.php:148 +#: ../../extensions/files_repo.php:184 +#: ../../godmode/modules/manage_nc_groups.php:152 +#: ../../godmode/modules/manage_network_components.php:555 +#: ../../godmode/users/profile_list.php:133 ../../godmode/users/user_list.php:344 +#: ../../godmode/users/user_list.php:400 +#: ../../godmode/users/configure_user.php:148 +#: ../../godmode/users/configure_user.php:168 +#: ../../godmode/agentes/planned_downtime.list.php:279 +#: ../../godmode/netflow/nf_item_list.php:120 +#: ../../godmode/netflow/nf_item_list.php:148 #: ../../godmode/netflow/nf_edit.php:104 ../../godmode/netflow/nf_edit.php:137 #: ../../godmode/snmpconsole/snmp_alert.php:686 #: ../../godmode/snmpconsole/snmp_filters.php:180 @@ -1988,18 +2656,21 @@ msgstr "一覧" #: ../../godmode/massive/massive_delete_modules.php:162 #: ../../godmode/massive/massive_delete_alerts.php:201 #: ../../godmode/alerts/alert_actions.php:205 -#: ../../godmode/alerts/alert_commands.php:690 -#: ../../godmode/alerts/alert_templates.php:252 ../../godmode/alerts/alert_list.php:232 -#: ../../godmode/alerts/alert_list.php:339 ../../godmode/setup/news.php:120 +#: ../../godmode/alerts/alert_commands.php:691 +#: ../../godmode/alerts/alert_templates.php:252 +#: ../../godmode/alerts/alert_list.php:239 +#: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:120 #: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:76 -#: ../../godmode/reporting/map_builder.php:209 ../../godmode/reporting/graphs.php:150 -#: ../../godmode/reporting/graphs.php:162 ../../godmode/reporting/graphs.php:213 +#: ../../godmode/reporting/map_builder.php:209 +#: ../../godmode/reporting/graphs.php:150 ../../godmode/reporting/graphs.php:162 +#: ../../godmode/reporting/graphs.php:213 #: ../../godmode/reporting/reporting_builder.php:668 -#: ../../godmode/events/event_filter.php:69 ../../godmode/events/event_filter.php:96 +#: ../../godmode/events/event_filter.php:69 +#: ../../godmode/events/event_filter.php:96 #: ../../include/class/ConfigPEN.class.php:486 #: ../../operation/messages/message_list.php:113 #: ../../operation/messages/message_list.php:135 -#: ../../operation/snmpconsole/snmp_view.php:155 ../../operation/gis_maps/gis_map.php:86 +#: ../../operation/gis_maps/gis_map.php:86 #: ../../operation/incidents/list_integriaims_incidents.php:295 #: ../../operation/reporting/graph_viewer.php:57 #: ../../operation/reporting/graph_viewer.php:65 @@ -2007,12 +2678,12 @@ msgid "Successfully deleted" msgstr "削除しました。" #: ../../views/dashboard/list.php:54 -#: ../../enterprise/godmode/modules/local_components.php:418 +#: ../../enterprise/godmode/modules/local_components.php:421 #: ../../enterprise/godmode/policies/policy_alerts.php:256 #: ../../enterprise/godmode/policies/policy_alerts.php:302 -#: ../../enterprise/godmode/policies/policy_modules.php:1313 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:147 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:174 +#: ../../enterprise/godmode/policies/policy_modules.php:1318 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:149 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:176 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:166 #: ../../enterprise/godmode/policies/policy_collections.php:100 #: ../../enterprise/godmode/policies/policy_agents.php:104 @@ -2023,24 +2694,24 @@ msgstr "削除しました。" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:443 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166 -#: ../../enterprise/operation/agentes/transactional_map.php:183 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:83 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:150 #: ../../enterprise/tools/ipam/ipam_action.php:100 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 #: ../../extensions/files_repo.php:184 -#: ../../godmode/modules/manage_network_components.php:553 -#: ../../godmode/users/configure_user.php:153 +#: ../../godmode/modules/manage_network_components.php:556 +#: ../../godmode/users/configure_user.php:149 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:206 -#: ../../godmode/alerts/alert_commands.php:691 -#: ../../godmode/alerts/alert_templates.php:253 ../../godmode/alerts/alert_list.php:233 -#: ../../godmode/alerts/alert_list.php:340 ../../godmode/setup/news.php:121 -#: ../../godmode/setup/gis.php:59 ../../godmode/reporting/reporting_builder.php:669 -#: ../../operation/agentes/pandora_networkmap.php:547 +#: ../../godmode/alerts/alert_commands.php:692 +#: ../../godmode/alerts/alert_templates.php:253 +#: ../../godmode/alerts/alert_list.php:240 +#: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:121 +#: ../../godmode/setup/gis.php:59 +#: ../../godmode/reporting/reporting_builder.php:669 +#: ../../operation/agentes/pandora_networkmap.php:554 #: ../../operation/messages/message_list.php:114 -#: ../../operation/snmpconsole/snmp_view.php:156 ../../operation/gis_maps/gis_map.php:87 +#: ../../operation/gis_maps/gis_map.php:87 #: ../../operation/incidents/list_integriaims_incidents.php:296 msgid "Could not be deleted" msgstr "削除できませんでした。" @@ -2065,34 +2736,35 @@ msgstr "セル" msgid "Favorite" msgstr "お気に入り" -#: ../../views/dashboard/list.php:99 ../../include/class/AgentsAlerts.class.php:822 -#: ../../operation/heatmap.php:87 ../../operation/agentes/networkmap.dinamic.php:115 -#: ../../operation/agentes/pandora_networkmap.view.php:2279 +#: ../../views/dashboard/list.php:99 +#: ../../include/class/AgentsAlerts.class.php:822 ../../operation/heatmap.php:87 +#: ../../operation/agentes/networkmap.dinamic.php:115 +#: ../../operation/agentes/pandora_networkmap.view.php:2331 #: ../../operation/snmpconsole/snmp_statistics.php:54 #: ../../operation/snmpconsole/snmp_browser.php:68 -#: ../../operation/snmpconsole/snmp_view.php:128 ../../operation/events/events.php:1350 +#: ../../operation/events/events.php:1427 msgid "Full screen" msgstr "全画面" #: ../../views/dashboard/list.php:102 -#: ../../enterprise/godmode/policies/policy_modules.php:1673 +#: ../../enterprise/godmode/policies/policy_modules.php:1678 #: ../../enterprise/godmode/policies/policies.php:574 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230 -#: ../../godmode/agentes/planned_downtime.list.php:632 -#: ../../godmode/agentes/planned_downtime.list.php:759 -#: ../../godmode/agentes/planned_downtime.list.php:805 +#: ../../godmode/agentes/planned_downtime.list.php:669 +#: ../../godmode/agentes/planned_downtime.list.php:796 +#: ../../godmode/agentes/planned_downtime.list.php:842 #: ../../godmode/alerts/alert_actions.php:330 #: ../../godmode/reporting/map_builder.php:387 -#: ../../operation/agentes/pandora_networkmap.php:712 -#: ../../operation/agentes/pandora_networkmap.php:799 +#: ../../operation/agentes/pandora_networkmap.php:719 +#: ../../operation/agentes/pandora_networkmap.php:809 msgid "Copy" msgstr "コピー" #: ../../views/dashboard/list.php:103 #: ../../enterprise/meta/advanced/servers.build_table.php:133 #: ../../enterprise/meta/advanced/metasetup.visual.php:434 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:570 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:598 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:687 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:715 #: ../../enterprise/meta/advanced/metasetup.relations.php:589 #: ../../enterprise/meta/advanced/metasetup.relations.php:590 #: ../../enterprise/meta/advanced/metasetup.relations.php:634 @@ -2108,27 +2780,24 @@ msgstr "コピー" #: ../../enterprise/meta/include/functions_autoprovision.php:685 #: ../../enterprise/meta/include/functions_autoprovision.php:686 #: ../../enterprise/meta/include/functions_wizard_meta.php:395 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:317 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:332 -#: ../../enterprise/godmode/modules/local_components.php:698 -#: ../../enterprise/godmode/modules/local_components.php:715 +#: ../../enterprise/godmode/modules/local_components.php:701 +#: ../../enterprise/godmode/modules/local_components.php:718 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 -#: ../../enterprise/godmode/agentes/inventory_manager.php:249 #: ../../enterprise/godmode/agentes/plugins_manager.php:196 #: ../../enterprise/godmode/agentes/plugins_manager.php:281 -#: ../../enterprise/godmode/policies/policy_plugins.php:169 +#: ../../enterprise/godmode/policies/policy_plugins.php:188 #: ../../enterprise/godmode/policies/policy_alerts.php:539 -#: ../../enterprise/godmode/policies/policy_modules.php:1586 -#: ../../enterprise/godmode/policies/policy_modules.php:1618 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 +#: ../../enterprise/godmode/policies/policy_modules.php:1623 #: ../../enterprise/godmode/policies/policy_queue.php:611 #: ../../enterprise/godmode/policies/policy_queue.php:675 #: ../../enterprise/godmode/policies/policy_queue.php:722 #: ../../enterprise/godmode/policies/policies.php:595 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:559 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:561 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 -#: ../../enterprise/godmode/policies/policy_agents.php:1083 -#: ../../enterprise/godmode/policies/policy_agents.php:1545 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:415 +#: ../../enterprise/godmode/policies/policy_agents.php:1119 +#: ../../enterprise/godmode/policies/policy_agents.php:1581 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:413 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238 #: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148 #: ../../enterprise/godmode/setup/setup_acl.php:595 @@ -2138,15 +2807,13 @@ msgstr "コピー" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225 #: ../../enterprise/godmode/reporting/visual_console_template.php:273 -#: ../../enterprise/godmode/reporting/mysql_builder.php:97 -#: ../../enterprise/godmode/reporting/mysql_builder.php:104 +#: ../../enterprise/godmode/reporting/mysql_builder.php:98 +#: ../../enterprise/godmode/reporting/mysql_builder.php:105 #: ../../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:643 #: ../../enterprise/include/functions_tasklist.php:678 -#: ../../enterprise/include/ajax/transactional.ajax.php:119 -#: ../../enterprise/include/ajax/transactional.ajax.php:208 #: ../../enterprise/include/ajax/log_viewer.ajax.php:96 #: ../../enterprise/include/ajax/servers.ajax.php:103 #: ../../enterprise/include/class/DeploymentCenter.class.php:1537 @@ -2156,22 +2823,19 @@ msgstr "コピー" #: ../../enterprise/include/class/NetworkConfigManager.class.php:976 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1123 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1331 -#: ../../enterprise/include/class/AgentRepository.class.php:818 -#: ../../enterprise/include/class/AgentRepository.class.php:853 -#: ../../enterprise/include/class/Omnishell.class.php:1163 +#: ../../enterprise/include/class/AgentRepository.class.php:844 +#: ../../enterprise/include/class/AgentRepository.class.php:879 +#: ../../enterprise/include/class/Omnishell.class.php:1165 #: ../../enterprise/include/class/LogSource.class.php:772 #: ../../enterprise/include/class/LogSource.class.php:894 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2441 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3096 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3416 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2443 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3098 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3418 #: ../../enterprise/include/class/ManageBackups.class.php:275 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:634 #: ../../enterprise/include/lib/Metaconsole/Node.php:1193 #: ../../enterprise/include/lib/Metaconsole/Node.php:1194 -#: ../../enterprise/operation/agentes/transactional_map.php:483 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269 #: ../../enterprise/operation/services/massive/services.delete.php:118 -#: ../../enterprise/operation/services/services.list.php:655 +#: ../../enterprise/operation/services/services.list.php:657 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1297 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:288 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:304 @@ -2181,35 +2845,44 @@ msgstr "コピー" #: ../../godmode/modules/manage_network_templates_form.php:254 #: ../../godmode/modules/manage_nc_groups.php:276 #: ../../godmode/modules/manage_nc_groups.php:305 -#: ../../godmode/modules/manage_network_components.php:868 -#: ../../godmode/modules/manage_network_components.php:869 -#: ../../godmode/modules/manage_network_components.php:898 -#: ../../godmode/modules/manage_network_templates.php:287 -#: ../../godmode/modules/manage_network_templates.php:300 -#: ../../godmode/groups/group_list.php:937 ../../godmode/groups/group_list.php:938 +#: ../../godmode/modules/manage_inventory_modules.php:323 +#: ../../godmode/modules/manage_inventory_modules.php:338 +#: ../../godmode/modules/manage_network_components.php:871 +#: ../../godmode/modules/manage_network_components.php:872 +#: ../../godmode/modules/manage_network_components.php:901 +#: ../../godmode/modules/manage_network_templates.php:289 +#: ../../godmode/modules/manage_network_templates.php:302 +#: ../../godmode/groups/group_list.php:942 +#: ../../godmode/groups/group_list.php:943 #: ../../godmode/groups/modu_group_list.php:254 ../../godmode/extensions.php:257 #: ../../godmode/extensions.php:259 ../../godmode/users/profile_list.php:443 -#: ../../godmode/users/user_list.php:825 ../../godmode/agentes/agent_template.php:259 -#: ../../godmode/agentes/planned_downtime.list.php:634 -#: ../../godmode/agentes/planned_downtime.list.php:784 -#: ../../godmode/agentes/planned_downtime.editor.php:1266 -#: ../../godmode/agentes/planned_downtime.editor.php:1269 -#: ../../godmode/agentes/planned_downtime.editor.php:1319 -#: ../../godmode/agentes/fields_manager.php:155 -#: ../../godmode/agentes/module_manager_editor_common.php:1307 -#: ../../godmode/agentes/module_manager.php:875 -#: ../../godmode/agentes/module_manager.php:1253 -#: ../../godmode/netflow/nf_item_list.php:263 ../../godmode/netflow/nf_item_list.php:273 +#: ../../godmode/users/user_list.php:885 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/inventory_manager.php:250 +#: ../../godmode/agentes/planned_downtime.list.php:671 +#: ../../godmode/agentes/planned_downtime.list.php:821 +#: ../../godmode/agentes/planned_downtime.editor.php:1254 +#: ../../godmode/agentes/planned_downtime.editor.php:1257 +#: ../../godmode/agentes/planned_downtime.editor.php:1307 +#: ../../godmode/agentes/fields_manager.php:158 +#: ../../godmode/agentes/module_manager_editor_common.php:1321 +#: ../../godmode/agentes/module_manager.php:911 +#: ../../godmode/agentes/module_manager.php:1293 +#: ../../godmode/netflow/nf_item_list.php:263 +#: ../../godmode/netflow/nf_item_list.php:273 #: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208 #: ../../godmode/snmpconsole/snmp_alert.php:1313 #: ../../godmode/snmpconsole/snmp_filters.php:301 #: ../../godmode/snmpconsole/snmp_filters.php:312 -#: ../../godmode/alerts/alert_actions.php:331 ../../godmode/alerts/alert_actions.php:449 +#: ../../godmode/alerts/alert_actions.php:331 +#: ../../godmode/alerts/alert_actions.php:449 #: ../../godmode/alerts/alert_list.list.php:926 #: ../../godmode/alerts/alert_templates.php:446 ../../godmode/setup/news.php:251 -#: ../../godmode/setup/gis.php:70 ../../godmode/setup/links.php:146 -#: ../../godmode/setup/snmp_wizard.php:110 ../../godmode/setup/setup_visuals.php:1374 -#: ../../godmode/setup/setup_visuals.php:1413 ../../godmode/setup/setup_visuals.php:1433 +#: ../../godmode/setup/gis.php:71 ../../godmode/setup/links.php:146 +#: ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/setup/setup_visuals.php:1395 +#: ../../godmode/setup/setup_visuals.php:1434 +#: ../../godmode/setup/setup_visuals.php:1454 #: ../../godmode/reporting/reporting_builder.list_items.php:629 #: ../../godmode/reporting/reporting_builder.list_items.php:667 #: ../../godmode/reporting/reporting_builder.list_items.php:690 @@ -2218,38 +2891,42 @@ msgstr "コピー" #: ../../godmode/reporting/create_container.php:683 #: ../../godmode/reporting/map_builder.php:388 #: ../../godmode/reporting/map_builder.php:512 -#: ../../godmode/reporting/map_builder.php:523 ../../godmode/reporting/graphs.php:367 -#: ../../godmode/reporting/graphs.php:368 ../../godmode/reporting/graphs.php:394 +#: ../../godmode/reporting/map_builder.php:523 +#: ../../godmode/reporting/graphs.php:367 ../../godmode/reporting/graphs.php:368 +#: ../../godmode/reporting/graphs.php:394 #: ../../godmode/reporting/graph_builder.graph_editor.php:216 #: ../../godmode/reporting/graph_builder.graph_editor.php:256 #: ../../godmode/reporting/visual_console_builder.elements.php:763 #: ../../godmode/reporting/reporting_builder.php:1207 #: ../../godmode/reporting/reporting_builder.php:1291 -#: ../../godmode/events/event_filter.php:192 ../../godmode/events/event_filter.php:211 +#: ../../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:259 -#: ../../include/functions_cron.php:924 ../../include/functions_cron.php:952 +#: ../../godmode/servers/servers.build_table.php:270 +#: ../../include/functions_cron.php:935 ../../include/functions_cron.php:963 #: ../../include/class/ConfigPEN.class.php:264 -#: ../../include/class/SatelliteAgent.class.php:714 -#: ../../include/class/NetworkMap.class.php:2798 +#: ../../include/class/SatelliteAgent.class.php:1168 +#: ../../include/class/NetworkMap.class.php:2932 #: ../../include/class/ManageNetScanScripts.class.php:405 -#: ../../include/class/CredentialStore.class.php:1102 #: ../../include/class/CredentialStore.class.php:1290 -#: ../../include/class/ModuleTemplates.class.php:933 -#: ../../include/class/ModuleTemplates.class.php:1211 +#: ../../include/class/CredentialStore.class.php:1717 +#: ../../include/class/SnmpConsole.class.php:496 +#: ../../include/class/SnmpConsole.class.php:547 +#: ../../include/class/SnmpConsole.class.php:901 +#: ../../include/class/SnmpConsole.class.php:913 +#: ../../include/class/ModuleTemplates.class.php:934 +#: ../../include/class/ModuleTemplates.class.php:1212 #: ../../include/class/CalendarManager.class.php:737 -#: ../../include/functions_container.php:191 ../../include/functions_container.php:325 -#: ../../operation/visual_console/view.php:733 -#: ../../operation/agentes/pandora_networkmap.php:714 -#: ../../operation/agentes/pandora_networkmap.php:801 +#: ../../include/functions_container.php:191 +#: ../../include/functions_container.php:325 +#: ../../include/lib/ClusterViewer/ClusterManager.php:634 +#: ../../operation/visual_console/view.php:845 +#: ../../operation/agentes/pandora_networkmap.php:721 +#: ../../operation/agentes/pandora_networkmap.php:811 #: ../../operation/messages/message_list.php:201 #: ../../operation/messages/message_list.php:272 #: ../../operation/messages/message_list.php:275 #: ../../operation/messages/message_list.php:293 -#: ../../operation/snmpconsole/snmp_view.php:1038 -#: ../../operation/snmpconsole/snmp_view.php:1051 -#: ../../operation/snmpconsole/snmp_view.php:1220 -#: ../../operation/snmpconsole/snmp_view.php:1269 #: ../../operation/gis_maps/gis_map.php:190 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198 @@ -2280,7 +2957,8 @@ msgid "Please select widget" msgstr "ウィジェットを選択してください" #: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 -#: ../../operation/snmpconsole/snmp_view.php:1298 ../../operation/events/events.php:2924 +#: ../../include/class/SnmpConsole.class.php:1539 +#: ../../operation/events/events.php:3082 msgid "Until next" msgstr "次まで" @@ -2297,10 +2975,6 @@ msgstr "非公開" msgid "Favourite" msgstr "お気に入り" -#: ../../views/dashboard/cell.php:42 -msgid "New widget" -msgstr "新規ウィジェット" - #: ../../views/dashboard/cell.php:56 msgid "Configure widget" msgstr "ウィジェット設定" @@ -2309,7 +2983,8 @@ msgstr "ウィジェット設定" msgid "Delete widget" msgstr "ウェジェットの削除" -#: ../../views/dashboard/slides.php:41 ../../operation/snmpconsole/snmp_view.php:741 +#: ../../views/dashboard/slides.php:41 +#: ../../include/class/SnmpConsole.class.php:248 msgid "Exit fullscreen" msgstr "全画面表示を終了" @@ -2322,13 +2997,12 @@ msgstr "変更周期" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../include/functions.php:3875 +#: ../../include/functions.php:3921 msgid "Previous" msgstr "前へ" #: ../../views/dashboard/slides.php:218 -#: ../../enterprise/operation/agentes/transactional_map.php:402 -#: ../../operation/menu.php:432 +#: ../../enterprise/meta/general/main_menu.php:277 ../../operation/menu.php:441 msgid "Stop" msgstr "停止" @@ -2345,22 +3019,22 @@ msgstr "一時停止" #: ../../enterprise/meta/monitoring/wizard/wizard.php:132 #: ../../enterprise/godmode/wizards/Cloud.class.php:579 #: ../../enterprise/include/class/VMware.app.php:534 -#: ../../enterprise/include/class/Omnishell.class.php:643 +#: ../../enterprise/include/class/Omnishell.class.php:645 #: ../../enterprise/include/class/DB2.app.php:567 #: ../../enterprise/include/class/SAP.app.php:442 -#: ../../enterprise/include/class/Aws.cloud.php:1423 +#: ../../enterprise/include/class/Aws.cloud.php:1424 #: ../../enterprise/include/class/MySQL.app.php:589 #: ../../enterprise/include/class/Oracle.app.php:574 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:832 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1094 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1966 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2106 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1234 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:834 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1096 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1968 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2108 #: ../../godmode/alerts/configure_alert_template.php:1181 #: ../../godmode/alerts/configure_alert_template.php:1188 -#: ../../godmode/wizards/HostDevices.class.php:769 +#: ../../godmode/wizards/HostDevices.class.php:771 #: ../../include/class/CustomNetScan.class.php:550 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1234 msgid "Next" msgstr "次" @@ -2370,11 +3044,11 @@ msgstr "ボックスモード" #: ../../views/dashboard/slides.php:254 msgid "" -"This mode will show the dashboard with all the widgets in the screen. Click to change " -"to single screen mode." +"This mode will show the dashboard with all the widgets in the screen. Click to " +"change to single screen mode." msgstr "" -"このモードでは、画面にすべてのウィジェットを含むダッシュボードが表示されます。 クリッ" -"クしてシングルスクリーンモードに変更します。" +"このモードでは、画面にすべてのウィジェットを含むダッシュボードが表示されます。 " +"クリックしてシングルスクリーンモードに変更します。" #: ../../views/dashboard/slides.php:259 msgid "Single screen" @@ -2385,8 +3059,8 @@ msgid "" "This mode will show each widget in a screen, rotating between elements in each " "dashboard. Click to change to boxed mode." msgstr "" -"このモードでは、各ウィジェットが画面に表示され、各ダッシュボードの要素間でローテートし" -"ます。 クリックしてボックスモードに変更します。" +"このモードでは、各ウィジェットが画面に表示され、各ダッシュボードの要素間でロー" +"テートします。 クリックしてボックスモードに変更します。" #: ../../enterprise/views/ncm/snippets/list.php:32 #: ../../enterprise/views/ncm/snippets/edit.php:42 @@ -2399,8 +3073,8 @@ msgstr "" #: ../../enterprise/views/ncm/models/list.php:32 #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 -#: ../../enterprise/views/ncm/vendors/edit.php:35 ../../include/functions.php:1238 -#: ../../include/functions_events.php:2974 +#: ../../enterprise/views/ncm/vendors/edit.php:35 +#: ../../include/functions.php:1284 ../../include/functions_events.php:3037 msgid "Network configuration manager" msgstr "ネットワーク設定管理" @@ -2409,28 +3083,6 @@ msgstr "ネットワーク設定管理" msgid "Snippets" msgstr "一部分" -#: ../../enterprise/views/ncm/snippets/list.php:94 -#: ../../enterprise/views/ncm/templates/list.php:100 -#: ../../enterprise/views/ncm/devices/list.php:147 -#: ../../enterprise/views/ncm/firmwares/list.php:100 -#: ../../enterprise/views/cluster/list.php:87 -#: ../../enterprise/godmode/policies/policy_agents.php:436 -#: ../../enterprise/godmode/policies/policy_agents.php:468 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:116 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 -#: ../../enterprise/include/class/Omnishell.class.php:812 -#: ../../enterprise/include/class/Omnishell.class.php:891 -#: ../../include/ajax/events.php:768 ../../include/functions_html.php:1244 -#: ../../include/functions_html.php:1397 ../../include/functions_snmp_browser.php:1486 -msgid "Filter group" -msgstr "フィルターグループ" - #: ../../enterprise/views/ncm/snippets/edit.php:73 #: ../../enterprise/views/ncm/templates/edit.php:73 #: ../../enterprise/views/ncm/firmwares/edit.php:72 @@ -2479,7 +3131,7 @@ msgid "Device model" msgstr "デバイスモデル" #: ../../enterprise/views/ncm/agent/manage.php:102 -#: ../../godmode/agentes/module_manager_editor_network.php:482 +#: ../../godmode/agentes/module_manager_editor_network.php:526 msgid "Connection method" msgstr "接続方法" @@ -2492,19 +3144,21 @@ msgid "connect using telnet" msgstr "telnet を用いて接続" #: ../../enterprise/views/ncm/agent/manage.php:118 -#: ../../enterprise/meta/include/functions_meta.php:2092 +#: ../../enterprise/meta/include/functions_meta.php:2082 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 -#: ../../enterprise/godmode/setup/setup_history.php:185 +#: ../../enterprise/godmode/setup/setup_history.php:192 #: ../../enterprise/godmode/servers/manage_export_form.php:121 #: ../../enterprise/include/class/Azure.cloud.php:813 #: ../../enterprise/include/class/VMware.app.php:632 #: ../../enterprise/include/class/Aws.S3.php:574 -#: ../../enterprise/include/class/Aws.cloud.php:556 ../../extensions/quick_shell.php:181 +#: ../../enterprise/include/class/Aws.cloud.php:556 +#: ../../extensions/quick_shell.php:181 #: ../../godmode/modules/manage_network_components_form_network.php:53 #: ../../godmode/agentes/module_manager_editor_network.php:126 #: ../../godmode/massive/massive_edit_modules.php:1145 -#: ../../godmode/servers/modificar_server.php:84 ../../include/functions_config.php:1543 -#: ../../include/class/AgentWizard.class.php:638 +#: ../../godmode/servers/modificar_server.php:84 +#: ../../include/functions_config.php:1553 +#: ../../include/class/AgentWizard.class.php:647 #: ../../include/functions_snmp_browser.php:714 msgid "Port" msgstr "ポート番号" @@ -2551,9 +3205,8 @@ msgstr "NCM 状態" #: ../../enterprise/views/ncm/agent/manage.php:259 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109 -#: ../../enterprise/godmode/reporting/mysql_builder.php:240 -#: ../../enterprise/include/ajax/transactional.ajax.php:83 -#: ../../extensions/insert_data.php:208 ../../godmode/setup/gis_step_2.php:521 +#: ../../enterprise/godmode/reporting/mysql_builder.php:242 +#: ../../extensions/insert_data.php:208 ../../godmode/setup/gis_step_2.php:522 #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/reporting/visual_console_builder.data.php:229 #: ../../godmode/reporting/reporting_builder.main.php:45 @@ -2583,11 +3236,12 @@ msgstr "スクリプトタイプ" #: ../../enterprise/views/ncm/agent/details.php:90 #: ../../enterprise/include/class/CommandCenter.class.php:468 -#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226 -#: ../../include/functions_reporting_html.php:4206 -#: ../../include/functions_reporting_html.php:4353 -#: ../../include/functions_reporting_html.php:4694 -#: ../../include/functions_reporting_html.php:4705 ../../include/functions_db.php:1918 +#: ../../extensions/api_checker.php:303 ../../extensions/api_checker.php:310 +#: ../../include/functions_reporting_html.php:4225 +#: ../../include/functions_reporting_html.php:4372 +#: ../../include/functions_reporting_html.php:4714 +#: ../../include/functions_reporting_html.php:4725 +#: ../../include/functions_db.php:1959 msgid "Result" msgstr "結果" @@ -2652,7 +3306,7 @@ msgid "Preview" msgstr "プレビュー" #: ../../enterprise/views/ncm/agent/details.php:312 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:131 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:133 #: ../../enterprise/meta/monitoring/custom_fields_view.php:182 #: ../../enterprise/meta/monitoring/group_view.php:236 #: ../../enterprise/meta/monitoring/group_view.php:242 @@ -2660,18 +3314,15 @@ msgstr "プレビュー" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122 #: ../../enterprise/godmode/services/services.elements.php:383 #: ../../enterprise/include/functions_cron.php:585 -#: ../../enterprise/include/functions_reporting_pdf.php:641 +#: ../../enterprise/include/functions_reporting_pdf.php:643 #: ../../enterprise/include/functions_HA_cluster.php:70 #: ../../enterprise/include/class/DatabaseHA.class.php:223 -#: ../../enterprise/include/functions_reporting.php:1890 -#: ../../enterprise/include/functions_reporting.php:2940 -#: ../../enterprise/include/functions_reporting.php:3928 -#: ../../enterprise/include/functions_reporting.php:4848 -#: ../../enterprise/include/functions_reporting.php:6153 +#: ../../enterprise/include/functions_reporting.php:1891 +#: ../../enterprise/include/functions_reporting.php:2941 +#: ../../enterprise/include/functions_reporting.php:3929 +#: ../../enterprise/include/functions_reporting.php:4849 +#: ../../enterprise/include/functions_reporting.php:6154 #: ../../enterprise/include/lib/NetworkManager.php:103 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:582 -#: ../../enterprise/operation/agentes/transactional_map.php:339 -#: ../../enterprise/operation/agentes/transactional_map.php:385 #: ../../enterprise/operation/agentes/tag_view.php:134 #: ../../enterprise/operation/services/services.service.php:180 #: ../../enterprise/operation/services/services.service_map.php:152 @@ -2679,7 +3330,7 @@ msgstr "プレビュー" #: ../../enterprise/operation/services/services.list.php:240 #: ../../enterprise/operation/services/services.list.php:571 #: ../../enterprise/operation/services/services.table_services.php:162 -#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1064 +#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1069 #: ../../godmode/massive/massive_copy_modules.php:118 #: ../../godmode/massive/massive_copy_modules.php:278 #: ../../godmode/massive/massive_delete_modules.php:421 @@ -2687,35 +3338,39 @@ msgstr "プレビュー" #: ../../godmode/massive/massive_edit_modules.php:388 #: ../../godmode/massive/massive_edit_modules.php:474 #: ../../godmode/alerts/alert_list.builder.php:290 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3768 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3787 #: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 -#: ../../include/graphs/functions_flot.php:305 -#: ../../include/functions_reporting_html.php:2462 -#: ../../include/functions_reporting_html.php:2475 -#: ../../include/functions_reporting_html.php:3455 -#: ../../include/functions_reporting_html.php:3863 ../../include/functions.php:1225 -#: ../../include/functions.php:4108 ../../include/ajax/module.php:1071 -#: ../../include/functions_ui.php:549 ../../include/functions_ui.php:550 -#: ../../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:702 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:437 +#: ../../include/graphs/functions_flot.php:310 +#: ../../include/functions_reporting_html.php:2473 +#: ../../include/functions_reporting_html.php:2486 +#: ../../include/functions_reporting_html.php:3468 +#: ../../include/functions_reporting_html.php:3882 +#: ../../include/functions.php:1271 ../../include/functions.php:4159 +#: ../../include/ajax/module.php:1084 ../../include/functions_ui.php:549 +#: ../../include/functions_ui.php:550 ../../include/functions_visual_map.php:2457 +#: ../../include/functions_visual_map.php:2485 +#: ../../include/functions_visual_map.php:2503 +#: ../../include/functions_visual_map.php:2521 +#: ../../include/functions_alerts.php:702 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:439 #: ../../include/functions_reports.php:557 ../../include/functions_maps.php:54 #: ../../include/functions_massive_operations.php:151 -#: ../../include/functions_netflow.php:1865 ../../include/functions_reporting.php:6440 +#: ../../include/functions_netflow.php:1865 +#: ../../include/functions_reporting.php:6668 #: ../../include/functions_filemanager.php:668 #: ../../include/lib/Dashboard/Widgets/tree_view.php:388 #: ../../include/lib/Dashboard/Widgets/tree_view.php:421 #: ../../include/lib/Dashboard/Widgets/tree_view.php:673 -#: ../../include/functions_events.php:2922 ../../operation/tree.php:215 +#: ../../include/lib/ClusterViewer/ClusterManager.php:582 +#: ../../include/functions_events.php:2985 ../../operation/tree.php:215 #: ../../operation/tree.php:272 ../../operation/tree.php:476 #: ../../operation/agentes/estado_agente.php:271 #: ../../operation/agentes/status_monitor.php:495 -#: ../../operation/agentes/group_view.php:224 ../../operation/agentes/group_view.php:229 +#: ../../operation/agentes/group_view.php:224 +#: ../../operation/agentes/group_view.php:229 #: ../../operation/agentes/estado_monitores.php:526 -#: ../../operation/agentes/pandora_networkmap.view.php:1728 -#: ../../operation/agentes/tactical.php:181 ../../operation/events/events.php:725 +#: ../../operation/agentes/pandora_networkmap.view.php:1771 +#: ../../operation/agentes/tactical.php:182 ../../operation/events/events.php:785 #: ../../general/logon_ok.php:145 msgid "Unknown" msgstr "不明" @@ -2772,7 +3427,7 @@ msgid "Diff" msgstr "差分" #: ../../enterprise/views/ncm/agent/details.php:485 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:468 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:585 #: ../../enterprise/meta/advanced/collections.php:391 #: ../../enterprise/meta/monitoring/wizard/wizard.php:140 #: ../../enterprise/meta/include/functions_autoprovision.php:477 @@ -2780,45 +3435,46 @@ msgstr "差分" #: ../../enterprise/meta/include/functions_alerts_meta.php:164 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:499 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:139 -#: ../../enterprise/godmode/agentes/inventory_manager.php:224 -#: ../../enterprise/godmode/agentes/collections.php:384 +#: ../../enterprise/godmode/agentes/collections.php:447 #: ../../enterprise/godmode/policies/policy_alerts.php:353 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:359 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:393 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:691 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:361 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:395 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:693 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:305 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:389 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:223 #: ../../enterprise/godmode/setup/setup_skins.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2120 -#: ../../enterprise/include/functions_reporting_csv.php:2511 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2337 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2505 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3476 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2171 +#: ../../enterprise/include/functions_reporting_csv.php:2515 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2339 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2507 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3478 #: ../../enterprise/include/class/ManageBackups.class.php:167 -#: ../../enterprise/operation/agentes/transactional_map.php:213 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:190 #: ../../enterprise/operation/services/services.list.php:513 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1072 #: ../../enterprise/tools/ipam/ipam_ajax.php:532 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:689 -#: ../../godmode/groups/group_list.php:853 +#: ../../godmode/groups/group_list.php:858 +#: ../../godmode/agentes/inventory_manager.php:225 #: ../../godmode/agentes/modificar_agente.php:653 -#: ../../godmode/agentes/planned_downtime.editor.php:1225 -#: ../../godmode/agentes/fields_manager.php:121 ../../godmode/menu.php:273 +#: ../../godmode/agentes/planned_downtime.editor.php:1213 +#: ../../godmode/agentes/fields_manager.php:124 ../../godmode/menu.php:276 #: ../../godmode/alerts/alert_list.list.php:130 #: ../../godmode/alerts/alert_list.list.php:498 -#: ../../godmode/alerts/alert_commands.php:745 ../../godmode/alerts/alert_view.php:301 +#: ../../godmode/alerts/alert_commands.php:746 +#: ../../godmode/alerts/alert_view.php:301 #: ../../godmode/alerts/alert_list.builder.php:96 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2061 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2064 #: ../../godmode/events/event_responses.list.php:53 ../../godmode/tag/tag.php:284 #: ../../godmode/category/category.php:170 -#: ../../include/functions_reporting_html.php:3343 ../../include/functions_cron.php:496 -#: ../../include/functions_treeview.php:413 -#: ../../include/class/SatelliteAgent.class.php:129 +#: ../../include/functions_reporting_html.php:3356 +#: ../../include/functions_cron.php:507 ../../include/functions_treeview.php:413 +#: ../../include/class/SatelliteAgent.class.php:148 #: ../../include/class/AgentsAlerts.class.php:254 #: ../../include/class/AgentsAlerts.class.php:285 -#: ../../include/functions_reporting.php:2998 +#: ../../include/class/SnmpConsole.class.php:344 +#: ../../include/class/SatelliteCollection.class.php:131 +#: ../../include/functions_reporting.php:3129 #: ../../include/functions_filemanager.php:607 msgid "Actions" msgstr "アクション" @@ -2861,14 +3517,15 @@ msgstr "次の差分: バックアップ - 選択したもの" #: ../../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:483 +#: ../../enterprise/godmode/modules/configure_local_component.php:495 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251 #: ../../enterprise/godmode/agentes/manage_config_remote.php:65 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1191 -#: ../../godmode/agentes/planned_downtime.list.php:624 ../../godmode/menu.php:249 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1379 +#: ../../godmode/agentes/planned_downtime.list.php:661 ../../godmode/menu.php:252 #: ../../godmode/setup/setup.php:330 ../../godmode/events/events.php:124 -#: ../../include/functions_reports.php:905 ../../include/functions_reports.php:909 +#: ../../include/functions_reports.php:905 +#: ../../include/functions_reports.php:909 #: ../../include/class/ConfigPEN.class.php:327 #: ../../include/class/ModuleTemplates.class.php:195 #: ../../include/class/ModuleTemplates.class.php:213 @@ -2881,10 +3538,11 @@ msgstr "ファームウエアバージョンを取得しますか?" #: ../../enterprise/views/ncm/agent/details.php:625 msgid "" -"This action will connect to the device to retrieve firmware version. Are you sure?" +"This action will connect to the device to retrieve firmware version. Are you " +"sure?" msgstr "" -"この操作はファームウエアバージョンを取得するためにデバイスへ接続します。よろしいです" -"か?" +"この操作はファームウエアバージョンを取得するためにデバイスへ接続します。よろし" +"いですか?" #: ../../enterprise/views/ncm/agent/details.php:635 msgid "Get running config?" @@ -2892,8 +3550,10 @@ msgstr "running config を取得しますか?" #: ../../enterprise/views/ncm/agent/details.php:636 msgid "" -"This action will connect to the device to retrieve latest configuration. Are you sure?" -msgstr "この操作は最新の設定を取得するためにデバイスへ接続します。よろしいですか?" +"This action will connect to the device to retrieve latest configuration. Are " +"you sure?" +msgstr "" +"この操作は最新の設定を取得するためにデバイスへ接続します。よろしいですか?" #: ../../enterprise/views/ncm/agent/details.php:647 msgid "Backup latest config?" @@ -2901,9 +3561,10 @@ msgstr "最新の設定をバックアップしますた?" #: ../../enterprise/views/ncm/agent/details.php:648 msgid "" -"This action will overwrite current backup to use latest retrieved configuration. Are " -"you sure?" -msgstr "この操作は取得した最新の設定で既存のバックアップを上書きします。よろしいですか?" +"This action will overwrite current backup to use latest retrieved " +"configuration. Are you sure?" +msgstr "" +"この操作は取得した最新の設定で既存のバックアップを上書きします。よろしいですか?" #: ../../enterprise/views/ncm/agent/details.php:656 msgid "Backup target config?" @@ -2911,8 +3572,10 @@ msgstr "対象の設定をバックアップしますか?" #: ../../enterprise/views/ncm/agent/details.php:657 msgid "" -"This action will overwrite current backup to use selected configuration. Are you sure?" -msgstr "この操作は選択した設定で既存のバックアップを上書きします。よろしいですか?" +"This action will overwrite current backup to use selected configuration. Are " +"you sure?" +msgstr "" +"この操作は選択した設定で既存のバックアップを上書きします。よろしいですか?" #: ../../enterprise/views/ncm/agent/details.php:668 msgid "Restore device configuration?" @@ -2920,16 +3583,19 @@ msgstr "デバイス設定をリストアしますか?" #: ../../enterprise/views/ncm/agent/details.php:669 msgid "" -"This action will overwrite device configuration with latest backup. Are you sure?" -msgstr "この操作は最新のバックアップでデバイスの設定を上書きします。よろしいですか?" +"This action will overwrite device configuration with latest backup. Are you " +"sure?" +msgstr "" +"この操作は最新のバックアップでデバイスの設定を上書きします。よろしいですか?" #: ../../enterprise/views/ncm/agent/details.php:688 msgid "Customize script execution" msgstr "カスタムスクリプト実行" -#: ../../enterprise/views/ncm/agent/details.php:689 ../../include/ajax/events.php:2142 +#: ../../enterprise/views/ncm/agent/details.php:689 +#: ../../include/ajax/events.php:2114 #: ../../include/class/ExternalTools.class.php:581 -#: ../../include/functions_events.php:3494 +#: ../../include/functions_events.php:3557 msgid "Execute" msgstr "実行" @@ -2940,15 +3606,16 @@ msgstr "実行" #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:192 #: ../../enterprise/godmode/reporting/visual_console_template.php:109 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2097 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2148 #: ../../enterprise/include/functions_reporting.php:146 -#: ../../enterprise/include/functions_reporting.php:7973 -#: ../../enterprise/include/functions_reporting.php:8001 -#: ../../enterprise/include/functions_reporting.php:8072 -#: ../../godmode/agentes/configurar_agente.php:743 ../../godmode/menu.php:168 -#: ../../godmode/menu.php:269 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1996 -#: ../../include/functions_menu.php:510 ../../include/class/ConfigPEN.class.php:332 +#: ../../enterprise/include/functions_reporting.php:7974 +#: ../../enterprise/include/functions_reporting.php:8002 +#: ../../enterprise/include/functions_reporting.php:8073 +#: ../../godmode/agentes/configurar_agente.php:764 ../../godmode/menu.php:169 +#: ../../godmode/menu.php:272 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1999 +#: ../../include/functions_menu.php:510 +#: ../../include/class/ConfigPEN.class.php:332 #: ../../include/class/ModuleTemplates.class.php:196 #: ../../include/class/ModuleTemplates.class.php:214 msgid "Templates" @@ -2981,12 +3648,17 @@ msgid "Devices" msgstr "デバイス" #: ../../enterprise/views/ncm/templates/edit.php:102 -msgid "Comma separated, a vendors list compatible with scripts defined within template." -msgstr "カンマ区切りの、テンプレート内で定義されたスクリプトと互換性のあるベンダ一覧。" +msgid "" +"Comma separated, a vendors list compatible with scripts defined within " +"template." +msgstr "" +"カンマ区切りの、テンプレート内で定義されたスクリプトと互換性のあるベンダ一覧。" #: ../../enterprise/views/ncm/templates/edit.php:130 -msgid "Comma separated, a model list compatible with scripts defined within template." -msgstr "カンマ区切りの、テンプレート内で定義されたスクリプトと互換性のあるモデル一覧。" +msgid "" +"Comma separated, a model list compatible with scripts defined within template." +msgstr "" +"カンマ区切りの、テンプレート内で定義されたスクリプトと互換性のあるモデル一覧。" #: ../../enterprise/views/ncm/templates/edit.php:148 msgid "This script will be used to test devices availability" @@ -3006,9 +3678,11 @@ msgstr "スクリプト: 設定取得" #: ../../enterprise/views/ncm/templates/edit.php:204 msgid "" -"This script will be used to apply configuration, previously backed up, to devices" +"This script will be used to apply configuration, previously backed up, to " +"devices" msgstr "" -"このスクリプトは、以前のバックアップからデバイスの設定を適用するために使用されます" +"このスクリプトは、以前のバックアップからデバイスの設定を適用するために使用され" +"ます" #: ../../enterprise/views/ncm/templates/edit.php:209 msgid "Script: set configuration" @@ -3017,7 +3691,8 @@ msgstr "スクリプト: 設定投入" #: ../../enterprise/views/ncm/templates/edit.php:232 msgid "This script will be used to retrieve firmware version from devices" msgstr "" -"このスクリプトは、デバイスからファームウェアバージョンを取得するために使用されます" +"このスクリプトは、デバイスからファームウェアバージョンを取得するために使用され" +"ます" #: ../../enterprise/views/ncm/templates/edit.php:237 msgid "Script: get firmware" @@ -3026,8 +3701,8 @@ msgstr "スクリプト: ファームウエア取得" #: ../../enterprise/views/ncm/templates/edit.php:259 msgid "This script will be used to upgrade firmware version of the devices" msgstr "" -"このスクリプトは、デバイスのファームウェアバージョンをアップグレードするために使用され" -"ます" +"このスクリプトは、デバイスのファームウェアバージョンをアップグレードするために" +"使用されます" #: ../../enterprise/views/ncm/templates/edit.php:264 msgid "Script: set firmware" @@ -3048,20 +3723,20 @@ msgstr "NCM" #: ../../enterprise/views/ncm/devices/list.php:69 msgid "" -"WARNING: This is a new feature and is still at an early stage. It is available with " -"limited features, use it with caution and send us your feedback to improve these " -"current capabilities." +"WARNING: This is a new feature and is still at an early stage. It is available " +"with limited features, use it with caution and send us your feedback to " +"improve these current capabilities." msgstr "" -"警告: これは新機能であり、まだ初期段階です。 限られた機能で利用可能です。注意して使用" -"し、現在の機能の改善のためのフィードバックをお願いします。" +"警告: これは新機能であり、まだ初期段階です。 限られた機能で利用可能です。注意し" +"て使用し、現在の機能の改善のためのフィードバックをお願いします。" #: ../../enterprise/views/ncm/devices/list.php:72 msgid "" -"Network configuration manager is used to keep configurations and software versions of " -"any network device in your infrastructure under your control." +"Network configuration manager is used to keep configurations and software " +"versions of any network device in your infrastructure under your control." msgstr "" -"ネットワーク設定管理は、インフラストラクチャ内のネットワークデバイスの設定とソフトウェ" -"アバージョンを管理するために使用します。" +"ネットワーク設定管理は、インフラストラクチャ内のネットワークデバイスの設定とソ" +"フトウェアバージョンを管理するために使用します。" #: ../../enterprise/views/ncm/devices/list.php:77 msgid "" @@ -3069,8 +3744,8 @@ msgid "" "Manager, and enable the ncm features,\n" " you will be asked for the vendor and model of the device." msgstr "" -"使用を開始するには、目的のエージェントに移動しネットワーク設定管理タブを選択して、ncm " -"機能を有効にします。\n" +"使用を開始するには、目的のエージェントに移動しネットワーク設定管理タブを選択し" +"て、ncm 機能を有効にします。\n" " デバイスのベンダとモデルを尋ねられます。" #: ../../enterprise/views/ncm/devices/list.php:84 @@ -3084,15 +3759,16 @@ msgstr "NCM テンプレートを利用するようにエージェントを設 #: ../../enterprise/views/ncm/devices/list.php:117 #: ../../enterprise/godmode/servers/manage_export.php:140 #: ../../enterprise/godmode/servers/manage_export_form.php:99 -#: ../../enterprise/include/functions_ipam.php:2042 +#: ../../enterprise/include/functions_ipam.php:2050 #: ../../enterprise/tools/ipam/ipam_network.php:396 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254 -#: ../../enterprise/tools/ipam/ipam_excel.php:133 +#: ../../enterprise/tools/ipam/ipam_excel.php:139 #: ../../enterprise/tools/ipam/ipam_ajax.php:359 #: ../../enterprise/tools/ipam/ipam_calculator.php:62 -#: ../../godmode/setup/setup_general.php:660 ../../operation/agentes/ver_agente.php:1181 +#: ../../godmode/setup/setup_general.php:741 +#: ../../operation/agentes/ver_agente.php:1199 msgid "Address" msgstr "アドレス" @@ -3107,120 +3783,6 @@ msgstr "ベンダ" msgid "Model" msgstr "モデル" -#: ../../enterprise/views/ncm/devices/list.php:120 -#: ../../enterprise/views/cluster/list.php:63 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:466 -#: ../../enterprise/meta/advanced/policymanager.queue.php:225 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:707 -#: ../../enterprise/meta/include/functions_events_meta.php:78 -#: ../../enterprise/meta/agentsearch.php:140 ../../enterprise/meta/agentsearch.php:330 -#: ../../enterprise/extensions/vmware/vmware_view.php:1085 -#: ../../enterprise/godmode/agentes/collection_manager.php:112 -#: ../../enterprise/godmode/agentes/collection_manager.php:209 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 -#: ../../enterprise/godmode/policies/policy_queue.php:616 -#: ../../enterprise/godmode/policies/policies.php:409 -#: ../../enterprise/godmode/policies/policy_collections.php:172 -#: ../../enterprise/godmode/policies/policy_collections.php:266 -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125 -#: ../../enterprise/godmode/admin_access_logs.php:50 -#: ../../enterprise/godmode/servers/HA_cluster.php:170 -#: ../../enterprise/godmode/servers/list_satellite.php:38 -#: ../../enterprise/include/functions_reporting_csv.php:722 -#: ../../enterprise/include/functions_reporting_csv.php:927 -#: ../../enterprise/include/functions_reporting_csv.php:2039 -#: ../../enterprise/include/functions_reporting_csv.php:2785 -#: ../../enterprise/include/class/ManageBackups.class.php:165 -#: ../../enterprise/include/functions_reporting.php:1858 -#: ../../enterprise/include/functions_reporting.php:2897 -#: ../../enterprise/include/functions_reporting.php:3884 -#: ../../enterprise/include/functions_reporting.php:6134 -#: ../../enterprise/include/functions_services.php:1613 -#: ../../enterprise/operation/agentes/policy_view.php:66 -#: ../../enterprise/operation/agentes/policy_view.php:166 -#: ../../enterprise/operation/agentes/policy_view.php:262 -#: ../../enterprise/operation/agentes/policy_view.php:397 -#: ../../enterprise/operation/agentes/tag_view.php:607 -#: ../../enterprise/operation/agentes/tag_view.php:685 -#: ../../enterprise/operation/agentes/collection_view.php:78 -#: ../../enterprise/operation/services/services.service.php:127 -#: ../../enterprise/operation/services/services.list.php:243 -#: ../../enterprise/operation/services/services.list.php:507 -#: ../../enterprise/operation/services/services.table_services.php:165 -#: ../../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:870 -#: ../../godmode/massive/massive_copy_modules.php:121 -#: ../../godmode/massive/massive_copy_modules.php:281 -#: ../../godmode/massive/massive_delete_modules.php:415 -#: ../../godmode/massive/massive_edit_agents.php:926 -#: ../../godmode/alerts/alert_list.list.php:142 -#: ../../godmode/alerts/alert_list.list.php:496 ../../godmode/alerts/alert_view.php:114 -#: ../../godmode/setup/setup_integria.php:426 ../../godmode/setup/setup_integria.php:548 -#: ../../godmode/reporting/reporting_builder.item_editor.php:77 -#: ../../godmode/events/custom_events.php:101 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:602 -#: ../../godmode/servers/servers.build_table.php:80 ../../mobile/operation/agents.php:97 -#: ../../mobile/operation/agents.php:144 ../../mobile/operation/agents.php:243 -#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:406 -#: ../../mobile/operation/modules.php:163 ../../mobile/operation/modules.php:164 -#: ../../mobile/operation/modules.php:275 ../../mobile/operation/modules.php:276 -#: ../../mobile/operation/modules.php:603 ../../mobile/operation/modules.php:609 -#: ../../mobile/operation/modules.php:615 ../../mobile/operation/modules.php:621 -#: ../../mobile/operation/modules.php:632 ../../mobile/operation/modules.php:640 -#: ../../mobile/operation/modules.php:648 ../../mobile/operation/modules.php:720 -#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:850 -#: ../../mobile/operation/alerts.php:105 ../../mobile/operation/alerts.php:106 -#: ../../mobile/operation/alerts.php:247 ../../mobile/operation/alerts.php:248 -#: ../../mobile/operation/alerts.php:350 ../../mobile/operation/events.php:649 -#: ../../mobile/operation/events.php:650 ../../mobile/operation/events.php:824 -#: ../../mobile/operation/events.php:963 ../../mobile/operation/events.php:964 -#: ../../include/functions_reporting_html.php:551 -#: ../../include/functions_reporting_html.php:1050 -#: ../../include/functions_reporting_html.php:1059 -#: ../../include/functions_reporting_html.php:1313 -#: ../../include/functions_reporting_html.php:1321 -#: ../../include/functions_reporting_html.php:1589 -#: ../../include/functions_reporting_html.php:2258 -#: ../../include/functions_reporting_html.php:2535 -#: ../../include/functions_reporting_html.php:2902 -#: ../../include/functions_reporting_html.php:3551 -#: ../../include/functions_reporting_html.php:3604 -#: ../../include/functions_reporting_html.php:5177 -#: ../../include/ajax/alert_list.ajax.php:296 ../../include/ajax/alert_list.ajax.php:321 -#: ../../include/ajax/module.php:980 ../../include/ajax/custom_fields.php:416 -#: ../../include/functions_snmp.php:369 -#: ../../include/functions_massive_operations.php:154 -#: ../../include/class/NetworkMap.class.php:2907 -#: ../../include/class/AgentsAlerts.class.php:894 -#: ../../include/class/ExternalTools.class.php:801 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:322 -#: ../../include/functions_snmp_browser.php:594 ../../include/functions_events.php:204 -#: ../../include/functions_events.php:259 ../../include/functions_events.php:2458 -#: ../../include/functions_events.php:4680 ../../operation/search_agents.php:56 -#: ../../operation/agentes/estado_agente.php:275 -#: ../../operation/agentes/estado_agente.php:763 -#: ../../operation/agentes/interface_view.functions.php:497 -#: ../../operation/agentes/status_monitor.php:1334 -#: ../../operation/agentes/alerts_status.functions.php:105 -#: ../../operation/messages/message_list.php:192 -#: ../../operation/snmpconsole/snmp_view.php:584 -#: ../../operation/snmpconsole/snmp_view.php:849 -#: ../../operation/snmpconsole/snmp_view.php:1226 -#: ../../operation/incidents/integriaims_export_csv.php:83 -#: ../../operation/incidents/configure_integriaims_incident.php:250 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322 -#: ../../operation/incidents/list_integriaims_incidents.php:320 -#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38 -msgid "Status" -msgstr "状態" - #: ../../enterprise/views/ncm/devices/list.php:121 msgid "Last queued task" msgstr "最新のキュータスク" @@ -3228,8 +3790,10 @@ msgstr "最新のキュータスク" #: ../../enterprise/views/ncm/devices/list.php:122 #: ../../enterprise/operation/services/services.service.php:133 #: ../../enterprise/operation/services/services.list.php:510 -#: ../../enterprise/tools/ipam/ipam_list.php:655 ../../extensions/agents_modules.php:317 -#: ../../operation/agentes/group_view.php:80 ../../operation/agentes/tactical.php:60 +#: ../../enterprise/tools/ipam/ipam_list.php:655 +#: ../../extensions/agents_modules.php:317 +#: ../../operation/agentes/group_view.php:80 +#: ../../operation/agentes/tactical.php:61 msgid "Last update" msgstr "最終更新" @@ -3251,8 +3815,8 @@ msgstr "ファームウエア" #: ../../enterprise/views/ncm/firmwares/list.php:74 #: ../../enterprise/include/class/Omnishell.class.php:398 -#: ../../include/class/CredentialStore.class.php:803 -#: ../../include/class/CredentialStore.class.php:911 +#: ../../include/class/CredentialStore.class.php:841 +#: ../../include/class/CredentialStore.class.php:949 msgid "Identifier" msgstr "識別子" @@ -3261,18 +3825,23 @@ msgid "Firmware" msgstr "ファームウエア" #: ../../enterprise/views/ncm/firmwares/edit.php:101 -msgid "Comma separated, a vendors list compatible with scripts defined within firmware." +msgid "" +"Comma separated, a vendors list compatible with scripts defined within " +"firmware." msgstr "" -"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるベンダー一覧。" +"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるベンダー一" +"覧。" #: ../../enterprise/views/ncm/firmwares/edit.php:129 -msgid "Comma separated, a model list compatible with scripts defined within firmware." +msgid "" +"Comma separated, a model list compatible with scripts defined within firmware." msgstr "" -"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるモデルリスト。" +"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるモデルリス" +"ト。" #: ../../enterprise/views/ncm/firmwares/edit.php:149 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:441 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:127 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:484 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:129 #: ../../enterprise/meta/monitoring/custom_fields_view.php:180 #: ../../enterprise/meta/monitoring/group_view.php:239 #: ../../enterprise/meta/monitoring/group_view.php:245 @@ -3285,19 +3854,18 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1587 #: ../../enterprise/meta/include/functions_wizard_meta.php:1707 #: ../../enterprise/meta/include/functions_wizard_meta.php:1727 -#: ../../enterprise/meta/index.php:914 ../../enterprise/meta/index.php:983 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:313 +#: ../../enterprise/meta/index.php:917 ../../enterprise/meta/index.php:986 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:336 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120 #: ../../enterprise/godmode/services/services.service.php:740 #: ../../enterprise/godmode/services/services.service.php:991 #: ../../enterprise/godmode/services/services.elements.php:374 -#: ../../enterprise/godmode/setup/setup_history.php:661 +#: ../../enterprise/godmode/setup/setup_history.php:739 #: ../../enterprise/include/class/CommandCenter.class.php:564 #: ../../enterprise/include/class/CommandCenter.class.php:603 -#: ../../enterprise/include/functions_reporting.php:4838 +#: ../../enterprise/include/functions_reporting.php:4839 #: ../../enterprise/include/functions_services.php:1448 #: ../../enterprise/include/functions_login.php:23 -#: ../../enterprise/operation/agentes/transactional_map.php:333 #: ../../enterprise/operation/agentes/tag_view.php:132 #: ../../enterprise/operation/services/services.service.php:123 #: ../../enterprise/operation/services/services.service.php:174 @@ -3308,9 +3876,12 @@ msgstr "" #: ../../enterprise/operation/services/services.list.php:505 #: ../../enterprise/operation/services/services.list.php:564 #: ../../enterprise/operation/services/services.table_services.php:160 -#: ../../update_manager_client/views/offline.php:80 ../../extensions/dbmanager.php:114 +#: ../../update_manager_client/views/offline.php:80 +#: ../../extensions/dbmanager.php:114 #: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/groups/group_list.php:1059 ../../godmode/users/configure_user.php:1705 +#: ../../godmode/groups/group_list.php:1064 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1979 #: ../../godmode/massive/massive_copy_modules.php:116 #: ../../godmode/massive/massive_copy_modules.php:276 #: ../../godmode/massive/massive_delete_modules.php:419 @@ -3319,29 +3890,35 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:386 #: ../../godmode/massive/massive_edit_modules.php:472 #: ../../godmode/setup/setup_netflow.php:71 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3766 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3785 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 -#: ../../include/functions_reporting_html.php:2474 ../../include/functions.php:1035 -#: ../../include/functions.php:1273 ../../include/functions.php:1276 -#: ../../include/functions.php:1315 ../../include/functions_graph.php:3493 -#: ../../include/functions_graph.php:3494 ../../include/functions_graph.php:5068 -#: ../../include/functions_ui.php:298 ../../include/functions_ui.php:2610 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:423 +#: ../../include/functions_reporting_html.php:2485 +#: ../../include/functions.php:1081 ../../include/functions.php:1319 +#: ../../include/functions.php:1322 ../../include/functions.php:1361 +#: ../../include/functions_graph.php:3342 ../../include/functions_graph.php:3344 +#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:298 +#: ../../include/functions_ui.php:2614 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:425 #: ../../include/functions_massive_operations.php:149 -#: ../../include/class/Diagnostics.class.php:1809 -#: ../../include/class/AgentWizard.class.php:1315 -#: ../../include/class/AgentWizard.class.php:4021 +#: ../../include/class/SatelliteAgent.class.php:1358 +#: ../../include/class/SatelliteAgent.class.php:1383 +#: ../../include/class/Diagnostics.class.php:1817 +#: ../../include/class/AgentWizard.class.php:1398 +#: ../../include/class/AgentWizard.class.php:4144 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 #: ../../include/lib/Dashboard/Widgets/tree_view.php:386 #: ../../include/lib/Dashboard/Widgets/tree_view.php:419 #: ../../include/lib/Dashboard/Widgets/tree_view.php:668 -#: ../../include/functions_events.php:3018 ../../index.php:1225 +#: ../../include/functions_events.php:3081 ../../index.php:1229 #: ../../operation/tree.php:213 ../../operation/tree.php:270 -#: ../../operation/tree.php:471 ../../operation/agentes/estado_agente.php:269 +#: ../../operation/tree.php:471 ../../operation/users/user_edit.php:277 +#: ../../operation/agentes/estado_agente.php:269 #: ../../operation/agentes/status_monitor.php:493 -#: ../../operation/agentes/group_view.php:227 ../../operation/agentes/group_view.php:232 +#: ../../operation/agentes/group_view.php:227 +#: ../../operation/agentes/group_view.php:232 #: ../../operation/agentes/estado_monitores.php:525 -#: ../../operation/agentes/tactical.php:179 ../../operation/netflow/nf_live_view.php:459 +#: ../../operation/agentes/tactical.php:180 +#: ../../operation/netflow/nf_live_view.php:459 #: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:143 msgid "Warning" msgstr "警告" @@ -3358,408 +3935,25 @@ msgstr "バイナリファイル" msgid "icon" msgstr "アイコン" -#: ../../enterprise/views/cluster/list.php:31 -#: ../../enterprise/meta/general/main_header.php:91 -#: ../../enterprise/meta/general/logon_ok.php:75 -#: ../../enterprise/meta/general/main_menu.php:189 -#: ../../enterprise/extensions/vmware/vmware_view.php:1388 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53 -#: ../../enterprise/godmode/services/services.massive.meta.php:42 -#: ../../enterprise/godmode/services/services.massive.elements.php:44 -#: ../../enterprise/godmode/reporting/aws_view.php:115 -#: ../../enterprise/godmode/reporting/aws_view.php:148 -#: ../../enterprise/include/ajax/ipam.ajax.php:455 -#: ../../enterprise/include/class/SAPView.class.php:155 -#: ../../enterprise/include/class/SAPView.class.php:199 -#: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/inventory/inventory.php:146 -#: ../../enterprise/operation/services/massive/services.delete.php:42 -#: ../../enterprise/operation/services/massive/services.create.php:595 -#: ../../enterprise/operation/services/massive/service.delete.elements.php:105 -#: ../../enterprise/operation/services/massive/service.create.elements.php:243 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:146 -#: ../../enterprise/operation/services/services.treeview_services.php:62 -#: ../../enterprise/operation/services/services.list.php:58 -#: ../../enterprise/operation/services/services.table_services.php:38 -#: ../../enterprise/tools/ipam/ipam_editor.php:261 -#: ../../extensions/agents_modules.php:474 ../../extensions/module_groups.php:260 -#: ../../extensions/realtime_graphs.php:67 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:47 -#: ../../godmode/snmpconsole/snmp_filters.php:55 -#: ../../include/class/AgentsAlerts.class.php:738 ../../operation/heatmap.php:133 -#: ../../operation/tree.php:183 ../../operation/agentes/alerts_status.php:199 -#: ../../operation/agentes/estado_agente.php:224 -#: ../../operation/agentes/interface_view.php:72 -#: ../../operation/agentes/status_monitor.php:104 -#: ../../operation/agentes/group_view.php:98 ../../operation/agentes/ver_agente.php:1915 -#: ../../operation/agentes/tactical.php:78 -#: ../../operation/snmpconsole/snmp_statistics.php:98 -#: ../../operation/snmpconsole/snmp_browser.php:86 -#: ../../operation/snmpconsole/snmp_view.php:693 -#: ../../operation/snmpconsole/snmp_view.php:802 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:56 ../../operation/menu.php:33 -#: ../../operation/menu.php:155 ../../general/first_task/cluster_builder.php:38 -msgid "Monitoring" -msgstr "モニタリング" - -#: ../../enterprise/views/cluster/list.php:31 -#: ../../general/first_task/HA_cluster_builder.php:42 -#: ../../general/first_task/cluster_builder.php:29 -#: ../../general/first_task/cluster_builder.php:51 -msgid "Clusters" -msgstr "クラスタ" - -#: ../../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:212 -#: ../../enterprise/godmode/policies/policy_modules.php:1465 -#: ../../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:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1654 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 -#: ../../enterprise/include/functions_reporting_csv.php:1651 -#: ../../enterprise/include/functions_reporting_csv.php:1767 -#: ../../enterprise/include/functions_reporting_csv.php:2007 -#: ../../enterprise/include/functions_reporting_csv.php:2075 -#: ../../enterprise/include/functions_services.php:1602 -#: ../../enterprise/operation/agentes/policy_view.php:396 -#: ../../enterprise/operation/agentes/tag_view.php:605 -#: ../../enterprise/operation/agentes/ver_agente.php:32 -#: ../../godmode/modules/manage_network_templates_form.php:232 -#: ../../godmode/modules/manage_network_components_form_common.php:64 -#: ../../godmode/modules/manage_network_components.php:750 -#: ../../godmode/update_manager/update_manager.history.php:41 -#: ../../godmode/agentes/agent_template.php:236 -#: ../../godmode/agentes/modificar_agente.php:650 -#: ../../godmode/agentes/planned_downtime.list.php:622 -#: ../../godmode/agentes/planned_downtime.editor.php:856 -#: ../../godmode/agentes/module_manager_editor_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:401 -#: ../../godmode/agentes/module_manager_editor_common.php:1305 -#: ../../godmode/agentes/module_manager.php:857 -#: ../../godmode/alerts/alert_templates.php:37 -#: ../../godmode/alerts/alert_templates.php:302 -#: ../../godmode/alerts/alert_templates.php:387 ../../godmode/setup/news.php:247 -#: ../../godmode/setup/gis_step_2.php:235 ../../godmode/setup/setup_integria.php:408 -#: ../../godmode/setup/setup_integria.php:530 -#: ../../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:1050 -#: ../../godmode/reporting/visual_console_builder.wizard.php:135 -#: ../../godmode/reporting/visual_console_builder.wizard.php:283 -#: ../../godmode/events/event_responses.editor.php:159 -#: ../../godmode/servers/servers.build_table.php:81 -#: ../../godmode/servers/modificar_server.php:72 ../../godmode/servers/plugin.php:816 -#: ../../mobile/operation/visualmaps.php:125 ../../mobile/operation/visualmaps.php:126 -#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659 -#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972 -#: ../../mobile/operation/events.php:973 -#: ../../include/functions_visual_map_editor.php:702 -#: ../../include/functions_visual_map_editor.php:720 -#: ../../include/functions_visual_map_editor.php:848 -#: ../../include/functions_reporting_html.php:1053 -#: ../../include/functions_reporting_html.php:1061 -#: ../../include/functions_reporting_html.php:1315 -#: ../../include/functions_reporting_html.php:1323 -#: ../../include/functions_reporting_html.php:2541 -#: ../../include/functions_reporting_html.php:3597 -#: ../../include/functions_reporting_html.php:5364 -#: ../../include/ajax/heatmap.ajax.php:75 ../../include/ajax/module.php:977 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 -#: ../../include/functions_reports.php:1074 ../../include/functions_html.php:5588 -#: ../../include/class/ModuleTemplates.class.php:1209 -#: ../../include/class/CalendarManager.class.php:1028 -#: ../../include/class/CalendarManager.class.php:1062 -#: ../../include/class/AgentWizard.class.php:1197 -#: ../../include/class/AgentWizard.class.php:4054 -#: ../../include/lib/Dashboard/Widgets/service_view.php:249 -#: ../../include/lib/Dashboard/Widgets/custom_graph.php:364 -#: ../../include/lib/Dashboard/Widgets/clock.php:221 -#: ../../include/functions_snmp_browser.php:564 ../../include/functions_events.php:2440 -#: ../../include/functions_events.php:4635 ../../operation/agentes/estado_agente.php:757 -#: ../../operation/agentes/ver_agente.php:1153 -#: ../../operation/netflow/nf_live_view.php:319 -#: ../../operation/incidents/configure_integriaims_incident.php:234 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 -#: ../../operation/search_modules.php:34 -msgid "Type" -msgstr "種類" - -#: ../../enterprise/views/cluster/list.php:62 -#: ../../include/functions_reporting_html.php:5799 -#: ../../operation/agentes/pandora_networkmap.php:708 -msgid "Nodes" -msgstr "ノード" - -#: ../../enterprise/views/cluster/list.php:122 -msgid "New cluster" -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/views/cluster/view.php:50 ../../enterprise/views/cluster/view.php:81 -msgid "Cluster details" -msgstr "クラスタ詳細" - -#: ../../enterprise/views/cluster/view.php:74 -msgid "Edit this cluster" -msgstr "このクラスタを編集" - -#: ../../enterprise/views/cluster/view.php:162 -#: ../../enterprise/views/cluster/view.php:164 -#: ../../enterprise/meta/include/functions_wizard_meta.php:240 -#: ../../enterprise/meta/include/functions_wizard_meta.php:525 -#: ../../enterprise/meta/include/functions_wizard_meta.php:597 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1145 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1530 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1623 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1817 -#: ../../enterprise/meta/agentsearch.php:251 ../../enterprise/meta/agentsearch.php:258 -#: ../../enterprise/godmode/modules/configure_local_component.php:459 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118 -#: ../../enterprise/godmode/policies/policy_agents.php:1736 -#: ../../enterprise/godmode/policies/policy_agents.php:1751 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701 -#: ../../enterprise/godmode/setup/edit_skin.php:276 -#: ../../enterprise/include/class/VMware.app.php:888 -#: ../../enterprise/include/class/DatabaseHA.class.php:211 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2038 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3255 -#: ../../enterprise/include/lib/NetworkManager.php:190 -#: ../../enterprise/include/functions_policies.php:4783 -#: ../../godmode/groups/group_list.php:908 -#: ../../godmode/agentes/modificar_agente.php:762 -#: ../../godmode/agentes/module_manager_editor_common.php:257 -#: ../../godmode/agentes/module_manager_editor_common.php:897 -#: ../../godmode/agentes/module_manager_editor_common.php:1059 -#: ../../godmode/massive/massive_edit_agents.php:938 -#: ../../godmode/massive/massive_edit_agents.php:1138 -#: ../../godmode/massive/massive_edit_modules.php:765 -#: ../../godmode/alerts/alert_list.list.php:149 -#: ../../godmode/alerts/configure_alert_template.php:899 -#: ../../godmode/alerts/alert_view.php:541 ../../mobile/operation/agent.php:167 -#: ../../mobile/operation/alerts.php:68 -#: ../../include/functions_visual_map_editor.php:826 -#: ../../include/functions_reporting_html.php:3563 -#: ../../include/functions_treeview.php:72 ../../include/functions_treeview.php:613 -#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6660 ../../operation/search_agents.php:93 -#: ../../operation/agentes/estado_generalagente.php:99 -#: ../../operation/agentes/estado_generalagente.php:101 -#: ../../operation/agentes/alerts_status.functions.php:99 -msgid "Disabled" -msgstr "無効" - -#: ../../enterprise/views/cluster/view.php:168 -#: ../../enterprise/views/cluster/view.php:170 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 -#: ../../enterprise/godmode/services/services.service.php:779 -#: ../../enterprise/operation/services/massive/services.create.php:843 -#: ../../godmode/agentes/modificar_agente.php:776 -#: ../../godmode/agentes/planned_downtime.list.php:664 -#: ../../godmode/agentes/planned_downtime.editor.php:862 -#: ../../godmode/agentes/agent_manager.php:692 -#: ../../godmode/agentes/module_manager_editor_common.php:1056 -#: ../../godmode/agentes/module_manager.php:992 -#: ../../godmode/massive/massive_edit_agents.php:1108 -#: ../../godmode/massive/massive_edit_modules.php:1104 -#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1128 -#: ../../include/class/Tree.class.php:907 ../../operation/search_agents.php:100 -#: ../../operation/agentes/estado_agente.php:831 -#: ../../operation/agentes/estado_generalagente.php:110 -#: ../../operation/agentes/estado_generalagente.php:120 -msgid "Quiet" -msgstr "静観" - -#: ../../enterprise/views/cluster/view.php:178 -#: ../../enterprise/views/cluster/view.php:186 -#: ../../godmode/agentes/modificar_agente.php:784 ../../operation/search_agents.php:111 -#: ../../operation/agentes/estado_agente.php:839 -#: ../../operation/agentes/estado_generalagente.php:131 -#: ../../operation/agentes/estado_generalagente.php:139 -msgid "Agent in scheduled downtime" -msgstr "計画停止内エージェント" - -#: ../../enterprise/views/cluster/view.php:223 -msgid "Force cluster status calculation" -msgstr "クラスタの状態計算を強制する" - -#: ../../enterprise/views/cluster/view.php:253 ../../enterprise/meta/agentsearch.php:136 -#: ../../enterprise/godmode/modules/configure_local_component.php:177 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:274 -#: ../../enterprise/godmode/modules/local_components.php:561 -#: ../../enterprise/godmode/modules/local_components.php:586 -#: ../../enterprise/godmode/modules/local_components.php:622 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 -#: ../../enterprise/include/functions_reporting_csv.php:722 -#: ../../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:352 -#: ../../enterprise/include/class/AgentRepository.class.php:670 -#: ../../enterprise/include/class/AgentRepository.class.php:716 -#: ../../enterprise/operation/agentes/tag_view.php:602 -#: ../../enterprise/tools/ipam/ipam_network.php:399 -#: ../../godmode/agentes/modificar_agente.php:649 -#: ../../godmode/agentes/planned_downtime.editor.php:1220 -#: ../../godmode/agentes/agent_manager.php:401 -#: ../../godmode/massive/massive_edit_agents.php:733 -#: ../../godmode/reporting/reporting_builder.item_editor.php:71 -#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 -#: ../../include/functions_reporting_html.php:1565 -#: ../../include/functions_reporting_html.php:3548 -#: ../../include/ajax/heatmap.ajax.php:325 ../../include/class/Diagnostics.class.php:748 -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:332 -#: ../../include/functions_events.php:4111 ../../operation/search_agents.php:44 -#: ../../operation/search_agents.php:50 ../../operation/tree.php:78 -#: ../../operation/tree.php:146 ../../operation/agentes/estado_agente.php:748 -#: ../../operation/agentes/estado_generalagente.php:194 -#: ../../operation/gis_maps/ajax.php:297 -msgid "OS" -msgstr "OS" - -#: ../../enterprise/views/cluster/view.php:273 -#: ../../operation/agentes/estado_generalagente.php:212 -msgid "IP address" -msgstr "IP アドレス" - -#: ../../enterprise/views/cluster/view.php:278 -#: ../../enterprise/views/cluster/view.php:293 -#: ../../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:895 -#: ../../enterprise/include/functions_visual_map.php:320 -#: ../../enterprise/include/functions_servicemap.php:471 -#: ../../enterprise/include/functions_aws.php:507 -#: ../../enterprise/include/functions_aws.php:508 -#: ../../enterprise/include/functions_reporting.php:6152 -#: ../../enterprise/include/functions_services.php:1190 -#: ../../enterprise/include/functions_services.php:1371 -#: ../../enterprise/include/functions_services.php:2081 -#: ../../enterprise/include/lib/Metaconsole/Node.php:453 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1129 -#: ../../enterprise/tools/ipam/ipam_network.php:436 -#: ../../enterprise/tools/ipam/ipam_network.php:516 -#: ../../enterprise/tools/ipam/ipam_ajax.php:366 -#: ../../enterprise/tools/ipam/ipam_ajax.php:387 -#: ../../godmode/modules/manage_network_components.php:776 -#: ../../godmode/modules/manage_network_components.php:777 -#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201 -#: ../../godmode/agentes/planned_downtime.list.php:822 -#: ../../godmode/alerts/alert_view.php:135 -#: ../../godmode/servers/servers.build_table.php:147 -#: ../../godmode/servers/servers.build_table.php:148 -#: ../../godmode/servers/servers.build_table.php:154 -#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200 -#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319 -#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 -#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 -#: ../../include/functions_servers.php:1362 -#: ../../include/functions_reporting_html.php:655 -#: ../../include/functions_reporting_html.php:658 -#: ../../include/functions_reporting_html.php:5438 -#: ../../include/functions_reporting_html.php:5491 ../../include/functions.php:1124 -#: ../../include/functions.php:1130 ../../include/functions.php:1134 -#: ../../include/ajax/module.php:1168 ../../include/functions_treeview.php:162 -#: ../../include/functions_treeview.php:327 ../../include/functions_treeview.php:423 -#: ../../include/functions_ui.php:2615 ../../include/functions_ui.php:2623 -#: ../../include/functions_db.php:241 ../../include/functions_events.php:3468 -#: ../../include/functions_events.php:3581 ../../include/functions_events.php:3601 -#: ../../include/functions_events.php:3610 ../../include/functions_events.php:3619 -#: ../../include/functions_events.php:3620 ../../include/functions_events.php:3632 -#: ../../include/functions_events.php:3683 ../../include/functions_events.php:3716 -#: ../../include/functions_events.php:3782 ../../include/functions_events.php:3799 -#: ../../include/functions_events.php:3806 ../../include/functions_events.php:3872 -#: ../../include/functions_events.php:3944 ../../include/functions_events.php:4068 -#: ../../include/functions_events.php:4107 ../../include/functions_events.php:4121 -#: ../../include/functions_events.php:4126 ../../include/functions_events.php:4156 -#: ../../include/functions_events.php:4242 ../../include/functions_events.php:4322 -#: ../../include/functions_events.php:4332 ../../include/functions_events.php:4549 -#: ../../include/functions_events.php:4620 ../../include/functions_events.php:4709 -#: ../../include/functions_events.php:4738 ../../include/functions_events.php:4753 -#: ../../include/functions_events.php:4763 ../../include/functions_events.php:4773 -#: ../../include/functions_events.php:5205 ../../include/functions_events.php:5219 -#: ../../include/functions_events.php:5224 ../../include/functions_events.php:5227 -#: ../../include/functions_events.php:5235 ../../include/functions_events.php:5244 -#: ../../include/functions_events.php:5256 ../../include/functions_events.php:5309 -#: ../../include/functions_events.php:5336 ../../include/functions_events.php:5361 -#: ../../include/functions_events.php:5405 -#: ../../operation/agentes/interface_view.functions.php:682 -#: ../../operation/agentes/interface_view.functions.php:683 -#: ../../operation/agentes/interface_view.functions.php:684 -#: ../../operation/agentes/interface_view.functions.php:685 -#: ../../operation/agentes/interface_view.functions.php:686 -#: ../../operation/agentes/status_monitor.php:1710 -#: ../../operation/agentes/estado_generalagente.php:217 -#: ../../operation/agentes/estado_generalagente.php:230 -#: ../../operation/agentes/estado_generalagente.php:242 -#: ../../operation/agentes/estado_generalagente.php:411 -#: ../../operation/agentes/estado_generalagente.php:427 -#: ../../operation/agentes/estado_generalagente.php:438 -#: ../../operation/snmpconsole/snmp_view.php:974 -#: ../../operation/snmpconsole/snmp_view.php:994 -msgid "N/A" -msgstr "N/A" - -#: ../../enterprise/views/cluster/view.php:309 ../../include/functions_treeview.php:731 -#: ../../operation/agentes/estado_generalagente.php:225 -#: ../../operation/gis_maps/ajax.php:341 -msgid "Agent Version" -msgstr "エージェントバージョン" - -#: ../../enterprise/views/cluster/view.php:314 -msgid "Cluster agent" -msgstr "クラスタエージェント" - -#: ../../enterprise/views/cluster/view.php:369 -#: ../../operation/agentes/estado_generalagente.php:890 -msgid "Events (Last 24h)" -msgstr "イベント (直近 24時間)" - -#: ../../enterprise/views/cluster/view.php:441 ../../operation/agentes/stat_win.php:451 -#: ../../operation/agentes/interface_traffic_graph_win.php:276 -msgid "Reload" -msgstr "再読み込み" - -#: ../../enterprise/views/cluster/edit.php:57 -msgid "cluster " -msgstr "クラスタ " - -#: ../../enterprise/views/cluster/edit.php:88 -msgid "View this cluster" -msgstr "このクラスタを表示" - #: ../../enterprise/views/ipam/sites/list.php:48 #: ../../enterprise/views/ipam/sites/edit.php:64 #: ../../godmode/modules/manage_nc_groups_form.php:71 -#: ../../godmode/groups/configure_group.php:170 ../../godmode/groups/group_list.php:848 +#: ../../godmode/groups/configure_group.php:170 +#: ../../godmode/groups/group_list.php:853 #: ../../godmode/agentes/agent_manager.php:574 #: ../../godmode/massive/massive_edit_agents.php:655 #: ../../godmode/reporting/visual_console_builder.elements.php:108 #: ../../include/functions_visual_map_editor.php:956 -#: ../../include/rest-api/models/VisualConsole/Item.php:2175 -#: ../../operation/agentes/ver_agente.php:1218 +#: ../../include/rest-api/models/VisualConsole/Item.php:2176 +#: ../../operation/agentes/ver_agente.php:1236 #: ../../operation/agentes/estado_generalagente.php:425 msgid "Parent" msgstr "親" #: ../../enterprise/views/ipam/sites/edit.php:71 #: ../../enterprise/meta/advanced/metasetup.visual.php:289 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:833 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:406 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:407 #: ../../enterprise/meta/advanced/metasetup.relations.php:245 #: ../../enterprise/meta/advanced/metasetup.setup.php:420 #: ../../enterprise/meta/advanced/metasetup.setup.php:426 @@ -3774,21 +3968,21 @@ msgstr "親" #: ../../enterprise/meta/monitoring/wizard/wizard.php:142 #: ../../enterprise/meta/event/custom_events.php:227 #: ../../enterprise/meta/event/custom_events.php:273 -#: ../../enterprise/godmode/modules/configure_local_component.php:543 -#: ../../enterprise/godmode/modules/configure_local_component.php:698 -#: ../../enterprise/godmode/modules/configure_local_component.php:704 -#: ../../enterprise/godmode/modules/configure_local_component.php:712 -#: ../../enterprise/godmode/modules/configure_local_component.php:718 +#: ../../enterprise/godmode/modules/configure_local_component.php:555 +#: ../../enterprise/godmode/modules/configure_local_component.php:710 +#: ../../enterprise/godmode/modules/configure_local_component.php:716 +#: ../../enterprise/godmode/modules/configure_local_component.php:724 +#: ../../enterprise/godmode/modules/configure_local_component.php:730 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:992 #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473 #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604 #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167 #: ../../enterprise/godmode/policies/policy_alerts.php:583 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:588 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:697 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:590 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:699 #: ../../enterprise/godmode/policies/policy_agents.php:391 -#: ../../enterprise/godmode/policies/policy_agents.php:1694 +#: ../../enterprise/godmode/policies/policy_agents.php:1730 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:211 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 @@ -3817,10 +4011,6 @@ msgstr "親" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1091 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1126 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1173 -#: ../../enterprise/godmode/setup/setup.php:591 -#: ../../enterprise/godmode/setup/setup.php:608 -#: ../../enterprise/godmode/setup/setup.php:617 -#: ../../enterprise/godmode/setup/setup.php:634 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:262 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:795 @@ -3886,10 +4076,10 @@ msgstr "親" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2988 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3205 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3289 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:315 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3039 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3256 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3351 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253 @@ -3899,22 +4089,22 @@ msgstr "親" #: ../../enterprise/include/functions_tasklist.php:345 #: ../../enterprise/include/ajax/ipam.ajax.php:400 #: ../../enterprise/include/ajax/ipam.ajax.php:428 -#: ../../enterprise/include/class/Omnishell.class.php:858 -#: ../../enterprise/include/class/Omnishell.class.php:859 +#: ../../enterprise/include/class/Omnishell.class.php:860 +#: ../../enterprise/include/class/Omnishell.class.php:861 #: ../../enterprise/include/class/SAP.app.php:615 -#: ../../enterprise/include/class/SAP.app.php:810 #: ../../enterprise/include/class/SAP.app.php:811 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:895 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1032 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1185 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1195 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2002 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2511 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2556 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3523 +#: ../../enterprise/include/class/SAP.app.php:812 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:897 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1034 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1187 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1197 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2004 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2513 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2558 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3525 #: ../../enterprise/operation/agentes/ver_agente.php:38 -#: ../../enterprise/operation/log/log_viewer.php:735 +#: ../../enterprise/operation/log/log_viewer.php:736 #: ../../enterprise/tools/ipam/ipam_network.php:595 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:611 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:783 @@ -3926,32 +4116,34 @@ msgstr "親" #: ../../enterprise/tools/ipam/ipam_editor.php:234 #: ../../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:343 +#: ../../godmode/modules/manage_network_components_form_common.php:354 #: ../../godmode/modules/manage_network_components_form_network.php:248 -#: ../../godmode/modules/manage_network_components_form.php:642 -#: ../../godmode/modules/manage_network_components_form.php:648 -#: ../../godmode/modules/manage_network_components_form.php:657 -#: ../../godmode/modules/manage_network_components_form.php:663 +#: ../../godmode/modules/manage_network_components_form.php:645 +#: ../../godmode/modules/manage_network_components_form.php:651 +#: ../../godmode/modules/manage_network_components_form.php:660 +#: ../../godmode/modules/manage_network_components_form.php:666 #: ../../godmode/groups/configure_group.php:188 #: ../../godmode/groups/configure_group.php:210 -#: ../../godmode/users/configure_user.php:1101 -#: ../../godmode/users/configure_user.php:1115 -#: ../../godmode/users/configure_user.php:1309 -#: ../../godmode/users/configure_user.php:1321 +#: ../../godmode/users/configure_user.php:1312 +#: ../../godmode/users/configure_user.php:1326 +#: ../../godmode/users/configure_user.php:1519 +#: ../../godmode/users/configure_user.php:1531 #: ../../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:465 +#: ../../godmode/agentes/module_manager_editor_network.php:170 +#: ../../godmode/agentes/module_manager_editor_network.php:509 #: ../../godmode/agentes/agent_manager.php:437 #: ../../godmode/agentes/agent_manager.php:470 #: ../../godmode/agentes/agent_manager.php:727 -#: ../../godmode/agentes/agent_manager.php:893 -#: ../../godmode/agentes/module_manager_editor_common.php:733 -#: ../../godmode/agentes/module_manager_editor_common.php:1149 -#: ../../godmode/agentes/module_manager_editor_common.php:1405 -#: ../../godmode/agentes/module_manager_editor_common.php:1412 -#: ../../godmode/agentes/module_manager_editor_common.php:1423 -#: ../../godmode/agentes/module_manager_editor_common.php:1431 +#: ../../godmode/agentes/agent_manager.php:922 +#: ../../godmode/agentes/module_manager_editor_common.php:692 +#: ../../godmode/agentes/module_manager_editor_common.php:747 +#: ../../godmode/agentes/module_manager_editor_common.php:1163 +#: ../../godmode/agentes/module_manager_editor_common.php:1419 +#: ../../godmode/agentes/module_manager_editor_common.php:1426 +#: ../../godmode/agentes/module_manager_editor_common.php:1437 +#: ../../godmode/agentes/module_manager_editor_common.php:1445 #: ../../godmode/snmpconsole/snmp_alert.php:40 #: ../../godmode/snmpconsole/snmp_alert.php:1169 #: ../../godmode/massive/massive_copy_modules.php:374 @@ -3966,11 +4158,17 @@ msgstr "親" #: ../../godmode/massive/massive_delete_modules.php:739 #: ../../godmode/massive/massive_delete_modules.php:805 #: ../../godmode/massive/massive_delete_modules.php:835 +#: ../../godmode/massive/massive_edit_users.php:339 +#: ../../godmode/massive/massive_edit_users.php:400 +#: ../../godmode/massive/massive_edit_users.php:612 +#: ../../godmode/massive/massive_edit_users.php:620 +#: ../../godmode/massive/massive_edit_users.php:631 +#: ../../godmode/massive/massive_edit_users.php:639 #: ../../godmode/massive/massive_add_alerts.php:304 #: ../../godmode/massive/massive_edit_plugins.php:338 #: ../../godmode/massive/massive_edit_agents.php:754 -#: ../../godmode/massive/massive_delete_alerts.php:365 -#: ../../godmode/massive/massive_add_action_alerts.php:341 +#: ../../godmode/massive/massive_delete_alerts.php:366 +#: ../../godmode/massive/massive_add_action_alerts.php:342 #: ../../godmode/massive/massive_edit_modules.php:458 #: ../../godmode/massive/massive_edit_modules.php:919 #: ../../godmode/massive/massive_edit_modules.php:1053 @@ -3987,25 +4185,31 @@ msgstr "親" #: ../../godmode/massive/massive_edit_modules.php:1829 #: ../../godmode/alerts/alert_actions.php:291 #: ../../godmode/alerts/alert_list.list.php:762 -#: ../../godmode/alerts/alert_commands.php:303 -#: ../../godmode/alerts/alert_commands.php:317 -#: ../../godmode/alerts/alert_commands.php:462 -#: ../../godmode/alerts/alert_commands.php:475 +#: ../../godmode/alerts/alert_commands.php:304 +#: ../../godmode/alerts/alert_commands.php:318 +#: ../../godmode/alerts/alert_commands.php:463 +#: ../../godmode/alerts/alert_commands.php:476 #: ../../godmode/alerts/configure_alert_template.php:650 #: ../../godmode/alerts/configure_alert_template.php:777 #: ../../godmode/alerts/configure_alert_template.php:798 -#: ../../godmode/setup/os.builder.php:41 ../../godmode/setup/setup_visuals.php:401 -#: ../../godmode/setup/setup_visuals.php:420 ../../godmode/setup/setup_visuals.php:950 +#: ../../godmode/setup/os.builder.php:41 +#: ../../godmode/setup/setup_visuals.php:401 +#: ../../godmode/setup/setup_visuals.php:420 +#: ../../godmode/setup/setup_visuals.php:950 +#: ../../godmode/setup/setup_general.php:903 +#: ../../godmode/setup/setup_general.php:920 +#: ../../godmode/setup/setup_general.php:929 +#: ../../godmode/setup/setup_general.php:946 #: ../../godmode/reporting/create_container.php:489 #: ../../godmode/reporting/graph_builder.graph_editor.php:329 -#: ../../godmode/reporting/reporting_builder.item_editor.php:206 -#: ../../godmode/reporting/reporting_builder.item_editor.php:975 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2144 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2217 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2238 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2270 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3183 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3344 +#: ../../godmode/reporting/reporting_builder.item_editor.php:208 +#: ../../godmode/reporting/reporting_builder.item_editor.php:983 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2241 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2273 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3186 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3347 #: ../../godmode/reporting/visual_console_builder.elements.php:482 #: ../../godmode/reporting/visual_console_builder.elements.php:633 #: ../../godmode/reporting/visual_console_builder.elements.php:643 @@ -4019,45 +4223,55 @@ msgstr "親" #: ../../godmode/reporting/visual_console_builder.wizard.php:732 #: ../../godmode/reporting/visual_console_builder.wizard.php:742 #: ../../godmode/reporting/visual_console_builder.wizard.php:774 -#: ../../godmode/events/event_edit_filter.php:699 -#: ../../godmode/events/custom_events.php:200 ../../godmode/events/custom_events.php:248 -#: ../../godmode/wizards/HostDevices.class.php:1098 +#: ../../godmode/events/event_edit_filter.php:799 +#: ../../godmode/events/custom_events.php:200 +#: ../../godmode/events/custom_events.php:248 +#: ../../godmode/wizards/HostDevices.class.php:1102 #: ../../mobile/operation/events.php:930 #: ../../include/functions_visual_map_editor.php:404 #: ../../include/functions_visual_map_editor.php:406 #: ../../include/functions_visual_map_editor.php:622 #: ../../include/functions_visual_map_editor.php:957 #: ../../include/functions_visual_map_editor.php:1010 -#: ../../include/functions_visual_map_editor.php:1072 ../../include/functions.php:1073 -#: ../../include/functions_cron.php:671 ../../include/functions_networkmap.php:1519 +#: ../../include/functions_visual_map_editor.php:1072 +#: ../../include/functions.php:1119 ../../include/functions_cron.php:682 +#: ../../include/functions_networkmap.php:1519 #: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/custom_fields.php:668 ../../include/ajax/events.php:577 -#: ../../include/functions_integriaims.php:135 ../../include/functions_profile.php:297 -#: ../../include/functions_profile.php:315 ../../include/functions_profile.php:330 +#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590 +#: ../../include/functions_integriaims.php:135 +#: ../../include/functions_profile.php:332 +#: ../../include/functions_profile.php:350 +#: ../../include/functions_profile.php:365 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:632 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:644 -#: ../../include/rest-api/models/VisualConsole/Item.php:2087 -#: ../../include/rest-api/models/VisualConsole/Item.php:2206 -#: ../../include/rest-api/models/VisualConsole/Item.php:2319 -#: ../../include/rest-api/models/VisualConsole/Item.php:2441 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634 +#: ../../include/rest-api/models/VisualConsole/Item.php:2088 +#: ../../include/rest-api/models/VisualConsole/Item.php:2207 +#: ../../include/rest-api/models/VisualConsole/Item.php:2325 +#: ../../include/rest-api/models/VisualConsole/Item.php:2447 #: ../../include/functions_html.php:376 ../../include/functions_html.php:816 #: ../../include/functions_html.php:1239 ../../include/functions_html.php:1291 #: ../../include/functions_html.php:1338 ../../include/functions_html.php:1339 #: ../../include/functions_html.php:1392 ../../include/functions_html.php:1442 -#: ../../include/functions_html.php:4750 ../../include/functions_html.php:6141 -#: ../../include/class/NetworkMap.class.php:2789 -#: ../../include/class/NetworkMap.class.php:3024 -#: ../../include/class/NetworkMap.class.php:3047 -#: ../../include/class/NetworkMap.class.php:3119 -#: ../../include/class/NetworkMap.class.php:3129 -#: ../../include/class/NetworkMap.class.php:3214 -#: ../../include/class/NetworkMap.class.php:3230 +#: ../../include/functions_html.php:6136 +#: ../../include/class/NetworkMap.class.php:2923 +#: ../../include/class/NetworkMap.class.php:3157 +#: ../../include/class/NetworkMap.class.php:3180 +#: ../../include/class/NetworkMap.class.php:3252 +#: ../../include/class/NetworkMap.class.php:3262 +#: ../../include/class/NetworkMap.class.php:3347 +#: ../../include/class/NetworkMap.class.php:3363 +#: ../../include/class/SnmpConsole.class.php:377 +#: ../../include/class/SnmpConsole.class.php:1373 +#: ../../include/class/AgentWizard.class.php:728 +#: ../../include/class/AgentWizard.class.php:784 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:365 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:377 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:301 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:308 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:324 #: ../../include/lib/Dashboard/Widgets/network_map.php:365 #: ../../include/lib/Dashboard/Widgets/events_list.php:312 #: ../../include/lib/Dashboard/Widgets/events_list.php:470 @@ -4076,27 +4290,29 @@ msgstr "親" #: ../../include/lib/Dashboard/Widgets/single_graph.php:352 #: ../../include/lib/Dashboard/Widgets/reports.php:552 #: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3297 ../../operation/users/user_edit.php:405 -#: ../../operation/users/user_edit.php:417 ../../operation/users/user_edit.php:458 -#: ../../operation/users/user_edit.php:494 ../../operation/users/user_edit.php:508 -#: ../../operation/users/user_edit.php:925 ../../operation/users/user_edit.php:932 -#: ../../operation/users/user_edit.php:941 ../../operation/users/user_edit.php:948 -#: ../../operation/agentes/pandora_networkmap.editor.php:349 -#: ../../operation/agentes/pandora_networkmap.view.php:174 -#: ../../operation/agentes/ver_agente.php:1164 -#: ../../operation/agentes/ver_agente.php:1220 -#: ../../operation/agentes/ver_agente.php:1235 -#: ../../operation/snmpconsole/snmp_browser.php:389 -#: ../../operation/snmpconsole/snmp_browser.php:404 -#: ../../operation/snmpconsole/snmp_browser.php:414 -#: ../../operation/snmpconsole/snmp_browser.php:533 -#: ../../operation/snmpconsole/snmp_view.php:630 -#: ../../operation/snmpconsole/snmp_view.php:1114 -#: ../../operation/snmpconsole/snmp_view.php:1125 +#: ../../include/functions_events.php:3360 +#: ../../operation/users/user_edit.php:479 +#: ../../operation/users/user_edit.php:491 +#: ../../operation/users/user_edit.php:529 +#: ../../operation/users/user_edit.php:565 +#: ../../operation/users/user_edit.php:580 +#: ../../operation/users/user_edit.php:997 +#: ../../operation/users/user_edit.php:1004 +#: ../../operation/users/user_edit.php:1013 +#: ../../operation/users/user_edit.php:1020 +#: ../../operation/agentes/pandora_networkmap.editor.php:367 +#: ../../operation/agentes/pandora_networkmap.view.php:211 +#: ../../operation/agentes/ver_agente.php:1182 +#: ../../operation/agentes/ver_agente.php:1238 +#: ../../operation/agentes/ver_agente.php:1253 +#: ../../operation/snmpconsole/snmp_browser.php:387 +#: ../../operation/snmpconsole/snmp_browser.php:402 +#: ../../operation/snmpconsole/snmp_browser.php:412 +#: ../../operation/snmpconsole/snmp_browser.php:531 #: ../../operation/gis_maps/render_view.php:163 #: ../../operation/incidents/list_integriaims_incidents.php:530 #: ../../operation/incidents/list_integriaims_incidents.php:534 -#: ../../operation/events/events.php:2416 +#: ../../operation/events/events.php:2570 msgid "None" msgstr "なし" @@ -4107,26 +4323,32 @@ msgstr "ビジュアルマップの作成" #: ../../enterprise/meta/screens/screens.visualmap.php:163 #: ../../enterprise/meta/screens/screens.visualmap.php:194 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:601 #: ../../enterprise/operation/agentes/policy_view.php:70 -#: ../../godmode/agentes/configurar_agente.php:376 +#: ../../godmode/agentes/configurar_agente.php:384 #: ../../godmode/agentes/modificar_agente.php:82 -#: ../../godmode/agentes/modificar_agente.php:837 -#: ../../godmode/agentes/modificar_agente.php:842 ../../godmode/menu.php:571 -#: ../../godmode/setup/setup_visuals.php:163 ../../godmode/setup/setup_visuals.php:228 -#: ../../godmode/setup/setup_visuals.php:282 ../../godmode/setup/setup_visuals.php:287 -#: ../../godmode/setup/setup_visuals.php:326 ../../godmode/setup/setup_visuals.php:363 -#: ../../godmode/setup/setup_visuals.php:385 ../../godmode/setup/setup_visuals.php:410 -#: ../../godmode/setup/setup_visuals.php:429 ../../godmode/setup/setup_visuals.php:448 -#: ../../godmode/setup/setup_visuals.php:467 ../../godmode/setup/setup_visuals.php:609 +#: ../../godmode/agentes/modificar_agente.php:832 +#: ../../godmode/agentes/modificar_agente.php:836 ../../godmode/menu.php:574 +#: ../../godmode/setup/setup_visuals.php:163 +#: ../../godmode/setup/setup_visuals.php:228 +#: ../../godmode/setup/setup_visuals.php:282 +#: ../../godmode/setup/setup_visuals.php:287 +#: ../../godmode/setup/setup_visuals.php:326 +#: ../../godmode/setup/setup_visuals.php:363 +#: ../../godmode/setup/setup_visuals.php:385 +#: ../../godmode/setup/setup_visuals.php:410 +#: ../../godmode/setup/setup_visuals.php:429 +#: ../../godmode/setup/setup_visuals.php:448 +#: ../../godmode/setup/setup_visuals.php:467 +#: ../../godmode/setup/setup_visuals.php:609 #: ../../godmode/reporting/visual_console_builder.php:851 -#: ../../godmode/module_library/module_library_view.php:59 ../../operation/tree.php:187 -#: ../../operation/visual_console/view.php:198 +#: ../../godmode/module_library/module_library_view.php:59 +#: ../../include/lib/ClusterViewer/ClusterManager.php:601 +#: ../../operation/tree.php:187 ../../operation/visual_console/view.php:200 #: ../../operation/visual_console/legacy_view.php:193 -#: ../../operation/agentes/estado_agente.php:858 -#: ../../operation/agentes/estado_agente.php:861 +#: ../../operation/agentes/estado_agente.php:857 +#: ../../operation/agentes/estado_agente.php:859 #: ../../operation/agentes/status_monitor.php:75 -#: ../../operation/agentes/ver_agente.php:1916 +#: ../../operation/agentes/ver_agente.php:1946 msgid "View" msgstr "表示" @@ -4145,28 +4367,28 @@ msgstr "ビルダ" #: ../../enterprise/meta/general/main_menu.php:246 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:95 #: ../../enterprise/include/functions_reporting.php:60 -#: ../../enterprise/include/functions_reporting.php:7980 -#: ../../enterprise/include/functions_reporting.php:8006 +#: ../../enterprise/include/functions_reporting.php:7981 +#: ../../enterprise/include/functions_reporting.php:8007 #: ../../godmode/reporting/visual_console_builder.php:840 #: ../../godmode/reporting/visual_console_builder.wizard.php:518 -#: ../../operation/visual_console/view.php:188 +#: ../../operation/visual_console/view.php:190 #: ../../operation/visual_console/legacy_view.php:175 msgid "Wizard" msgstr "設定追加" #: ../../enterprise/meta/screens/screens.visualmap.php:230 #: ../../godmode/reporting/visual_console_builder.php:828 -#: ../../operation/visual_console/view.php:168 +#: ../../operation/visual_console/view.php:170 #: ../../operation/visual_console/legacy_view.php:155 msgid "List elements" msgstr "エレメント一覧" #: ../../enterprise/meta/screens/screens.visualmap.php:241 #: ../../godmode/reporting/visual_console_builder.php:824 -#: ../../godmode/reporting/graph_builder.php:298 +#: ../../godmode/reporting/graph_builder.php:304 #: ../../godmode/reporting/reporting_builder.main.php:73 -#: ../../godmode/reporting/reporting_builder.php:3589 -#: ../../operation/visual_console/view.php:160 +#: ../../godmode/reporting/reporting_builder.php:3617 +#: ../../operation/visual_console/view.php:162 #: ../../operation/visual_console/legacy_view.php:147 #: ../../operation/reporting/reporting_viewer.php:139 #: ../../operation/reporting/graph_viewer.php:193 @@ -4175,14 +4397,14 @@ msgstr "メインデータ" #: ../../enterprise/meta/screens/screens.visualmap.php:261 #: ../../godmode/reporting/visual_console_builder.php:820 -#: ../../operation/visual_console/view.php:150 +#: ../../operation/visual_console/view.php:152 #: ../../operation/visual_console/legacy_view.php:137 msgid "Show link to public Visual Console" msgstr "パブリックビジュアルコンソール表示" #: ../../enterprise/meta/screens/screens.visualmap.php:286 #: ../../godmode/reporting/visual_console_builder.php:816 -#: ../../operation/visual_console/view.php:122 +#: ../../operation/visual_console/view.php:124 #: ../../operation/visual_console/legacy_view.php:121 msgid "Visual consoles list" msgstr "ビジュアルコンソール一覧" @@ -4199,22 +4421,24 @@ msgstr "新規ビジュアルコンソール" #: ../../enterprise/godmode/reporting/visual_console_template.php:122 #: ../../enterprise/godmode/reporting/visual_console_template.php:128 #: ../../extensions/resource_exportation.php:436 -#: ../../godmode/users/configure_user.php:1138 +#: ../../godmode/users/configure_user.php:1349 +#: ../../godmode/massive/massive_edit_users.php:275 #: ../../godmode/reporting/visual_console_builder.php:882 #: ../../godmode/reporting/map_builder.php:134 #: ../../godmode/reporting/map_builder.php:140 #: ../../godmode/reporting/visual_console_favorite.php:131 #: ../../godmode/reporting/visual_console_favorite.php:137 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 -#: ../../operation/users/user_edit.php:360 ../../operation/visual_console/view.php:230 -#: ../../operation/menu.php:179 ../../operation/menu.php:183 +#: ../../operation/users/user_edit.php:434 +#: ../../operation/visual_console/view.php:232 ../../operation/menu.php:186 +#: ../../operation/menu.php:190 msgid "Visual console" msgstr "ビジュアルコンソール" #: ../../enterprise/meta/screens/screens.php:37 #: ../../enterprise/meta/general/main_header.php:232 #: ../../enterprise/meta/general/logon_ok.php:84 -#: ../../enterprise/meta/general/main_menu.php:348 +#: ../../enterprise/meta/general/main_menu.php:380 msgid "Screens" msgstr "画面" @@ -4224,16 +4448,18 @@ msgid "There are no servers configured into the database" msgstr "データベースにサーバがありません。" #: ../../enterprise/meta/advanced/servers.build_table.php:63 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:838 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:881 #: ../../enterprise/godmode/servers/list_satellite.php:39 -#: ../../enterprise/include/functions_reporting_csv.php:722 -#: ../../enterprise/include/class/AgentRepository.class.php:376 -#: ../../enterprise/include/class/AgentRepository.class.php:672 -#: ../../enterprise/tools/ipam/ipam_calculator.php:52 ../../godmode/extensions.php:139 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/class/AgentRepository.class.php:380 +#: ../../enterprise/include/class/AgentRepository.class.php:687 +#: ../../enterprise/tools/ipam/ipam_calculator.php:52 +#: ../../godmode/extensions.php:139 #: ../../godmode/update_manager/update_manager.history.php:40 #: ../../godmode/reporting/reporting_builder.item_editor.php:78 #: ../../godmode/servers/servers.build_table.php:82 #: ../../include/functions_reporting_html.php:1593 +#: ../../include/functions_menu.php:834 #: ../../include/functions_snmp_browser.php:746 #: ../../general/reporting_console_node.php:69 msgid "Version" @@ -4249,9 +4475,9 @@ msgstr "バージョン" #: ../../enterprise/meta/monitoring/group_view.php:221 #: ../../enterprise/meta/include/functions_wizard_meta.php:406 #: ../../enterprise/meta/include/functions_wizard_meta.php:1821 -#: ../../enterprise/meta/agentsearch.php:139 +#: ../../enterprise/meta/agentsearch.php:140 #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111 -#: ../../enterprise/godmode/policies/policy_modules.php:458 +#: ../../enterprise/godmode/policies/policy_modules.php:459 #: ../../enterprise/godmode/policies/policies.php:513 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176 @@ -4259,48 +4485,57 @@ msgstr "バージョン" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:244 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 -#: ../../enterprise/include/functions_reporting_pdf.php:884 +#: ../../enterprise/include/functions_reporting_pdf.php:887 #: ../../enterprise/include/functions_policies.php:3723 #: ../../enterprise/operation/agentes/tag_view.php:606 #: ../../enterprise/operation/services/massive/services.create.php:989 #: ../../enterprise/operation/services/massive/service.create.elements.php:384 #: ../../enterprise/operation/services/services.service_map.php:163 #: ../../extensions/agents_modules.php:758 -#: ../../godmode/agentes/configurar_agente.php:409 -#: ../../godmode/agentes/configurar_agente.php:727 -#: ../../godmode/agentes/modificar_agente.php:818 +#: ../../godmode/agentes/configurar_agente.php:417 +#: ../../godmode/agentes/configurar_agente.php:748 +#: ../../godmode/agentes/modificar_agente.php:814 #: ../../godmode/agentes/planned_downtime.list.php:85 #: ../../godmode/agentes/planned_downtime.list.php:115 -#: ../../godmode/agentes/planned_downtime.editor.php:1222 -#: ../../godmode/agentes/planned_downtime.editor.php:1297 +#: ../../godmode/agentes/planned_downtime.editor.php:1210 +#: ../../godmode/agentes/planned_downtime.editor.php:1285 #: ../../godmode/massive/massive_copy_modules.php:199 #: ../../godmode/massive/massive_delete_modules.php:463 #: ../../godmode/massive/massive_edit_plugins.php:383 #: ../../godmode/massive/massive_edit_modules.php:425 #: ../../godmode/reporting/reporting_builder.list_items.php:210 #: ../../godmode/reporting/reporting_builder.list_items.php:239 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1915 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2136 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1918 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2139 #: ../../godmode/reporting/visual_console_builder.wizard.php:432 -#: ../../godmode/servers/servers.build_table.php:83 ../../mobile/operation/agents.php:96 -#: ../../mobile/operation/agents.php:409 ../../mobile/operation/modules.php:236 -#: ../../mobile/operation/home.php:88 ../../mobile/operation/agent.php:327 -#: ../../include/functions_reporting_html.php:1996 -#: ../../include/functions_reporting_html.php:5536 -#: ../../include/functions_reports.php:733 ../../include/functions_reports.php:737 -#: ../../include/functions_reports.php:741 ../../include/functions_reports.php:745 -#: ../../include/functions_reports.php:749 ../../include/functions_reports.php:753 -#: ../../include/functions_reports.php:757 ../../include/functions_reports.php:761 -#: ../../include/functions_reports.php:765 ../../include/functions_html.php:1720 -#: ../../include/functions_html.php:5616 ../../include/class/AgentsAlerts.class.php:253 +#: ../../godmode/servers/servers.build_table.php:83 +#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409 +#: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 +#: ../../mobile/operation/agent.php:327 +#: ../../include/functions_reporting_html.php:2005 +#: ../../include/functions_reporting_html.php:5575 +#: ../../include/functions_reports.php:733 +#: ../../include/functions_reports.php:737 +#: ../../include/functions_reports.php:741 +#: ../../include/functions_reports.php:745 +#: ../../include/functions_reports.php:749 +#: ../../include/functions_reports.php:753 +#: ../../include/functions_reports.php:757 +#: ../../include/functions_reports.php:761 +#: ../../include/functions_reports.php:765 ../../include/functions_html.php:1715 +#: ../../include/functions_html.php:5611 +#: ../../include/class/AgentsAlerts.class.php:253 #: ../../include/lib/Dashboard/Widgets/groups_status.php:414 #: ../../include/lib/Dashboard/Widgets/groups_status.php:420 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 #: ../../include/lib/Dashboard/Widgets/tree_view.php:331 #: ../../operation/search_agents.php:55 ../../operation/tree.php:114 -#: ../../operation/search_results.php:158 ../../operation/agentes/estado_agente.php:760 -#: ../../operation/agentes/graphs.php:188 ../../operation/agentes/exportdata.php:282 -#: ../../operation/agentes/group_view.php:184 ../../operation/agentes/group_view.php:217 +#: ../../operation/search_results.php:159 +#: ../../operation/agentes/estado_agente.php:760 +#: ../../operation/agentes/graphs.php:188 +#: ../../operation/agentes/exportdata.php:282 +#: ../../operation/agentes/group_view.php:184 +#: ../../operation/agentes/group_view.php:217 msgid "Modules" msgstr "モジュール" @@ -4335,20 +4570,21 @@ msgstr "更新" #: ../../enterprise/meta/advanced/servers.build_table.php:72 #: ../../enterprise/meta/include/functions_autoprovision.php:644 -#: ../../enterprise/godmode/modules/local_components.php:625 +#: ../../enterprise/godmode/modules/local_components.php:628 #: ../../enterprise/godmode/policies/policy_alerts.php:354 #: ../../enterprise/godmode/policies/policies.php:413 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 -#: ../../godmode/users/profile_list.php:349 ../../godmode/users/user_list.php:487 +#: ../../godmode/users/profile_list.php:349 ../../godmode/users/user_list.php:547 #: ../../godmode/alerts/alert_list.list.php:499 #: ../../godmode/alerts/alert_templates.php:388 #: ../../godmode/reporting/reporting_builder.list_items.php:427 #: ../../godmode/reporting/graphs.php:323 #: ../../godmode/reporting/reporting_builder.php:955 #: ../../godmode/reporting/reporting_builder.php:1154 -#: ../../godmode/servers/servers.build_table.php:91 ../../godmode/servers/plugin.php:819 -#: ../../include/functions_container.php:157 ../../operation/gis_maps/gis_map.php:109 +#: ../../godmode/servers/servers.build_table.php:91 +#: ../../godmode/servers/plugin.php:798 ../../include/functions_container.php:157 +#: ../../operation/gis_maps/gis_map.php:109 msgid "Op." msgstr "操作" @@ -4365,12 +4601,12 @@ msgid "of" msgstr "/" #: ../../enterprise/meta/advanced/servers.build_table.php:134 -#: ../../godmode/servers/servers.build_table.php:260 +#: ../../godmode/servers/servers.build_table.php:271 msgid "Modules run by this server will stop working. Do you want to continue?" msgstr "このサーバで動作しているモジュールを停止します。実行しますか?" #: ../../enterprise/meta/advanced/servers.build_table.php:160 -#: ../../godmode/servers/servers.build_table.php:287 +#: ../../godmode/servers/servers.build_table.php:298 msgid "Tactical server information" msgstr "モニタリングサーバの情報" @@ -4383,8 +4619,11 @@ msgstr "コマンドセンター" #: ../../enterprise/meta/advanced/massive_operations.php:54 #: ../../enterprise/meta/monitoring/wizard/wizard.php:50 #, php-format -msgid "You should centralise management in order to use Wizard section. Please go to %s" -msgstr "ウィザードを利用するには中央管理を行う必要があります。%s へ移動してください" +msgid "" +"You should centralise management in order to use Wizard section. Please go to " +"%s" +msgstr "" +"ウィザードを利用するには中央管理を行う必要があります。%s へ移動してください" #: ../../enterprise/meta/advanced/component_management.php:52 #: ../../include/functions_menu.php:531 @@ -4401,7 +4640,7 @@ msgstr "OS 管理" #: ../../enterprise/meta/advanced/metasetup.visual.php:51 #: ../../enterprise/meta/advanced/metasetup.relations.php:96 -#: ../../enterprise/meta/advanced/metasetup.password.php:46 +#: ../../enterprise/meta/advanced/metasetup.password.php:60 #: ../../enterprise/meta/advanced/metasetup.log.php:41 #: ../../enterprise/meta/advanced/metasetup.setup.php:79 #: ../../enterprise/meta/advanced/metasetup.hist_db.php:48 @@ -4413,8 +4652,8 @@ msgstr "更新できませでした、%s でエラーです。" #: ../../enterprise/meta/advanced/metasetup.visual.php:58 #: ../../enterprise/meta/advanced/metasetup.relations.php:103 -#: ../../enterprise/meta/advanced/metasetup.password.php:53 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:221 +#: ../../enterprise/meta/advanced/metasetup.password.php:67 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:238 #: ../../enterprise/meta/advanced/metasetup.log.php:48 #: ../../enterprise/meta/advanced/metasetup.setup.php:86 #: ../../enterprise/meta/advanced/metasetup.hist_db.php:55 @@ -4424,14 +4663,16 @@ msgstr "更新できませでした、%s でエラーです。" msgid "Successfully update" msgstr "更新しました" -#: ../../enterprise/meta/advanced/metasetup.visual.php:98 ../../godmode/menu.php:353 -#: ../../godmode/setup/setup.php:137 ../../godmode/setup/setup.php:266 +#: ../../enterprise/meta/advanced/metasetup.visual.php:98 +#: ../../godmode/menu.php:356 ../../godmode/setup/setup.php:137 +#: ../../godmode/setup/setup.php:266 msgid "Visual styles" msgstr "画面設定" #: ../../enterprise/meta/advanced/metasetup.visual.php:105 -#: ../../enterprise/meta/include/functions_meta.php:1310 -#: ../../godmode/setup/setup_visuals.php:1310 ../../include/functions_config.php:942 +#: ../../enterprise/meta/include/functions_meta.php:1329 +#: ../../godmode/setup/setup_visuals.php:1310 +#: ../../include/functions_config.php:943 msgid "Date format string" msgstr "日時フォーマット" @@ -4441,37 +4682,40 @@ msgid "Example" msgstr "例" #: ../../enterprise/meta/advanced/metasetup.visual.php:136 -#: ../../godmode/setup/setup_visuals.php:1329 +#: ../../godmode/setup/setup_visuals.php:1350 msgid "Timestamp, time comparison, or compact mode" msgstr "日時表示、経過時間表示、コンパクト表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:139 -#: ../../godmode/setup/setup_visuals.php:1331 +#: ../../godmode/setup/setup_visuals.php:1352 msgid "Comparation in rollover" msgstr "経過時間表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:148 -#: ../../godmode/setup/setup_visuals.php:1332 +#: ../../godmode/setup/setup_visuals.php:1353 msgid "Timestamp in rollover" msgstr "日時表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:157 -#: ../../godmode/setup/setup_visuals.php:1333 +#: ../../godmode/setup/setup_visuals.php:1354 msgid "Compact mode" msgstr "コンパクト表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:166 -#: ../../godmode/setup/setup_visuals.php:699 ../../include/functions_config.php:950 +#: ../../godmode/setup/setup_visuals.php:699 +#: ../../include/functions_config.php:951 msgid "Graph color #1" msgstr "グラフの色 #1" #: ../../enterprise/meta/advanced/metasetup.visual.php:176 -#: ../../godmode/setup/setup_visuals.php:710 ../../include/functions_config.php:954 +#: ../../godmode/setup/setup_visuals.php:710 +#: ../../include/functions_config.php:955 msgid "Graph color #2" msgstr "グラフの色 #2" #: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../godmode/setup/setup_visuals.php:721 ../../include/functions_config.php:958 +#: ../../godmode/setup/setup_visuals.php:721 +#: ../../include/functions_config.php:959 msgid "Graph color #3" msgstr "グラフの色 #3" @@ -4484,7 +4728,7 @@ msgid "Precision must be a integer number between 0 and 5" msgstr "精度は 0 と 5 の間の整数でなければいけません" #: ../../enterprise/meta/advanced/metasetup.visual.php:216 -#: ../../enterprise/meta/include/functions_meta.php:1360 +#: ../../enterprise/meta/include/functions_meta.php:1379 #: ../../godmode/setup/setup_visuals.php:936 #: ../../godmode/reporting/visual_console_builder.elements.php:213 #: ../../godmode/reporting/visual_console_builder.wizard.php:285 @@ -4498,47 +4742,52 @@ msgid "Show percentile 95 in graphs" msgstr "グラフに 95パーセントを表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:232 -#: ../../enterprise/meta/include/functions_meta.php:1445 -#: ../../godmode/setup/setup_visuals.php:809 ../../include/functions_config.php:990 +#: ../../enterprise/meta/include/functions_meta.php:1464 +#: ../../godmode/setup/setup_visuals.php:809 +#: ../../include/functions_config.php:991 msgid "Value to interface graphics" msgstr "インタフェースグラフの値" #: ../../enterprise/meta/advanced/metasetup.visual.php:242 -#: ../../enterprise/meta/include/functions_meta.php:1458 -#: ../../godmode/users/configure_user.php:1211 ../../godmode/setup/setup_visuals.php:66 -#: ../../godmode/events/event_edit_filter.php:398 -#: ../../include/functions_config.php:1007 ../../operation/users/user_edit.php:311 -#: ../../operation/snmpconsole/snmp_view.php:555 +#: ../../enterprise/meta/include/functions_meta.php:1477 +#: ../../godmode/users/configure_user.php:1422 +#: ../../godmode/massive/massive_edit_users.php:264 +#: ../../godmode/setup/setup_visuals.php:66 +#: ../../godmode/events/event_edit_filter.php:429 +#: ../../include/functions_config.php:1008 +#: ../../operation/users/user_edit.php:385 msgid "Block size for pagination" msgstr "ページ毎の表示件数" #: ../../enterprise/meta/advanced/metasetup.visual.php:252 -#: ../../enterprise/meta/include/functions_meta.php:1374 +#: ../../enterprise/meta/include/functions_meta.php:1393 #: ../../godmode/setup/setup_visuals.php:870 msgid "Number of elements in Custom Graph" msgstr "カスタムグラフの要素数" #: ../../enterprise/meta/advanced/metasetup.visual.php:265 -#: ../../enterprise/meta/include/functions_meta.php:1468 -#: ../../godmode/setup/setup_visuals.php:884 ../../include/functions_config.php:1011 +#: ../../enterprise/meta/include/functions_meta.php:1487 +#: ../../godmode/setup/setup_visuals.php:884 +#: ../../include/functions_config.php:1012 msgid "Use round corners" msgstr "角を丸くする" #: ../../enterprise/meta/advanced/metasetup.visual.php:273 -#: ../../enterprise/meta/include/functions_meta.php:1479 -#: ../../godmode/setup/setup_visuals.php:893 ../../include/functions_config.php:1015 +#: ../../enterprise/meta/include/functions_meta.php:1498 +#: ../../godmode/setup/setup_visuals.php:893 +#: ../../include/functions_config.php:1016 msgid "Chart fit to content" msgstr "グラフをコンテンツに合わせる" #: ../../enterprise/meta/advanced/metasetup.visual.php:281 -#: ../../enterprise/meta/include/functions_meta.php:1490 -#: ../../include/functions_config.php:1227 +#: ../../enterprise/meta/include/functions_meta.php:1509 +#: ../../include/functions_config.php:1228 msgid "Disable help" msgstr "ヘルプの無効化" #: ../../enterprise/meta/advanced/metasetup.visual.php:290 #: ../../enterprise/meta/advanced/metasetup.relations.php:419 -#: ../../enterprise/meta/advanced/collections.data.php:412 +#: ../../enterprise/meta/advanced/collections.data.php:415 #: ../../enterprise/meta/advanced/policymanager.queue.php:212 #: ../../enterprise/meta/advanced/policymanager.queue.php:217 #: ../../enterprise/meta/advanced/policymanager.queue.php:228 @@ -4553,19 +4802,21 @@ msgstr "ヘルプの無効化" #: ../../enterprise/meta/include/functions_users_meta.php:87 #: ../../enterprise/meta/include/functions_users_meta.php:98 #: ../../enterprise/meta/include/functions_wizard_meta.php:319 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:400 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:444 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:406 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:450 #: ../../enterprise/meta/include/functions_html_meta.php:75 -#: ../../enterprise/godmode/modules/local_components.php:541 -#: ../../enterprise/godmode/modules/local_components.php:567 -#: ../../enterprise/godmode/modules/local_components.php:592 +#: ../../enterprise/godmode/modules/local_components.php:544 +#: ../../enterprise/godmode/modules/local_components.php:570 +#: ../../enterprise/godmode/modules/local_components.php:595 #: ../../enterprise/godmode/agentes/collections.data.php:506 #: ../../enterprise/godmode/policies/policy_queue.php:603 #: ../../enterprise/godmode/policies/policy_queue.php:608 #: ../../enterprise/godmode/policies/policy_queue.php:619 #: ../../enterprise/godmode/policies/policy_queue.php:692 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:367 -#: ../../enterprise/godmode/policies/policy_agents.php:833 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:369 +#: ../../enterprise/godmode/policies/policy_agents.php:506 +#: ../../enterprise/godmode/policies/policy_agents.php:524 +#: ../../enterprise/godmode/policies/policy_agents.php:869 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 #: ../../enterprise/godmode/setup/setup_acl.php:487 @@ -4582,37 +4833,29 @@ msgstr "ヘルプの無効化" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:641 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:667 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2025 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2836 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2863 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2076 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2887 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2914 #: ../../enterprise/include/class/ManageBackups.class.php:191 -#: ../../enterprise/include/functions_metaconsole.php:865 -#: ../../enterprise/include/functions_metaconsole.php:866 -#: ../../enterprise/include/functions_metaconsole.php:1214 -#: ../../enterprise/include/functions_ipam.php:1688 -#: ../../enterprise/include/functions_ipam.php:1733 +#: ../../enterprise/include/functions_metaconsole.php:882 +#: ../../enterprise/include/functions_metaconsole.php:883 +#: ../../enterprise/include/functions_metaconsole.php:1240 +#: ../../enterprise/include/functions_ipam.php:1696 +#: ../../enterprise/include/functions_ipam.php:1741 #: ../../enterprise/operation/agentes/tag_view.php:145 #: ../../enterprise/operation/agentes/tag_view.php:171 #: ../../enterprise/operation/agentes/tag_view.php:237 #: ../../enterprise/operation/agentes/tag_view.php:301 #: ../../enterprise/operation/agentes/tag_view.php:304 #: ../../enterprise/operation/agentes/tag_view.php:390 -#: ../../enterprise/operation/agentes/agent_inventory.php:122 -#: ../../enterprise/operation/log/log_viewer.php:620 -#: ../../enterprise/operation/log/log_viewer.php:638 -#: ../../enterprise/operation/log/log_viewer.php:688 +#: ../../enterprise/operation/log/log_viewer.php:621 +#: ../../enterprise/operation/log/log_viewer.php:639 +#: ../../enterprise/operation/log/log_viewer.php:689 #: ../../enterprise/operation/snmpconsole/snmp_view.php:33 -#: ../../enterprise/operation/inventory/inventory.php:75 -#: ../../enterprise/operation/inventory/inventory.php:76 -#: ../../enterprise/operation/inventory/inventory.php:155 -#: ../../enterprise/operation/inventory/inventory.php:156 -#: ../../enterprise/operation/inventory/inventory.php:332 -#: ../../enterprise/operation/inventory/inventory.php:360 -#: ../../enterprise/operation/inventory/inventory.php:369 #: ../../extensions/agents_modules.php:416 #: ../../extensions/files_repo/files_repo_form.php:46 #: ../../godmode/modules/manage_network_templates_form.php:303 -#: ../../godmode/modules/manage_network_components.php:653 +#: ../../godmode/modules/manage_network_components.php:656 #: ../../godmode/massive/massive_copy_modules.php:127 #: ../../godmode/massive/massive_copy_modules.php:287 #: ../../godmode/massive/massive_delete_modules.php:327 @@ -4627,9 +4870,11 @@ msgstr "ヘルプの無効化" #: ../../godmode/alerts/alert_list.list.php:137 #: ../../godmode/alerts/alert_list.list.php:146 #: ../../godmode/alerts/alert_list.list.php:155 -#: ../../godmode/alerts/alert_templates.php:308 ../../godmode/alerts/alert_list.php:460 -#: ../../godmode/alerts/alert_list.php:509 ../../godmode/alerts/alert_list.php:523 -#: ../../godmode/setup/gis_step_2.php:217 ../../godmode/setup/setup_visuals.php:951 +#: ../../godmode/alerts/alert_templates.php:308 +#: ../../godmode/alerts/alert_list.php:485 +#: ../../godmode/alerts/alert_list.php:534 +#: ../../godmode/alerts/alert_list.php:548 ../../godmode/setup/gis_step_2.php:218 +#: ../../godmode/setup/setup_visuals.php:951 #: ../../godmode/reporting/reporting_builder.list_items.php:209 #: ../../godmode/reporting/reporting_builder.list_items.php:211 #: ../../godmode/reporting/reporting_builder.list_items.php:213 @@ -4637,61 +4882,72 @@ msgstr "ヘルプの無効化" #: ../../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:1643 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1661 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2122 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2958 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2985 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3620 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3701 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3723 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3781 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3884 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1682 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1700 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2125 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2961 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2988 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3639 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3720 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3742 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3800 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3903 #: ../../godmode/reporting/visual_console_builder.wizard.php:340 #: ../../godmode/reporting/visual_console_builder.wizard.php:354 -#: ../../godmode/events/event_edit_filter.php:328 -#: ../../godmode/events/event_edit_filter.php:343 -#: ../../godmode/events/event_edit_filter.php:606 ../../mobile/operation/agents.php:56 -#: ../../mobile/operation/modules.php:68 ../../mobile/operation/modules.php:289 -#: ../../mobile/operation/modules.php:304 ../../mobile/operation/alerts.php:65 -#: ../../mobile/operation/alerts.php:72 ../../mobile/operation/events.php:974 -#: ../../mobile/operation/events.php:984 ../../mobile/operation/events.php:1460 -#: ../../mobile/operation/events.php:1489 ../../include/functions.php:1071 -#: ../../include/functions.php:1331 ../../include/ajax/events.php:506 -#: ../../include/functions_groupview.php:96 ../../include/functions_modules.php:3576 -#: ../../include/functions_modules.php:3578 ../../include/functions_users.php:416 -#: ../../include/functions_users.php:674 ../../include/functions_notifications.php:105 +#: ../../godmode/events/event_edit_filter.php:350 +#: ../../godmode/events/event_edit_filter.php:365 +#: ../../godmode/events/event_edit_filter.php:657 +#: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68 +#: ../../mobile/operation/modules.php:289 ../../mobile/operation/modules.php:304 +#: ../../mobile/operation/alerts.php:65 ../../mobile/operation/alerts.php:72 +#: ../../mobile/operation/events.php:974 ../../mobile/operation/events.php:984 +#: ../../mobile/operation/events.php:1460 ../../mobile/operation/events.php:1489 +#: ../../include/functions.php:1117 ../../include/functions.php:1377 +#: ../../include/ajax/events.php:519 ../../include/functions_groupview.php:96 +#: ../../include/functions_modules.php:3576 +#: ../../include/functions_modules.php:3578 ../../include/functions_users.php:420 +#: ../../include/functions_users.php:678 +#: ../../include/functions_notifications.php:105 #: ../../include/functions_html.php:915 ../../include/functions_html.php:1576 #: ../../include/functions_massive_operations.php:160 #: ../../include/functions_massive_operations.php:174 #: ../../include/class/CredentialStore.class.php:535 -#: ../../include/class/AuditLog.class.php:203 ../../include/class/AuditLog.class.php:213 -#: ../../include/functions_reporting.php:3108 ../../include/functions_reporting.php:3205 +#: ../../include/class/SnmpConsole.class.php:353 +#: ../../include/class/SnmpConsole.class.php:359 +#: ../../include/class/SnmpConsole.class.php:371 +#: ../../include/class/AuditLog.class.php:202 +#: ../../include/class/AuditLog.class.php:212 +#: ../../include/functions_reporting.php:3239 +#: ../../include/functions_reporting.php:3336 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:422 #: ../../include/lib/Dashboard/Widgets/events_list.php:412 #: ../../include/lib/Dashboard/Widgets/tree_view.php:384 #: ../../include/lib/Dashboard/Widgets/tree_view.php:417 #: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1940 -#: ../../operation/heatmap.php:115 ../../operation/tree.php:210 +#: ../../operation/heatmap.php:119 ../../operation/tree.php:210 #: ../../operation/tree.php:267 ../../operation/agentes/estado_agente.php:276 #: ../../operation/agentes/status_monitor.php:651 #: ../../operation/agentes/estado_monitores.php:520 #: ../../operation/agentes/estado_monitores.php:565 +#: ../../operation/agentes/agent_inventory.php:122 #: ../../operation/agentes/alerts_status.functions.php:96 #: ../../operation/agentes/alerts_status.functions.php:115 #: ../../operation/agentes/alerts_status.functions.php:125 #: ../../operation/agentes/alerts_status.functions.php:130 -#: ../../operation/snmpconsole/snmp_view.php:549 -#: ../../operation/snmpconsole/snmp_view.php:578 -#: ../../operation/snmpconsole/snmp_view.php:586 -#: ../../operation/snmpconsole/snmp_view.php:902 #: ../../operation/incidents/list_integriaims_incidents.php:326 #: ../../operation/incidents/list_integriaims_incidents.php:337 #: ../../operation/incidents/list_integriaims_incidents.php:354 #: ../../operation/incidents/list_integriaims_incidents.php:365 -#: ../../operation/events/events.php:750 ../../operation/events/events.php:1591 -#: ../../operation/events/events.php:1664 ../../operation/events/events.php:1796 -#: ../../operation/events/events.php:1848 ../../general/subselect_data_module.php:62 +#: ../../operation/inventory/inventory.php:75 +#: ../../operation/inventory/inventory.php:76 +#: ../../operation/inventory/inventory.php:158 +#: ../../operation/inventory/inventory.php:159 +#: ../../operation/inventory/inventory.php:335 +#: ../../operation/inventory/inventory.php:363 +#: ../../operation/inventory/inventory.php:372 +#: ../../operation/events/events.php:810 ../../operation/events/events.php:1670 +#: ../../operation/events/events.php:1759 ../../operation/events/events.php:1990 +#: ../../general/subselect_data_module.php:62 msgid "All" msgstr "全て" @@ -4735,37 +4991,40 @@ msgstr "モジュールグラフのタイプ" #: ../../enterprise/meta/advanced/metasetup.visual.php:348 #: ../../enterprise/godmode/reporting/graph_template_editor.php:245 -#: ../../godmode/setup/setup_visuals.php:903 ../../godmode/setup/setup_visuals.php:920 +#: ../../godmode/setup/setup_visuals.php:903 +#: ../../godmode/setup/setup_visuals.php:920 #: ../../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:652 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 #: ../../operation/agentes/graphs.php:236 ../../operation/agentes/graphs.php:243 #: ../../operation/agentes/graphs.php:408 ../../operation/agentes/graphs.php:426 -#: ../../operation/reporting/graph_viewer.php:370 +#: ../../operation/reporting/graph_viewer.php:342 msgid "Area" msgstr "塗り潰し" #: ../../enterprise/meta/advanced/metasetup.visual.php:357 #: ../../enterprise/godmode/reporting/graph_template_editor.php:247 -#: ../../godmode/setup/setup_visuals.php:910 ../../godmode/setup/setup_visuals.php:927 +#: ../../godmode/setup/setup_visuals.php:910 +#: ../../godmode/setup/setup_visuals.php:927 #: ../../godmode/reporting/create_container.php:359 #: ../../godmode/reporting/visual_console_builder.elements.php:334 #: ../../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:651 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 -#: ../../operation/visual_console/view.php:361 ../../operation/agentes/graphs.php:238 -#: ../../operation/agentes/graphs.php:244 ../../operation/agentes/graphs.php:416 -#: ../../operation/agentes/graphs.php:430 ../../operation/reporting/graph_viewer.php:372 +#: ../../operation/visual_console/view.php:363 +#: ../../operation/agentes/graphs.php:238 ../../operation/agentes/graphs.php:244 +#: ../../operation/agentes/graphs.php:416 ../../operation/agentes/graphs.php:430 +#: ../../operation/reporting/graph_viewer.php:344 msgid "Line" msgstr "線" #: ../../enterprise/meta/advanced/metasetup.visual.php:367 -#: ../../enterprise/meta/include/functions_meta.php:1560 +#: ../../enterprise/meta/include/functions_meta.php:1579 msgid "Metaconsole elements" msgstr "メタコンソール要素" @@ -4777,20 +5036,22 @@ msgstr "一部のビュー内での各インスタンスの要素数" #: ../../enterprise/meta/advanced/metasetup.visual.php:849 #: ../../enterprise/meta/advanced/metasetup.visual.php:850 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:422 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:428 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:453 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:466 #: ../../enterprise/include/ajax/log_viewer.ajax.php:274 #: ../../godmode/snmpconsole/snmp_alert.php:1102 -#: ../../godmode/setup/setup_visuals.php:1031 ../../godmode/setup/setup_visuals.php:1032 -#: ../../godmode/setup/setup_visuals.php:1396 +#: ../../godmode/setup/setup_visuals.php:1031 +#: ../../godmode/setup/setup_visuals.php:1032 +#: ../../godmode/setup/setup_visuals.php:1417 #: ../../include/functions_visual_map_editor.php:1223 -#: ../../include/functions_visual_map_editor.php:1224 ../../include/functions.php:499 -#: ../../include/functions.php:630 ../../include/ajax/events.php:2295 -#: ../../include/ajax/events.php:2296 ../../include/ajax/events.php:2297 -#: ../../include/ajax/events.php:2298 ../../include/ajax/events.php:2302 -#: ../../include/ajax/events.php:2303 ../../include/ajax/events.php:2304 -#: ../../include/ajax/events.php:2305 ../../include/ajax/events.php:2306 -#: ../../include/ajax/events.php:2307 ../../include/functions_html.php:2119 +#: ../../include/functions_visual_map_editor.php:1224 +#: ../../include/functions.php:499 ../../include/functions.php:630 +#: ../../include/ajax/events.php:2267 ../../include/ajax/events.php:2268 +#: ../../include/ajax/events.php:2269 ../../include/ajax/events.php:2270 +#: ../../include/ajax/events.php:2274 ../../include/ajax/events.php:2275 +#: ../../include/ajax/events.php:2276 ../../include/ajax/events.php:2277 +#: ../../include/ajax/events.php:2278 ../../include/ajax/events.php:2279 +#: ../../include/functions_html.php:2103 #: ../../include/class/AgentsAlerts.class.php:387 #: ../../operation/events/sound_events.php:199 #: ../../operation/events/sound_events.php:200 @@ -4811,42 +5072,45 @@ msgstr "秒" #: ../../enterprise/meta/advanced/metasetup.visual.php:853 #: ../../enterprise/meta/advanced/metasetup.visual.php:854 #: ../../enterprise/include/ajax/log_viewer.ajax.php:276 -#: ../../godmode/setup/setup_visuals.php:1033 ../../godmode/setup/setup_visuals.php:1034 -#: ../../godmode/setup/setup_visuals.php:1035 ../../godmode/setup/setup_visuals.php:1036 -#: ../../godmode/setup/setup_visuals.php:1397 +#: ../../godmode/setup/setup_visuals.php:1033 +#: ../../godmode/setup/setup_visuals.php:1034 +#: ../../godmode/setup/setup_visuals.php:1035 +#: ../../godmode/setup/setup_visuals.php:1036 +#: ../../godmode/setup/setup_visuals.php:1418 #: ../../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:634 ../../include/functions_html.php:2120 +#: ../../include/functions_visual_map_editor.php:1228 +#: ../../include/functions.php:503 ../../include/functions.php:634 +#: ../../include/functions_html.php:2104 msgid "minutes" msgstr "分" #: ../../enterprise/meta/advanced/metasetup.visual.php:384 #: ../../enterprise/include/ajax/log_viewer.ajax.php:278 -#: ../../godmode/setup/setup_visuals.php:1398 ../../include/functions.php:504 +#: ../../godmode/setup/setup_visuals.php:1419 ../../include/functions.php:504 #: ../../include/functions.php:635 ../../include/functions_snmp.php:402 -#: ../../include/functions_html.php:2121 +#: ../../include/functions_html.php:2105 msgid "hours" msgstr "時間" #: ../../enterprise/meta/advanced/metasetup.visual.php:385 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:280 ../../godmode/db/db_main.php:86 -#: ../../godmode/db/db_main.php:92 ../../godmode/setup/setup_visuals.php:1399 -#: ../../include/functions.php:500 ../../include/functions.php:631 -#: ../../include/functions_html.php:2122 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:280 +#: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 +#: ../../godmode/setup/setup_visuals.php:1420 ../../include/functions.php:500 +#: ../../include/functions.php:631 ../../include/functions_html.php:2106 msgid "days" msgstr "日" #: ../../enterprise/meta/advanced/metasetup.visual.php:386 -#: ../../godmode/setup/setup_visuals.php:1400 ../../include/functions.php:501 -#: ../../include/functions.php:632 ../../include/functions_html.php:2124 +#: ../../godmode/setup/setup_visuals.php:1421 ../../include/functions.php:501 +#: ../../include/functions.php:632 ../../include/functions_html.php:2108 msgid "months" msgstr "月" #: ../../enterprise/meta/advanced/metasetup.visual.php:387 -#: ../../godmode/setup/setup_visuals.php:1401 ../../include/functions.php:502 -#: ../../include/functions.php:633 ../../include/functions_html.php:2125 +#: ../../godmode/setup/setup_visuals.php:1422 ../../include/functions.php:502 +#: ../../include/functions.php:633 ../../include/functions_html.php:2109 msgid "years" msgstr "年" @@ -4855,20 +5119,19 @@ msgid "Add new custom value to intervals" msgstr "新たな間隔カスタム値の追加" #: ../../enterprise/meta/advanced/metasetup.visual.php:411 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:741 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:784 #: ../../enterprise/meta/advanced/links.php:189 #: ../../enterprise/meta/include/functions_autoprovision.php:703 #: ../../enterprise/meta/include/functions_wizard_meta.php:1365 #: ../../enterprise/godmode/agentes/collection_manager.php:113 #: ../../enterprise/godmode/agentes/collection_manager.php:142 -#: ../../enterprise/godmode/agentes/inventory_manager.php:185 #: ../../enterprise/godmode/agentes/plugins_manager.php:163 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230 -#: ../../enterprise/godmode/policies/policy_plugins.php:144 +#: ../../enterprise/godmode/policies/policy_plugins.php:162 #: ../../enterprise/godmode/policies/policy_alerts.php:605 #: ../../enterprise/godmode/policies/policy_alerts.php:670 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:616 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:712 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:618 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:714 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 #: ../../enterprise/godmode/policies/policy_collections.php:267 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 @@ -4893,80 +5156,88 @@ msgstr "新たな間隔カスタム値の追加" #: ../../enterprise/include/ajax/log_viewer.ajax.php:93 #: ../../enterprise/include/ajax/servers.ajax.php:144 #: ../../enterprise/include/ajax/servers.ajax.php:177 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2284 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2286 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1321 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:830 #: ../../extensions/files_repo/files_repo_form.php:105 #: ../../godmode/modules/manage_network_templates_form.php:347 #: ../../godmode/users/configure_profile.php:403 -#: ../../godmode/agentes/planned_downtime.editor.php:1179 -#: ../../godmode/agentes/planned_downtime.editor.php:1353 +#: ../../godmode/agentes/inventory_manager.php:185 +#: ../../godmode/agentes/planned_downtime.editor.php:1168 +#: ../../godmode/agentes/planned_downtime.editor.php:1341 #: ../../godmode/snmpconsole/snmp_alert.php:1494 #: ../../godmode/gis_maps/configure_gis_map.php:631 #: ../../godmode/alerts/alert_list.list.php:815 ../../godmode/setup/news.php:299 -#: ../../godmode/setup/links.php:173 ../../godmode/setup/setup_visuals.php:1351 -#: ../../godmode/setup/setup_visuals.php:1406 ../../godmode/setup/setup_visuals.php:1426 +#: ../../godmode/setup/links.php:173 ../../godmode/setup/setup_visuals.php:1372 +#: ../../godmode/setup/setup_visuals.php:1427 +#: ../../godmode/setup/setup_visuals.php:1447 #: ../../godmode/reporting/graph_builder.graph_editor.php:352 #: ../../godmode/reporting/visual_console_builder.wizard.php:531 -#: ../../godmode/events/event_edit_filter.php:514 -#: ../../godmode/events/event_edit_filter.php:567 ../../godmode/servers/plugin.php:909 -#: ../../include/functions_notifications.php:963 +#: ../../godmode/events/event_edit_filter.php:565 +#: ../../godmode/events/event_edit_filter.php:618 +#: ../../godmode/servers/plugin.php:890 +#: ../../include/functions_notifications.php:962 +#: ../../include/class/SatelliteAgent.class.php:1168 #: ../../include/class/ManageNetScanScripts.class.php:471 #: ../../include/functions_snmp_browser.php:1566 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 -#: ../../operation/events/events.php:1152 ../../operation/events/events.php:1226 +#: ../../operation/events/events.php:1229 ../../operation/events/events.php:1303 msgid "Add" msgstr "追加" #: ../../enterprise/meta/advanced/metasetup.visual.php:420 -#: ../../enterprise/meta/include/functions_meta.php:1779 -#: ../../godmode/setup/setup_visuals.php:1411 ../../include/functions_config.php:1398 +#: ../../enterprise/meta/include/functions_meta.php:1798 +#: ../../godmode/setup/setup_visuals.php:1432 +#: ../../include/functions_config.php:1399 msgid "Delete interval" msgstr "間隔値を削除" #: ../../enterprise/meta/advanced/metasetup.visual.php:454 -#: ../../enterprise/meta/include/functions_meta.php:1570 +#: ../../enterprise/meta/include/functions_meta.php:1589 #: ../../godmode/setup/setup_visuals.php:1292 msgid "Show only the group name" msgstr "グループ名のみ表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:456 -#: ../../include/functions_config.php:1255 +#: ../../include/functions_config.php:1256 msgid "Show the group name instead the group icon." msgstr "グループアイコンの代わりにグループ名を表示します。" #: ../../enterprise/meta/advanced/metasetup.visual.php:466 -#: ../../enterprise/meta/include/functions_meta.php:1871 -#: ../../godmode/setup/setup_visuals.php:88 ../../include/functions_config.php:1279 +#: ../../enterprise/meta/include/functions_meta.php:1890 +#: ../../godmode/setup/setup_visuals.php:88 +#: ../../include/functions_config.php:1280 msgid "Display data of proc modules in other format" msgstr "別フォーマットでのprocモジュールのデータ表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:474 -#: ../../enterprise/meta/include/functions_meta.php:1881 -#: ../../godmode/setup/setup_visuals.php:97 ../../include/functions_config.php:1283 +#: ../../enterprise/meta/include/functions_meta.php:1900 +#: ../../godmode/setup/setup_visuals.php:97 +#: ../../include/functions_config.php:1284 msgid "Display text proc modules have state is ok" msgstr "正常状態時のprocモジュール表示テキスト" #: ../../enterprise/meta/advanced/metasetup.visual.php:484 -#: ../../enterprise/meta/include/functions_meta.php:1891 -#: ../../godmode/setup/setup_visuals.php:101 ../../include/functions_config.php:1287 +#: ../../enterprise/meta/include/functions_meta.php:1910 +#: ../../godmode/setup/setup_visuals.php:101 +#: ../../include/functions_config.php:1288 msgid "Display text when proc modules have state critical" msgstr "障害状態時のprocモジュール表示テキスト" #: ../../enterprise/meta/advanced/metasetup.visual.php:503 -#: ../../enterprise/meta/include/functions_meta.php:1610 -#: ../../godmode/setup/setup_visuals.php:191 ../../include/functions_config.php:1035 +#: ../../enterprise/meta/include/functions_meta.php:1629 +#: ../../godmode/setup/setup_visuals.php:191 +#: ../../include/functions_config.php:1036 msgid "Custom favicon" msgstr "カスタム favicon" #: ../../enterprise/meta/advanced/metasetup.visual.php:505 msgid "" -"You can place your favicon into the folder images/custom_favicon/. This file should " -"be in .ico format with a size of 16x16." +"You can place your favicon into the folder images/custom_favicon/. This file " +"should be in .ico format with a size of 16x16." msgstr "" -"favicon を images/custom_favicon/ フォルダに配置できます。 このファイルは、16x16 のサ" -"イズの .ico 形式である必要があります。" +"favicon を images/custom_favicon/ フォルダに配置できます。 このファイルは、" +"16x16 のサイズの .ico 形式である必要があります。" #: ../../enterprise/meta/advanced/metasetup.visual.php:531 #: ../../godmode/setup/setup_visuals.php:213 @@ -5004,15 +5275,17 @@ msgstr "カスタムスプラッシュ(ログイン)" #: ../../enterprise/meta/advanced/metasetup.visual.php:724 #: ../../enterprise/meta/advanced/metasetup.visual.php:795 -#: ../../enterprise/meta/include/functions_meta.php:1640 -#: ../../godmode/setup/setup_visuals.php:508 ../../include/functions_config.php:1111 +#: ../../enterprise/meta/include/functions_meta.php:1659 +#: ../../godmode/setup/setup_visuals.php:508 +#: ../../include/functions_config.php:1112 msgid "Product name" msgstr "製品名" #: ../../enterprise/meta/advanced/metasetup.visual.php:735 #: ../../enterprise/meta/advanced/metasetup.visual.php:805 -#: ../../enterprise/meta/include/functions_meta.php:1650 -#: ../../godmode/setup/setup_visuals.php:514 ../../include/functions_config.php:1115 +#: ../../enterprise/meta/include/functions_meta.php:1669 +#: ../../godmode/setup/setup_visuals.php:514 +#: ../../include/functions_config.php:1116 msgid "Copyright notice" msgstr "著作権表示" @@ -5037,13 +5310,13 @@ msgid "Title 2 (login)" msgstr "タイトル 2 (ログイン)" #: ../../enterprise/meta/advanced/metasetup.visual.php:775 -#: ../../enterprise/meta/include/functions_meta.php:1700 +#: ../../enterprise/meta/include/functions_meta.php:1719 #: ../../godmode/setup/setup_visuals.php:496 msgid "Docs URL (login)" msgstr "ドキュメントURL(ログイン)" #: ../../enterprise/meta/advanced/metasetup.visual.php:785 -#: ../../enterprise/meta/include/functions_meta.php:1710 +#: ../../enterprise/meta/include/functions_meta.php:1729 #: ../../godmode/setup/setup_visuals.php:502 msgid "Support URL (login)" msgstr "サポートURL(ログイン)" @@ -5053,7 +5326,7 @@ msgid "Graphs font family" msgstr "グラフフォントファミリ" #: ../../enterprise/meta/advanced/metasetup.visual.php:826 -#: ../../enterprise/meta/include/functions_meta.php:1540 +#: ../../enterprise/meta/include/functions_meta.php:1559 #: ../../godmode/setup/setup_visuals.php:564 msgid "Visual effects and animation" msgstr "表示効果およびアニメーション" @@ -5085,8 +5358,9 @@ msgid "No cache" msgstr "キャッシュ無し" #: ../../enterprise/meta/advanced/metasetup.visual.php:874 -#: ../../enterprise/meta/include/functions_meta.php:1918 -#: ../../godmode/setup/setup_visuals.php:1056 ../../include/functions_config.php:1159 +#: ../../enterprise/meta/include/functions_meta.php:1937 +#: ../../godmode/setup/setup_visuals.php:1056 +#: ../../include/functions_config.php:1160 msgid "Default interval for refresh on Visual Console" msgstr "ビジュアルコンソールのデフォルト更新間隔" @@ -5095,28 +5369,29 @@ msgid "This interval will affect to Visual Console pages" msgstr "この間隔はビジュアルコンソールページで有効です" #: ../../enterprise/meta/advanced/metasetup.visual.php:903 -#: ../../godmode/setup/setup_visuals.php:1505 +#: ../../godmode/setup/setup_visuals.php:1526 msgid "Data multiplier to use in graphs/data" msgstr "グラフのデータで利用するデータ倍率" #: ../../enterprise/meta/advanced/metasetup.visual.php:907 -#: ../../godmode/setup/setup_visuals.php:1507 +#: ../../godmode/setup/setup_visuals.php:1528 msgid "Use 1024 when module unit are bytes" msgstr "モジュールの単位がバイトの場合 1024 を利用" #: ../../enterprise/meta/advanced/metasetup.visual.php:908 -#: ../../godmode/setup/setup_visuals.php:1508 +#: ../../godmode/setup/setup_visuals.php:1529 msgid "Use always 1000" msgstr "常に 1000を利用" #: ../../enterprise/meta/advanced/metasetup.visual.php:909 -#: ../../godmode/setup/setup_visuals.php:1509 +#: ../../godmode/setup/setup_visuals.php:1530 msgid "Use always 1024" msgstr "常に 1024 を利用" #: ../../enterprise/meta/advanced/metasetup.visual.php:923 -#: ../../enterprise/meta/include/functions_meta.php:1923 -#: ../../godmode/setup/setup_visuals.php:1098 ../../include/functions_config.php:1175 +#: ../../enterprise/meta/include/functions_meta.php:1942 +#: ../../godmode/setup/setup_visuals.php:1098 +#: ../../include/functions_config.php:1176 msgid "Mobile view not allow visual console orientation" msgstr "モバイル表示では、視覚的なコンソールの向きは調整できません。" @@ -5131,11 +5406,11 @@ msgstr "説明とともにレポート情報を表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:948 msgid "" -"Custom report description info. It will be applied to all reports and templates by " -"default." +"Custom report description info. It will be applied to all reports and " +"templates by default." msgstr "" -"カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適用されま" -"す。" +"カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適" +"用されます。" #: ../../enterprise/meta/advanced/metasetup.visual.php:959 #: ../../godmode/setup/setup_visuals.php:1141 @@ -5144,210 +5419,225 @@ msgstr "カスタムレポート表紙" #: ../../enterprise/meta/advanced/metasetup.visual.php:960 msgid "" -"Custom report front page. It will be applied to all reports and templates by default." +"Custom report front page. It will be applied to all reports and templates by " +"default." msgstr "" -"カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用されます。" +"カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用さ" +"れます。" #: ../../enterprise/meta/advanced/metasetup.visual.php:971 -#: ../../enterprise/meta/include/functions_meta.php:1405 -#: ../../godmode/setup/setup_visuals.php:1151 ../../include/functions_config.php:1429 +#: ../../enterprise/meta/include/functions_meta.php:1424 +#: ../../godmode/setup/setup_visuals.php:1151 +#: ../../include/functions_config.php:1430 msgid "PDF font size (px)" msgstr "PDF フォントサイズ(px)" #: ../../enterprise/meta/advanced/metasetup.visual.php:974 -#: ../../enterprise/meta/include/functions_meta.php:1395 -#: ../../godmode/setup/setup_visuals.php:1156 ../../include/functions_config.php:1425 +#: ../../enterprise/meta/include/functions_meta.php:1414 +#: ../../godmode/setup/setup_visuals.php:1156 +#: ../../include/functions_config.php:1426 msgid "HTML font size for SLA (em)" msgstr "SLA 用 HTML フォントサイズ(em)" #: ../../enterprise/meta/advanced/metasetup.visual.php:977 -#: ../../enterprise/meta/include/functions_meta.php:1520 +#: ../../enterprise/meta/include/functions_meta.php:1539 #: ../../godmode/setup/setup_visuals.php:1161 msgid "Graph image height for HTML reports" msgstr "HTML レポートのグラフ画像の高さ" #: ../../enterprise/meta/advanced/metasetup.visual.php:979 msgid "" -"This is the height in pixels of the module graph or custom graph in the reports " -"(only: HTML)" +"This is the height in pixels of the module graph or custom graph in the " +"reports (only: HTML)" msgstr "" -"これは、レポートのモジュールグラフまたはカスタムグラフのピクセル単位の高さです(HTMLの" -"み)。" +"これは、レポートのモジュールグラフまたはカスタムグラフのピクセル単位の高さです" +"(HTMLのみ)。" #: ../../enterprise/meta/advanced/metasetup.visual.php:996 -#: ../../enterprise/meta/include/functions_meta.php:1425 -#: ../../godmode/setup/setup_visuals.php:1454 ../../include/functions_config.php:1457 +#: ../../enterprise/meta/include/functions_meta.php:1444 +#: ../../godmode/setup/setup_visuals.php:1475 +#: ../../include/functions_config.php:1458 msgid "CSV divider" msgstr "CSV 区切り文字" #: ../../enterprise/meta/advanced/metasetup.visual.php:1036 -#: ../../enterprise/meta/include/functions_meta.php:1435 -#: ../../godmode/setup/setup_visuals.php:1500 ../../include/functions_config.php:1461 +#: ../../enterprise/meta/include/functions_meta.php:1454 +#: ../../godmode/setup/setup_visuals.php:1521 +#: ../../include/functions_config.php:1462 msgid "CSV decimal separator" msgstr "CSV小数点区切り文字" #: ../../enterprise/meta/advanced/metasetup.visual.php:1044 -#: ../../enterprise/meta/include/functions_meta.php:1415 +#: ../../enterprise/meta/include/functions_meta.php:1434 #: ../../godmode/setup/setup_visuals.php:1170 msgid "Interval description" msgstr "間隔の表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:1046 msgid "" -"A long interval description is for example 10 hours, 20 minutes 33 seconds”, a short " -"one is 10h 20m 33s" -msgstr "長い時間間隔の説明は、たとえば、10時間20分33秒、短い説明は 10h20m33sです。" +"A long interval description is for example 10 hours, 20 minutes 33 seconds”, a " +"short one is 10h 20m 33s" +msgstr "" +"長い時間間隔の説明は、たとえば、10時間20分33秒、短い説明は 10h20m33sです。" #: ../../enterprise/meta/advanced/metasetup.visual.php:1061 #: ../../enterprise/meta/advanced/metasetup.visual.php:1074 #: ../../enterprise/meta/advanced/metasetup.visual.php:1085 #: ../../enterprise/meta/advanced/metasetup.visual.php:1095 -#: ../../enterprise/meta/include/functions_meta.php:1805 -#: ../../enterprise/meta/include/functions_meta.php:1821 -#: ../../enterprise/meta/include/functions_meta.php:1831 -#: ../../enterprise/meta/include/functions_meta.php:1841 -#: ../../enterprise/meta/include/functions_meta.php:1851 -#: ../../enterprise/meta/include/functions_meta.php:1861 -#: ../../godmode/setup/setup_visuals.php:1194 ../../godmode/setup/setup_visuals.php:1209 -#: ../../godmode/setup/setup_visuals.php:1217 ../../godmode/setup/setup_visuals.php:1237 -#: ../../godmode/setup/setup_visuals.php:1253 ../../include/functions_config.php:1433 -#: ../../include/functions_config.php:1437 ../../include/functions_config.php:1441 -#: ../../include/functions_config.php:1445 ../../include/functions_config.php:1449 -#: ../../include/functions_config.php:1453 +#: ../../enterprise/meta/include/functions_meta.php:1824 +#: ../../enterprise/meta/include/functions_meta.php:1840 +#: ../../enterprise/meta/include/functions_meta.php:1850 +#: ../../enterprise/meta/include/functions_meta.php:1860 +#: ../../enterprise/meta/include/functions_meta.php:1870 +#: ../../enterprise/meta/include/functions_meta.php:1880 +#: ../../godmode/setup/setup_visuals.php:1194 +#: ../../godmode/setup/setup_visuals.php:1209 +#: ../../godmode/setup/setup_visuals.php:1217 +#: ../../godmode/setup/setup_visuals.php:1237 +#: ../../godmode/setup/setup_visuals.php:1253 +#: ../../include/functions_config.php:1434 +#: ../../include/functions_config.php:1438 +#: ../../include/functions_config.php:1442 +#: ../../include/functions_config.php:1446 +#: ../../include/functions_config.php:1450 +#: ../../include/functions_config.php:1454 msgid "Custom report front" msgstr "カスタムレポートスタイル" #: ../../enterprise/meta/advanced/metasetup.visual.php:1061 -#: ../../enterprise/meta/include/functions_meta.php:1580 -#: ../../enterprise/meta/include/functions_meta.php:1831 +#: ../../enterprise/meta/include/functions_meta.php:1599 +#: ../../enterprise/meta/include/functions_meta.php:1850 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 -#: ../../godmode/setup/setup_visuals.php:1194 ../../include/functions_config.php:1039 -#: ../../include/functions_config.php:1441 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 +#: ../../godmode/setup/setup_visuals.php:1194 +#: ../../include/functions_config.php:1040 +#: ../../include/functions_config.php:1442 msgid "Custom logo" msgstr "カスタムロゴ" #: ../../enterprise/meta/advanced/metasetup.visual.php:1062 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:132 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." +"The path of custom logos is 'images/custom_logo' in the console installation. " +"You can upload more files (ONLY JPEG AND PNG) with the upload tool." msgstr "" -"カスタムロゴのパスは、コンソールの 'images/custom_logo' です。 アップロードツールを使" -"用して、追加のファイル(JPEG と PNG のみ)をアップロードできます。" +"カスタムロゴのパスは、コンソールの 'images/custom_logo' です。 アップロードツー" +"ルを使用して、追加のファイル(JPEG と PNG のみ)をアップロードできます。" #: ../../enterprise/meta/advanced/metasetup.visual.php:1085 -#: ../../enterprise/meta/include/functions_meta.php:1841 +#: ../../enterprise/meta/include/functions_meta.php:1860 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 -#: ../../godmode/setup/setup_visuals.php:1217 ../../include/functions_config.php:1445 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:143 +#: ../../godmode/setup/setup_visuals.php:1217 +#: ../../include/functions_config.php:1446 msgid "Header" msgstr "ヘッダー" #: ../../enterprise/meta/advanced/metasetup.visual.php:1095 -#: ../../enterprise/meta/include/functions_meta.php:1851 +#: ../../enterprise/meta/include/functions_meta.php:1870 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 -#: ../../godmode/setup/setup_visuals.php:1237 ../../include/functions_config.php:1449 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:153 +#: ../../godmode/setup/setup_visuals.php:1237 +#: ../../include/functions_config.php:1450 msgid "First page" msgstr "最初のページ" #: ../../enterprise/meta/advanced/metasetup.visual.php:1324 -#: ../../godmode/setup/setup_visuals.php:1806 +#: ../../godmode/setup/setup_visuals.php:1827 msgid "Logo preview" msgstr "ロゴのプレビュー" #: ../../enterprise/meta/advanced/metasetup.visual.php:1346 -#: ../../godmode/setup/setup_visuals.php:1836 +#: ../../godmode/setup/setup_visuals.php:1857 msgid "Splash Preview" msgstr "スプラッシュプレビュー" #: ../../enterprise/meta/advanced/metasetup.visual.php:1351 -#: ../../godmode/setup/setup_visuals.php:1860 +#: ../../godmode/setup/setup_visuals.php:1881 msgid "Background preview" msgstr "背景のプレビュー" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 +#: ../../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 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:154 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:158 msgid "Agent: " msgstr "エージェント: " -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 msgid " already exists in target node" msgstr " は対象ノードにすでに存在します" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:127 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:134 msgid " group does not exist in target node" msgstr " グループは対象ノードに存在しません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:131 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:138 msgid " policies definitions does not match with defined ones in target node" msgstr " ポリシー定義は対象ノードの定義とマッチしません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:135 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:142 msgid " plugins does not exist in target node" msgstr " プラグインは対象ノードに存在しません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:139 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:146 msgid " collections does not exist in target node" msgstr " コレクションは対象ノードに存在しません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:143 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:150 msgid " inventory does not exist in target node" msgstr " インベントリは対象ノードに存在しません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:147 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:154 msgid " alerts template does not exist in target node" msgstr " アラートテンプレートは対象ノードに存在しません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:151 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:158 msgid " alerts action does not exist in target node" msgstr " アラートアクションは対象ノードに存在しません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:162 msgid "Exists agent conf for agent: " msgstr "エージェントの設定ファイルが存在します: " -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:155 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:162 msgid " please remove configuration file from target node." msgstr " 対象ノードから設定ファイルを削除してください。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:159 -#: ../../enterprise/include/functions_metaconsole.php:2831 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:166 +#: ../../enterprise/include/functions_metaconsole.php:2857 msgid "There are differences between MR versions" msgstr "MR バージョンに違いがあります" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163 -#: ../../enterprise/include/functions_metaconsole.php:2824 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:170 +#: ../../enterprise/include/functions_metaconsole.php:2850 msgid "Target server ip address is set" msgstr "対象サーバの IP アドレスが設定されています" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:274 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:276 msgid "The agent: " msgstr "エージェント: " -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:267 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:274 msgid " has been successfully added to the migration queue " msgstr " はマイグレーションキューに追加されました " -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:269 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:276 msgid " has not been added due to problems in the insertion" msgstr " は挿入で問題が発生したため追加されませんでした" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:272 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:279 #, php-format msgid "The agent: %d has already been added to the migration queue" msgstr "エージェント: %d はマイグレーションキューにすでに追加されています" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:289 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:296 #: ../../enterprise/meta/advanced/metasetup.relations.php:87 #: ../../enterprise/godmode/reporting/graph_template_list.php:156 #: ../../enterprise/godmode/reporting/graph_template_list.php:183 @@ -5355,184 +5645,174 @@ msgstr "エージェント: %d はマイグレーションキューにすでに #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:88 #: ../../godmode/modules/manage_nc_groups.php:153 -#: ../../godmode/agentes/planned_downtime.list.php:243 -#: ../../godmode/netflow/nf_item_list.php:121 ../../godmode/netflow/nf_item_list.php:149 +#: ../../godmode/agentes/planned_downtime.list.php:280 +#: ../../godmode/netflow/nf_item_list.php:121 +#: ../../godmode/netflow/nf_item_list.php:149 #: ../../godmode/netflow/nf_edit.php:105 ../../godmode/netflow/nf_edit.php:138 -#: ../../godmode/reporting/map_builder.php:210 ../../godmode/reporting/graphs.php:152 -#: ../../godmode/reporting/graphs.php:163 ../../godmode/reporting/graphs.php:214 -#: ../../godmode/events/event_filter.php:70 ../../godmode/events/event_filter.php:97 +#: ../../godmode/reporting/map_builder.php:210 +#: ../../godmode/reporting/graphs.php:152 ../../godmode/reporting/graphs.php:163 +#: ../../godmode/reporting/graphs.php:214 +#: ../../godmode/events/event_filter.php:70 +#: ../../godmode/events/event_filter.php:97 #: ../../operation/reporting/graph_viewer.php:59 #: ../../operation/reporting/graph_viewer.php:67 msgid "Not deleted. Error deleting data" msgstr "データの削除に失敗しました。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:299 msgid "Problems delete queue" msgstr "キューの削除で問題が発生しました" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:312 -msgid "Move Agents" -msgstr "エージェント移動" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:321 msgid "Source Server" msgstr "ソースサーバ" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:330 -msgid "Destination Server" -msgstr "対象サーバ" +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:356 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:472 +#: ../../enterprise/godmode/policies/policy_agents.php:454 +#: ../../enterprise/godmode/policies/policy_agents.php:485 +#: ../../enterprise/godmode/policies/policy_agents.php:585 +#: ../../enterprise/godmode/policies/policy_agents.php:850 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115 +#: ../../godmode/massive/massive_copy_modules.php:112 +#: ../../godmode/massive/massive_copy_modules.php:265 +#: ../../godmode/massive/massive_standby_alerts.php:201 +#: ../../godmode/massive/massive_delete_action_alerts.php:222 +#: ../../godmode/massive/massive_delete_modules.php:386 +#: ../../godmode/massive/massive_add_alerts.php:228 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_delete_alerts.php:312 +#: ../../godmode/massive/massive_add_action_alerts.php:210 +#: ../../godmode/massive/massive_edit_modules.php:370 +#: ../../include/functions_html.php:1258 ../../include/functions_html.php:1410 +#: ../../include/functions_massive_operations.php:138 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:243 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:334 +#: ../../include/lib/Dashboard/Widgets/events_list.php:447 +#: ../../operation/events/events.php:1786 +msgid "Group recursion" +msgstr "子グループを含める" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 -#: ../../enterprise/meta/advanced/policymanager.queue.php:258 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:298 -#: ../../enterprise/meta/monitoring/group_view.php:154 -#: ../../enterprise/meta/monitoring/group_view.php:215 -#: ../../enterprise/meta/include/functions_autoprovision.php:476 -#: ../../enterprise/godmode/agentes/collections.agents.php:53 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100 -#: ../../enterprise/godmode/agentes/collections.data.php:137 -#: ../../enterprise/godmode/agentes/collections.data.php:283 -#: ../../enterprise/godmode/agentes/collections.editor.php:74 -#: ../../enterprise/godmode/policies/policy_queue.php:648 -#: ../../enterprise/godmode/policies/policies.php:411 -#: ../../enterprise/godmode/policies/policies.php:535 -#: ../../enterprise/godmode/policies/policy_agents.php:531 -#: ../../enterprise/godmode/policies/policy_agents.php:664 -#: ../../enterprise/godmode/policies/policy_agents.php:778 -#: ../../enterprise/godmode/policies/policy.php:71 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 -#: ../../enterprise/include/functions_cron.php:215 -#: ../../enterprise/include/functions_tasklist.php:366 -#: ../../enterprise/include/functions_reporting_pdf.php:884 -#: ../../enterprise/include/functions_policies.php:3825 -#: ../../enterprise/operation/services/massive/services.create.php:988 -#: ../../enterprise/operation/services/massive/service.create.elements.php:383 -#: ../../enterprise/operation/services/services.service_map.php:158 -#: ../../extensions/agents_modules.php:431 ../../extensions/agents_modules.php:758 -#: ../../godmode/agentes/planned_downtime.list.php:84 -#: ../../godmode/agentes/planned_downtime.list.php:108 -#: ../../godmode/massive/massive_standby_alerts.php:203 -#: ../../godmode/massive/massive_delete_modules.php:535 -#: ../../godmode/massive/massive_add_alerts.php:231 -#: ../../godmode/massive/massive_edit_plugins.php:367 -#: ../../godmode/massive/massive_enable_disable_alerts.php:174 -#: ../../godmode/massive/massive_delete_alerts.php:314 -#: ../../godmode/massive/massive_edit_modules.php:511 -#: ../../godmode/alerts/alert_list.list.php:79 -#: ../../godmode/reporting/reporting_builder.list_items.php:208 -#: ../../godmode/reporting/reporting_builder.list_items.php:229 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1786 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1848 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2095 -#: ../../godmode/reporting/visual_console_builder.wizard.php:408 -#: ../../mobile/include/functions_web.php:23 ../../mobile/operation/agents.php:204 -#: ../../mobile/operation/home.php:81 ../../mobile/operation/agent.php:155 -#: ../../include/functions_reporting_html.php:1996 -#: ../../include/functions_reporting_html.php:2465 -#: ../../include/functions_reporting_html.php:3243 ../../include/functions_cron.php:692 -#: ../../include/functions_html.php:1655 ../../include/functions_html.php:5550 -#: ../../include/functions_massive_operations.php:219 -#: ../../include/class/Diagnostics.class.php:1161 -#: ../../include/class/Diagnostics.class.php:1165 -#: ../../include/class/Diagnostics.class.php:1169 -#: ../../include/class/Diagnostics.class.php:1173 -#: ../../include/class/NetworkMap.class.php:3228 -#: ../../include/class/AgentsAlerts.class.php:252 -#: ../../include/class/AgentsAlerts.class.php:542 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:340 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:345 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:448 -#: ../../include/functions_groups.php:53 ../../operation/search_results.php:80 -#: ../../operation/agentes/interface_view.functions.php:71 -#: ../../operation/agentes/group_view.php:183 ../../operation/agentes/group_view.php:216 -msgid "Agents" +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:359 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:475 +#: ../../enterprise/godmode/policies/policy_agents.php:535 +#: ../../enterprise/godmode/policies/policy_agents.php:549 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749 +#: ../../enterprise/include/class/Omnishell.class.php:827 +#: ../../enterprise/include/class/Omnishell.class.php:906 +msgid "Filter agent" +msgstr "エージェントのフィルタ" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:371 +#: ../../enterprise/include/class/Omnishell.class.php:837 +#: ../../godmode/agentes/planned_downtime.editor.php:1103 +msgid "Available agents" msgstr "エージェント" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:364 -msgid "Agents to move" -msgstr "移動するエージェント" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 -msgid "Add agents to destination server" -msgstr "対象サーバにエージェントを追加" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394 -msgid "Remove agents to doesn't move to destination server" -msgstr "送り先サーバへ移動させないエージェントを削除" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:384 msgid "Discard history data" msgstr "ヒストリデータ削除" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:399 +msgid "Move" +msgstr "移動" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:415 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857 +#: ../../enterprise/include/class/Omnishell.class.php:869 +msgid "Add agents" +msgstr "エージェント追加" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:882 +msgid "Remove agents" +msgstr "エージェント削除" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:439 +msgid "Destination Server" +msgstr "対象サーバ" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:487 +#: ../../enterprise/include/class/Omnishell.class.php:917 +#: ../../enterprise/operation/services/massive/services.create.php:1244 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:255 +#: ../../enterprise/operation/services/massive/service.create.elements.php:601 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:364 +msgid "Selected agents" +msgstr "選択したエージェント" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:518 +msgid "Move agents" +msgstr "エージェント移動" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:552 msgid "Agents do not exist in target server." msgstr "対象サーバにエージェントがありません。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:427 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:553 msgid "Check group is synchronized with target server." msgstr "対象サーバでグループが同期されていることを確認してください。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554 msgid "All policies needed are synchronized with target server." msgstr "必要なすべてのポリシーは、対象サーバと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:555 msgid "All remote plugins needed are synchronized with target server." msgstr "必要なすべてのプラグインは対象サーバと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:430 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:556 msgid "All collections needed are syncronized with target server." msgstr "必要なすべてのコレクションは対象サーバと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:431 -msgid "All remote inventory definitions needed are syncronized with target server." +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:557 +msgid "" +"All remote inventory definitions needed are syncronized with target server." msgstr "必要なすべてのインベントリ定義は対象サーバと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:432 -msgid "All alert templates definitions needed are syncronized with target server." +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:558 +msgid "" +"All alert templates definitions needed are syncronized with target server." msgstr "必要なすべてのアラートテンプレート定義は対象サーバっと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:559 msgid "All alert actions needed are syncronized with target server." msgstr "必要なすべてのアラートアクションは対象サーバと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:434 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:560 msgid "Agents conf does not exists in target server." msgstr "対象サーバにエージェントの設定がありません。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:435 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:561 #, php-format msgid "Both %s servers must be in the same version" msgstr "両方の %s サーバは同じバージョンである必要があります" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:436 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:562 msgid "Check target server ip address is set" msgstr "対象サーバの IP アドレスが設定されているか確認してください。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:446 -msgid "Move" -msgstr "移動" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:461 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:578 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 -#: ../../enterprise/include/functions_inventory.php:142 -#: ../../enterprise/include/functions_inventory.php:176 +#: ../../include/functions_inventory.php:142 +#: ../../include/functions_inventory.php:176 #: ../../include/functions_events.php:250 msgid "Agent alias" msgstr "エージェントの別名" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579 msgid "Source node" msgstr "ソースノード" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:463 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:580 msgid "Target node" msgstr "対象ノード" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:464 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:581 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264 @@ -5540,18 +5820,19 @@ msgstr "対象ノード" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:423 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:483 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:530 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:816 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:818 #: ../../godmode/agentes/agent_incidents.php:91 #: ../../godmode/snmpconsole/snmp_alert.php:1105 #: ../../godmode/snmpconsole/snmp_alert.php:1168 #: ../../godmode/alerts/alert_list.list.php:136 #: ../../godmode/alerts/alert_templates.php:51 #: ../../godmode/alerts/configure_alert_template.php:1118 -#: ../../godmode/alerts/alert_view.php:124 ../../godmode/setup/setup_integria.php:379 +#: ../../godmode/alerts/alert_view.php:124 +#: ../../godmode/setup/setup_integria.php:379 #: ../../godmode/setup/setup_integria.php:501 -#: ../../include/functions_reporting_html.php:5248 -#: ../../include/functions_events.php:4285 -#: ../../operation/agentes/estado_generalagente.php:651 +#: ../../include/functions_reporting_html.php:5287 +#: ../../include/functions_events.php:4398 +#: ../../operation/agentes/estado_generalagente.php:667 #: ../../operation/incidents/integriaims_export_csv.php:85 #: ../../operation/incidents/configure_integriaims_incident.php:296 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325 @@ -5560,131 +5841,131 @@ msgstr "対象ノード" msgid "Priority" msgstr "優先度" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 -#: ../../enterprise/meta/include/functions_meta.php:2145 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582 +#: ../../enterprise/meta/include/functions_meta.php:2135 #: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:825 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1130 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1225 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1575 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1860 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2185 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2616 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2629 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2957 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3134 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3224 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3263 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3328 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:835 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1141 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1236 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1588 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1885 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2214 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2645 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2658 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2986 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3163 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3253 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3292 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3357 #: ../../godmode/alerts/configure_alert_template.php:228 #: ../../godmode/alerts/configure_alert_template.php:232 #: ../../godmode/alerts/configure_alert_template.php:249 #: ../../godmode/alerts/configure_alert_template.php:253 #: ../../godmode/alerts/configure_alert_template.php:270 #: ../../godmode/alerts/configure_alert_template.php:274 -#: ../../include/functions_config.php:1600 +#: ../../include/functions_config.php:1631 msgid "Step" msgstr "ステップ" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:467 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584 msgid "Active db only" msgstr "アクティブ DB のみ" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:520 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:637 msgid "Creating modules in target node" msgstr "対象ノードでモジュール作成中" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:524 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:641 msgid "Disabling agent in source node and enabling in target one" msgstr "ソースノードでエージェント無効化および対象ノードで有効化中" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:528 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:645 msgid "Transferring data" msgstr "データ転送中" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:533 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:650 msgid "Creating agent in target node" msgstr "対象ノードでエージェント作成中" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:656 #: ../../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:208 -#: ../../enterprise/include/class/AgentRepository.class.php:892 -#: ../../enterprise/include/class/AgentRepository.class.php:897 -#: ../../enterprise/include/class/Omnishell.class.php:1079 +#: ../../enterprise/include/class/AgentRepository.class.php:918 +#: ../../enterprise/include/class/AgentRepository.class.php:923 +#: ../../enterprise/include/class/Omnishell.class.php:1081 #: ../../enterprise/include/class/LogSource.class.php:795 #: ../../enterprise/include/class/LogSource.class.php:800 #: ../../enterprise/include/class/ManageBackups.class.php:484 #: ../../enterprise/include/class/ManageBackups.class.php:489 -#: ../../enterprise/include/functions_ux_console.php:473 -#: ../../enterprise/operation/agentes/transactional_map.php:327 +#: ../../enterprise/include/functions_ux_console.php:483 #: ../../enterprise/operation/agentes/ux_console_view.php:210 -#: ../../enterprise/operation/agentes/ux_console_view.php:352 -#: ../../enterprise/operation/agentes/wux_console_view.php:452 +#: ../../enterprise/operation/agentes/ux_console_view.php:359 +#: ../../enterprise/operation/agentes/wux_console_view.php:431 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1060 #: ../../include/ajax/snmp_browser.ajax.php:259 #: ../../include/class/ConfigPEN.class.php:744 #: ../../include/class/ConfigPEN.class.php:749 -#: ../../include/class/SatelliteAgent.class.php:622 -#: ../../include/class/SatelliteAgent.class.php:627 -#: ../../include/class/HelpFeedBack.class.php:354 -#: ../../include/class/Diagnostics.class.php:2086 -#: ../../include/class/CredentialStore.class.php:1192 -#: ../../include/class/CredentialStore.class.php:1197 -#: ../../include/class/ModuleTemplates.class.php:1424 -#: ../../include/class/ModuleTemplates.class.php:1429 +#: ../../include/class/SatelliteAgent.class.php:1076 +#: ../../include/class/SatelliteAgent.class.php:1081 +#: ../../include/class/HelpFeedBack.class.php:355 +#: ../../include/class/Diagnostics.class.php:2094 +#: ../../include/class/CredentialStore.class.php:1619 +#: ../../include/class/CredentialStore.class.php:1624 +#: ../../include/class/ModuleTemplates.class.php:1425 +#: ../../include/class/ModuleTemplates.class.php:1430 +#: ../../include/class/SatelliteCollection.class.php:640 +#: ../../include/class/SatelliteCollection.class.php:645 #: ../../include/class/WebServerModuleDebug.class.php:366 #: ../../include/class/WebServerModuleDebug.class.php:371 -#: ../../include/class/AgentWizard.class.php:5841 -#: ../../include/class/AgentWizard.class.php:5846 +#: ../../include/class/AgentWizard.class.php:6016 +#: ../../include/class/AgentWizard.class.php:6021 #: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 -#: ../../operation/visual_console/view.php:813 -#: ../../operation/visual_console/view.php:818 +#: ../../operation/visual_console/view.php:926 +#: ../../operation/visual_console/view.php:931 msgid "Failed" msgstr "失敗" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:660 #: ../../enterprise/meta/advanced/policymanager.queue.php:261 #: ../../enterprise/godmode/policies/policy_queue.php:671 #: ../../enterprise/godmode/policies/policy_queue.php:674 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443 #: ../../enterprise/include/class/Omnishell.class.php:362 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4146 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4419 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4171 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4290 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4444 msgid "Finished" msgstr "完了" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661 #: ../../update_manager_client/lib/UpdateManager/Client.php:1874 msgid "Completed" msgstr "完了" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:549 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:666 msgid "Queued" msgstr "キューに入っています" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554 -#: ../../enterprise/operation/agentes/transactional_map.php:265 -#: ../../godmode/agentes/planned_downtime.list.php:625 -#: ../../godmode/agentes/planned_downtime.list.php:698 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:671 +#: ../../godmode/agentes/planned_downtime.list.php:662 +#: ../../godmode/agentes/planned_downtime.list.php:735 msgid "Running" msgstr "実行中" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:679 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:880 msgid "checking migration requirements" msgstr "マイグレーション要求をチェック中" #: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:198 +#: ../../godmode/servers/modificar_server.php:206 msgid "Server deleted successfully" msgstr "サーバを削除しました。" #: ../../enterprise/meta/advanced/servers.php:41 -#: ../../godmode/servers/modificar_server.php:200 +#: ../../godmode/servers/modificar_server.php:208 msgid "There was a problem deleting the server" msgstr "サーバの削除に失敗しました。" @@ -5710,7 +5991,9 @@ msgstr "翻訳文字列を更新できませんでした" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 #: ../../enterprise/extensions/translate_string.php:302 -#: ../../godmode/users/configure_user.php:928 ../../operation/users/user_edit.php:328 +#: ../../godmode/users/configure_user.php:1139 +#: ../../godmode/massive/massive_edit_users.php:249 +#: ../../operation/users/user_edit.php:402 msgid "Language" msgstr "言語" @@ -5723,27 +6006,24 @@ msgstr "言語" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:416 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:684 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:755 -#: ../../enterprise/meta/agentsearch.php:110 ../../enterprise/meta/general/header.php:45 +#: ../../enterprise/meta/agentsearch.php:110 +#: ../../enterprise/meta/general/header.php:45 #: ../../enterprise/meta/general/header.php:47 #: ../../enterprise/meta/general/main_header.php:689 #: ../../enterprise/meta/general/main_header.php:691 #: ../../enterprise/extensions/translate_string.php:323 -#: ../../enterprise/godmode/modules/local_components.php:573 -#: ../../enterprise/godmode/modules/local_components.php:598 +#: ../../enterprise/godmode/modules/local_components.php:576 +#: ../../enterprise/godmode/modules/local_components.php:601 #: ../../enterprise/godmode/agentes/collection_manager.php:48 -#: ../../enterprise/godmode/agentes/collections.php:365 +#: ../../enterprise/godmode/agentes/collections.php:426 #: ../../enterprise/godmode/policies/policy_collections.php:254 -#: ../../enterprise/godmode/policies/policy_agents.php:822 -#: ../../enterprise/godmode/policies/policy_agents.php:835 +#: ../../enterprise/godmode/policies/policy_agents.php:858 +#: ../../enterprise/godmode/policies/policy_agents.php:871 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:151 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:162 #: ../../enterprise/operation/agentes/tag_view.php:219 -#: ../../enterprise/operation/agentes/agent_inventory.php:138 -#: ../../enterprise/operation/agentes/agent_inventory.php:140 -#: ../../enterprise/operation/log/log_viewer.php:513 -#: ../../enterprise/operation/log/log_viewer.php:796 -#: ../../enterprise/operation/inventory/inventory.php:374 -#: ../../enterprise/operation/inventory/inventory.php:427 +#: ../../enterprise/operation/log/log_viewer.php:514 +#: ../../enterprise/operation/log/log_viewer.php:797 #: ../../enterprise/operation/services/services.treeview_services.php:134 #: ../../enterprise/operation/services/services.list.php:225 #: ../../enterprise/operation/services/services.list.php:318 @@ -5758,36 +6038,46 @@ msgstr "言語" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:432 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 #: ../../extensions/module_groups.php:283 -#: ../../godmode/modules/manage_network_components.php:678 -#: ../../godmode/groups/group_list.php:785 ../../godmode/groups/group_list.php:795 -#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:412 +#: ../../godmode/modules/manage_network_components.php:681 +#: ../../godmode/groups/group_list.php:790 +#: ../../godmode/groups/group_list.php:800 ../../godmode/users/user_list.php:462 +#: ../../godmode/users/user_list.php:472 #: ../../godmode/agentes/modificar_agente.php:363 #: ../../godmode/agentes/modificar_agente.php:372 -#: ../../godmode/agentes/planned_downtime.list.php:284 -#: ../../godmode/agentes/planned_downtime.list.php:369 -#: ../../godmode/agentes/module_manager.php:65 -#: ../../godmode/alerts/alert_actions.php:244 ../../godmode/alerts/alert_actions.php:302 +#: ../../godmode/agentes/planned_downtime.list.php:321 +#: ../../godmode/agentes/planned_downtime.list.php:406 +#: ../../godmode/agentes/module_manager.php:56 +#: ../../godmode/alerts/alert_actions.php:244 +#: ../../godmode/alerts/alert_actions.php:302 #: ../../godmode/alerts/alert_templates.php:314 #: ../../godmode/alerts/alert_templates.php:325 #: ../../godmode/reporting/map_builder.php:350 -#: ../../godmode/reporting/map_builder.php:372 ../../godmode/reporting/graphs.php:241 +#: ../../godmode/reporting/map_builder.php:372 +#: ../../godmode/reporting/graphs.php:241 #: ../../godmode/reporting/visual_console_favorite.php:158 #: ../../godmode/reporting/visual_console_favorite.php:188 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1293 #: ../../godmode/reporting/reporting_builder.php:796 #: ../../godmode/module_library/module_library_view.php:102 #: ../../godmode/module_library/module_library_view.php:112 #: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:70 -#: ../../include/functions_snmp.php:358 ../../include/class/SatelliteAgent.class.php:162 -#: ../../include/class/AuditLog.class.php:180 +#: ../../include/functions_snmp.php:358 +#: ../../include/class/SatelliteAgent.class.php:189 +#: ../../include/class/AuditLog.class.php:179 #: ../../include/class/CalendarManager.class.php:1071 -#: ../../include/class/AgentWizard.class.php:2632 +#: ../../include/class/SatelliteCollection.class.php:160 +#: ../../include/class/AgentWizard.class.php:2750 #: ../../include/functions_snmp_browser.php:925 -#: ../../include/functions_snmp_browser.php:1509 ../../operation/search_results.php:192 +#: ../../include/functions_snmp_browser.php:1509 +#: ../../operation/search_results.php:193 #: ../../operation/agentes/estado_agente.php:280 #: ../../operation/agentes/estado_agente.php:291 -#: ../../operation/agentes/status_monitor.php:547 ../../general/ui/agents_list.php:100 -#: ../../general/ui/agents_list.php:113 +#: ../../operation/agentes/status_monitor.php:547 +#: ../../operation/agentes/agent_inventory.php:138 +#: ../../operation/agentes/agent_inventory.php:140 +#: ../../operation/inventory/inventory.php:377 +#: ../../operation/inventory/inventory.php:430 +#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 msgid "Search" msgstr "検索" @@ -5796,7 +6086,7 @@ msgstr "検索" #: ../../enterprise/extensions/translate_string.php:313 #: ../../enterprise/extensions/translate_string.php:314 #: ../../enterprise/godmode/agentes/collection_manager.php:42 -#: ../../enterprise/godmode/agentes/collections.php:361 +#: ../../enterprise/godmode/agentes/collections.php:422 #: ../../enterprise/godmode/policies/policies.php:330 #: ../../enterprise/godmode/policies/policy_collections.php:248 msgid "Free text for search (*)" @@ -5829,11 +6119,11 @@ msgstr "翻訳カスタマイズ" #: ../../godmode/agentes/module_manager_editor_wmi.php:61 #: ../../godmode/agentes/module_manager_editor_network.php:96 #: ../../godmode/massive/massive_edit_modules.php:819 -#: ../../include/functions_html.php:1890 ../../include/functions_html.php:1891 -#: ../../include/functions_html.php:2001 ../../include/functions_html.php:2002 -#: ../../include/functions_html.php:2162 ../../include/functions_html.php:2163 -#: ../../include/functions_html.php:6326 ../../include/functions_html.php:6327 -#: ../../include/class/CredentialStore.class.php:945 +#: ../../include/functions_html.php:1885 ../../include/functions_html.php:1886 +#: ../../include/functions_html.php:1996 ../../include/functions_html.php:1997 +#: ../../include/functions_html.php:2146 ../../include/functions_html.php:2147 +#: ../../include/functions_html.php:6321 ../../include/functions_html.php:6322 +#: ../../include/class/CredentialStore.class.php:983 #: ../../operation/netflow/nf_live_view.php:392 msgid "Custom" msgstr "カスタム" @@ -5861,8 +6151,8 @@ msgid "Imei" msgstr "IMEI" #: ../../enterprise/meta/advanced/metasetup.relations.php:330 -#: ../../include/class/NetworkMap.class.php:3086 -#: ../../include/class/NetworkMap.class.php:3087 +#: ../../include/class/NetworkMap.class.php:3219 +#: ../../include/class/NetworkMap.class.php:3220 msgid "Relations" msgstr "関連付" @@ -5889,31 +6179,33 @@ msgstr "関係一覧の表示" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:592 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:413 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2530 -#: ../../enterprise/include/functions_reporting_csv.php:1204 -#: ../../enterprise/include/functions_reporting_csv.php:1230 -#: ../../enterprise/include/functions_reporting_csv.php:1261 -#: ../../enterprise/include/functions_reporting_csv.php:1316 -#: ../../enterprise/include/functions_reporting_csv.php:1420 -#: ../../enterprise/include/functions_reporting_csv.php:2727 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2581 +#: ../../enterprise/include/functions_reporting_csv.php:1208 +#: ../../enterprise/include/functions_reporting_csv.php:1234 +#: ../../enterprise/include/functions_reporting_csv.php:1265 +#: ../../enterprise/include/functions_reporting_csv.php:1320 +#: ../../enterprise/include/functions_reporting_csv.php:1424 +#: ../../enterprise/include/functions_reporting_csv.php:2731 #: ../../enterprise/operation/services/services.service.php:124 #: ../../enterprise/operation/services/services.list.php:506 -#: ../../godmode/agentes/module_manager_editor_common.php:1214 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:115 +#: ../../godmode/agentes/module_manager_editor_common.php:1228 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:116 #: ../../godmode/massive/massive_edit_modules.php:884 #: ../../godmode/alerts/configure_alert_template.php:816 -#: ../../godmode/setup/setup_visuals.php:1342 ../../godmode/setup/setup_visuals.php:1403 -#: ../../godmode/setup/setup_visuals.php:1423 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2659 +#: ../../godmode/setup/setup_visuals.php:1363 +#: ../../godmode/setup/setup_visuals.php:1424 +#: ../../godmode/setup/setup_visuals.php:1444 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2662 #: ../../godmode/reporting/visual_console_builder.wizard.php:319 #: ../../include/functions_visual_map_editor.php:693 -#: ../../include/functions_reporting_html.php:944 -#: ../../include/functions_reporting_html.php:2360 -#: ../../include/functions_reporting_html.php:4855 -#: ../../include/functions_reporting_html.php:5366 ../../include/ajax/events.php:2116 -#: ../../include/functions_graph.php:5394 +#: ../../include/functions_reporting_html.php:945 +#: ../../include/functions_reporting_html.php:2371 +#: ../../include/functions_reporting_html.php:4875 +#: ../../include/functions_reporting_html.php:5405 +#: ../../include/ajax/events.php:2088 ../../include/functions_graph.php:5186 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 -#: ../../include/functions_reports.php:1075 ../../include/functions_netflow.php:212 +#: ../../include/functions_reports.php:1075 +#: ../../include/functions_netflow.php:212 #: ../../include/functions_snmp_browser.php:560 msgid "Value" msgstr "値" @@ -5928,60 +6220,65 @@ msgstr "ノードアドレス" #: ../../enterprise/meta/advanced/metasetup.relations.php:550 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278 #: ../../enterprise/godmode/policies/policy_alerts.php:575 -#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_modules.php:1471 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:379 #: ../../enterprise/godmode/services/services.massive.elements.php:66 #: ../../enterprise/godmode/reporting/graph_template_list.php:209 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3535 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3733 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3756 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3597 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3795 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3818 #: ../../enterprise/godmode/servers/manage_export.php:142 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:413 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2629 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2949 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2631 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2951 #: ../../enterprise/include/functions_services.php:1615 #: ../../enterprise/operation/agentes/policy_view.php:260 #: ../../enterprise/tools/ipam/ipam_list.php:663 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 #: ../../godmode/modules/manage_nc_groups.php:243 -#: ../../godmode/modules/manage_network_components.php:755 -#: ../../godmode/modules/manage_network_templates.php:248 -#: ../../godmode/agentes/agent_template.php:238 -#: ../../godmode/agentes/planned_downtime.editor.php:1306 -#: ../../godmode/agentes/module_manager.php:874 -#: ../../godmode/netflow/nf_item_list.php:178 ../../godmode/netflow/nf_edit.php:161 +#: ../../godmode/modules/manage_inventory_modules.php:284 +#: ../../godmode/modules/manage_network_components.php:758 +#: ../../godmode/modules/manage_network_templates.php:250 +#: ../../godmode/agentes/agent_template.php:239 +#: ../../godmode/agentes/planned_downtime.editor.php:1294 +#: ../../godmode/agentes/module_manager.php:910 +#: ../../godmode/netflow/nf_item_list.php:178 +#: ../../godmode/netflow/nf_edit.php:161 #: ../../godmode/snmpconsole/snmp_alert.php:1278 #: ../../godmode/snmpconsole/snmp_alert.php:1435 #: ../../godmode/snmpconsole/snmp_filters.php:291 -#: ../../godmode/massive/massive_operations.php:404 -#: ../../godmode/massive/massive_standby_alerts.php:250 -#: ../../godmode/massive/massive_delete_action_alerts.php:270 -#: ../../godmode/massive/massive_enable_disable_alerts.php:222 -#: ../../godmode/massive/massive_add_action_alerts.php:248 -#: ../../godmode/alerts/alert_list.list.php:759 ../../godmode/alerts/alert_view.php:388 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4014 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4526 +#: ../../godmode/massive/massive_operations.php:409 +#: ../../godmode/massive/massive_standby_alerts.php:251 +#: ../../godmode/massive/massive_delete_action_alerts.php:271 +#: ../../godmode/massive/massive_enable_disable_alerts.php:223 +#: ../../godmode/massive/massive_add_action_alerts.php:249 +#: ../../godmode/alerts/alert_list.list.php:759 +#: ../../godmode/alerts/alert_view.php:388 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4033 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4524 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4545 #: ../../godmode/reporting/visual_console_builder.elements.php:118 -#: ../../godmode/events/event_filter.php:141 ../../mobile/operation/tactical.php:348 -#: ../../include/functions_reporting_html.php:3344 -#: ../../include/functions_reporting_html.php:5886 ../../include/functions.php:3053 -#: ../../include/ajax/alert_list.ajax.php:294 ../../include/ajax/alert_list.ajax.php:319 -#: ../../include/ajax/alert_list.ajax.php:495 ../../include/functions_profile.php:217 +#: ../../godmode/events/event_filter.php:141 +#: ../../mobile/operation/tactical.php:348 +#: ../../include/functions_reporting_html.php:3357 +#: ../../include/functions_reporting_html.php:5925 +#: ../../include/functions.php:3099 ../../include/ajax/alert_list.ajax.php:294 +#: ../../include/ajax/alert_list.ajax.php:319 +#: ../../include/ajax/alert_list.ajax.php:495 +#: ../../include/functions_profile.php:217 #: ../../include/class/AgentsAlerts.class.php:892 -#: ../../include/class/AuditLog.class.php:109 ../../include/class/AuditLog.class.php:201 -#: ../../include/class/ModuleTemplates.class.php:894 +#: ../../include/class/SnmpConsole.class.php:544 +#: ../../include/class/AuditLog.class.php:108 +#: ../../include/class/AuditLog.class.php:200 +#: ../../include/class/ModuleTemplates.class.php:895 #: ../../include/functions_ui_renders.php:117 #: ../../operation/agentes/alerts_status.functions.php:127 -#: ../../operation/snmpconsole/snmp_view.php:891 -#: ../../operation/snmpconsole/snmp_view.php:1266 ../../operation/search_alerts.php:37 -#: ../../general/logon_ok.php:250 +#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:250 msgid "Action" msgstr "アクション" @@ -5993,23 +6290,24 @@ msgstr "ゲートウェイ" msgid "There are no relations yet" msgstr "関係がありません" -#: ../../enterprise/meta/advanced/metasetup.password.php:73 +#: ../../enterprise/meta/advanced/metasetup.password.php:87 msgid "Passwords" msgstr "パスワード" -#: ../../enterprise/meta/advanced/metasetup.password.php:79 +#: ../../enterprise/meta/advanced/metasetup.password.php:93 #: ../../enterprise/meta/include/functions_meta.php:356 -#: ../../enterprise/godmode/setup/setup.php:383 ../../include/functions_config.php:472 +#: ../../enterprise/godmode/setup/setup.php:299 +#: ../../include/functions_config.php:472 msgid "Enable password policy" msgstr "パスワードポリシーを利用する" -#: ../../enterprise/meta/advanced/metasetup.password.php:80 -#: ../../enterprise/meta/advanced/metasetup.password.php:122 -#: ../../enterprise/meta/advanced/metasetup.password.php:127 -#: ../../enterprise/meta/advanced/metasetup.password.php:133 -#: ../../enterprise/meta/advanced/metasetup.password.php:139 -#: ../../enterprise/meta/advanced/metasetup.password.php:143 +#: ../../enterprise/meta/advanced/metasetup.password.php:94 +#: ../../enterprise/meta/advanced/metasetup.password.php:136 +#: ../../enterprise/meta/advanced/metasetup.password.php:141 #: ../../enterprise/meta/advanced/metasetup.password.php:147 +#: ../../enterprise/meta/advanced/metasetup.password.php:153 +#: ../../enterprise/meta/advanced/metasetup.password.php:157 +#: ../../enterprise/meta/advanced/metasetup.password.php:161 #: ../../enterprise/meta/advanced/metasetup.setup.php:149 #: ../../enterprise/meta/advanced/metasetup.setup.php:203 #: ../../enterprise/meta/advanced/metasetup.setup.php:219 @@ -6020,8 +6318,7 @@ msgstr "パスワードポリシーを利用する" #: ../../enterprise/meta/advanced/metasetup.setup.php:325 #: ../../enterprise/meta/advanced/metasetup.setup.php:347 #: ../../enterprise/meta/advanced/metasetup.setup.php:373 -#: ../../enterprise/meta/advanced/metasetup.performance.php:85 -#: ../../enterprise/meta/advanced/metasetup.performance.php:89 +#: ../../enterprise/meta/advanced/metasetup.performance.php:83 #: ../../enterprise/meta/monitoring/wizard/wizard.php:136 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574 @@ -6034,17 +6331,17 @@ msgstr "パスワードポリシーを利用する" #: ../../enterprise/godmode/setup/setup_auth.php:208 #: ../../enterprise/godmode/setup/setup_auth.php:338 #: ../../enterprise/godmode/setup/setup_auth.php:386 -#: ../../enterprise/godmode/setup/setup_auth.php:1181 +#: ../../enterprise/godmode/setup/setup_auth.php:1179 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:553 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209 #: ../../enterprise/godmode/reporting/visual_console_template.php:286 #: ../../enterprise/include/functions_cron.php:757 #: ../../enterprise/include/functions_tasklist.php:351 -#: ../../enterprise/include/functions_reporting_csv.php:1986 -#: ../../enterprise/include/functions_reporting.php:2338 +#: ../../enterprise/include/functions_reporting_csv.php:1990 +#: ../../enterprise/include/functions_reporting.php:2339 #: ../../godmode/update_manager/update_manager.setup.php:372 -#: ../../godmode/users/configure_user.php:1127 -#: ../../godmode/agentes/agent_conf_gis.php:125 +#: ../../godmode/users/configure_user.php:1338 +#: ../../godmode/agentes/agent_conf_gis.php:126 #: ../../godmode/massive/massive_edit_agents.php:671 #: ../../godmode/massive/massive_edit_agents.php:1084 #: ../../godmode/massive/massive_edit_agents.php:1116 @@ -6056,26 +6353,29 @@ msgstr "パスワードポリシーを利用する" #: ../../godmode/massive/massive_edit_modules.php:1043 #: ../../godmode/massive/massive_edit_modules.php:1081 #: ../../godmode/massive/massive_edit_modules.php:1109 -#: ../../godmode/alerts/alert_view.php:129 ../../godmode/alerts/alert_view.php:259 +#: ../../godmode/alerts/alert_view.php:129 +#: ../../godmode/alerts/alert_view.php:259 #: ../../godmode/reporting/reporting_builder.main.php:194 #: ../../godmode/reporting/reporting_builder.php:1090 #: ../../godmode/reporting/visual_console_builder.wizard.php:380 #: ../../godmode/reporting/visual_console_builder.wizard.php:467 #: ../../godmode/servers/modificar_server.php:47 -#: ../../include/functions_reporting_html.php:1629 ../../include/functions_cron.php:677 -#: ../../include/functions_profile.php:276 ../../include/functions_snmp.php:390 -#: ../../operation/users/user_edit.php:324 ../../operation/netflow/nf_live_view.php:460 -#: ../../operation/snmpconsole/snmp_view.php:653 +#: ../../include/functions_reporting_html.php:1629 +#: ../../include/functions_cron.php:688 ../../include/functions_profile.php:297 +#: ../../include/functions_snmp.php:390 +#: ../../include/class/SnmpConsole.class.php:463 +#: ../../operation/users/user_edit.php:398 +#: ../../operation/netflow/nf_live_view.php:460 msgid "Yes" msgstr "はい" -#: ../../enterprise/meta/advanced/metasetup.password.php:81 -#: ../../enterprise/meta/advanced/metasetup.password.php:123 -#: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/meta/advanced/metasetup.password.php:134 -#: ../../enterprise/meta/advanced/metasetup.password.php:140 -#: ../../enterprise/meta/advanced/metasetup.password.php:144 +#: ../../enterprise/meta/advanced/metasetup.password.php:95 +#: ../../enterprise/meta/advanced/metasetup.password.php:137 +#: ../../enterprise/meta/advanced/metasetup.password.php:142 #: ../../enterprise/meta/advanced/metasetup.password.php:148 +#: ../../enterprise/meta/advanced/metasetup.password.php:154 +#: ../../enterprise/meta/advanced/metasetup.password.php:158 +#: ../../enterprise/meta/advanced/metasetup.password.php:162 #: ../../enterprise/meta/advanced/metasetup.setup.php:150 #: ../../enterprise/meta/advanced/metasetup.setup.php:213 #: ../../enterprise/meta/advanced/metasetup.setup.php:220 @@ -6086,8 +6386,7 @@ msgstr "はい" #: ../../enterprise/meta/advanced/metasetup.setup.php:335 #: ../../enterprise/meta/advanced/metasetup.setup.php:357 #: ../../enterprise/meta/advanced/metasetup.setup.php:383 -#: ../../enterprise/meta/advanced/metasetup.performance.php:86 -#: ../../enterprise/meta/advanced/metasetup.performance.php:90 +#: ../../enterprise/meta/advanced/metasetup.performance.php:84 #: ../../enterprise/meta/monitoring/wizard/wizard.php:137 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 @@ -6101,17 +6400,17 @@ msgstr "はい" #: ../../enterprise/godmode/setup/setup_auth.php:208 #: ../../enterprise/godmode/setup/setup_auth.php:341 #: ../../enterprise/godmode/setup/setup_auth.php:389 -#: ../../enterprise/godmode/setup/setup_auth.php:1184 +#: ../../enterprise/godmode/setup/setup_auth.php:1182 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:555 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211 #: ../../enterprise/godmode/reporting/visual_console_template.php:286 #: ../../enterprise/include/functions_cron.php:756 #: ../../enterprise/include/functions_tasklist.php:351 -#: ../../enterprise/include/functions_reporting_csv.php:1986 -#: ../../enterprise/include/functions_reporting.php:2338 +#: ../../enterprise/include/functions_reporting_csv.php:1990 +#: ../../enterprise/include/functions_reporting.php:2339 #: ../../godmode/update_manager/update_manager.setup.php:373 -#: ../../godmode/users/configure_user.php:1128 -#: ../../godmode/agentes/agent_conf_gis.php:126 +#: ../../godmode/users/configure_user.php:1339 +#: ../../godmode/agentes/agent_conf_gis.php:127 #: ../../godmode/massive/massive_edit_agents.php:672 #: ../../godmode/massive/massive_edit_agents.php:1095 #: ../../godmode/massive/massive_edit_agents.php:1117 @@ -6123,128 +6422,156 @@ msgstr "はい" #: ../../godmode/massive/massive_edit_modules.php:1043 #: ../../godmode/massive/massive_edit_modules.php:1082 #: ../../godmode/massive/massive_edit_modules.php:1110 -#: ../../godmode/alerts/alert_view.php:129 ../../godmode/alerts/alert_view.php:259 +#: ../../godmode/alerts/alert_view.php:129 +#: ../../godmode/alerts/alert_view.php:259 #: ../../godmode/alerts/alert_view.php:352 ../../godmode/setup/news.php:287 #: ../../godmode/reporting/reporting_builder.main.php:204 #: ../../godmode/reporting/reporting_builder.php:1092 #: ../../godmode/reporting/visual_console_builder.wizard.php:390 #: ../../godmode/reporting/visual_console_builder.wizard.php:468 -#: ../../godmode/servers/modificar_server.php:45 ../../mobile/operation/events.php:365 -#: ../../mobile/operation/events.php:373 ../../include/functions_reporting_html.php:1629 -#: ../../include/functions_cron.php:677 ../../include/functions_profile.php:276 -#: ../../include/functions_snmp.php:382 ../../include/functions_events.php:4648 -#: ../../include/functions_events.php:4653 ../../operation/users/user_edit.php:325 +#: ../../godmode/servers/modificar_server.php:45 +#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373 +#: ../../include/functions_reporting_html.php:1629 +#: ../../include/functions_cron.php:688 ../../include/functions_profile.php:297 +#: ../../include/functions_snmp.php:382 +#: ../../include/class/SnmpConsole.class.php:462 +#: ../../include/functions_events.php:4769 +#: ../../include/functions_events.php:4774 +#: ../../operation/users/user_edit.php:399 #: ../../operation/netflow/nf_live_view.php:470 -#: ../../operation/snmpconsole/snmp_view.php:654 msgid "No" msgstr "いいえ" -#: ../../enterprise/meta/advanced/metasetup.password.php:101 +#: ../../enterprise/meta/advanced/metasetup.password.php:115 #: ../../enterprise/meta/include/functions_meta.php:366 -#: ../../enterprise/godmode/setup/setup.php:392 ../../include/functions_config.php:476 +#: ../../enterprise/godmode/setup/setup.php:308 +#: ../../include/functions_config.php:476 msgid "Min. size password" msgstr "最小パスワードサイズ" -#: ../../enterprise/meta/advanced/metasetup.password.php:102 -#: ../../enterprise/godmode/setup/setup.php:400 +#: ../../enterprise/meta/advanced/metasetup.password.php:116 +#: ../../enterprise/godmode/setup/setup.php:316 msgid " Caracters" msgstr " 文字" -#: ../../enterprise/meta/advanced/metasetup.password.php:105 +#: ../../enterprise/meta/advanced/metasetup.password.php:119 #: ../../enterprise/meta/include/functions_meta.php:396 -#: ../../enterprise/godmode/setup/setup.php:421 ../../include/functions_config.php:480 +#: ../../enterprise/godmode/setup/setup.php:337 +#: ../../include/functions_config.php:480 msgid "Password expiration" msgstr "パスワードの期限切れ" -#: ../../enterprise/meta/advanced/metasetup.password.php:105 +#: ../../enterprise/meta/advanced/metasetup.password.php:119 msgid "Set 0 if never expire." msgstr "0 に設定すると期限切れは発生しません" -#: ../../enterprise/meta/advanced/metasetup.password.php:106 -#: ../../enterprise/godmode/setup/setup.php:429 +#: ../../enterprise/meta/advanced/metasetup.password.php:120 +#: ../../enterprise/godmode/setup/setup.php:345 msgid " Days" msgstr " 日" -#: ../../enterprise/meta/advanced/metasetup.password.php:109 +#: ../../enterprise/meta/advanced/metasetup.password.php:123 #: ../../enterprise/meta/include/functions_meta.php:416 -#: ../../enterprise/godmode/setup/setup.php:441 ../../include/functions_config.php:488 +#: ../../enterprise/godmode/setup/setup.php:357 +#: ../../include/functions_config.php:488 msgid "User blocked if login fails" msgstr "ログインに失敗するとユーザをブロックします" -#: ../../enterprise/meta/advanced/metasetup.password.php:110 -#: ../../enterprise/godmode/setup/setup.php:449 +#: ../../enterprise/meta/advanced/metasetup.password.php:124 +#: ../../enterprise/godmode/setup/setup.php:365 msgid " Minutes" msgstr " 分" -#: ../../enterprise/meta/advanced/metasetup.password.php:113 +#: ../../enterprise/meta/advanced/metasetup.password.php:127 #: ../../enterprise/meta/include/functions_meta.php:426 -#: ../../enterprise/godmode/setup/setup.php:452 ../../include/functions_config.php:492 +#: ../../enterprise/godmode/setup/setup.php:368 +#: ../../include/functions_config.php:492 msgid "Number of failed login attempts" msgstr "ログイン失敗回数" -#: ../../enterprise/meta/advanced/metasetup.password.php:113 +#: ../../enterprise/meta/advanced/metasetup.password.php:127 msgid "Two attempts minimum" msgstr "最小は 2回です" -#: ../../enterprise/meta/advanced/metasetup.password.php:114 -#: ../../enterprise/godmode/setup/setup.php:460 +#: ../../enterprise/meta/advanced/metasetup.password.php:128 +#: ../../enterprise/godmode/setup/setup.php:376 msgid " Attempts" msgstr " 回" -#: ../../enterprise/meta/advanced/metasetup.password.php:117 +#: ../../enterprise/meta/advanced/metasetup.password.php:131 #: ../../enterprise/meta/include/functions_meta.php:448 -#: ../../enterprise/godmode/setup/setup.php:481 ../../include/functions_config.php:512 +#: ../../enterprise/godmode/setup/setup.php:397 +#: ../../include/functions_config.php:512 msgid "Compare previous password" msgstr "以前のパスワードとの比較" -#: ../../enterprise/meta/advanced/metasetup.password.php:121 +#: ../../enterprise/meta/advanced/metasetup.password.php:135 #: ../../enterprise/meta/include/functions_meta.php:436 -#: ../../enterprise/godmode/setup/setup.php:472 ../../include/functions_config.php:508 +#: ../../enterprise/godmode/setup/setup.php:388 +#: ../../include/functions_config.php:508 msgid "Enable password history" msgstr "パスワード履歴の有効化" -#: ../../enterprise/meta/advanced/metasetup.password.php:126 +#: ../../enterprise/meta/advanced/metasetup.password.php:140 #: ../../enterprise/meta/include/functions_meta.php:459 -#: ../../enterprise/godmode/setup/setup.php:463 ../../include/functions_config.php:504 +#: ../../enterprise/godmode/setup/setup.php:379 +#: ../../include/functions_config.php:504 msgid "Apply password policy to admin users" msgstr "管理者ユーザへパスワードポリシーを適用" -#: ../../enterprise/meta/advanced/metasetup.password.php:132 +#: ../../enterprise/meta/advanced/metasetup.password.php:146 #: ../../enterprise/meta/include/functions_meta.php:406 -#: ../../enterprise/godmode/setup/setup.php:432 ../../include/functions_config.php:484 +#: ../../enterprise/godmode/setup/setup.php:348 +#: ../../include/functions_config.php:484 msgid "Force change password on first login" msgstr "初回ログイン時にパスワードを変更する" -#: ../../enterprise/meta/advanced/metasetup.password.php:138 +#: ../../enterprise/meta/advanced/metasetup.password.php:152 #: ../../enterprise/meta/include/functions_meta.php:376 -#: ../../enterprise/godmode/setup/setup.php:403 ../../include/functions_config.php:496 +#: ../../enterprise/godmode/setup/setup.php:319 +#: ../../include/functions_config.php:496 msgid "Password must have numbers" msgstr "パスワードには数字を含む必要があります" -#: ../../enterprise/meta/advanced/metasetup.password.php:142 +#: ../../enterprise/meta/advanced/metasetup.password.php:156 #: ../../enterprise/meta/include/functions_meta.php:386 -#: ../../enterprise/godmode/setup/setup.php:412 ../../include/functions_config.php:500 +#: ../../enterprise/godmode/setup/setup.php:328 +#: ../../include/functions_config.php:500 msgid "Password must have symbols" msgstr "パスワードには記号を含む必要があります" -#: ../../enterprise/meta/advanced/metasetup.password.php:146 +#: ../../enterprise/meta/advanced/metasetup.password.php:160 #: ../../enterprise/meta/include/functions_meta.php:470 -#: ../../enterprise/godmode/setup/setup.php:493 ../../include/functions_config.php:516 +#: ../../enterprise/godmode/setup/setup.php:409 +#: ../../include/functions_config.php:516 msgid "Activate reset password" msgstr "パスワードリセットの有効化" +#: ../../enterprise/meta/advanced/metasetup.password.php:165 +#: ../../enterprise/meta/include/functions_meta.php:480 +#: ../../enterprise/godmode/setup/setup.php:420 +#: ../../include/functions_config.php:520 +msgid "Exclusion word list for passwords" +msgstr "パスワードの除外単語リスト" + +#: ../../enterprise/meta/advanced/metasetup.password.php:193 +#: ../../enterprise/godmode/setup/setup.php:497 +msgid "Enter restricted passwords..." +msgstr "制限付パスワードを入力..." + #: ../../enterprise/meta/advanced/agents_setup.php:60 #: ../../enterprise/meta/advanced/policymanager.php:54 #: ../../enterprise/meta/monitoring/custom_fields_view.php:50 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55 #: ../../enterprise/meta/monitoring/group_view.php:51 -#: ../../enterprise/meta/monitoring/tactical.php:38 ../../enterprise/meta/index.php:1007 -#: ../../enterprise/meta/agentsearch.php:48 +#: ../../enterprise/meta/monitoring/tactical.php:38 +#: ../../enterprise/meta/index.php:1010 ../../enterprise/meta/agentsearch.php:48 #: ../../enterprise/meta/general/logon_ok.php:16 #: ../../enterprise/extensions/vmware/vmware_view.php:1368 #: ../../enterprise/include/class/CommandCenter.class.php:142 #: ../../godmode/netflow/nf_item_list.php:49 ../../godmode/netflow/nf_edit.php:53 -#: ../../godmode/netflow/nf_edit_form.php:69 ../../operation/agentes/ver_agente.php:1377 +#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../operation/agentes/ver_agente.php:1395 #: ../../operation/netflow/nf_live_view.php:149 msgid "Main" msgstr "メイン" @@ -6284,65 +6611,85 @@ msgstr "ルール作成" msgid "Edit rule" msgstr "ルール編集" -#: ../../enterprise/meta/advanced/metasetup.mail.php:79 +#: ../../enterprise/meta/advanced/metasetup.mail.php:85 #: ../../godmode/update_manager/update_manager.setup.php:168 #: ../../godmode/update_manager/update_manager.setup.php:243 msgid "Succesful Update the url config vars." msgstr "URL 設定を更新しました。" -#: ../../enterprise/meta/advanced/metasetup.mail.php:80 +#: ../../enterprise/meta/advanced/metasetup.mail.php:86 #: ../../godmode/update_manager/update_manager.setup.php:169 #: ../../godmode/update_manager/update_manager.setup.php:244 msgid "Unsuccesful Update the url config vars." msgstr "URL 設定を更新できませんでした。" -#: ../../enterprise/meta/advanced/metasetup.mail.php:98 +#: ../../enterprise/meta/advanced/metasetup.mail.php:111 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" +"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." +"If you have manual settings in your pandora_server.conf, please note these " +"settings will ignore this console setup." msgstr "" -"Gmail や Office365 などの一部のプロバイダーは、SMTP を使用した外部接続を手動で設定/有" -"効にする必要があり、ポート 587 でSTARTTLS を使用する必要があることに注意してくださ" -"い。\n" +"Gmail や Office365 などの一部のプロバイダーは、SMTP を使用した外部接続を手動で" +"設定/有効にする必要があり、ポート 587 でSTARTTLS を使用する必要があることに注意" +"してください。\n" "\n" -"pandora_server.conf に 手動設定がある場合、コンソールの設定は無視されることに注意して" -"ください。" +"pandora_server.conf に 手動設定がある場合、コンソールの設定は無視されることに注" +"意してください。" -#: ../../enterprise/meta/advanced/metasetup.mail.php:104 -#: ../../godmode/setup/setup_general.php:529 +#: ../../enterprise/meta/advanced/metasetup.mail.php:117 +#: ../../godmode/setup/setup_general.php:610 msgid "Mail configuration" msgstr "メール設定" -#: ../../enterprise/meta/advanced/metasetup.mail.php:109 +#: ../../enterprise/meta/advanced/metasetup.mail.php:122 #: ../../include/functions_config.php:376 msgid "From dir" msgstr "From アドレス" -#: ../../enterprise/meta/advanced/metasetup.mail.php:112 -#: ../../godmode/setup/setup_general.php:549 ../../include/functions_config.php:380 +#: ../../enterprise/meta/advanced/metasetup.mail.php:125 +#: ../../godmode/setup/setup_general.php:630 +#: ../../include/functions_config.php:380 msgid "From name" msgstr "From 名" -#: ../../enterprise/meta/advanced/metasetup.mail.php:115 +#: ../../enterprise/meta/advanced/metasetup.mail.php:128 #: ../../include/functions_config.php:372 msgid "Server SMTP" msgstr "SMTP サーバ" -#: ../../enterprise/meta/advanced/metasetup.mail.php:118 +#: ../../enterprise/meta/advanced/metasetup.mail.php:131 #: ../../include/functions_config.php:384 msgid "Port SMTP" msgstr "SMTP ポート" -#: ../../enterprise/meta/advanced/metasetup.mail.php:121 -#: ../../godmode/setup/setup_general.php:590 ../../include/functions_config.php:392 +#: ../../enterprise/meta/advanced/metasetup.mail.php:134 +#: ../../godmode/setup/setup_general.php:660 +#: ../../include/functions_config.php:388 +msgid "Encryption" +msgstr "暗号化" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:140 +#: ../../godmode/gis_maps/configure_gis_map.php:575 +#: ../../godmode/setup/setup_general.php:666 +#: ../../godmode/reporting/create_container.php:294 +#: ../../godmode/reporting/create_container.php:310 +#: ../../include/ajax/events.php:1043 ../../include/ajax/graph.ajax.php:145 +#: ../../include/functions_html.php:4742 +msgid "none" +msgstr "なし" + +#: ../../enterprise/meta/advanced/metasetup.mail.php:145 +#: ../../godmode/setup/setup_general.php:671 +#: ../../include/functions_config.php:392 msgid "Email user" msgstr "メールユーザ" -#: ../../enterprise/meta/advanced/metasetup.mail.php:124 -#: ../../godmode/setup/setup_general.php:600 ../../include/functions_config.php:396 +#: ../../enterprise/meta/advanced/metasetup.mail.php:148 +#: ../../godmode/setup/setup_general.php:681 +#: ../../include/functions_config.php:396 msgid "Email password" msgstr "メールユーザパスワード" @@ -6366,13 +6713,14 @@ msgstr "パスワード設定" #: ../../enterprise/meta/general/main_header.php:143 #: ../../enterprise/meta/general/main_menu.php:257 #: ../../enterprise/operation/log/elasticsearch_interface.php:31 -#: ../../enterprise/operation/log/log_viewer.php:377 -#: ../../enterprise/operation/log/log_viewer.php:417 -#: ../../enterprise/operation/menu.php:181 +#: ../../enterprise/operation/log/log_viewer.php:378 +#: ../../enterprise/operation/log/log_viewer.php:418 +#: ../../enterprise/operation/menu.php:151 msgid "Log viewer" msgstr "ログ・ビューワ" -#: ../../enterprise/meta/advanced/metasetup.php:91 ../../enterprise/godmode/menu.php:136 +#: ../../enterprise/meta/advanced/metasetup.php:91 +#: ../../enterprise/godmode/menu.php:127 #: ../../enterprise/include/functions_setup.php:67 #: ../../enterprise/include/functions_setup.php:119 #: ../../operation/agentes/datos_agente.php:180 @@ -6380,7 +6728,7 @@ msgid "History database" msgstr "ヒストリデータベース" #: ../../enterprise/meta/advanced/metasetup.php:102 -#: ../../enterprise/meta/advanced/metasetup.php:257 ../../godmode/menu.php:347 +#: ../../enterprise/meta/advanced/metasetup.php:257 ../../godmode/menu.php:350 #: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255 msgid "Authentication" msgstr "認証" @@ -6397,8 +6745,9 @@ msgstr "パフォーマンス設定" #: ../../enterprise/meta/advanced/metasetup.php:128 #: ../../enterprise/meta/advanced/metasetup.php:227 -#: ../../enterprise/meta/advanced/metasetup.php:273 ../../godmode/menu.php:418 -#: ../../godmode/setup/file_manager.php:47 ../../godmode/setup/file_manager.php:60 +#: ../../enterprise/meta/advanced/metasetup.php:273 ../../godmode/menu.php:421 +#: ../../godmode/setup/file_manager.php:47 +#: ../../godmode/setup/file_manager.php:60 msgid "File manager" msgstr "ファイルマネージャ" @@ -6413,7 +6762,7 @@ msgid "Mail" msgstr "メール" #: ../../enterprise/meta/advanced/metasetup.php:152 -#: ../../enterprise/meta/advanced/metasetup.php:285 ../../godmode/menu.php:371 +#: ../../enterprise/meta/advanced/metasetup.php:285 ../../godmode/menu.php:374 #: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300 msgid "Notifications" msgstr "通知" @@ -6498,15 +6847,17 @@ msgstr "ポリシー適用" #: ../../enterprise/meta/advanced/policymanager.apply.php:198 #: ../../enterprise/include/functions_groups.php:33 -#: ../../enterprise/operation/agentes/ver_agente.php:239 -#: ../../include/functions_networkmap.php:1299 ../../include/functions_maps.php:42 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:333 ../../operation/tree.php:127 -#: ../../operation/search_results.php:171 ../../operation/search_main.php:73 +#: ../../enterprise/operation/agentes/ver_agente.php:216 +#: ../../include/functions_networkmap.php:1299 +#: ../../include/functions_maps.php:42 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:333 +#: ../../operation/tree.php:127 ../../operation/search_results.php:172 +#: ../../operation/search_main.php:73 msgid "Policies" msgstr "ポリシー" #: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 ../../godmode/menu.php:294 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 ../../godmode/menu.php:297 #: ../../godmode/setup/os.php:225 #: ../../godmode/reporting/visual_console_builder.wizard.php:333 #: ../../mobile/include/functions_web.php:28 @@ -6516,14 +6867,14 @@ msgstr "サーバ" #: ../../enterprise/meta/advanced/policymanager.apply.php:213 #: ../../enterprise/meta/advanced/policymanager.queue.php:311 #: ../../enterprise/godmode/policies/policy_queue.php:714 -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/policies/policy_agents.php:890 +#: ../../enterprise/godmode/policies/policy_agents.php:1405 #: ../../include/functions_visual_map_editor.php:641 msgid "Apply" msgstr "適用" #: ../../enterprise/meta/advanced/metasetup.consoles.php:99 -#: ../../enterprise/include/class/Omnishell.class.php:1553 +#: ../../enterprise/include/class/Omnishell.class.php:1555 #: ../../enterprise/include/lib/Metaconsole/Node.php:140 #: ../../enterprise/include/lib/Metaconsole/Node.php:189 #: ../../enterprise/include/lib/Metaconsole/Node.php:240 @@ -6562,119 +6913,153 @@ msgstr "%d ノードを同期しましたが、%s への’同期でいくつか msgid "Successfully synchronized all nodes (%d)" msgstr "全ノードを同期しました (%d)" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:212 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:229 msgid "Node synchronization process failed" msgstr "ノード同期処理に失敗しました。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:212 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:326 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:229 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:343 msgid "" -"If you are trying to migrate this node to a new metaconsole, please use the form " -"available at Settings > Enterprise at node console." +"If you are trying to migrate this node to a new metaconsole, please use the " +"form available at Settings > Enterprise at node console." msgstr "" "このノードを新しいメタコンソールに移行する場合は、ノードコンソールの 設定 > " "Enterprise にあるフォームを使用してください。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:222 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:239 #: ../../enterprise/godmode/setup/setup_metaconsole.php:86 msgid "Could not be update" msgstr "更新できませんでした" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:262 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:279 msgid "Could not be created, duplicated register found." msgstr "作成できませんでした。重複登録があります。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:341 msgid "Node synchronization process failed: " msgstr "ノード同期処理が失敗しました: " -#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 -#: ../../godmode/setup/license.php:101 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:341 +#: ../../godmode/setup/license.php:127 msgid "Unknown error" msgstr "不明なエラー" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:345 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:362 msgid "Successfully registered" msgstr "登録しました" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:346 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:363 #, php-format msgid "Could not be registered %s" msgstr "%s を登録できませんでした" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:372 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:389 msgid "Successfully delete" msgstr "削除しました" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:373 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:390 msgid "Could not be delete" msgstr "削除できませんでした" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:389 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:406 #: ../../enterprise/godmode/policies/policy_alerts.php:126 -#: ../../enterprise/godmode/policies/policy_modules.php:517 +#: ../../enterprise/godmode/policies/policy_modules.php:518 #: ../../enterprise/godmode/setup/setup_metaconsole.php:147 -#: ../../godmode/users/user_list.php:372 -#: ../../godmode/agentes/configurar_agente.php:2182 +#: ../../godmode/users/user_list.php:432 +#: ../../godmode/agentes/configurar_agente.php:2224 #: ../../godmode/agentes/modificar_agente.php:234 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:366 ../../include/ajax/alert_list.ajax.php:358 +#: ../../godmode/alerts/alert_list.php:382 +#: ../../include/ajax/alert_list.ajax.php:358 msgid "Successfully enabled" msgstr "有効にしました。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:390 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:407 #: ../../enterprise/godmode/policies/policy_alerts.php:127 -#: ../../enterprise/godmode/policies/policy_modules.php:518 +#: ../../enterprise/godmode/policies/policy_modules.php:519 #: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../godmode/agentes/configurar_agente.php:2183 +#: ../../godmode/agentes/configurar_agente.php:2225 #: ../../godmode/agentes/modificar_agente.php:235 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:367 ../../include/ajax/alert_list.ajax.php:360 +#: ../../godmode/alerts/alert_list.php:383 +#: ../../include/ajax/alert_list.ajax.php:360 msgid "Could not be enabled" msgstr "有効にできませんでした。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:414 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:431 #: ../../enterprise/godmode/policies/policy_alerts.php:152 -#: ../../enterprise/godmode/policies/policy_modules.php:534 +#: ../../enterprise/godmode/policies/policy_modules.php:535 #: ../../enterprise/godmode/setup/setup_metaconsole.php:156 -#: ../../godmode/users/user_list.php:366 -#: ../../godmode/agentes/configurar_agente.php:2207 +#: ../../godmode/users/user_list.php:426 +#: ../../godmode/agentes/configurar_agente.php:2249 #: ../../godmode/agentes/modificar_agente.php:277 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/alerts/alert_list.php:393 ../../include/ajax/alert_list.ajax.php:379 +#: ../../godmode/alerts/alert_list.php:418 +#: ../../include/ajax/alert_list.ajax.php:379 msgid "Successfully disabled" msgstr "無効にしました。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:415 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:432 #, php-format msgid "Could not be disabled: %s" msgstr "無効化できませんでした: %s" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:431 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:450 +msgid "System is centralised, but a node has been modified." +msgstr "システムは中央管理されていますが、ノードが変更されています。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:452 +msgid "" +"If you have changed the node database to a different one, please go to Command " +"Center and perform a database unification process." +msgstr "" +"ノードデータベースを別のものに変更した場合は、コマンドセンターに移動して、デー" +"タベースの統合プロセスを実行してください。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:455 +msgid "" +"Please note that this node will not be usable until the environment is unified." +msgstr "このノードは環境を統合するまで使用できないことに注意してください。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:461 +msgid "" +"System is centralised, please go to command center to perform a database merge " +"process to add new nodes." +msgstr "" +"システムは中央管理されています。コマンドセンターにアクセスして、データベース" +"マージプロセスを実行し新しいノードを追加してください。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:464 +msgid "" +"Please note that the new node will not be usable until the environment is " +"unified." +msgstr "環境が統一されるまで、新しいノードは使用できないことに注意してください。" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:470 #, php-format msgid "" -"System is centralised, but you just modify nodes registered, please go to %s to " -"perform a database merge process." +"System is centralised, but you just modify nodes registered, please go to %s " +"to perform a database merge process." msgstr "" -"システムは中央管理になっています。登録されているノードを変更するだけです。%s に移動し" -"て、データベースの管理処理を実行してください。" +"システムは中央管理になっています。登録されているノードを変更するだけです。%s に" +"移動して、データベースの管理処理を実行してください。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:434 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:473 msgid "This node will not be usable until unifying the environment" msgstr "このノードは、環境を統合するまで使用できません" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:509 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:552 #, php-format msgid "%s Metaconsole item edition" msgstr "%s メタコンソールアイテム編集" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:515 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:837 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:558 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:880 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:513 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1705 -#: ../../enterprise/include/functions_reporting_csv.php:1204 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1725 +#: ../../enterprise/include/functions_reporting_csv.php:1208 #: ../../godmode/reporting/graph_builder.graph_editor.php:214 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1231 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1270 #: ../../godmode/reporting/visual_console_builder.elements.php:104 #: ../../godmode/reporting/visual_console_builder.elements.php:284 #: ../../godmode/reporting/visual_console_builder.wizard.php:446 @@ -6682,218 +7067,226 @@ msgstr "%s メタコンソールアイテム編集" #: ../../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:4257 -#: ../../include/rest-api/models/VisualConsole/Item.php:1941 -#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../include/functions_visual_map.php:4210 +#: ../../include/rest-api/models/VisualConsole/Item.php:1942 +#: ../../include/rest-api/models/VisualConsole/Item.php:2136 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:325 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:468 #: ../../include/lib/Dashboard/Widgets/module_icon.php:343 #: ../../include/lib/Dashboard/Widgets/module_value.php:318 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:314 #: ../../include/lib/Dashboard/Widgets/module_status.php:334 -#: ../../operation/visual_console/view.php:336 +#: ../../operation/visual_console/view.php:338 msgid "Label" msgstr "ラベル" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:515 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:558 msgid "Custom label to identify this setup." msgstr "この設定を識別するためのカスタムラベル。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:518 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:839 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:561 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:882 #: ../../enterprise/godmode/setup/setup_metaconsole.php:206 msgid "Console URL" msgstr "コンソール URL" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:518 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:561 #, php-format msgid "Full path to %s console (without index.php). Example %s" msgstr "%s コンソールへのフルパス(index.php を除く)。例 %s" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:521 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 #: ../../enterprise/godmode/setup/setup_metaconsole.php:202 msgid "Auth token" msgstr "認証トークン" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:522 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:565 #, php-format msgid "" -"Token previously configured on the destination %s console in order to use delegated " -"authentification." -msgstr "委任された認証を使用するための、宛先 %s コンソールで以前に設定されたトークン。" +"Token previously configured on the destination %s console in order to use " +"delegated authentification." +msgstr "" +"委任された認証を使用するための、宛先 %s コンソールで以前に設定されたトークン。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:535 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:578 #: ../../enterprise/meta/advanced/metasetup.setup.php:267 #: ../../enterprise/meta/include/functions_meta.php:220 #: ../../enterprise/meta/include/functions_meta.php:230 #: ../../enterprise/godmode/setup/setup_metaconsole.php:210 -#: ../../godmode/setup/setup_general.php:212 ../../include/functions_config.php:236 +#: ../../godmode/setup/setup_general.php:212 +#: ../../include/functions_config.php:236 msgid "API password" msgstr "API パスワード" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:546 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:589 #: ../../enterprise/godmode/setup/setup_metaconsole.php:233 msgid "Console User" msgstr "コンソールユーザ" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:555 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:598 #: ../../enterprise/godmode/setup/setup_metaconsole.php:237 msgid "Console Password" msgstr "コンソールパスワード" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:566 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:840 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:609 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:883 #: ../../enterprise/godmode/setup/setup_metaconsole.php:215 #: ../../enterprise/godmode/setup/setup_metaconsole.php:275 msgid "DB Host" msgstr "DB ホスト" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:575 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:618 #: ../../enterprise/godmode/setup/setup_metaconsole.php:219 msgid "DB Name" msgstr "DB 名" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:584 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:627 #: ../../enterprise/godmode/setup/setup_metaconsole.php:224 msgid "DB User" msgstr "DB ユーザ" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:593 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:636 #: ../../enterprise/godmode/setup/setup_metaconsole.php:228 msgid "DB Password" msgstr "DB パスワード" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:604 -#: ../../enterprise/include/class/DatabaseHA.class.php:959 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:647 +#: ../../enterprise/include/class/DatabaseHA.class.php:958 msgid "DB port" msgstr "DB ポート" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:615 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:701 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:706 -#: ../../enterprise/godmode/policies/policy_modules.php:412 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:607 -#: ../../enterprise/godmode/setup/setup_history.php:258 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:658 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:744 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:749 +#: ../../enterprise/godmode/policies/policy_modules.php:413 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:609 +#: ../../enterprise/godmode/setup/setup_history.php:265 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 #: ../../extensions/quick_shell.php:521 -#: ../../godmode/agentes/module_manager_editor.php:746 +#: ../../godmode/agentes/module_manager_editor.php:748 #: ../../godmode/agentes/agent_manager.php:796 -#: ../../godmode/agentes/agent_manager.php:930 +#: ../../godmode/agentes/agent_manager.php:959 #: ../../godmode/massive/massive_edit_agents.php:1159 -#: ../../godmode/massive/massive_add_action_alerts.php:250 +#: ../../godmode/massive/massive_add_action_alerts.php:251 #: ../../include/functions_visual_map_editor.php:895 -#: ../../operation/agentes/status_monitor.php:848 ../../operation/events/events.php:2070 +#: ../../operation/agentes/status_monitor.php:848 +#: ../../operation/events/events.php:2212 msgid "Advanced options" msgstr "拡張オプション" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:615 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:658 msgid "Define database connection from Pandora FMS node to this Metaconsole" msgstr "Pandora FMS ノードからメタコンソールへのデータベース接続定義" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:637 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:680 msgid "Metaconsole DB Host" msgstr "メタコンソール DB ホスト" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:646 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:689 msgid "Metaconsole DB Name" msgstr "メタコンソール DB 名" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:655 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:698 msgid "Metaconsole DB User" msgstr "メタコンソール DB ユーザ" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:664 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:707 msgid "Metaconsole DB Password" msgstr "メタコンソール DB パスワード" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:675 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:718 #: ../../enterprise/godmode/setup/setup.php:179 msgid "Metaconsole DB port" msgstr "メタコンソール DB ポート" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:728 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:771 msgid "Register empty node" msgstr "空のノードを登録" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:734 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:777 msgid "Register node with data to merge" msgstr "マージするデータと合わせてノードを登録" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:771 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:814 msgid "Node data will be wiped out" msgstr "ノードデータは消去されます" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:772 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:815 msgid "" -"Information contained in this node is not needed. Node information will be erased, " -"and replaced with new data from this metaconsole automatically after register the " -"node. Are you sure?" +"Information contained in this node is not needed. Node information will be " +"erased, and replaced with new data from this metaconsole automatically after " +"register the node. Are you sure?" msgstr "" -"このノードに含まれる情報は必要ありません。ノード情報は消去され、ノードの登録後にこのメ" -"タコンソールからの新しいデータに自動的に置き換えられます。よろしいですか?" +"このノードに含まれる情報は必要ありません。ノード情報は消去され、ノードの登録後" +"にこのメタコンソールからの新しいデータに自動的に置き換えられます。よろしいです" +"か?" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:788 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:831 msgid "Node data will be merged" msgstr "ノードデータはマージされます" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:789 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:832 msgid "" -"Information contained in this node is useful. After register the node, you must " -"launch a merge process from command center, which will combine information in current " -"environment with information contained in this new node. Are you sure?" +"Information contained in this node is useful. After register the node, you " +"must launch a merge process from command center, which will combine " +"information in current environment with information contained in this new " +"node. Are you sure?" msgstr "" -"このノードに含まれる情報は有用です。ノードを登録した後、コマンドセンターからマージ処理" -"を起動する必要があります。これにより、現在の環境の情報がこの新しいノードに含まれる情報" -"とマージされます。よろしいですか?" +"このノードに含まれる情報は有用です。ノードを登録した後、コマンドセンターから" +"マージ処理を起動する必要があります。これにより、現在の環境の情報がこの新しい" +"ノードに含まれる情報とマージされます。よろしいですか?" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:831 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:874 #: ../../enterprise/godmode/setup/setup_metaconsole.php:270 #: ../../enterprise/include/class/CommandCenter.class.php:317 msgid "DB" msgstr "DB" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:832 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:875 #: ../../enterprise/godmode/setup/setup_metaconsole.php:271 #: ../../enterprise/include/class/CommandCenter.class.php:318 msgid "API" msgstr "API" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:833 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:876 #: ../../enterprise/godmode/setup/setup_metaconsole.php:272 msgid "Compatibility" msgstr "互換性" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:834 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:877 #: ../../enterprise/include/functions_setup.php:192 msgid "Agent cache" msgstr "エージェントキャッシュ" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:835 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:878 #: ../../enterprise/meta/advanced/policymanager.sync.php:328 -#: ../../enterprise/godmode/servers/HA_cluster.php:166 +#: ../../enterprise/godmode/servers/HA_cluster.php:171 #: ../../enterprise/include/functions_setup.php:201 msgid "Sync" msgstr "同期" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:836 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:879 msgid "Database sync" msgstr "データベース同期" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:841 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:884 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:328 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 #: ../../enterprise/tools/ipam/ipam.php:426 ../../operation/search_agents.php:132 -#: ../../operation/search_agents.php:133 ../../operation/agentes/ver_agente.php:1357 +#: ../../operation/search_agents.php:133 +#: ../../operation/agentes/ver_agente.php:1375 msgid "Manage" msgstr "設定" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:903 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:946 msgid "New node" msgstr "新規ノード" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:935 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:978 msgid "Synchronize all" msgstr "すべて同期" @@ -6924,24 +7317,24 @@ msgstr "リンクの作成に失敗しました。" #: ../../enterprise/include/class/NetworkConfigManager.class.php:1877 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1972 #: ../../enterprise/include/class/NetworkConfigManager.class.php:2066 -#: ../../enterprise/operation/agentes/transactional_map.php:134 #: ../../enterprise/tools/ipam/ipam_action.php:239 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 #: ../../godmode/modules/manage_nc_groups.php:84 -#: ../../godmode/users/profile_list.php:269 ../../godmode/users/configure_user.php:492 -#: ../../godmode/agentes/configurar_agente.php:884 +#: ../../godmode/users/profile_list.php:269 +#: ../../godmode/users/configure_user.php:568 +#: ../../godmode/agentes/configurar_agente.php:905 #: ../../godmode/agentes/planned_downtime.editor.php:652 #: ../../godmode/snmpconsole/snmp_alert.php:302 #: ../../godmode/snmpconsole/snmp_filters.php:164 -#: ../../godmode/alerts/alert_commands.php:658 +#: ../../godmode/alerts/alert_commands.php:659 #: ../../godmode/alerts/configure_alert_template.php:536 -#: ../../godmode/alerts/alert_list.php:178 ../../godmode/setup/news.php:66 +#: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:66 #: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:44 -#: ../../include/functions_alerts.php:2747 +#: ../../include/functions_alerts.php:2754 #: ../../include/class/CalendarManager.class.php:537 #: ../../include/class/CalendarManager.class.php:894 -#: ../../include/functions_planned_downtimes.php:114 -#: ../../include/functions_planned_downtimes.php:849 +#: ../../include/functions_planned_downtimes.php:115 +#: ../../include/functions_planned_downtimes.php:850 msgid "Successfully created" msgstr "作成しました。" @@ -6955,26 +7348,25 @@ msgstr "リンクの編集に失敗しました。" #: ../../enterprise/meta/advanced/links.php:70 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111 -#: ../../enterprise/godmode/policies/policy_modules.php:1249 +#: ../../enterprise/godmode/policies/policy_modules.php:1254 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132 #: ../../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:1171 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1359 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 #: ../../enterprise/include/class/NetworkConfigManager.class.php:2063 #: ../../enterprise/include/class/NetworkConfigManager.class.php:2688 -#: ../../enterprise/operation/agentes/transactional_map.php:166 #: ../../enterprise/tools/ipam/ipam_action.php:279 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:71 #: ../../enterprise/tools/ipam/ipam_massive.php:47 #: ../../godmode/modules/manage_nc_groups.php:118 #: ../../godmode/users/profile_list.php:252 #: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1179 +#: ../../godmode/agentes/configurar_agente.php:1215 #: ../../godmode/agentes/planned_downtime.editor.php:654 #: ../../godmode/netflow/nf_edit_form.php:139 #: ../../godmode/snmpconsole/snmp_alert.php:444 @@ -6983,14 +7375,14 @@ msgstr "リンクの編集に失敗しました。" #: ../../godmode/alerts/configure_alert_command.php:144 #: ../../godmode/alerts/alert_templates.php:156 #: ../../godmode/alerts/configure_alert_template.php:554 -#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:312 +#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319 #: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39 -#: ../../godmode/setup/links.php:63 ../../godmode/events/event_edit_filter.php:220 -#: ../../include/functions_alerts.php:2747 +#: ../../godmode/setup/links.php:63 +#: ../../godmode/events/event_edit_filter.php:242 +#: ../../include/functions_alerts.php:2754 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 -#: ../../include/functions_planned_downtimes.php:124 -#: ../../operation/snmpconsole/snmp_view.php:174 +#: ../../include/functions_planned_downtimes.php:125 msgid "Successfully updated" msgstr "更新しました。" @@ -7044,8 +7436,9 @@ msgstr "ポリシー適用" #: ../../enterprise/godmode/policies/policies.php:509 #: ../../enterprise/godmode/policies/policy_collections.php:31 #: ../../enterprise/godmode/menu.php:58 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2188 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2217 #: ../../enterprise/include/functions_policies.php:3799 +#: ../../godmode/servers/modificar_server.php:146 #: ../../general/first_task/collections.php:22 msgid "Collections" msgstr "コレクション" @@ -7073,64 +7466,68 @@ msgstr "コレクション" #: ../../enterprise/godmode/agentes/collections.data.php:309 #: ../../enterprise/godmode/agentes/collections.data.php:332 #: ../../enterprise/godmode/agentes/collections.editor.php:56 -#: ../../enterprise/include/functions_reporting_pdf.php:706 -#: ../../enterprise/include/functions_reporting_csv.php:848 -#: ../../enterprise/include/functions_reporting_csv.php:878 -#: ../../enterprise/include/functions_reporting_csv.php:925 -#: ../../enterprise/include/functions_reporting_csv.php:961 -#: ../../enterprise/include/functions_reporting_csv.php:1000 -#: ../../enterprise/include/functions_reporting_csv.php:1060 -#: ../../enterprise/include/functions_reporting_csv.php:1504 -#: ../../enterprise/include/functions_reporting_csv.php:2327 -#: ../../enterprise/include/functions_reporting_csv.php:2363 -#: ../../enterprise/include/functions_reporting_csv.php:2469 -#: ../../enterprise/include/functions_reporting_csv.php:2564 -#: ../../enterprise/include/functions_reporting_csv.php:2786 -#: ../../enterprise/include/functions_reporting.php:2185 -#: ../../enterprise/include/functions_reporting.php:2218 -#: ../../enterprise/include/functions_reporting.php:2222 +#: ../../enterprise/include/functions_reporting_pdf.php:708 +#: ../../enterprise/include/functions_reporting_csv.php:852 +#: ../../enterprise/include/functions_reporting_csv.php:882 +#: ../../enterprise/include/functions_reporting_csv.php:929 +#: ../../enterprise/include/functions_reporting_csv.php:965 +#: ../../enterprise/include/functions_reporting_csv.php:1004 +#: ../../enterprise/include/functions_reporting_csv.php:1064 +#: ../../enterprise/include/functions_reporting_csv.php:1508 +#: ../../enterprise/include/functions_reporting_csv.php:2331 +#: ../../enterprise/include/functions_reporting_csv.php:2367 +#: ../../enterprise/include/functions_reporting_csv.php:2473 +#: ../../enterprise/include/functions_reporting_csv.php:2568 +#: ../../enterprise/include/functions_reporting_csv.php:2790 +#: ../../enterprise/include/functions_reporting.php:2186 +#: ../../enterprise/include/functions_reporting.php:2219 +#: ../../enterprise/include/functions_reporting.php:2223 #: ../../enterprise/include/functions_services.php:1612 #: ../../enterprise/operation/agentes/policy_view.php:398 #: ../../enterprise/operation/agentes/tag_view.php:684 #: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195 #: ../../godmode/agentes/status_monitor_custom_fields.php:113 #: ../../godmode/agentes/status_monitor_custom_fields.php:152 -#: ../../godmode/events/custom_events.php:115 ../../mobile/operation/modules.php:715 -#: ../../mobile/operation/modules.php:718 ../../mobile/operation/modules.php:719 -#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:721 -#: ../../mobile/operation/modules.php:722 ../../mobile/operation/modules.php:723 -#: ../../mobile/operation/modules.php:724 ../../mobile/operation/modules.php:725 -#: ../../mobile/operation/modules.php:727 ../../mobile/operation/modules.php:730 -#: ../../mobile/operation/modules.php:731 ../../mobile/operation/modules.php:732 -#: ../../mobile/operation/modules.php:733 ../../mobile/operation/modules.php:734 -#: ../../mobile/operation/modules.php:735 ../../mobile/operation/modules.php:736 -#: ../../mobile/operation/modules.php:737 ../../mobile/operation/modules.php:853 -#: ../../include/functions_reporting_html.php:2259 -#: ../../include/functions_reporting_html.php:2744 -#: ../../include/functions_reporting_html.php:2748 -#: ../../include/functions_reporting_html.php:2749 -#: ../../include/functions_reporting_html.php:2753 -#: ../../include/functions_reporting_html.php:2758 -#: ../../include/functions_reporting_html.php:2763 -#: ../../include/functions_reporting_html.php:2767 -#: ../../include/functions_reporting_html.php:2772 -#: ../../include/functions_reporting_html.php:2779 -#: ../../include/functions_reporting_html.php:2828 -#: ../../include/functions_reporting_html.php:2901 ../../include/ajax/module.php:982 -#: ../../include/ajax/custom_fields.php:412 ../../include/functions_graph.php:3709 -#: ../../include/functions_netflow.php:301 ../../include/functions_reporting.php:4349 -#: ../../include/functions_reporting.php:4390 ../../include/functions_reporting.php:5141 +#: ../../godmode/events/custom_events.php:115 +#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718 +#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720 +#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722 +#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724 +#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727 +#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731 +#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733 +#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735 +#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737 +#: ../../mobile/operation/modules.php:853 +#: ../../include/functions_reporting_html.php:2268 +#: ../../include/functions_reporting_html.php:2755 +#: ../../include/functions_reporting_html.php:2759 +#: ../../include/functions_reporting_html.php:2760 +#: ../../include/functions_reporting_html.php:2764 +#: ../../include/functions_reporting_html.php:2769 +#: ../../include/functions_reporting_html.php:2774 +#: ../../include/functions_reporting_html.php:2778 +#: ../../include/functions_reporting_html.php:2783 +#: ../../include/functions_reporting_html.php:2790 +#: ../../include/functions_reporting_html.php:2839 +#: ../../include/functions_reporting_html.php:2912 +#: ../../include/ajax/module.php:995 ../../include/ajax/custom_fields.php:412 +#: ../../include/functions_graph.php:3504 ../../include/functions_netflow.php:301 +#: ../../include/functions_reporting.php:4625 +#: ../../include/functions_reporting.php:4666 #: ../../include/functions_events.php:218 ../../include/functions_events.php:301 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/status_monitor.php:1356 -#: ../../operation/agentes/exportdata.excel.php:74 ../../operation/search_modules.php:38 +#: ../../operation/agentes/status_monitor.php:1369 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_modules.php:38 msgid "Data" msgstr "データ" #: ../../enterprise/meta/advanced/collections.data.php:76 #: ../../enterprise/godmode/agentes/collections.data.php:174 -msgid "Unable to create the collection. Another collection with the same short name." +msgid "" +"Unable to create the collection. Another collection with the same short name." msgstr "コレクションを作成できません。同じ短い名前で他のコレクションがあります。" #: ../../enterprise/meta/advanced/collections.data.php:97 @@ -7188,7 +7585,7 @@ msgstr "コレクションを作成しました" #: ../../enterprise/godmode/agentes/collections.editor.php:424 #: ../../enterprise/godmode/agentes/collections.editor.php:446 #: ../../enterprise/include/functions_collection.php:186 -#: ../../operation/agentes/ver_agente.php:1665 +#: ../../operation/agentes/ver_agente.php:1695 msgid "Files" msgstr "ファイル" @@ -7225,68 +7622,73 @@ msgstr "このコンソールは、この環境の管理コンソールではあ msgid "Name:" msgstr "名前:" -#: ../../enterprise/meta/advanced/collections.data.php:345 +#: ../../enterprise/meta/advanced/collections.data.php:344 #: ../../enterprise/godmode/agentes/collections.data.php:438 msgid "Recreate file" msgstr "ファイル再生成" -#: ../../enterprise/meta/advanced/collections.data.php:373 #: ../../enterprise/meta/advanced/collections.data.php:374 +#: ../../enterprise/meta/advanced/collections.data.php:375 #: ../../enterprise/godmode/agentes/collection_manager.php:166 #: ../../enterprise/godmode/agentes/collection_manager.php:167 #: ../../enterprise/godmode/agentes/collection_manager.php:281 #: ../../enterprise/godmode/agentes/collection_manager.php:282 #: ../../enterprise/godmode/agentes/collections.data.php:467 #: ../../enterprise/godmode/agentes/collections.data.php:468 +#: ../../enterprise/godmode/agentes/collections.php:86 +#: ../../enterprise/godmode/agentes/collections.php:87 msgid "Need to regenerate" msgstr "再生成が必要です" -#: ../../enterprise/meta/advanced/collections.data.php:383 -#: ../../enterprise/meta/advanced/collections.data.php:384 +#: ../../enterprise/meta/advanced/collections.data.php:385 +#: ../../enterprise/meta/advanced/collections.data.php:386 #: ../../enterprise/godmode/agentes/collection_manager.php:175 #: ../../enterprise/godmode/agentes/collection_manager.php:176 #: ../../enterprise/godmode/agentes/collection_manager.php:290 #: ../../enterprise/godmode/agentes/collection_manager.php:291 #: ../../enterprise/godmode/agentes/collections.data.php:477 #: ../../enterprise/godmode/agentes/collections.data.php:478 +#: ../../enterprise/godmode/agentes/collections.php:97 +#: ../../enterprise/godmode/agentes/collections.php:98 #: ../../enterprise/operation/agentes/collection_view.php:139 #: ../../enterprise/operation/agentes/collection_view.php:140 msgid "The collection directory does not exist." msgstr "コレクションディレクトリが存在しません。" -#: ../../enterprise/meta/advanced/collections.data.php:397 +#: ../../enterprise/meta/advanced/collections.data.php:400 #: ../../enterprise/godmode/agentes/collections.data.php:492 msgid "Group:" msgstr "グループ:" -#: ../../enterprise/meta/advanced/collections.data.php:420 +#: ../../enterprise/meta/advanced/collections.data.php:423 #: ../../enterprise/godmode/agentes/collections.data.php:514 msgid "Short name:" msgstr "短い名前:" -#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/meta/advanced/collections.data.php:429 #: ../../enterprise/godmode/agentes/collections.data.php:519 msgid "" -"The collection's short name is the name of dir in attachment dir and the package " -"collection." +"The collection's short name is the name of dir in attachment dir and the " +"package collection." msgstr "" -"コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレクトリ名" -"です。" +"コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレ" +"クトリ名です。" -#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/meta/advanced/collections.data.php:429 #: ../../enterprise/godmode/agentes/collections.data.php:519 msgid "Short name must contain only alphanumeric characters, - or _ ." msgstr "短い名前は、アルファベットと、- および _ のみ利用できます。" -#: ../../enterprise/meta/advanced/collections.data.php:426 +#: ../../enterprise/meta/advanced/collections.data.php:429 #: ../../enterprise/godmode/agentes/collections.data.php:519 msgid "Empty for default short name fc_X where X is the collection id." -msgstr "指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。" +msgstr "" +"指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。" -#: ../../enterprise/meta/advanced/collections.data.php:432 +#: ../../enterprise/meta/advanced/collections.data.php:435 #: ../../enterprise/meta/include/functions_autoprovision.php:569 #: ../../enterprise/godmode/agentes/collections.data.php:523 -#: ../../operation/snmpconsole/snmp_view.php:1107 +#: ../../include/class/SnmpConsole.class.php:1408 msgid "Description:" msgstr "説明:" @@ -7308,7 +7710,8 @@ msgstr "カスタムプロビジョニングデータの移動中にエラーで #: ../../enterprise/meta/advanced/collections.editor.php:193 #: ../../enterprise/godmode/agentes/collections.editor.php:158 #: ../../enterprise/godmode/agentes/collections.editor.php:224 -#: ../../godmode/servers/plugin.php:173 ../../include/functions_filemanager.php:737 +#: ../../godmode/servers/plugin.php:173 +#: ../../include/functions_filemanager.php:737 msgid "Edit file" msgstr "ファイル編集" @@ -7379,29 +7782,31 @@ msgid "Edit job" msgstr "ジョブ編集" #: ../../enterprise/meta/advanced/cron_main.php:339 -msgid "In order to make backups it is necessary to have mysqldump on your console." +msgid "" +"In order to make backups it is necessary to have mysqldump on your console." msgstr "" -"バックアップを作成するには、コンソールに mysqldump をインストールする必要があります。" +"バックアップを作成するには、コンソールに mysqldump をインストールする必要があり" +"ます。" #: ../../enterprise/meta/advanced/cron_main.php:360 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630 #: ../../enterprise/include/functions_tasklist.php:173 -#: ../../include/functions_cron.php:490 +#: ../../include/functions_cron.php:501 msgid "Task" msgstr "タスク" #: ../../enterprise/meta/advanced/cron_main.php:391 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:381 -#: ../../enterprise/godmode/setup/setup_history.php:756 +#: ../../enterprise/godmode/setup/setup_history.php:834 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640 #: ../../enterprise/include/functions_tasklist.php:174 -#: ../../include/functions_cron.php:491 +#: ../../include/functions_cron.php:502 msgid "Scheduled" msgstr "スケジュール" #: ../../enterprise/meta/advanced/cron_main.php:404 #: ../../enterprise/include/functions_tasklist.php:175 -#: ../../include/functions_cron.php:492 +#: ../../include/functions_cron.php:503 msgid "Next execution" msgstr "次回の実行" @@ -7416,235 +7821,245 @@ msgstr "Pandora での時間フォーマットは、時(24時間表記):分:秒 #: ../../enterprise/meta/advanced/cron_main.php:450 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 #: ../../godmode/events/event_responses.editor.php:146 -#: ../../include/ajax/events.php:2111 ../../include/class/ExternalTools.class.php:354 +#: ../../include/ajax/events.php:2083 ../../include/ajax/events.php:2548 +#: ../../include/class/ExternalTools.class.php:354 #: ../../include/lib/Dashboard/Widgets/events_list.php:640 -#: ../../include/functions_events.php:3519 ../../operation/events/events.php:2396 +#: ../../operation/events/events.php:2550 msgid "Parameters" msgstr "パラメータ" #: ../../enterprise/meta/advanced/cron_main.php:536 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:868 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3973 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4035 #: ../../enterprise/godmode/wizards/consoletask_js.php:41 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4339 -#: ../../enterprise/operation/log/log_viewer.php:981 -#: ../../enterprise/operation/log/log_viewer.php:993 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4341 +#: ../../enterprise/operation/log/log_viewer.php:982 +#: ../../enterprise/operation/log/log_viewer.php:994 #: ../../enterprise/operation/services/services.treeview_services.php:384 #: ../../extensions/insert_data.php:224 -#: ../../godmode/agentes/planned_downtime.editor.php:1799 +#: ../../godmode/agentes/planned_downtime.editor.php:1859 #: ../../godmode/alerts/configure_alert_template.php:1456 #: ../../godmode/alerts/configure_alert_template.php:1540 #: ../../godmode/setup/news.php:322 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5038 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:686 ../../operation/tree.php:573 -#: ../../operation/agentes/stat_win.php:604 -#: ../../operation/agentes/interface_traffic_graph_win.php:434 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5057 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:686 +#: ../../operation/tree.php:573 ../../operation/agentes/stat_win.php:604 +#: ../../operation/agentes/interface_traffic_graph_win.php:436 #: ../../operation/agentes/datos_agente.php:312 #: ../../operation/agentes/estado_monitores.php:455 -#: ../../operation/network/network_report.php:336 +#: ../../operation/network/network_report.php:348 #: ../../operation/network/network_usage_map.php:184 #: ../../operation/netflow/nf_live_view.php:753 #: ../../operation/reporting/reporting_viewer.php:367 #: ../../operation/reporting/reporting_viewer.php:387 -#: ../../operation/reporting/graph_viewer.php:423 ../../operation/events/events.php:2974 +#: ../../operation/reporting/graph_viewer.php:420 +#: ../../operation/events/events.php:3136 msgid "Choose time" msgstr "時間を選択" #: ../../enterprise/meta/advanced/cron_main.php:537 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:869 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3974 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4036 #: ../../enterprise/godmode/wizards/consoletask_js.php:42 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4030 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4340 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4032 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4342 #: ../../enterprise/include/lib/Metaconsole/Node.php:539 -#: ../../enterprise/operation/log/log_viewer.php:982 -#: ../../enterprise/operation/log/log_viewer.php:994 +#: ../../enterprise/operation/log/log_viewer.php:983 +#: ../../enterprise/operation/log/log_viewer.php:995 #: ../../enterprise/operation/services/services.treeview_services.php:385 #: ../../extensions/insert_data.php:225 -#: ../../godmode/agentes/planned_downtime.editor.php:1800 +#: ../../godmode/agentes/planned_downtime.editor.php:1860 #: ../../godmode/alerts/configure_alert_template.php:1457 #: ../../godmode/alerts/configure_alert_template.php:1541 #: ../../godmode/setup/news.php:323 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5039 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 ../../operation/tree.php:574 -#: ../../operation/agentes/stat_win.php:605 -#: ../../operation/agentes/interface_traffic_graph_win.php:435 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5058 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 +#: ../../operation/tree.php:574 ../../operation/agentes/stat_win.php:605 +#: ../../operation/agentes/interface_traffic_graph_win.php:437 #: ../../operation/agentes/datos_agente.php:313 #: ../../operation/agentes/estado_monitores.php:456 -#: ../../operation/network/network_report.php:337 +#: ../../operation/network/network_report.php:349 #: ../../operation/network/network_usage_map.php:185 #: ../../operation/netflow/nf_live_view.php:754 #: ../../operation/reporting/reporting_viewer.php:368 #: ../../operation/reporting/reporting_viewer.php:388 -#: ../../operation/reporting/graph_viewer.php:424 ../../operation/events/events.php:2975 +#: ../../operation/reporting/graph_viewer.php:421 +#: ../../operation/events/events.php:3137 msgid "Time" msgstr "時刻" #: ../../enterprise/meta/advanced/cron_main.php:538 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:870 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3975 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037 #: ../../enterprise/godmode/wizards/consoletask_js.php:43 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4031 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4341 -#: ../../enterprise/operation/log/log_viewer.php:983 -#: ../../enterprise/operation/log/log_viewer.php:995 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4033 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4343 +#: ../../enterprise/operation/log/log_viewer.php:984 +#: ../../enterprise/operation/log/log_viewer.php:996 #: ../../enterprise/operation/services/services.treeview_services.php:386 #: ../../extensions/insert_data.php:226 -#: ../../godmode/agentes/planned_downtime.editor.php:1801 +#: ../../godmode/agentes/planned_downtime.editor.php:1861 #: ../../godmode/alerts/configure_alert_template.php:1458 #: ../../godmode/alerts/configure_alert_template.php:1542 #: ../../godmode/setup/news.php:324 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5040 -#: ../../include/functions_html.php:2283 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:688 ../../operation/tree.php:575 -#: ../../operation/agentes/stat_win.php:606 -#: ../../operation/agentes/interface_traffic_graph_win.php:436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5059 +#: ../../include/functions_html.php:2276 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:688 +#: ../../operation/tree.php:575 ../../operation/agentes/stat_win.php:606 +#: ../../operation/agentes/interface_traffic_graph_win.php:438 #: ../../operation/agentes/datos_agente.php:314 #: ../../operation/agentes/estado_monitores.php:457 -#: ../../operation/network/network_report.php:338 +#: ../../operation/network/network_report.php:350 #: ../../operation/network/network_usage_map.php:186 #: ../../operation/netflow/nf_live_view.php:755 #: ../../operation/reporting/reporting_viewer.php:369 #: ../../operation/reporting/reporting_viewer.php:389 -#: ../../operation/reporting/graph_viewer.php:425 ../../operation/events/events.php:2976 +#: ../../operation/reporting/graph_viewer.php:422 +#: ../../operation/events/events.php:3138 msgid "Hour" msgstr "時" #: ../../enterprise/meta/advanced/cron_main.php:539 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3976 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4038 #: ../../enterprise/godmode/wizards/consoletask_js.php:44 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4032 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4342 -#: ../../enterprise/operation/log/log_viewer.php:984 -#: ../../enterprise/operation/log/log_viewer.php:996 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4034 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4344 +#: ../../enterprise/operation/log/log_viewer.php:985 +#: ../../enterprise/operation/log/log_viewer.php:997 #: ../../enterprise/operation/services/services.treeview_services.php:387 #: ../../extensions/insert_data.php:227 -#: ../../godmode/agentes/planned_downtime.editor.php:1802 +#: ../../godmode/agentes/planned_downtime.editor.php:1862 #: ../../godmode/alerts/configure_alert_template.php:1459 #: ../../godmode/alerts/configure_alert_template.php:1543 #: ../../godmode/setup/news.php:325 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5041 -#: ../../include/functions_html.php:2284 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:689 ../../operation/tree.php:576 -#: ../../operation/agentes/stat_win.php:607 -#: ../../operation/agentes/interface_traffic_graph_win.php:437 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5060 +#: ../../include/functions_html.php:2277 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:689 +#: ../../operation/tree.php:576 ../../operation/agentes/stat_win.php:607 +#: ../../operation/agentes/interface_traffic_graph_win.php:439 #: ../../operation/agentes/datos_agente.php:315 #: ../../operation/agentes/estado_monitores.php:458 -#: ../../operation/network/network_report.php:339 +#: ../../operation/network/network_report.php:351 #: ../../operation/network/network_usage_map.php:187 #: ../../operation/netflow/nf_live_view.php:756 #: ../../operation/reporting/reporting_viewer.php:370 #: ../../operation/reporting/reporting_viewer.php:390 -#: ../../operation/reporting/graph_viewer.php:426 ../../operation/events/events.php:2977 +#: ../../operation/reporting/graph_viewer.php:423 +#: ../../operation/events/events.php:3139 msgid "Minute" msgstr "分" #: ../../enterprise/meta/advanced/cron_main.php:540 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:872 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3977 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4039 #: ../../enterprise/godmode/wizards/consoletask_js.php:45 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4033 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4343 -#: ../../enterprise/operation/log/log_viewer.php:985 -#: ../../enterprise/operation/log/log_viewer.php:997 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4035 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4345 +#: ../../enterprise/operation/log/log_viewer.php:986 +#: ../../enterprise/operation/log/log_viewer.php:998 #: ../../enterprise/operation/services/services.treeview_services.php:388 #: ../../extensions/insert_data.php:228 -#: ../../godmode/agentes/planned_downtime.editor.php:1803 +#: ../../godmode/agentes/planned_downtime.editor.php:1863 #: ../../godmode/alerts/configure_alert_template.php:1460 #: ../../godmode/alerts/configure_alert_template.php:1544 #: ../../godmode/setup/news.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5042 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:690 ../../operation/tree.php:577 -#: ../../operation/agentes/stat_win.php:608 -#: ../../operation/agentes/interface_traffic_graph_win.php:438 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5061 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:690 +#: ../../operation/tree.php:577 ../../operation/agentes/stat_win.php:608 +#: ../../operation/agentes/interface_traffic_graph_win.php:440 #: ../../operation/agentes/datos_agente.php:316 #: ../../operation/agentes/estado_monitores.php:459 -#: ../../operation/network/network_report.php:340 +#: ../../operation/network/network_report.php:352 #: ../../operation/network/network_usage_map.php:188 #: ../../operation/netflow/nf_live_view.php:757 #: ../../operation/reporting/reporting_viewer.php:371 #: ../../operation/reporting/reporting_viewer.php:391 -#: ../../operation/reporting/graph_viewer.php:427 ../../operation/events/events.php:2978 +#: ../../operation/reporting/graph_viewer.php:424 +#: ../../operation/events/events.php:3140 msgid "Second" msgstr "秒" #: ../../enterprise/meta/advanced/cron_main.php:541 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:873 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3978 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4040 #: ../../enterprise/godmode/wizards/consoletask_js.php:46 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4034 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4344 -#: ../../enterprise/operation/agentes/agent_inventory.php:133 -#: ../../enterprise/operation/log/log_viewer.php:986 -#: ../../enterprise/operation/log/log_viewer.php:998 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4036 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4346 +#: ../../enterprise/operation/log/log_viewer.php:987 +#: ../../enterprise/operation/log/log_viewer.php:999 #: ../../enterprise/operation/services/services.treeview_services.php:389 #: ../../extensions/insert_data.php:229 -#: ../../godmode/agentes/planned_downtime.editor.php:1804 +#: ../../godmode/agentes/planned_downtime.editor.php:1864 #: ../../godmode/alerts/configure_alert_template.php:1461 #: ../../godmode/alerts/configure_alert_template.php:1545 #: ../../godmode/setup/news.php:327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5043 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5062 #: ../../include/functions.php:505 ../../include/functions.php:636 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:691 ../../operation/tree.php:578 -#: ../../operation/agentes/stat_win.php:609 -#: ../../operation/agentes/interface_traffic_graph_win.php:439 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:691 +#: ../../operation/tree.php:578 ../../operation/agentes/stat_win.php:609 +#: ../../operation/agentes/interface_traffic_graph_win.php:441 #: ../../operation/agentes/datos_agente.php:317 #: ../../operation/agentes/estado_monitores.php:460 -#: ../../operation/network/network_report.php:341 +#: ../../operation/agentes/agent_inventory.php:133 +#: ../../operation/network/network_report.php:353 #: ../../operation/network/network_usage_map.php:189 #: ../../operation/netflow/nf_live_view.php:758 #: ../../operation/reporting/reporting_viewer.php:372 #: ../../operation/reporting/reporting_viewer.php:392 -#: ../../operation/reporting/graph_viewer.php:428 ../../operation/events/events.php:2979 +#: ../../operation/reporting/graph_viewer.php:425 +#: ../../operation/events/events.php:3141 msgid "Now" msgstr "今" #: ../../enterprise/meta/advanced/cron_main.php:542 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:874 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3979 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4041 #: ../../enterprise/godmode/wizards/consoletask_js.php:47 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4035 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4345 -#: ../../enterprise/operation/log/log_viewer.php:987 -#: ../../enterprise/operation/log/log_viewer.php:999 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4037 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4347 +#: ../../enterprise/operation/log/log_viewer.php:988 +#: ../../enterprise/operation/log/log_viewer.php:1000 #: ../../enterprise/operation/services/services.treeview_services.php:390 #: ../../extensions/insert_data.php:230 -#: ../../godmode/agentes/planned_downtime.editor.php:1805 +#: ../../godmode/agentes/planned_downtime.editor.php:1865 #: ../../godmode/alerts/configure_alert_template.php:1462 #: ../../godmode/alerts/configure_alert_template.php:1546 #: ../../godmode/setup/news.php:328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5044 -#: ../../godmode/wizards/HostDevices.class.php:796 ../../mobile/include/ui.class.php:691 -#: ../../mobile/include/ui.class.php:749 ../../include/class/WelcomeWindow.class.php:159 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5063 +#: ../../godmode/wizards/HostDevices.class.php:798 +#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 +#: ../../include/functions_menu.php:822 +#: ../../include/class/WelcomeWindow.class.php:159 #: ../../include/lib/Dashboard/Widgets/tree_view.php:692 #: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:579 #: ../../operation/agentes/stat_win.php:610 -#: ../../operation/agentes/interface_traffic_graph_win.php:440 +#: ../../operation/agentes/interface_traffic_graph_win.php:442 #: ../../operation/agentes/datos_agente.php:318 #: ../../operation/agentes/estado_monitores.php:461 -#: ../../operation/network/network_report.php:342 +#: ../../operation/network/network_report.php:354 #: ../../operation/network/network_usage_map.php:190 #: ../../operation/netflow/nf_live_view.php:759 #: ../../operation/reporting/reporting_viewer.php:373 #: ../../operation/reporting/reporting_viewer.php:393 -#: ../../operation/reporting/graph_viewer.php:429 ../../operation/events/events.php:2980 +#: ../../operation/reporting/graph_viewer.php:426 +#: ../../operation/events/events.php:3142 msgid "Close" msgstr "閉じる" #: ../../enterprise/meta/advanced/metasetup.setup.php:108 -#: ../../enterprise/godmode/modules/configure_local_component.php:164 +#: ../../enterprise/godmode/modules/configure_local_component.php:166 #: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/users/configure_user.php:1238 -#: ../../godmode/alerts/alert_commands.php:142 -#: ../../godmode/alerts/alert_commands.php:183 +#: ../../godmode/users/configure_user.php:1449 +#: ../../godmode/alerts/alert_commands.php:143 +#: ../../godmode/alerts/alert_commands.php:184 #: ../../godmode/alerts/configure_alert_template.php:933 #: ../../godmode/alerts/configure_alert_template.php:974 #: ../../godmode/alerts/configure_alert_template.php:1137 @@ -7659,51 +8074,56 @@ msgstr "言語設定" #: ../../enterprise/meta/advanced/metasetup.setup.php:126 #: ../../enterprise/meta/include/functions_meta.php:84 -#: ../../godmode/setup/setup_general.php:110 ../../include/functions_config.php:192 +#: ../../godmode/setup/setup_general.php:110 +#: ../../include/functions_config.php:192 msgid "Auto login (hash) password" msgstr "自動ログインパスワード(ハッシュ)" #: ../../enterprise/meta/advanced/metasetup.setup.php:142 #: ../../enterprise/meta/include/functions_meta.php:94 -#: ../../godmode/setup/setup_general.php:124 ../../include/functions_config.php:196 +#: ../../godmode/setup/setup_general.php:124 +#: ../../include/functions_config.php:196 msgid "Time source" msgstr "日時データソース" #: ../../enterprise/meta/advanced/metasetup.setup.php:144 -#: ../../godmode/setup/setup_general.php:125 ../../mobile/operation/events.php:248 +#: ../../godmode/setup/setup_general.php:125 +#: ../../mobile/operation/events.php:248 #: ../../include/functions_reporting_html.php:1151 -#: ../../include/functions_reporting_html.php:2610 ../../include/functions.php:1235 -#: ../../include/functions_graph.php:2869 ../../include/functions_graph.php:3570 -#: ../../include/functions_graph.php:3572 -#: ../../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:2525 ../../include/functions_events.php:2958 -#: ../../operation/events/events.php:743 +#: ../../include/functions_reporting_html.php:2621 +#: ../../include/functions.php:1281 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430 +#: ../../include/functions_events.php:2609 +#: ../../include/functions_events.php:3021 ../../operation/events/events.php:803 msgid "System" msgstr "システム" #: ../../enterprise/meta/advanced/metasetup.setup.php:145 -#: ../../godmode/setup/setup_general.php:126 +#: ../../godmode/setup/setup_general.php:126 ../../include/functions_menu.php:818 msgid "Database" msgstr "データベース" #: ../../enterprise/meta/advanced/metasetup.setup.php:148 #: ../../enterprise/meta/include/functions_meta.php:104 -#: ../../godmode/setup/setup_general.php:149 ../../include/functions_config.php:208 +#: ../../godmode/setup/setup_general.php:149 +#: ../../include/functions_config.php:208 msgid "Enforce https" msgstr "httpsの利用" #: ../../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?" +"If SSL is not properly configured, you will lose access to the %s Console. Do " +"you want to continue?" msgstr "" -"SSL が適切に設定されていないと、%s コンソールにアクセスできなくなります。続けますか?" +"SSL が適切に設定されていないと、%s コンソールにアクセスできなくなります。続けま" +"すか?" #: ../../enterprise/meta/advanced/metasetup.setup.php:152 #: ../../enterprise/meta/include/functions_meta.php:129 -#: ../../godmode/setup/setup_general.php:183 ../../include/functions_config.php:219 +#: ../../godmode/setup/setup_general.php:183 +#: ../../include/functions_config.php:219 msgid "Attachment store" msgstr "添付ファイル保存場所" @@ -7713,19 +8133,20 @@ msgstr "テンポラリデータの保存ディレクトリ" #: ../../enterprise/meta/advanced/metasetup.setup.php:155 #: ../../enterprise/meta/include/functions_meta.php:140 -#: ../../godmode/setup/setup_general.php:88 ../../include/functions_config.php:184 +#: ../../godmode/setup/setup_general.php:88 +#: ../../include/functions_config.php:184 msgid "Remote config directory" msgstr "リモート設定ディレクトリ" #: ../../enterprise/meta/advanced/metasetup.setup.php:158 #: ../../enterprise/meta/include/functions_meta.php:150 #: ../../godmode/setup/setup_general.php:98 -msgid "Phantomjs bin directory" -msgstr "phantomjs バイナリディレクトリ" +msgid "Chromium path" +msgstr "Chromium パス" #: ../../enterprise/meta/advanced/metasetup.setup.php:158 -msgid "Directory where phantomjs binary file exists and has execution grants." -msgstr "phantomjs バイナリファイルが実行権限付きで置かれているディレクトリ。" +msgid "Directory where Chromium binary file exists and has execution grants." +msgstr "実行権限が付与された Chromium バイナリファイルがあるディレクトリ。" #: ../../enterprise/meta/advanced/metasetup.setup.php:162 #: ../../godmode/setup/setup_general.php:249 @@ -7817,7 +8238,8 @@ msgstr "UTC" #: ../../enterprise/meta/advanced/metasetup.setup.php:191 #: ../../enterprise/meta/include/functions_meta.php:160 -#: ../../godmode/setup/setup_general.php:279 ../../include/functions_register.php:164 +#: ../../godmode/setup/setup_general.php:279 +#: ../../include/functions_register.php:164 #: ../../include/functions_config.php:261 msgid "Timezone setup" msgstr "タイムゾーン設定" @@ -7829,24 +8251,26 @@ msgstr "タイムゾーン変更" #: ../../enterprise/meta/advanced/metasetup.setup.php:197 #: ../../enterprise/meta/include/functions_meta.php:170 -#: ../../godmode/setup/setup_general.php:319 ../../include/functions_config.php:292 +#: ../../godmode/setup/setup_general.php:319 +#: ../../include/functions_config.php:292 msgid "Public URL" msgstr "公開 URL" #: ../../enterprise/meta/advanced/metasetup.setup.php:198 #, 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)." +"Set this value when you need your %s to be accessible via a public URL (for " +"example using Apache mod_proxy settings)." msgstr "" -"公開用 URL を介して %s にアクセスできるようにする必要がある場合(たとえば、Apache " -"mod_proxy 設定を使用)、この値を設定します。" +"公開用 URL を介して %s にアクセスできるようにする必要がある場合(たとえば、" +"Apache mod_proxy 設定を使用)、この値を設定します。" #: ../../enterprise/meta/advanced/metasetup.setup.php:201 #: ../../enterprise/meta/include/functions_meta.php:180 -#: ../../godmode/setup/setup_general.php:329 ../../include/functions_config.php:296 +#: ../../godmode/setup/setup_general.php:329 +#: ../../include/functions_config.php:296 msgid "Force use Public URL" -msgstr "公開 URL の利用" +msgstr "公開 URL の強制利用" #: ../../enterprise/meta/advanced/metasetup.setup.php:202 msgid "Force using defined public URL)." @@ -7855,34 +8279,37 @@ msgstr "定義された公開 URL を使用するように強制します)。" #: ../../enterprise/meta/advanced/metasetup.setup.php:209 #, php-format msgid "" -"If public URL is not properly configured, you will lose access to the %s Console. Do " -"you want to continue?" +"If public URL is not properly configured, you will lose access to the %s " +"Console. Do you want to continue?" msgstr "" -"公開 URL が適切に設定されていないと、%s コンソールにアクセスできなくなります。 続けま" -"すか?" +"公開 URL が適切に設定されていないと、%s コンソールにアクセスできなくなります。 " +"続けますか?" #: ../../enterprise/meta/advanced/metasetup.setup.php:215 #: ../../enterprise/meta/include/functions_meta.php:190 -#: ../../godmode/setup/setup_general.php:343 ../../include/functions_config.php:300 +#: ../../godmode/setup/setup_general.php:343 +#: ../../include/functions_config.php:300 msgid "Public URL host exclusions" msgstr "公開 URL 除外ホスト" #: ../../enterprise/meta/advanced/metasetup.setup.php:218 -#: ../../godmode/setup/setup_netflow.php:65 ../../include/functions_config.php:1495 +#: ../../godmode/setup/setup_netflow.php:65 +#: ../../include/functions_config.php:1505 msgid "Disable custom live view filters" msgstr "カスタムライブビューフィルタの無効化" #: ../../enterprise/meta/advanced/metasetup.setup.php:218 msgid "" -"Disable the definition of custom filters in the live view. Only existing filters can " -"be used." +"Disable the definition of custom filters in the live view. Only existing " +"filters can be used." msgstr "" -"ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ利用可能" -"です。" +"ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ" +"利用可能です。" #: ../../enterprise/meta/advanced/metasetup.setup.php:222 #: ../../enterprise/meta/include/functions_meta.php:210 -#: ../../godmode/setup/setup_general.php:370 ../../include/functions_config.php:312 +#: ../../godmode/setup/setup_general.php:451 +#: ../../include/functions_config.php:312 msgid "Command Snapshot" msgstr "コマンドスナップショット" @@ -7916,19 +8343,19 @@ msgstr "パスワードの設定には注意してください。httpsアクセ #: ../../enterprise/meta/advanced/metasetup.setup.php:272 #: ../../enterprise/meta/include/functions_meta.php:240 -#: ../../godmode/setup/setup_general.php:193 ../../include/functions_config.php:232 +#: ../../godmode/setup/setup_general.php:193 +#: ../../include/functions_config.php:232 msgid "IP list with API access" msgstr "APIアクセスを許可するIPアドレスリスト" #: ../../enterprise/meta/advanced/metasetup.setup.php:283 -#: ../../enterprise/meta/include/functions_meta.php:250 -#: ../../enterprise/godmode/setup/setup.php:294 -msgid "Enable update manager" -msgstr "アップデートマネージャの有効化" +msgid "Enable Warp Update" +msgstr "ワープアップデートの有効化" #: ../../enterprise/meta/advanced/metasetup.setup.php:288 #: ../../enterprise/meta/include/functions_meta.php:275 -#: ../../enterprise/godmode/setup/setup.php:90 ../../include/functions_config.php:415 +#: ../../enterprise/godmode/setup/setup.php:90 +#: ../../include/functions_config.php:420 msgid "Size of collection" msgstr "コレクションのサイズ" @@ -7943,19 +8370,26 @@ msgstr "ポリシーに同時に追加する最大エージェント" #: ../../enterprise/meta/advanced/metasetup.setup.php:291 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)" +"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:294 -msgid "Synchronization queue items warn detection" -msgstr "同期キューアイテムの警告を検出" +msgid "Warning for synchronization queue" +msgstr "同期キューの警告" #: ../../enterprise/meta/advanced/metasetup.setup.php:294 -msgid "Number of items in synchronization queue before be notified, per node" -msgstr "ノードごとの通知前の同期キュー内のアイテム数" +msgid "" +"If the number of pending items (per node) is higher than this number, a " +"notification will be shown" +msgstr "" +"保留中のアイテムの数 (ノードあたり) がこの数より多い場合、通知が表示されます" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:295 +msgid " Items" +msgstr "アイテム" #: ../../enterprise/meta/advanced/metasetup.setup.php:298 msgid "Enable Agent API" @@ -7967,7 +8401,7 @@ msgstr "ログビューワの有効化" #: ../../enterprise/meta/advanced/metasetup.setup.php:324 #: ../../enterprise/meta/include/functions_meta.php:305 -#: ../../godmode/setup/setup_general.php:467 +#: ../../godmode/setup/setup_general.php:548 msgid "Enable console log" msgstr "コンソールログの有効化" @@ -7977,7 +8411,7 @@ msgstr "ログの場所: pandora_console/log/console.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:345 #: ../../enterprise/meta/include/functions_meta.php:315 -#: ../../godmode/setup/setup_general.php:478 +#: ../../godmode/setup/setup_general.php:559 msgid "Enable audit log" msgstr "監査ログの有効化" @@ -7988,14 +8422,15 @@ msgstr "ログの場所: pandora_console/log/audit.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:368 #: ../../enterprise/meta/advanced/metasetup.setup.php:369 #: ../../enterprise/meta/include/functions_meta.php:325 -#: ../../godmode/setup/setup_general.php:500 ../../godmode/setup/setup_general.php:501 +#: ../../godmode/setup/setup_general.php:581 +#: ../../godmode/setup/setup_general.php:582 #: ../../include/functions_config.php:364 msgid "Enable console report" msgstr "コンソールレポートの有効化" #: ../../enterprise/meta/advanced/policymanager.sync.php:247 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../godmode/groups/group_list.php:667 +#: ../../godmode/groups/group_list.php:672 #, php-format msgid "Error connecting to %s" msgstr "%s への接続エラー" @@ -8056,22 +8491,23 @@ msgstr "%s ポリシーアラートを削除しました" #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 #: ../../enterprise/include/class/LogSource.class.php:626 -#: ../../enterprise/operation/log/log_viewer.php:654 +#: ../../enterprise/operation/log/log_viewer.php:655 #: ../../godmode/massive/massive_copy_modules.php:144 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1610 -#: ../../godmode/events/event_edit_filter.php:632 -#: ../../godmode/events/custom_events.php:109 ../../include/functions_events.php:212 -#: ../../include/functions_events.php:283 ../../include/functions_events.php:4247 -#: ../../include/functions_events.php:4328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1649 +#: ../../godmode/events/event_edit_filter.php:683 +#: ../../godmode/events/custom_events.php:109 +#: ../../include/functions_events.php:212 ../../include/functions_events.php:283 +#: ../../include/functions_events.php:4360 +#: ../../include/functions_events.php:4441 #: ../../operation/agentes/log_sources_status.php:56 -#: ../../operation/agentes/pandora_networkmap.editor.php:336 -#: ../../operation/agentes/pandora_networkmap.view.php:136 -#: ../../operation/events/events.php:1724 +#: ../../operation/agentes/pandora_networkmap.editor.php:354 +#: ../../operation/agentes/pandora_networkmap.view.php:173 +#: ../../operation/events/events.php:1848 msgid "Source" msgstr "ソース" #: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../extensions/dbmanager.php:190 ../../include/lib/Dashboard/Widget.php:601 +#: ../../extensions/dbmanager.php:190 ../../include/lib/Dashboard/Widget.php:603 msgid "This metaconsole" msgstr "このメタコンソール" @@ -8080,7 +8516,6 @@ msgstr "このメタコンソール" #: ../../enterprise/meta/advanced/policymanager.queue.php:257 #: ../../enterprise/extensions/resource_exportation/functions.php:18 #: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/inventory_manager.php:219 #: ../../enterprise/godmode/agentes/plugins_manager.php:193 #: ../../enterprise/godmode/policies/policy_queue.php:593 #: ../../enterprise/godmode/policies/policy_queue.php:647 @@ -8095,9 +8530,11 @@ msgstr "このメタコンソール" #: ../../enterprise/operation/agentes/collection_view.php:74 #: ../../godmode/agentes/status_monitor_custom_fields.php:73 #: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../godmode/agentes/module_manager.php:848 ../../godmode/alerts/alert_view.php:148 -#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:974 -#: ../../operation/agentes/status_monitor.php:1302 +#: ../../godmode/agentes/inventory_manager.php:220 +#: ../../godmode/agentes/module_manager.php:884 +#: ../../godmode/alerts/alert_view.php:148 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:987 +#: ../../operation/agentes/status_monitor.php:1315 msgid "Policy" msgstr "ポリシー" @@ -8107,122 +8544,91 @@ msgstr "ポリシー" msgid "Targets" msgstr "対象" -#: ../../enterprise/meta/advanced/license_meta.php:52 ../../godmode/setup/license.php:80 +#: ../../enterprise/meta/advanced/license_meta.php:79 +#: ../../godmode/setup/license.php:106 msgid "Failed to Update license file" msgstr "ライセンスファイルのアップデートに失敗しました" -#: ../../enterprise/meta/advanced/license_meta.php:59 +#: ../../enterprise/meta/advanced/license_meta.php:86 msgid "Metaconsole and all nodes license updated" msgstr "メタコンソールと全ノードのライセンスを更新しました" -#: ../../enterprise/meta/advanced/license_meta.php:61 +#: ../../enterprise/meta/advanced/license_meta.php:88 #, php-format msgid "Metaconsole license updated but %d of %d node synchronization failed" -msgstr "メタコンソールのライセンスを更新しましたが、%d/%d ノードの同期に失敗しました" +msgstr "" +"メタコンソールのライセンスを更新しましたが、%d/%d ノードの同期に失敗しました" #: ../../enterprise/meta/advanced/metasetup.auth.php:27 msgid "" -"Be aware that group synchronization can change the group configuration of the node" +"Be aware that group synchronization can change the group configuration of the " +"node" msgstr "" -"グループの同期により、ノードのグループ設定が変更される可能性があることに注意してくださ" -"い" +"グループの同期により、ノードのグループ設定が変更される可能性があることに注意し" +"てください" #: ../../enterprise/meta/advanced/metasetup.performance.php:74 -#: ../../godmode/menu.php:350 ../../godmode/setup/setup.php:125 +#: ../../godmode/menu.php:353 ../../godmode/setup/setup.php:125 #: ../../godmode/setup/setup.php:260 msgid "Performance" msgstr "パフォーマンス" #: ../../enterprise/meta/advanced/metasetup.performance.php:79 -#: ../../enterprise/meta/include/functions_meta.php:1936 -#: ../../godmode/setup/performance.php:259 ../../godmode/setup/performance.php:460 -#: ../../include/functions_config.php:793 +#: ../../enterprise/meta/include/functions_meta.php:1955 +#: ../../godmode/setup/performance.php:259 +#: ../../godmode/setup/performance.php:460 msgid "Max. days before delete events" msgstr "イベントデータ保持日数" -#: ../../enterprise/meta/advanced/metasetup.performance.php:83 -#: ../../enterprise/meta/include/functions_meta.php:1946 -msgid "Active events history" -msgstr "アクティブイベント履歴" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:88 +#: ../../enterprise/meta/advanced/metasetup.performance.php:82 msgid "Use real-time statistics" msgstr "リアルタイム統計の利用" -#: ../../enterprise/meta/advanced/metasetup.performance.php:92 -#: ../../enterprise/meta/include/functions_meta.php:1961 -#: ../../godmode/setup/performance.php:283 ../../include/functions_config.php:806 +#: ../../enterprise/meta/advanced/metasetup.performance.php:86 +#: ../../enterprise/meta/include/functions_meta.php:1970 +#: ../../godmode/setup/performance.php:283 ../../include/functions_config.php:816 msgid "Max. days before delete audit events" msgstr "監査イベントデータ保持日数" -#: ../../enterprise/meta/advanced/metasetup.performance.php:95 -#: ../../enterprise/meta/include/functions_meta.php:1971 -#: ../../godmode/setup/performance.php:551 ../../include/functions_config.php:842 +#: ../../enterprise/meta/advanced/metasetup.performance.php:89 +#: ../../enterprise/meta/include/functions_meta.php:1980 +#: ../../godmode/setup/performance.php:551 ../../include/functions_config.php:852 msgid "Default hours for event view" msgstr "イベント表示期間(時間)" -#: ../../enterprise/meta/advanced/metasetup.performance.php:98 +#: ../../enterprise/meta/advanced/metasetup.performance.php:92 msgid "Migration block size" msgstr "マイグレーションブロックサイズ" -#: ../../enterprise/meta/advanced/metasetup.performance.php:108 +#: ../../enterprise/meta/advanced/metasetup.performance.php:102 #: ../../godmode/setup/performance.php:625 msgid "Events response max. execution" msgstr "イベント応答の最大実行" -#: ../../enterprise/meta/advanced/metasetup.performance.php:110 +#: ../../enterprise/meta/advanced/metasetup.performance.php:104 msgid "Number of events that will perform the desired action at the same time" msgstr "目的のアクションを同時に実行するイベントの数" -#: ../../enterprise/meta/advanced/metasetup.performance.php:122 -#: ../../enterprise/meta/include/functions_meta.php:2001 +#: ../../enterprise/meta/advanced/metasetup.performance.php:116 +#: ../../enterprise/meta/include/functions_meta.php:2010 msgid "Max. number of events per node" msgstr "ノードごとの最大イベント数" -#: ../../enterprise/meta/advanced/metasetup.performance.php:124 +#: ../../enterprise/meta/advanced/metasetup.performance.php:118 msgid "maximum number of events to be displayed per node" msgstr "ノードごとに表示されるイベントの最大数" -#: ../../enterprise/meta/advanced/metasetup.performance.php:136 -#: ../../godmode/setup/performance.php:635 ../../include/functions_config.php:904 +#: ../../enterprise/meta/advanced/metasetup.performance.php:130 +#: ../../godmode/setup/performance.php:635 ../../include/functions_config.php:914 msgid "Row limit in csv log" msgstr "csvログの行制限" -#: ../../enterprise/meta/advanced/metasetup.performance.php:145 -#: ../../enterprise/meta/include/functions_meta.php:2034 -#: ../../godmode/setup/performance.php:374 ../../include/functions_config.php:878 +#: ../../enterprise/meta/advanced/metasetup.performance.php:139 +#: ../../enterprise/meta/include/functions_meta.php:2043 +#: ../../godmode/setup/performance.php:374 ../../include/functions_config.php:888 msgid "Max. macro data fields" msgstr "最大マクロデータフィールド" -#: ../../enterprise/meta/advanced/metasetup.performance.php:160 -#: ../../godmode/setup/performance.php:671 -#, php-format -msgid "" -"%s web2image cache system cleanup. It is always cleaned up after perform an upgrade" -msgstr "" -"%s web2image キャッシュシステムのクリーンアップ。 アップグレードを実行した後は常にク" -"リーンアップされます" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:165 -#: ../../godmode/setup/performance.php:688 -msgid "PhantomJS cache cleanup " -msgstr "PhantomJS キャッシュのクリーンアップ" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:172 -#: ../../godmode/setup/performance.php:695 -msgid "No scheduled" -msgstr "スケジュールされていません" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:173 -#: ../../godmode/setup/performance.php:696 -msgid "Each week" -msgstr "各週" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:174 -#: ../../godmode/setup/performance.php:697 -msgid "Each day" -msgstr "それぞれの日" - #: ../../enterprise/meta/advanced/collections.php:111 msgid "Collection has been deleted" msgstr "コレクションを削除しました" @@ -8230,39 +8636,39 @@ msgstr "コレクションを削除しました" #: ../../enterprise/meta/advanced/collections.php:122 #: ../../enterprise/meta/advanced/collections.php:138 #: ../../enterprise/godmode/agentes/collection_manager.php:94 -#: ../../enterprise/godmode/agentes/collections.php:188 -#: ../../enterprise/godmode/agentes/collections.php:210 +#: ../../enterprise/godmode/agentes/collections.php:237 +#: ../../enterprise/godmode/agentes/collections.php:259 msgid "Successful create collection package." msgstr "コレクションパッケージを作成しました。" #: ../../enterprise/meta/advanced/collections.php:139 #: ../../enterprise/godmode/agentes/collection_manager.php:95 -#: ../../enterprise/godmode/agentes/collections.php:211 +#: ../../enterprise/godmode/agentes/collections.php:260 msgid "Can not create collection package." msgstr "コレクションパッケージを作成できません。" #: ../../enterprise/meta/advanced/collections.php:149 -#: ../../enterprise/godmode/agentes/collections.php:246 +#: ../../enterprise/godmode/agentes/collections.php:295 msgid "Error: Id must not be empty" msgstr "エラー: ID は空にできません" #: ../../enterprise/meta/advanced/collections.php:163 -#: ../../enterprise/godmode/agentes/collections.php:260 +#: ../../enterprise/godmode/agentes/collections.php:309 msgid "Successful re-create collection directory." msgstr "コレクションディレクトリを再作成しました。" #: ../../enterprise/meta/advanced/collections.php:164 -#: ../../enterprise/godmode/agentes/collections.php:261 +#: ../../enterprise/godmode/agentes/collections.php:310 msgid "Can not re-create collection directory." msgstr "コレクションディレクトリを再を作成できません。" #: ../../enterprise/meta/advanced/collections.php:190 -#: ../../enterprise/godmode/agentes/collections.php:287 +#: ../../enterprise/godmode/agentes/collections.php:336 msgid "Successful re-create collections directories." msgstr "コレクションディレクトリを再作成しました。" #: ../../enterprise/meta/advanced/collections.php:191 -#: ../../enterprise/godmode/agentes/collections.php:288 +#: ../../enterprise/godmode/agentes/collections.php:337 msgid "Can not re-create collections directories." msgstr "コレクションディレクトリを再作成できません。" @@ -8272,7 +8678,7 @@ msgstr "コレクションを管理するには、中央管理を有効化する #: ../../enterprise/meta/advanced/collections.php:218 #: ../../enterprise/meta/advanced/collections.php:224 -#: ../../godmode/users/user_list.php:402 ../../godmode/users/user_list.php:406 +#: ../../godmode/users/user_list.php:462 ../../godmode/users/user_list.php:466 msgid "Search by username, fullname or email" msgstr "ユーザ名、フルネーム、メールアドレスでの検索" @@ -8280,9 +8686,10 @@ msgstr "ユーザ名、フルネーム、メールアドレスでの検索" #: ../../enterprise/meta/advanced/policymanager.queue.php:246 #: ../../enterprise/meta/monitoring/custom_fields_view.php:334 #: ../../enterprise/meta/agentsearch.php:113 -#: ../../enterprise/godmode/modules/local_components.php:584 -#: ../../godmode/modules/manage_network_components.php:690 -#: ../../godmode/users/user_list.php:444 ../../godmode/alerts/alert_actions.php:315 +#: ../../enterprise/godmode/modules/local_components.php:587 +#: ../../godmode/modules/manage_network_components.php:693 +#: ../../godmode/users/user_list.php:504 +#: ../../godmode/alerts/alert_actions.php:315 #: ../../godmode/alerts/alert_templates.php:337 #: ../../godmode/reporting/reporting_builder.list_items.php:273 #: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412 @@ -8291,88 +8698,89 @@ msgid "Show Options" msgstr "オプション表示" #: ../../enterprise/meta/advanced/collections.php:250 -#: ../../godmode/users/user_list.php:451 +#: ../../godmode/users/user_list.php:511 msgid "Users control filter" msgstr "ユーザ制御フィルタ" #: ../../enterprise/meta/advanced/collections.php:251 #: ../../enterprise/godmode/policies/policy_queue.php:524 #: ../../enterprise/godmode/policies/policy_queue.php:636 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:382 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:384 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 -#: ../../godmode/users/user_list.php:452 ../../godmode/snmpconsole/snmp_alert.php:1180 -#: ../../godmode/alerts/alert_list.list.php:188 ../../operation/agentes/graphs.php:269 -#: ../../operation/snmpconsole/snmp_view.php:714 -#: ../../operation/snmpconsole/snmp_view.php:813 +#: ../../godmode/users/user_list.php:512 +#: ../../godmode/snmpconsole/snmp_alert.php:1180 +#: ../../godmode/alerts/alert_list.list.php:188 +#: ../../operation/agentes/graphs.php:269 msgid "Toggle filter(s)" msgstr "フィルタ設定" #: ../../enterprise/meta/advanced/collections.php:259 -#: ../../enterprise/godmode/agentes/collections.php:296 +#: ../../enterprise/godmode/agentes/collections.php:345 msgid "Error: The main directory of collections does not exist." msgstr "エラー: コレクションのメインディレクトリが存在しません。" #: ../../enterprise/meta/advanced/collections.php:341 -#: ../../enterprise/godmode/agentes/collections.php:379 +#: ../../enterprise/godmode/agentes/collections.php:442 #: ../../enterprise/include/functions_groups.php:81 -#: ../../enterprise/operation/agentes/ver_agente.php:215 -#: ../../godmode/agentes/configurar_agente.php:705 +#: ../../enterprise/operation/agentes/ver_agente.php:192 +#: ../../godmode/agentes/configurar_agente.php:726 msgid "Collection" msgstr "コレクション" #: ../../enterprise/meta/advanced/collections.php:364 #: ../../enterprise/godmode/agentes/collection_manager.php:110 -#: ../../enterprise/godmode/agentes/collections.php:380 +#: ../../enterprise/godmode/agentes/collections.php:443 #: ../../enterprise/godmode/policies/policy_collections.php:170 #: ../../enterprise/godmode/policies/policy_collections.php:264 msgid "Short Name" msgstr "短い名前" #: ../../enterprise/meta/advanced/collections.php:425 -#: ../../enterprise/godmode/agentes/collections.php:412 +#: ../../enterprise/godmode/agentes/collections.php:475 msgid "Are you sure to delete?" msgstr "削除しますがよろしいですか?" #: ../../enterprise/meta/advanced/collections.php:430 #: ../../enterprise/meta/advanced/collections.php:431 -#: ../../enterprise/godmode/agentes/collections.php:413 +#: ../../enterprise/godmode/agentes/collections.php:476 +#: ../../include/class/SatelliteCollection.class.php:590 msgid "Delete collection" msgstr "コレクションの削除" #: ../../enterprise/meta/advanced/collections.php:440 -#: ../../enterprise/godmode/agentes/collections.php:420 +#: ../../enterprise/godmode/agentes/collections.php:483 msgid "Are you sure to re-apply?" msgstr "再適用しますか?" #: ../../enterprise/meta/advanced/collections.php:441 -#: ../../enterprise/godmode/agentes/collections.php:421 +#: ../../enterprise/godmode/agentes/collections.php:484 msgid "Re-Apply changes" msgstr "変更の再適用" #: ../../enterprise/meta/advanced/collections.php:448 -#: ../../enterprise/godmode/agentes/collections.php:428 +#: ../../enterprise/godmode/agentes/collections.php:491 msgid "Are you sure to apply?" msgstr "適用しますか?" #: ../../enterprise/meta/advanced/collections.php:449 -#: ../../enterprise/godmode/agentes/collections.php:429 +#: ../../enterprise/godmode/agentes/collections.php:492 msgid "Apply changes" msgstr "変更を適用" #: ../../enterprise/meta/advanced/collections.php:454 -#: ../../enterprise/godmode/agentes/collections.php:434 +#: ../../enterprise/godmode/agentes/collections.php:497 msgid "Are you sure to re-create directory?" msgstr "ディレクトリを再作成しますか?" #: ../../enterprise/meta/advanced/collections.php:459 #: ../../enterprise/meta/advanced/collections.php:460 -#: ../../enterprise/godmode/agentes/collections.php:439 -#: ../../enterprise/godmode/agentes/collections.php:440 +#: ../../enterprise/godmode/agentes/collections.php:502 +#: ../../enterprise/godmode/agentes/collections.php:503 msgid "The collection directory does not exist. Re-create directory" msgstr "コレクションディレクトリが存在しません。再作成します" #: ../../enterprise/meta/advanced/collections.php:492 -#: ../../enterprise/godmode/agentes/collections.php:460 +#: ../../enterprise/godmode/agentes/collections.php:525 msgid "Re-create directories" msgstr "ディレクトリの再作成" @@ -8398,14 +8806,15 @@ msgstr "キューから操作を削除できません" #: ../../enterprise/godmode/policies/policy_queue.php:605 #: ../../enterprise/godmode/policies/policy_queue.php:649 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3751 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3813 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 -#: ../../enterprise/include/functions_reporting_csv.php:1060 +#: ../../enterprise/include/functions_reporting_csv.php:1064 #: ../../enterprise/include/class/CommandCenter.class.php:451 -#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4518 -#: ../../include/functions_reporting_html.php:2359 -#: ../../include/functions_reporting_html.php:4852 ../../include/functions_menu.php:592 +#: ../../extensions/api_checker.php:240 ../../godmode/extensions.php:148 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4537 +#: ../../include/functions_reporting_html.php:2370 +#: ../../include/functions_reporting_html.php:4872 +#: ../../include/functions_menu.php:592 #: ../../include/class/ExternalTools.class.php:530 msgid "Operation" msgstr "操作" @@ -8441,8 +8850,8 @@ msgstr "未完了" #: ../../enterprise/godmode/setup/setup_skins.php:96 #: ../../enterprise/godmode/setup/setup_acl.php:574 #: ../../enterprise/include/class/SAPView.class.php:409 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2868 -#: ../../enterprise/include/functions_ipam.php:1779 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2870 +#: ../../enterprise/include/functions_ipam.php:1787 #: ../../enterprise/operation/services/services.treeview_services.php:164 #: ../../enterprise/operation/services/services.treeview_services.php:168 #: ../../enterprise/operation/services/services.list.php:454 @@ -8451,17 +8860,17 @@ msgstr "未完了" #: ../../enterprise/operation/services/services.table_services.php:368 #: ../../godmode/modules/manage_network_templates_form.php:277 #: ../../godmode/modules/manage_network_templates_form.php:337 -#: ../../godmode/agentes/module_manager.php:83 +#: ../../godmode/agentes/module_manager.php:74 #: ../../godmode/netflow/nf_item_list.php:174 #: ../../godmode/snmpconsole/snmp_alert.php:1176 #: ../../godmode/snmpconsole/snmp_filters.php:203 #: ../../godmode/snmpconsole/snmp_filters.php:290 #: ../../godmode/reporting/reporting_builder.list_items.php:217 #: ../../godmode/reporting/reporting_builder.list_items.php:261 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1115 -#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3386 -#: ../../include/functions_ui.php:3408 ../../include/functions_ui.php:3420 -#: ../../include/class/ModuleTemplates.class.php:765 ../../operation/tree.php:260 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1123 +#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3390 +#: ../../include/functions_ui.php:3412 ../../include/functions_ui.php:3424 +#: ../../include/class/ModuleTemplates.class.php:766 ../../operation/tree.php:260 #: ../../operation/agentes/graphs.php:265 #: ../../operation/agentes/estado_monitores.php:594 #: ../../operation/netflow/nf_live_view.php:391 @@ -8471,31 +8880,109 @@ msgid "Filter" msgstr "フィルタ" #: ../../enterprise/meta/advanced/policymanager.queue.php:256 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:103 #: ../../enterprise/meta/monitoring/custom_fields_view.php:706 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197 #: ../../enterprise/meta/include/functions_wizard_meta.php:174 #: ../../enterprise/meta/include/functions_wizard_meta.php:1796 -#: ../../enterprise/meta/agentsearch.php:133 ../../enterprise/meta/agentsearch.php:326 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1965 -#: ../../enterprise/include/functions_reporting_csv.php:2779 +#: ../../enterprise/meta/agentsearch.php:134 +#: ../../enterprise/meta/agentsearch.php:334 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1985 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2023 +#: ../../enterprise/include/functions_reporting_csv.php:2783 #: ../../enterprise/include/class/CSVImportAgents.class.php:154 #: ../../enterprise/include/class/SAPView.class.php:226 #: ../../enterprise/include/functions_events.php:216 -#: ../../enterprise/operation/log/log_viewer.php:613 -#: ../../enterprise/operation/inventory/inventory.php:331 -#: ../../godmode/modules/manage_network_components.php:749 +#: ../../enterprise/operation/log/log_viewer.php:614 +#: ../../godmode/modules/manage_network_components.php:752 #: ../../godmode/agentes/agent_manager.php:423 -#: ../../godmode/agentes/module_manager.php:851 +#: ../../godmode/agentes/module_manager.php:887 #: ../../godmode/massive/massive_edit_agents.php:757 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1210 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3630 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1218 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1240 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3649 +#: ../../godmode/events/event_edit_filter.php:753 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1045 -#: ../../include/functions_reporting_html.php:2252 -#: ../../include/class/AgentWizard.class.php:1196 ../../operation/events/events.php:1790 +#: ../../include/functions_reporting_html.php:2261 +#: ../../include/class/AgentWizard.class.php:1279 +#: ../../operation/inventory/inventory.php:334 +#: ../../operation/events/events.php:1914 msgid "Server" msgstr "サーバ" +#: ../../enterprise/meta/advanced/policymanager.queue.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:298 +#: ../../enterprise/meta/monitoring/group_view.php:154 +#: ../../enterprise/meta/monitoring/group_view.php:215 +#: ../../enterprise/meta/include/functions_autoprovision.php:476 +#: ../../enterprise/godmode/agentes/collections.agents.php:53 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100 +#: ../../enterprise/godmode/agentes/collections.data.php:137 +#: ../../enterprise/godmode/agentes/collections.data.php:283 +#: ../../enterprise/godmode/agentes/collections.editor.php:74 +#: ../../enterprise/godmode/policies/policy_queue.php:648 +#: ../../enterprise/godmode/policies/policies.php:411 +#: ../../enterprise/godmode/policies/policies.php:535 +#: ../../enterprise/godmode/policies/policy_agents.php:567 +#: ../../enterprise/godmode/policies/policy_agents.php:700 +#: ../../enterprise/godmode/policies/policy_agents.php:814 +#: ../../enterprise/godmode/policies/policy.php:71 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 +#: ../../enterprise/include/functions_cron.php:215 +#: ../../enterprise/include/functions_tasklist.php:366 +#: ../../enterprise/include/functions_reporting_pdf.php:887 +#: ../../enterprise/include/functions_policies.php:3825 +#: ../../enterprise/operation/services/massive/services.create.php:988 +#: ../../enterprise/operation/services/massive/service.create.elements.php:383 +#: ../../enterprise/operation/services/services.service_map.php:158 +#: ../../extensions/agents_modules.php:431 +#: ../../extensions/agents_modules.php:758 +#: ../../godmode/agentes/planned_downtime.list.php:84 +#: ../../godmode/agentes/planned_downtime.list.php:108 +#: ../../godmode/massive/massive_standby_alerts.php:204 +#: ../../godmode/massive/massive_delete_modules.php:535 +#: ../../godmode/massive/massive_add_alerts.php:231 +#: ../../godmode/massive/massive_edit_plugins.php:367 +#: ../../godmode/massive/massive_enable_disable_alerts.php:175 +#: ../../godmode/massive/massive_delete_alerts.php:315 +#: ../../godmode/massive/massive_edit_modules.php:511 +#: ../../godmode/alerts/alert_list.list.php:79 +#: ../../godmode/reporting/reporting_builder.list_items.php:208 +#: ../../godmode/reporting/reporting_builder.list_items.php:229 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1825 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1851 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2098 +#: ../../godmode/reporting/visual_console_builder.wizard.php:408 +#: ../../mobile/include/functions_web.php:23 +#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81 +#: ../../mobile/operation/agent.php:155 +#: ../../include/functions_reporting_html.php:2005 +#: ../../include/functions_reporting_html.php:2476 +#: ../../include/functions_reporting_html.php:3256 +#: ../../include/functions_cron.php:703 ../../include/functions_html.php:1655 +#: ../../include/functions_html.php:5543 +#: ../../include/functions_massive_operations.php:219 +#: ../../include/class/Diagnostics.class.php:1164 +#: ../../include/class/Diagnostics.class.php:1168 +#: ../../include/class/Diagnostics.class.php:1172 +#: ../../include/class/Diagnostics.class.php:1176 +#: ../../include/class/NetworkMap.class.php:3361 +#: ../../include/class/AgentsAlerts.class.php:252 +#: ../../include/class/AgentsAlerts.class.php:542 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:340 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:345 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:432 +#: ../../include/functions_groups.php:53 ../../operation/heatmap.php:95 +#: ../../operation/search_results.php:81 +#: ../../operation/agentes/interface_view.functions.php:71 +#: ../../operation/agentes/group_view.php:183 +#: ../../operation/agentes/group_view.php:216 +msgid "Agents" +msgstr "エージェント" + #: ../../enterprise/meta/advanced/policymanager.queue.php:260 #: ../../enterprise/godmode/policies/policy_queue.php:650 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702 @@ -8527,7 +9014,7 @@ msgstr "キューから削除" msgid "Empty queue." msgstr "キューが空です" -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:99 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:101 #: ../../enterprise/meta/monitoring/custom_fields_view.php:704 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279 @@ -8535,9 +9022,8 @@ msgstr "キューが空です" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:441 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:709 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:788 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3502 -#: ../../enterprise/meta/agentsearch.php:134 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:299 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3506 +#: ../../enterprise/meta/agentsearch.php:135 #: ../../enterprise/godmode/agentes/collections.agents.php:94 #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 #: ../../enterprise/godmode/policies/policy_linking.php:150 @@ -8545,97 +9031,93 @@ msgstr "キューが空です" #: ../../enterprise/godmode/services/services.elements.php:94 #: ../../enterprise/godmode/services/services.elements.php:132 #: ../../enterprise/godmode/services/services.elements.php:276 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:316 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1396 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2034 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3512 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3723 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3741 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1411 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2085 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3574 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3785 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3803 #: ../../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:393 -#: ../../enterprise/include/functions_inventory.php:880 -#: ../../enterprise/include/functions_inventory.php:936 #: ../../enterprise/include/functions_reporting_pdf.php:528 #: ../../enterprise/include/functions_reporting_pdf.php:536 #: ../../enterprise/include/functions_reporting_pdf.php:544 #: ../../enterprise/include/functions_reporting_pdf.php:560 -#: ../../enterprise/include/functions_reporting_pdf.php:718 -#: ../../enterprise/include/functions_reporting_csv.php:494 -#: ../../enterprise/include/functions_reporting_csv.php:822 -#: ../../enterprise/include/functions_reporting_csv.php:848 -#: ../../enterprise/include/functions_reporting_csv.php:961 -#: ../../enterprise/include/functions_reporting_csv.php:1000 -#: ../../enterprise/include/functions_reporting_csv.php:1060 -#: ../../enterprise/include/functions_reporting_csv.php:1076 -#: ../../enterprise/include/functions_reporting_csv.php:1100 -#: ../../enterprise/include/functions_reporting_csv.php:1230 -#: ../../enterprise/include/functions_reporting_csv.php:1261 -#: ../../enterprise/include/functions_reporting_csv.php:1316 -#: ../../enterprise/include/functions_reporting_csv.php:1371 -#: ../../enterprise/include/functions_reporting_csv.php:1420 -#: ../../enterprise/include/functions_reporting_csv.php:1475 -#: ../../enterprise/include/functions_reporting_csv.php:1504 -#: ../../enterprise/include/functions_reporting_csv.php:1548 -#: ../../enterprise/include/functions_reporting_csv.php:1594 -#: ../../enterprise/include/functions_reporting_csv.php:1667 -#: ../../enterprise/include/functions_reporting_csv.php:1786 -#: ../../enterprise/include/functions_reporting_csv.php:2021 -#: ../../enterprise/include/functions_reporting_csv.php:2094 -#: ../../enterprise/include/functions_reporting_csv.php:2327 -#: ../../enterprise/include/functions_reporting_csv.php:2363 -#: ../../enterprise/include/functions_reporting_csv.php:2394 -#: ../../enterprise/include/functions_reporting_csv.php:2511 -#: ../../enterprise/include/functions_reporting_csv.php:2564 -#: ../../enterprise/include/functions_reporting_csv.php:2782 +#: ../../enterprise/include/functions_reporting_pdf.php:720 +#: ../../enterprise/include/functions_reporting_csv.php:497 +#: ../../enterprise/include/functions_reporting_csv.php:826 +#: ../../enterprise/include/functions_reporting_csv.php:852 +#: ../../enterprise/include/functions_reporting_csv.php:965 +#: ../../enterprise/include/functions_reporting_csv.php:1004 +#: ../../enterprise/include/functions_reporting_csv.php:1064 +#: ../../enterprise/include/functions_reporting_csv.php:1080 +#: ../../enterprise/include/functions_reporting_csv.php:1104 +#: ../../enterprise/include/functions_reporting_csv.php:1234 +#: ../../enterprise/include/functions_reporting_csv.php:1265 +#: ../../enterprise/include/functions_reporting_csv.php:1320 +#: ../../enterprise/include/functions_reporting_csv.php:1375 +#: ../../enterprise/include/functions_reporting_csv.php:1424 +#: ../../enterprise/include/functions_reporting_csv.php:1479 +#: ../../enterprise/include/functions_reporting_csv.php:1508 +#: ../../enterprise/include/functions_reporting_csv.php:1552 +#: ../../enterprise/include/functions_reporting_csv.php:1598 +#: ../../enterprise/include/functions_reporting_csv.php:1671 +#: ../../enterprise/include/functions_reporting_csv.php:1790 +#: ../../enterprise/include/functions_reporting_csv.php:2025 +#: ../../enterprise/include/functions_reporting_csv.php:2098 +#: ../../enterprise/include/functions_reporting_csv.php:2331 +#: ../../enterprise/include/functions_reporting_csv.php:2367 +#: ../../enterprise/include/functions_reporting_csv.php:2398 +#: ../../enterprise/include/functions_reporting_csv.php:2515 +#: ../../enterprise/include/functions_reporting_csv.php:2568 +#: ../../enterprise/include/functions_reporting_csv.php:2786 #: ../../enterprise/include/class/LogSource.class.php:627 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:923 -#: ../../enterprise/include/functions_reporting.php:1853 -#: ../../enterprise/include/functions_reporting.php:2186 -#: ../../enterprise/include/functions_reporting.php:2217 -#: ../../enterprise/include/functions_reporting.php:2235 -#: ../../enterprise/include/functions_reporting.php:2892 -#: ../../enterprise/include/functions_reporting.php:3879 -#: ../../enterprise/include/functions_reporting.php:4903 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925 +#: ../../enterprise/include/functions_reporting.php:1854 +#: ../../enterprise/include/functions_reporting.php:2187 +#: ../../enterprise/include/functions_reporting.php:2218 +#: ../../enterprise/include/functions_reporting.php:2236 +#: ../../enterprise/include/functions_reporting.php:2893 +#: ../../enterprise/include/functions_reporting.php:3880 +#: ../../enterprise/include/functions_reporting.php:4904 #: ../../enterprise/include/functions_services.php:1666 #: ../../enterprise/include/functions_events.php:80 #: ../../enterprise/operation/agentes/tag_view.php:599 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:365 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:491 -#: ../../enterprise/operation/log/log_viewer.php:632 -#: ../../enterprise/operation/inventory/inventory.php:401 +#: ../../enterprise/operation/log/log_viewer.php:633 #: ../../enterprise/tools/ipam/ipam_network.php:398 -#: ../../enterprise/tools/ipam/ipam_ajax.php:379 ../../extensions/insert_data.php:158 +#: ../../enterprise/tools/ipam/ipam_ajax.php:379 +#: ../../extensions/insert_data.php:158 +#: ../../godmode/modules/manage_inventory_modules.php:305 #: ../../godmode/agentes/status_monitor_custom_fields.php:77 #: ../../godmode/agentes/status_monitor_custom_fields.php:143 #: ../../godmode/agentes/module_manager_editor_prediction.php:126 -#: ../../godmode/agentes/planned_downtime.list.php:354 -#: ../../godmode/agentes/module_manager_editor_common.php:1250 -#: ../../godmode/agentes/module_manager_editor_common.php:1303 +#: ../../godmode/agentes/planned_downtime.list.php:391 +#: ../../godmode/agentes/module_manager_editor_common.php:1264 +#: ../../godmode/agentes/module_manager_editor_common.php:1317 #: ../../godmode/gis_maps/configure_gis_map.php:581 #: ../../godmode/massive/massive_copy_modules.php:131 #: ../../godmode/massive/massive_copy_modules.php:295 -#: ../../godmode/massive/massive_standby_alerts.php:223 -#: ../../godmode/massive/massive_standby_alerts.php:258 -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../godmode/massive/massive_standby_alerts.php:224 +#: ../../godmode/massive/massive_standby_alerts.php:259 +#: ../../godmode/massive/massive_enable_disable_alerts.php:196 +#: ../../godmode/massive/massive_enable_disable_alerts.php:231 #: ../../godmode/alerts/alert_list.list.php:491 -#: ../../godmode/alerts/alert_list.list.php:741 ../../godmode/alerts/alert_view.php:87 +#: ../../godmode/alerts/alert_list.list.php:741 +#: ../../godmode/alerts/alert_view.php:87 #: ../../godmode/alerts/alert_list.builder.php:56 #: ../../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:208 -#: ../../godmode/reporting/reporting_builder.item_editor.php:880 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1163 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1668 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3969 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4487 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4511 +#: ../../godmode/reporting/reporting_builder.item_editor.php:210 +#: ../../godmode/reporting/reporting_builder.item_editor.php:888 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1171 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1707 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3988 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4506 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4530 #: ../../godmode/reporting/visual_console_builder.elements.php:104 #: ../../godmode/reporting/visual_console_builder.wizard.php:450 #: ../../godmode/reporting/visual_console_builder.wizard.php:738 @@ -8646,51 +9128,58 @@ msgstr "キューが空です" #: ../../mobile/operation/events.php:841 #: ../../include/functions_visual_map_editor.php:422 #: ../../include/functions_visual_map_editor.php:455 -#: ../../include/functions_reporting_html.php:546 -#: ../../include/functions_reporting_html.php:942 +#: ../../include/functions_reporting_html.php:547 +#: ../../include/functions_reporting_html.php:943 #: ../../include/functions_reporting_html.php:1054 #: ../../include/functions_reporting_html.php:1062 #: ../../include/functions_reporting_html.php:1927 -#: ../../include/functions_reporting_html.php:2255 -#: ../../include/functions_reporting_html.php:2357 -#: ../../include/functions_reporting_html.php:3206 -#: ../../include/functions_reporting_html.php:3340 -#: ../../include/functions_reporting_html.php:3643 -#: ../../include/functions_reporting_html.php:3723 -#: ../../include/functions_reporting_html.php:3731 +#: ../../include/functions_reporting_html.php:2264 +#: ../../include/functions_reporting_html.php:2368 +#: ../../include/functions_reporting_html.php:3219 +#: ../../include/functions_reporting_html.php:3353 +#: ../../include/functions_reporting_html.php:3660 #: ../../include/functions_reporting_html.php:3740 -#: ../../include/functions_reporting_html.php:3752 -#: ../../include/functions_reporting_html.php:3908 -#: ../../include/functions_reporting_html.php:4031 -#: ../../include/functions_reporting_html.php:4125 -#: ../../include/functions_reporting_html.php:4849 -#: ../../include/functions_reporting_html.php:4897 -#: ../../include/functions_reporting_html.php:4936 -#: ../../include/functions_reporting_html.php:5245 -#: ../../include/functions_reporting_html.php:5285 -#: ../../include/functions_reporting_html.php:5535 -#: ../../include/ajax/heatmap.ajax.php:238 ../../include/ajax/heatmap.ajax.php:277 -#: ../../include/ajax/heatmap.ajax.php:312 ../../include/ajax/alert_list.ajax.php:459 -#: ../../include/functions_graph.php:5284 ../../include/functions_gis.php:229 +#: ../../include/functions_reporting_html.php:3748 +#: ../../include/functions_reporting_html.php:3757 +#: ../../include/functions_reporting_html.php:3769 +#: ../../include/functions_reporting_html.php:3927 +#: ../../include/functions_reporting_html.php:4050 +#: ../../include/functions_reporting_html.php:4144 +#: ../../include/functions_reporting_html.php:4869 +#: ../../include/functions_reporting_html.php:4917 +#: ../../include/functions_reporting_html.php:4956 +#: ../../include/functions_reporting_html.php:5284 +#: ../../include/functions_reporting_html.php:5324 +#: ../../include/functions_reporting_html.php:5574 +#: ../../include/ajax/heatmap.ajax.php:244 +#: ../../include/ajax/heatmap.ajax.php:283 +#: ../../include/ajax/heatmap.ajax.php:318 +#: ../../include/ajax/alert_list.ajax.php:459 +#: ../../include/functions_inventory.php:393 +#: ../../include/functions_inventory.php:880 +#: ../../include/functions_inventory.php:936 +#: ../../include/functions_graph.php:5076 ../../include/functions_gis.php:229 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:371 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 #: ../../include/functions_reports.php:1320 -#: ../../include/class/NetworkMap.class.php:2835 -#: ../../include/class/NetworkMap.class.php:2884 -#: ../../include/class/NetworkMap.class.php:3162 +#: ../../include/class/NetworkMap.class.php:2968 +#: ../../include/class/NetworkMap.class.php:3017 +#: ../../include/class/NetworkMap.class.php:3295 #: ../../include/class/AgentsAlerts.class.php:410 #: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/functions_reporting.php:6993 +#: ../../include/functions_reporting.php:7228 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:337 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:463 #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 #: ../../include/lib/Dashboard/Widgets/module_icon.php:355 #: ../../include/lib/Dashboard/Widgets/module_value.php:330 @@ -8701,23 +9190,26 @@ msgstr "キューが空です" #: ../../include/lib/Dashboard/Widgets/module_status.php:346 #: ../../include/lib/Dashboard/Widgets/single_graph.php:301 #: ../../include/lib/Dashboard/Widgets/top_n.php:206 -#: ../../include/functions_snmp_browser.php:1633 ../../operation/search_agents.php:42 -#: ../../operation/search_agents.php:48 ../../operation/agentes/exportdata.csv.php:74 +#: ../../include/functions_snmp_browser.php:1633 +#: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 +#: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/estado_agente.php:739 #: ../../operation/agentes/interface_view.functions.php:480 #: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/status_monitor.php:1307 +#: ../../operation/agentes/status_monitor.php:1320 #: ../../operation/agentes/estado_monitores.php:123 -#: ../../operation/agentes/ver_agente.php:1169 -#: ../../operation/agentes/exportdata.excel.php:74 ../../operation/gis_maps/ajax.php:236 -#: ../../operation/gis_maps/ajax.php:269 ../../operation/search_alerts.php:34 -#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2457 +#: ../../operation/agentes/ver_agente.php:1187 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 +#: ../../operation/search_alerts.php:34 +#: ../../operation/inventory/inventory.php:404 +#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2611 msgid "Agent" msgstr "エージェント" -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:100 -#: ../../enterprise/godmode/servers/HA_cluster.php:161 -#: ../../enterprise/include/functions_reporting_csv.php:1979 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102 +#: ../../enterprise/godmode/servers/HA_cluster.php:166 +#: ../../enterprise/include/functions_reporting_csv.php:1983 #: ../../enterprise/include/class/Azure.cloud.php:803 #: ../../enterprise/include/class/VMware.app.php:621 #: ../../enterprise/include/class/DeploymentCenter.class.php:755 @@ -8726,27 +9218,28 @@ msgstr "エージェント" #: ../../enterprise/include/class/DeploymentCenter.class.php:1397 #: ../../enterprise/include/class/Aws.S3.php:564 #: ../../enterprise/include/class/Aws.cloud.php:546 -#: ../../enterprise/include/functions_reporting.php:2316 -#: ../../enterprise/include/functions_ipam.php:1646 -#: ../../enterprise/include/functions_ipam.php:1647 ../../extensions/api_checker.php:123 -#: ../../extensions/users_connected.php:144 +#: ../../enterprise/include/functions_reporting.php:2317 +#: ../../enterprise/include/functions_ipam.php:1654 +#: ../../enterprise/include/functions_ipam.php:1655 +#: ../../extensions/api_checker.php:202 ../../extensions/users_connected.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:70 #: ../../godmode/reporting/visual_console_builder.elements.php:790 #: ../../include/functions_visual_map_editor.php:1460 -#: ../../include/functions_reporting_html.php:3223 -#: ../../include/functions_reporting_html.php:3549 -#: ../../include/ajax/heatmap.ajax.php:319 ../../include/class/AuditLog.class.php:194 +#: ../../include/functions_reporting_html.php:3236 +#: ../../include/functions_reporting_html.php:3566 +#: ../../include/ajax/heatmap.ajax.php:325 +#: ../../include/class/AuditLog.class.php:193 #: ../../operation/network/network_report.php:184 msgid "IP" msgstr "IP アドレス" -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:102 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:104 #: ../../godmode/massive/massive_edit_modules.php:468 msgid "Agent Status" msgstr "エージェントの状態" -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:117 -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:140 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:119 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:142 #: ../../enterprise/meta/monitoring/custom_fields_view.php:179 #: ../../enterprise/meta/monitoring/group_view.php:238 #: ../../enterprise/meta/monitoring/group_view.php:244 @@ -8756,37 +9249,40 @@ msgstr "エージェントの状態" #: ../../enterprise/include/functions_services.php:1428 #: ../../enterprise/operation/agentes/tag_view.php:131 #: ../../enterprise/operation/services/services.treeview_services.php:295 -#: ../../godmode/groups/group_list.php:1074 ../../godmode/netflow/nf_edit_form.php:236 +#: ../../godmode/groups/group_list.php:1079 +#: ../../godmode/netflow/nf_edit_form.php:236 #: ../../godmode/massive/massive_copy_modules.php:115 #: ../../godmode/massive/massive_copy_modules.php:275 #: ../../godmode/massive/massive_delete_modules.php:418 #: ../../godmode/massive/massive_delete_modules.php:439 #: ../../godmode/massive/massive_edit_modules.php:385 #: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3765 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3784 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 -#: ../../include/functions_reporting_html.php:2472 ../../include/functions.php:1031 -#: ../../include/functions.php:1271 ../../include/functions.php:1278 -#: ../../include/functions.php:1311 ../../include/functions_graph.php:3483 -#: ../../include/functions_graph.php:3484 ../../include/functions_graph.php:5064 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:430 +#: ../../include/functions_reporting_html.php:2483 +#: ../../include/functions.php:1077 ../../include/functions.php:1317 +#: ../../include/functions.php:1324 ../../include/functions.php:1357 +#: ../../include/functions_graph.php:3330 ../../include/functions_graph.php:3332 +#: ../../include/functions_graph.php:4856 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:432 #: ../../include/functions_massive_operations.php:148 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 #: ../../include/lib/Dashboard/Widgets/tree_view.php:385 #: ../../include/lib/Dashboard/Widgets/tree_view.php:418 #: ../../include/lib/Dashboard/Widgets/tree_view.php:683 -#: ../../include/functions_events.php:3014 ../../operation/tree.php:212 +#: ../../include/functions_events.php:3077 ../../operation/tree.php:212 #: ../../operation/tree.php:269 ../../operation/tree.php:486 #: ../../operation/agentes/estado_agente.php:268 #: ../../operation/agentes/status_monitor.php:492 -#: ../../operation/agentes/group_view.php:226 ../../operation/agentes/group_view.php:231 +#: ../../operation/agentes/group_view.php:226 +#: ../../operation/agentes/group_view.php:231 #: ../../operation/agentes/estado_monitores.php:523 -#: ../../operation/agentes/tactical.php:180 ../../operation/netflow/nf_live_view.php:392 -#: ../../general/logon_ok.php:144 +#: ../../operation/agentes/tactical.php:181 +#: ../../operation/netflow/nf_live_view.php:392 ../../general/logon_ok.php:144 msgid "Normal" msgstr "正常" -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:122 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:124 #: ../../enterprise/meta/monitoring/custom_fields_view.php:181 #: ../../enterprise/meta/monitoring/group_view.php:240 #: ../../enterprise/meta/monitoring/group_view.php:246 @@ -8802,10 +9298,10 @@ msgstr "正常" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121 #: ../../enterprise/godmode/services/services.service.php:726 #: ../../enterprise/godmode/services/services.elements.php:365 -#: ../../enterprise/include/functions_reporting.php:3191 -#: ../../enterprise/include/functions_reporting.php:4192 -#: ../../enterprise/include/functions_reporting.php:4843 -#: ../../enterprise/include/functions_reporting.php:6193 +#: ../../enterprise/include/functions_reporting.php:3192 +#: ../../enterprise/include/functions_reporting.php:4193 +#: ../../enterprise/include/functions_reporting.php:4844 +#: ../../enterprise/include/functions_reporting.php:6194 #: ../../enterprise/include/functions_services.php:1440 #: ../../enterprise/operation/agentes/tag_view.php:133 #: ../../enterprise/operation/services/services.service.php:122 @@ -8818,43 +9314,45 @@ msgstr "正常" #: ../../enterprise/operation/services/services.list.php:558 #: ../../enterprise/operation/services/services.table_services.php:161 #: ../../extensions/module_groups.php:50 -#: ../../godmode/modules/manage_network_components_form_wizard.php:412 -#: ../../godmode/groups/group_list.php:1054 +#: ../../godmode/modules/manage_network_components_form_wizard.php:418 +#: ../../godmode/groups/group_list.php:1059 #: ../../godmode/massive/massive_copy_modules.php:117 #: ../../godmode/massive/massive_copy_modules.php:277 #: ../../godmode/massive/massive_delete_modules.php:420 #: ../../godmode/massive/massive_delete_modules.php:441 #: ../../godmode/massive/massive_edit_modules.php:387 #: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3767 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3786 #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 -#: ../../include/functions_reporting_html.php:863 -#: ../../include/functions_reporting_html.php:2473 -#: ../../include/functions_reporting_html.php:4765 ../../include/functions.php:1039 -#: ../../include/functions.php:1275 ../../include/functions.php:1276 -#: ../../include/functions.php:1278 ../../include/functions.php:1319 -#: ../../include/functions_graph.php:3503 ../../include/functions_graph.php:3504 -#: ../../include/functions_graph.php:5072 ../../include/functions_ui.php:2610 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:416 +#: ../../include/functions_reporting_html.php:864 +#: ../../include/functions_reporting_html.php:2484 +#: ../../include/functions_reporting_html.php:4785 +#: ../../include/functions.php:1085 ../../include/functions.php:1321 +#: ../../include/functions.php:1322 ../../include/functions.php:1324 +#: ../../include/functions.php:1365 ../../include/functions_graph.php:3354 +#: ../../include/functions_graph.php:3356 ../../include/functions_graph.php:4864 +#: ../../include/functions_ui.php:2614 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:418 #: ../../include/functions_massive_operations.php:150 -#: ../../include/class/AgentWizard.class.php:1318 -#: ../../include/class/AgentWizard.class.php:4035 +#: ../../include/class/AgentWizard.class.php:1401 +#: ../../include/class/AgentWizard.class.php:4158 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:317 #: ../../include/lib/Dashboard/Widgets/tree_view.php:387 #: ../../include/lib/Dashboard/Widgets/tree_view.php:420 #: ../../include/lib/Dashboard/Widgets/tree_view.php:663 -#: ../../include/functions_events.php:3022 ../../operation/tree.php:214 +#: ../../include/functions_events.php:3085 ../../operation/tree.php:214 #: ../../operation/tree.php:271 ../../operation/tree.php:466 #: ../../operation/agentes/estado_agente.php:270 #: ../../operation/agentes/status_monitor.php:494 -#: ../../operation/agentes/group_view.php:228 ../../operation/agentes/group_view.php:233 +#: ../../operation/agentes/group_view.php:228 +#: ../../operation/agentes/group_view.php:233 #: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/tactical.php:178 ../../operation/gis_maps/render_view.php:164 -#: ../../general/logon_ok.php:142 +#: ../../operation/agentes/tactical.php:179 +#: ../../operation/gis_maps/render_view.php:164 ../../general/logon_ok.php:142 msgid "Critical" msgstr "障害" -#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:138 msgid "No init" msgstr "未初期化" @@ -8872,8 +9370,9 @@ msgstr "カスタムフィールド表示" #: ../../extensions/agents_modules.php:407 #: ../../godmode/agentes/modificar_agente.php:322 #: ../../godmode/agentes/planned_downtime.editor.php:1101 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1600 -#: ../../include/functions_html.php:1545 ../../include/class/NetworkMap.class.php:3226 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1639 +#: ../../include/functions_html.php:1545 +#: ../../include/class/NetworkMap.class.php:3359 #: ../../operation/agentes/estado_agente.php:262 #: ../../operation/agentes/interface_view.functions.php:59 #: ../../operation/agentes/status_monitor.php:488 @@ -8889,12 +9388,15 @@ msgstr "子を含める" #: ../../godmode/massive/massive_delete_modules.php:443 #: ../../godmode/massive/massive_edit_modules.php:389 #: ../../godmode/massive/massive_edit_modules.php:475 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3769 -#: ../../godmode/events/event_edit_filter.php:320 ../../mobile/operation/modules.php:73 -#: ../../include/functions.php:1277 ../../include/functions_massive_operations.php:152 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3788 +#: ../../godmode/events/event_edit_filter.php:342 +#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1323 +#: ../../include/functions_massive_operations.php:152 #: ../../include/lib/Dashboard/Widgets/events_list.php:319 -#: ../../include/functions_events.php:2970 ../../operation/agentes/estado_agente.php:272 -#: ../../operation/agentes/status_monitor.php:496 ../../operation/events/events.php:1585 +#: ../../include/functions_events.php:3033 +#: ../../operation/agentes/estado_agente.php:272 +#: ../../operation/agentes/status_monitor.php:496 +#: ../../operation/events/events.php:1664 msgid "Not normal" msgstr "正常ではない" @@ -8903,29 +9405,30 @@ msgstr "正常ではない" #: ../../enterprise/meta/monitoring/group_view.php:243 #: ../../enterprise/meta/monitoring/tactical.php:226 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 -#: ../../enterprise/operation/agentes/transactional_map.php:345 #: ../../enterprise/operation/agentes/tag_view.php:137 #: ../../enterprise/operation/services/services.treeview_services.php:290 -#: ../../godmode/groups/group_list.php:1069 +#: ../../godmode/groups/group_list.php:1074 #: ../../godmode/massive/massive_copy_modules.php:120 #: ../../godmode/massive/massive_copy_modules.php:280 #: ../../godmode/massive/massive_delete_modules.php:423 #: ../../godmode/massive/massive_delete_modules.php:444 #: ../../godmode/massive/massive_edit_modules.php:390 #: ../../godmode/massive/massive_edit_modules.php:476 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3770 -#: ../../mobile/operation/modules.php:75 ../../include/functions_reporting_html.php:656 -#: ../../include/functions_reporting_html.php:2476 -#: ../../include/functions_reporting_html.php:4573 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3789 +#: ../../mobile/operation/modules.php:75 +#: ../../include/functions_reporting_html.php:657 +#: ../../include/functions_reporting_html.php:2487 +#: ../../include/functions_reporting_html.php:4593 #: ../../include/functions_massive_operations.php:153 #: ../../include/lib/Dashboard/Widgets/tree_view.php:389 #: ../../include/lib/Dashboard/Widgets/tree_view.php:422 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:678 ../../operation/tree.php:216 -#: ../../operation/tree.php:273 ../../operation/tree.php:481 -#: ../../operation/agentes/estado_agente.php:273 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:678 +#: ../../operation/tree.php:216 ../../operation/tree.php:273 +#: ../../operation/tree.php:481 ../../operation/agentes/estado_agente.php:273 #: ../../operation/agentes/status_monitor.php:498 -#: ../../operation/agentes/group_view.php:225 ../../operation/agentes/group_view.php:230 -#: ../../operation/agentes/tactical.php:182 ../../general/logon_ok.php:146 +#: ../../operation/agentes/group_view.php:225 +#: ../../operation/agentes/group_view.php:230 +#: ../../operation/agentes/tactical.php:183 ../../general/logon_ok.php:146 msgid "Not init" msgstr "未初期化" @@ -8940,16 +9443,17 @@ msgstr "モジュール状態" #: ../../enterprise/meta/monitoring/custom_fields_view.php:222 #: ../../enterprise/meta/monitoring/custom_fields_view.php:228 #: ../../enterprise/meta/monitoring/custom_fields_view.php:229 -#: ../../include/ajax/events.php:829 ../../operation/events/events.php:1710 +#: ../../include/ajax/events.php:848 ../../operation/events/events.php:1834 msgid "Save filter" msgstr "フィルタの保存" #: ../../enterprise/meta/monitoring/custom_fields_view.php:236 #: ../../enterprise/meta/monitoring/custom_fields_view.php:242 #: ../../enterprise/meta/monitoring/custom_fields_view.php:243 -#: ../../include/ajax/custom_fields.php:587 ../../include/ajax/events.php:571 -#: ../../include/ajax/events.php:587 ../../operation/netflow/nf_live_view.php:397 -#: ../../operation/events/sound_events.php:184 ../../operation/events/events.php:1702 +#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584 +#: ../../include/ajax/events.php:600 ../../operation/netflow/nf_live_view.php:397 +#: ../../operation/events/sound_events.php:184 +#: ../../operation/events/events.php:1826 msgid "Load filter" msgstr "フィルタ読み込み" @@ -8963,19 +9467,21 @@ msgid "Custom Fields Data" msgstr "カスタムフィールドデータ" #: ../../enterprise/meta/monitoring/custom_fields_view.php:293 -#: ../../godmode/events/event_edit_filter.php:619 ../../operation/events/events.php:1801 +#: ../../godmode/events/event_edit_filter.php:670 +#: ../../operation/events/events.php:1930 msgid "Module search" msgstr "モジュール検索" #: ../../enterprise/meta/monitoring/custom_fields_view.php:304 #: ../../enterprise/extensions/vmware/vmware_view.php:1513 #: ../../enterprise/include/class/DeploymentCenter.class.php:1533 -#: ../../enterprise/include/class/AgentRepository.class.php:814 -#: ../../enterprise/include/class/Omnishell.class.php:1124 +#: ../../enterprise/include/class/AgentRepository.class.php:840 +#: ../../enterprise/include/class/Omnishell.class.php:1126 #: ../../enterprise/include/class/LogSource.class.php:766 #: ../../enterprise/operation/agentes/tag_view.php:175 -#: ../../godmode/users/user_list.php:693 ../../include/class/ConfigPEN.class.php:252 -#: ../../include/class/CredentialStore.class.php:1098 ../../operation/heatmap.php:291 +#: ../../include/class/ConfigPEN.class.php:252 +#: ../../include/class/CredentialStore.class.php:1286 +#: ../../operation/heatmap.php:295 #: ../../operation/agentes/interface_view.functions.php:120 #: ../../operation/agentes/interface_view.functions.php:158 #: ../../operation/agentes/status_monitor.php:861 @@ -8985,12 +9491,12 @@ msgstr "表示" #: ../../enterprise/meta/monitoring/custom_fields_view.php:319 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:597 #: ../../enterprise/include/functions_ipam.php:339 -#: ../../enterprise/operation/log/log_viewer.php:805 +#: ../../enterprise/operation/log/log_viewer.php:806 #: ../../enterprise/operation/reporting/custom_reporting.php:80 -#: ../../godmode/modules/manage_network_templates.php:288 -#: ../../godmode/agentes/planned_downtime.list.php:870 -#: ../../include/graphs/functions_flot.php:377 -#: ../../include/class/ModuleTemplates.class.php:934 +#: ../../godmode/modules/manage_network_templates.php:290 +#: ../../godmode/agentes/planned_downtime.list.php:907 +#: ../../include/graphs/functions_flot.php:382 +#: ../../include/class/ModuleTemplates.class.php:935 #: ../../operation/network/network_report.php:140 #: ../../operation/incidents/list_integriaims_incidents.php:428 msgid "Export to CSV" @@ -9000,149 +9506,163 @@ msgstr "CSVにエクスポート" #: ../../enterprise/meta/monitoring/custom_fields_view.php:349 #: ../../enterprise/include/class/DatabaseHA.class.php:217 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 -#: ../../include/functions_ui.php:3432 +#: ../../include/functions_ui.php:3436 msgid "Processing" msgstr "処理中" #: ../../enterprise/meta/monitoring/custom_fields_view.php:374 -#: ../../mobile/operation/groups.php:153 ../../include/functions_reporting_html.php:5717 -#: ../../include/functions_agents.php:3860 +#: ../../mobile/operation/groups.php:153 +#: ../../include/functions_reporting_html.php:5756 +#: ../../include/functions_agents.php:3881 msgid "Agents critical" msgstr "障害状態エージェント" #: ../../enterprise/meta/monitoring/custom_fields_view.php:387 -#: ../../include/functions_reporting_html.php:5720 -#: ../../include/functions_agents.php:3870 +#: ../../include/functions_reporting_html.php:5759 +#: ../../include/functions_agents.php:3891 msgid "Agents warning" msgstr "警告状態エージェント" #: ../../enterprise/meta/monitoring/custom_fields_view.php:400 -#: ../../include/functions_reporting_html.php:5726 -#: ../../include/functions_agents.php:3850 ../../include/functions_agents.php:3904 +#: ../../include/functions_reporting_html.php:5765 +#: ../../include/functions_agents.php:3871 +#: ../../include/functions_agents.php:3925 msgid "Agents ok" msgstr "正常状態エージェント" #: ../../enterprise/meta/monitoring/custom_fields_view.php:413 -#: ../../mobile/operation/groups.php:156 ../../include/functions_reporting_html.php:5729 -#: ../../include/functions_agents.php:3880 +#: ../../mobile/operation/groups.php:156 +#: ../../include/functions_reporting_html.php:5768 +#: ../../include/functions_agents.php:3901 msgid "Agents unknown" msgstr "不明なエージェント" #: ../../enterprise/meta/monitoring/custom_fields_view.php:426 -#: ../../mobile/operation/groups.php:150 ../../include/functions_reporting_html.php:5735 -#: ../../include/functions_agents.php:3894 +#: ../../mobile/operation/groups.php:150 +#: ../../include/functions_reporting_html.php:5774 +#: ../../include/functions_agents.php:3915 msgid "Agents not init" msgstr "未初期化エージェント" #: ../../enterprise/meta/monitoring/custom_fields_view.php:452 -#: ../../include/functions_reporting.php:11722 +#: ../../include/functions_reporting.php:12037 msgid "Monitor critical" msgstr "障害状態" #: ../../enterprise/meta/monitoring/custom_fields_view.php:463 -#: ../../include/functions_reporting.php:11726 +#: ../../include/functions_reporting.php:12041 msgid "Monitor warning" msgstr "警告状態" #: ../../enterprise/meta/monitoring/custom_fields_view.php:474 -#: ../../include/functions_reporting.php:11733 +#: ../../include/functions_reporting.php:12048 msgid "Monitor normal" msgstr "正常状態" #: ../../enterprise/meta/monitoring/custom_fields_view.php:485 -#: ../../include/functions_reporting.php:11737 +#: ../../include/functions_reporting.php:12052 msgid "Monitor unknown" msgstr "不明状態" #: ../../enterprise/meta/monitoring/custom_fields_view.php:496 -#: ../../include/functions_reporting.php:11744 +#: ../../include/functions_reporting.php:12059 msgid "Monitor not init" msgstr "未初期化状態" #: ../../enterprise/meta/monitoring/custom_fields_view.php:511 -#: ../../include/functions_reporting_html.php:5744 -#: ../../include/functions_reporting_html.php:5749 +#: ../../include/functions_reporting_html.php:5783 +#: ../../include/functions_reporting_html.php:5788 msgid "Agents by status" msgstr "状態ごとのエージェント" #: ../../enterprise/meta/monitoring/custom_fields_view.php:519 -#: ../../include/functions_reporting.php:11764 -#: ../../include/functions_reporting.php:11770 +#: ../../include/functions_reporting.php:12079 +#: ../../include/functions_reporting.php:12085 msgid "Monitors by status" msgstr "状態ごとの監視項目" #: ../../enterprise/meta/monitoring/custom_fields_view.php:533 #: ../../enterprise/operation/services/services.treeview_services.php:273 -#: ../../godmode/groups/group_list.php:1052 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:661 ../../operation/tree.php:464 +#: ../../godmode/groups/group_list.php:1057 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:661 +#: ../../operation/tree.php:464 msgid "Critical agents" msgstr "障害エージェント数" #: ../../enterprise/meta/monitoring/custom_fields_view.php:543 #: ../../enterprise/operation/services/services.treeview_services.php:278 -#: ../../godmode/groups/group_list.php:1057 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:666 ../../operation/tree.php:469 +#: ../../godmode/groups/group_list.php:1062 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:666 +#: ../../operation/tree.php:469 msgid "Warning agents" msgstr "警告エージェント数" #: ../../enterprise/meta/monitoring/custom_fields_view.php:553 #: ../../enterprise/operation/services/services.treeview_services.php:293 -#: ../../godmode/groups/group_list.php:1072 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:681 ../../operation/tree.php:484 +#: ../../godmode/groups/group_list.php:1077 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:681 +#: ../../operation/tree.php:484 msgid "Normal agents" msgstr "正常エージェント数" #: ../../enterprise/meta/monitoring/custom_fields_view.php:563 #: ../../enterprise/operation/services/services.treeview_services.php:283 -#: ../../godmode/groups/group_list.php:1062 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:671 ../../operation/tree.php:474 +#: ../../godmode/groups/group_list.php:1067 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:671 +#: ../../operation/tree.php:474 msgid "Unknown agents" msgstr "不明エージェント数" #: ../../enterprise/meta/monitoring/custom_fields_view.php:573 #: ../../enterprise/operation/services/services.treeview_services.php:288 -#: ../../godmode/groups/group_list.php:1067 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:676 ../../operation/tree.php:479 +#: ../../godmode/groups/group_list.php:1072 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:676 +#: ../../operation/tree.php:479 msgid "Not init agents" msgstr "未初期化エージェント数" #: ../../enterprise/meta/monitoring/custom_fields_view.php:602 -#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:274 -#: ../../godmode/groups/group_list.php:1053 ../../mobile/operation/groups.php:171 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 ../../operation/tree.php:465 +#: ../../godmode/groups/group_list.php:1058 ../../mobile/operation/groups.php:171 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 +#: ../../operation/tree.php:465 msgid "Critical modules" msgstr "障害モジュール" #: ../../enterprise/meta/monitoring/custom_fields_view.php:613 -#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:279 -#: ../../godmode/groups/group_list.php:1058 ../../mobile/operation/groups.php:168 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:667 ../../operation/tree.php:470 +#: ../../godmode/groups/group_list.php:1063 ../../mobile/operation/groups.php:168 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:667 +#: ../../operation/tree.php:470 msgid "Warning modules" msgstr "警告モジュール" #: ../../enterprise/meta/monitoring/custom_fields_view.php:624 -#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:294 -#: ../../godmode/groups/group_list.php:1073 ../../mobile/operation/groups.php:165 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:682 ../../operation/tree.php:485 +#: ../../godmode/groups/group_list.php:1078 ../../mobile/operation/groups.php:165 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:682 +#: ../../operation/tree.php:485 msgid "Normal modules" msgstr "正常モジュール" #: ../../enterprise/meta/monitoring/custom_fields_view.php:635 -#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:284 -#: ../../godmode/groups/group_list.php:1063 ../../mobile/operation/groups.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:672 ../../operation/tree.php:475 +#: ../../godmode/groups/group_list.php:1068 ../../mobile/operation/groups.php:159 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:672 +#: ../../operation/tree.php:475 msgid "Unknown modules" msgstr "不明モジュール" #: ../../enterprise/meta/monitoring/custom_fields_view.php:646 -#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:289 -#: ../../godmode/groups/group_list.php:1068 ../../mobile/operation/groups.php:162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:677 ../../operation/tree.php:480 +#: ../../godmode/groups/group_list.php:1073 ../../mobile/operation/groups.php:162 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:677 +#: ../../operation/tree.php:480 msgid "Not init modules" msgstr "未初期化モジュール" @@ -9163,7 +9683,7 @@ msgid "I.P" msgstr "IP" #: ../../enterprise/meta/monitoring/custom_fields_view.php:719 -#: ../../include/functions_api.php:175 +#: ../../include/functions_api.php:176 msgid "No data to show." msgstr "表示するデータがありません。" @@ -9171,7 +9691,7 @@ msgstr "表示するデータがありません。" msgid "There are no custom search defined." msgstr "カスタム検索が定義されていません。" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1151 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1156 #: ../../enterprise/meta/event/custom_events.php:249 #: ../../godmode/agentes/status_monitor_custom_fields.php:241 #: ../../godmode/events/custom_events.php:223 @@ -9181,12 +9701,12 @@ msgstr "確認" #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:229 -#: ../../godmode/agentes/configurar_agente.php:845 -#: ../../godmode/agentes/modificar_agente.php:953 -#: ../../operation/agentes/estado_agente.php:968 -#: ../../operation/agentes/estado_agente.php:978 +#: ../../godmode/agentes/configurar_agente.php:866 +#: ../../godmode/agentes/modificar_agente.php:947 +#: ../../include/class/SnmpConsole.class.php:815 +#: ../../operation/agentes/estado_agente.php:964 +#: ../../operation/agentes/estado_agente.php:974 #: ../../operation/snmpconsole/snmp_statistics.php:193 -#: ../../operation/snmpconsole/snmp_view.php:956 msgid "Create agent" msgstr "エージェント作成" @@ -9216,7 +9736,7 @@ msgstr "アラート作成" #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3509 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3513 #: ../../enterprise/extensions/disabled/check_acls.php:133 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 #: ../../enterprise/godmode/policies/policy_alerts.php:352 @@ -9228,122 +9748,125 @@ msgstr "アラート作成" #: ../../enterprise/godmode/services/services.elements.php:277 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1397 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2058 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3728 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3746 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1412 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2109 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3577 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3790 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3808 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/include/functions_inventory.php:881 -#: ../../enterprise/include/functions_inventory.php:937 #: ../../enterprise/include/functions_ui.php:47 #: ../../enterprise/include/functions_reporting_pdf.php:529 #: ../../enterprise/include/functions_reporting_pdf.php:537 #: ../../enterprise/include/functions_reporting_pdf.php:545 #: ../../enterprise/include/functions_reporting_pdf.php:561 -#: ../../enterprise/include/functions_reporting_csv.php:495 -#: ../../enterprise/include/functions_reporting_csv.php:822 -#: ../../enterprise/include/functions_reporting_csv.php:848 -#: ../../enterprise/include/functions_reporting_csv.php:961 -#: ../../enterprise/include/functions_reporting_csv.php:1000 -#: ../../enterprise/include/functions_reporting_csv.php:1060 -#: ../../enterprise/include/functions_reporting_csv.php:1076 -#: ../../enterprise/include/functions_reporting_csv.php:1230 -#: ../../enterprise/include/functions_reporting_csv.php:1261 -#: ../../enterprise/include/functions_reporting_csv.php:1316 -#: ../../enterprise/include/functions_reporting_csv.php:1371 -#: ../../enterprise/include/functions_reporting_csv.php:1420 -#: ../../enterprise/include/functions_reporting_csv.php:1475 -#: ../../enterprise/include/functions_reporting_csv.php:1504 -#: ../../enterprise/include/functions_reporting_csv.php:1549 -#: ../../enterprise/include/functions_reporting_csv.php:1595 -#: ../../enterprise/include/functions_reporting_csv.php:1668 -#: ../../enterprise/include/functions_reporting_csv.php:1787 -#: ../../enterprise/include/functions_reporting_csv.php:2022 -#: ../../enterprise/include/functions_reporting_csv.php:2095 -#: ../../enterprise/include/functions_reporting_csv.php:2327 -#: ../../enterprise/include/functions_reporting_csv.php:2363 -#: ../../enterprise/include/functions_reporting_csv.php:2511 -#: ../../enterprise/include/functions_reporting_csv.php:2783 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924 -#: ../../enterprise/include/functions_reporting.php:1854 -#: ../../enterprise/include/functions_reporting.php:2893 -#: ../../enterprise/include/functions_reporting.php:3880 -#: ../../enterprise/include/functions_reporting.php:4904 +#: ../../enterprise/include/functions_reporting_csv.php:498 +#: ../../enterprise/include/functions_reporting_csv.php:826 +#: ../../enterprise/include/functions_reporting_csv.php:852 +#: ../../enterprise/include/functions_reporting_csv.php:965 +#: ../../enterprise/include/functions_reporting_csv.php:1004 +#: ../../enterprise/include/functions_reporting_csv.php:1064 +#: ../../enterprise/include/functions_reporting_csv.php:1080 +#: ../../enterprise/include/functions_reporting_csv.php:1234 +#: ../../enterprise/include/functions_reporting_csv.php:1265 +#: ../../enterprise/include/functions_reporting_csv.php:1320 +#: ../../enterprise/include/functions_reporting_csv.php:1375 +#: ../../enterprise/include/functions_reporting_csv.php:1424 +#: ../../enterprise/include/functions_reporting_csv.php:1479 +#: ../../enterprise/include/functions_reporting_csv.php:1508 +#: ../../enterprise/include/functions_reporting_csv.php:1553 +#: ../../enterprise/include/functions_reporting_csv.php:1599 +#: ../../enterprise/include/functions_reporting_csv.php:1672 +#: ../../enterprise/include/functions_reporting_csv.php:1791 +#: ../../enterprise/include/functions_reporting_csv.php:2026 +#: ../../enterprise/include/functions_reporting_csv.php:2099 +#: ../../enterprise/include/functions_reporting_csv.php:2331 +#: ../../enterprise/include/functions_reporting_csv.php:2367 +#: ../../enterprise/include/functions_reporting_csv.php:2515 +#: ../../enterprise/include/functions_reporting_csv.php:2787 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:926 +#: ../../enterprise/include/functions_reporting.php:1855 +#: ../../enterprise/include/functions_reporting.php:2894 +#: ../../enterprise/include/functions_reporting.php:3881 +#: ../../enterprise/include/functions_reporting.php:4905 #: ../../enterprise/include/functions_services.php:1779 #: ../../enterprise/include/functions_events.php:90 #: ../../enterprise/operation/agentes/policy_view.php:258 -#: ../../enterprise/operation/agentes/agent_inventory.php:116 -#: ../../enterprise/operation/inventory/inventory.php:357 #: ../../extensions/agents_modules.php:444 ../../extensions/insert_data.php:175 #: ../../godmode/agentes/module_manager_editor_prediction.php:154 -#: ../../godmode/agentes/planned_downtime.list.php:358 -#: ../../godmode/agentes/planned_downtime.editor.php:1305 +#: ../../godmode/agentes/planned_downtime.list.php:395 +#: ../../godmode/agentes/planned_downtime.editor.php:1293 #: ../../godmode/agentes/agent_manager.php:529 #: ../../godmode/agentes/agent_manager.php:601 -#: ../../godmode/agentes/module_manager_editor_common.php:1260 -#: ../../godmode/agentes/module_manager_editor_common.php:1304 -#: ../../godmode/massive/massive_standby_alerts.php:223 -#: ../../godmode/massive/massive_standby_alerts.php:258 -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../godmode/agentes/module_manager_editor_common.php:1274 +#: ../../godmode/agentes/module_manager_editor_common.php:1318 +#: ../../godmode/massive/massive_standby_alerts.php:224 +#: ../../godmode/massive/massive_standby_alerts.php:259 +#: ../../godmode/massive/massive_enable_disable_alerts.php:196 +#: ../../godmode/massive/massive_enable_disable_alerts.php:231 #: ../../godmode/massive/massive_edit_agents.php:682 #: ../../godmode/massive/massive_edit_agents.php:1147 #: ../../godmode/alerts/alert_list.list.php:493 -#: ../../godmode/alerts/alert_list.list.php:751 ../../godmode/alerts/alert_view.php:91 +#: ../../godmode/alerts/alert_list.list.php:751 +#: ../../godmode/alerts/alert_view.php:91 #: ../../godmode/alerts/alert_list.builder.php:70 #: ../../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:209 -#: ../../godmode/reporting/reporting_builder.item_editor.php:881 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1186 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1725 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3974 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4490 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4514 +#: ../../godmode/reporting/reporting_builder.item_editor.php:211 +#: ../../godmode/reporting/reporting_builder.item_editor.php:889 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1764 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3993 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4509 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4533 #: ../../godmode/reporting/visual_console_builder.elements.php:105 #: ../../godmode/reporting/visual_console_builder.wizard.php:449 #: ../../godmode/reporting/visual_console_builder.wizard.php:770 #: ../../godmode/servers/plugin.php:88 ../../mobile/operation/alerts.php:338 #: ../../include/functions_visual_map_editor.php:497 -#: ../../include/functions_reporting_html.php:547 -#: ../../include/functions_reporting_html.php:943 +#: ../../include/functions_reporting_html.php:548 +#: ../../include/functions_reporting_html.php:944 #: ../../include/functions_reporting_html.php:1928 -#: ../../include/functions_reporting_html.php:2256 -#: ../../include/functions_reporting_html.php:2358 -#: ../../include/functions_reporting_html.php:3341 -#: ../../include/functions_reporting_html.php:3724 -#: ../../include/functions_reporting_html.php:3732 +#: ../../include/functions_reporting_html.php:2265 +#: ../../include/functions_reporting_html.php:2369 +#: ../../include/functions_reporting_html.php:3354 #: ../../include/functions_reporting_html.php:3741 -#: ../../include/functions_reporting_html.php:3753 -#: ../../include/functions_reporting_html.php:3909 -#: ../../include/functions_reporting_html.php:4037 -#: ../../include/functions_reporting_html.php:4131 -#: ../../include/functions_reporting_html.php:4850 -#: ../../include/functions_reporting_html.php:4898 -#: ../../include/ajax/alert_list.ajax.php:292 ../../include/ajax/alert_list.ajax.php:317 -#: ../../include/ajax/alert_list.ajax.php:480 ../../include/functions_graph.php:5391 -#: ../../include/functions_treeview.php:64 +#: ../../include/functions_reporting_html.php:3749 +#: ../../include/functions_reporting_html.php:3758 +#: ../../include/functions_reporting_html.php:3770 +#: ../../include/functions_reporting_html.php:3928 +#: ../../include/functions_reporting_html.php:4056 +#: ../../include/functions_reporting_html.php:4150 +#: ../../include/functions_reporting_html.php:4870 +#: ../../include/functions_reporting_html.php:4918 +#: ../../include/ajax/alert_list.ajax.php:292 +#: ../../include/ajax/alert_list.ajax.php:317 +#: ../../include/ajax/alert_list.ajax.php:480 +#: ../../include/functions_inventory.php:881 +#: ../../include/functions_inventory.php:937 +#: ../../include/functions_graph.php:5183 ../../include/functions_treeview.php:64 +#: ../../include/functions_ui.php:6863 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:388 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 #: ../../include/functions_reports.php:1351 #: ../../include/class/AgentsAlerts.class.php:412 #: ../../include/class/AgentsAlerts.class.php:891 -#: ../../include/functions_reporting.php:6994 +#: ../../include/functions_reporting.php:7229 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:355 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:462 #: ../../include/lib/Dashboard/Widgets/module_icon.php:373 #: ../../include/lib/Dashboard/Widgets/module_value.php:348 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 @@ -9356,7 +9879,10 @@ msgstr "アラート作成" #: ../../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:35 +#: ../../operation/agentes/agent_inventory.php:116 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/search_alerts.php:35 +#: ../../operation/inventory/inventory.php:360 #: ../../operation/search_modules.php:32 msgid "Module" msgstr "モジュール" @@ -9364,22 +9890,28 @@ msgstr "モジュール" #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224 #: ../../enterprise/godmode/policies/policy_alerts.php:351 #: ../../enterprise/godmode/policies/policy_alerts.php:557 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:338 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:321 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1402 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:340 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:322 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1417 #: ../../enterprise/include/functions_tasklist.php:356 -#: ../../enterprise/include/functions_reporting_csv.php:2511 +#: ../../enterprise/include/functions_reporting_csv.php:2515 #: ../../enterprise/operation/agentes/policy_view.php:259 -#: ../../godmode/alerts/alert_list.list.php:497 ../../godmode/alerts/alert_view.php:95 +#: ../../godmode/alerts/alert_list.list.php:497 +#: ../../godmode/alerts/alert_view.php:95 #: ../../godmode/alerts/alert_list.builder.php:140 -#: ../../godmode/reporting/reporting_builder.item_editor.php:213 -#: ../../godmode/reporting/reporting_builder.item_editor.php:886 -#: ../../mobile/operation/alerts.php:342 ../../include/functions_reporting_html.php:3342 -#: ../../include/functions_reporting_html.php:3345 ../../include/functions_cron.php:682 -#: ../../include/ajax/alert_list.ajax.php:293 ../../include/ajax/alert_list.ajax.php:318 -#: ../../include/functions_treeview.php:412 ../../include/functions_treeview.php:453 +#: ../../godmode/reporting/reporting_builder.item_editor.php:215 +#: ../../godmode/reporting/reporting_builder.item_editor.php:894 +#: ../../mobile/operation/alerts.php:342 +#: ../../include/functions_reporting_html.php:3355 +#: ../../include/functions_reporting_html.php:3358 +#: ../../include/functions_cron.php:693 +#: ../../include/ajax/alert_list.ajax.php:293 +#: ../../include/ajax/alert_list.ajax.php:318 +#: ../../include/functions_treeview.php:412 +#: ../../include/functions_treeview.php:453 #: ../../include/class/AgentsAlerts.class.php:338 -#: ../../include/class/AgentsAlerts.class.php:964 ../../operation/search_alerts.php:36 +#: ../../include/class/AgentsAlerts.class.php:964 +#: ../../operation/search_alerts.php:36 msgid "Template" msgstr "テンプレート" @@ -9391,11 +9923,11 @@ msgstr "テンプレート" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:750 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231 #: ../../enterprise/meta/monitoring/wizard/wizard.php:150 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:742 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:748 #: ../../enterprise/meta/general/header.php:125 #: ../../enterprise/meta/general/main_header.php:558 #: ../../enterprise/godmode/policies/policy_alerts.php:648 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:685 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:687 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 #: ../../enterprise/godmode/services/services.service.php:906 #: ../../enterprise/godmode/services/services.service.php:918 @@ -9406,20 +9938,24 @@ msgstr "テンプレート" #: ../../enterprise/operation/services/massive/services.create.php:950 #: ../../enterprise/operation/services/massive/services.create.php:962 #: ../../extensions/insert_data.php:186 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:159 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:160 #: ../../godmode/massive/massive_copy_modules.php:138 #: ../../godmode/massive/massive_delete_modules.php:334 #: ../../godmode/massive/massive_delete_modules.php:469 #: ../../godmode/massive/massive_add_alerts.php:286 -#: ../../godmode/massive/massive_delete_alerts.php:277 +#: ../../godmode/massive/massive_delete_alerts.php:278 #: ../../godmode/massive/massive_edit_modules.php:318 #: ../../godmode/massive/massive_edit_modules.php:431 #: ../../godmode/alerts/alert_list.builder.php:82 #: ../../godmode/alerts/alert_list.builder.php:156 -#: ../../godmode/setup/setup_integria.php:367 ../../godmode/setup/setup_integria.php:385 -#: ../../godmode/setup/setup_integria.php:414 ../../godmode/setup/setup_integria.php:432 -#: ../../godmode/setup/setup_integria.php:489 ../../godmode/setup/setup_integria.php:507 -#: ../../godmode/setup/setup_integria.php:536 ../../godmode/setup/setup_integria.php:554 +#: ../../godmode/setup/setup_integria.php:367 +#: ../../godmode/setup/setup_integria.php:385 +#: ../../godmode/setup/setup_integria.php:414 +#: ../../godmode/setup/setup_integria.php:432 +#: ../../godmode/setup/setup_integria.php:489 +#: ../../godmode/setup/setup_integria.php:507 +#: ../../godmode/setup/setup_integria.php:536 +#: ../../godmode/setup/setup_integria.php:554 #: ../../include/functions_reports.php:1358 #: ../../include/class/AgentsAlerts.class.php:354 #: ../../operation/incidents/configure_integriaims_incident.php:240 @@ -9447,19 +9983,20 @@ msgid "Create new action" msgstr "新規アクションの作成" #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2340 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2552 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3387 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2342 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2554 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3389 #: ../../godmode/alerts/alert_list.list.php:665 #: ../../godmode/alerts/alert_list.list.php:791 #: ../../godmode/alerts/configure_alert_action.php:284 #: ../../godmode/alerts/alert_view.php:361 #: ../../godmode/alerts/alert_list.builder.php:173 -#: ../../include/functions_reporting_html.php:3599 -#: ../../include/functions_reporting_html.php:5367 -#: ../../include/ajax/alert_list.ajax.php:540 ../../include/ajax/custom_fields.php:413 +#: ../../include/functions_reporting_html.php:3616 +#: ../../include/functions_reporting_html.php:5406 +#: ../../include/ajax/alert_list.ajax.php:540 +#: ../../include/ajax/custom_fields.php:413 #: ../../include/class/AgentsAlerts.class.php:385 -#: ../../include/class/AgentWizard.class.php:1199 +#: ../../include/class/AgentWizard.class.php:1282 msgid "Threshold" msgstr "しきい値" @@ -9476,7 +10013,7 @@ msgstr "拡張設定" #: ../../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:639 +#: ../../operation/snmpconsole/snmp_browser.php:637 msgid "Create module" msgstr "モジュールの作成" @@ -9484,7 +10021,7 @@ msgstr "モジュールの作成" #: ../../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:380 +#: ../../enterprise/godmode/policies/policy_modules.php:381 msgid "Edit module" msgstr "モジュールの編集" @@ -9507,9 +10044,10 @@ msgid "Invalid characters founded in module name" msgstr "モジュール名に不正な文字があります" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:234 -#: ../../godmode/agentes/configurar_agente.php:822 -#: ../../godmode/agentes/configurar_agente.php:844 -#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:93 +#: ../../godmode/agentes/configurar_agente.php:843 +#: ../../godmode/agentes/configurar_agente.php:865 +#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:94 +#: ../../godmode/servers/modificar_server.php:140 msgid "Manage agents" msgstr "エージェント管理" @@ -9518,9 +10056,10 @@ msgstr "エージェント管理" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:706 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 -#: ../../enterprise/meta/agentsearch.php:52 ../../enterprise/meta/agentsearch.php:58 -#: ../../godmode/events/event_edit_filter.php:376 ../../mobile/operation/home.php:168 -#: ../../operation/events/events.php:1784 +#: ../../enterprise/meta/agentsearch.php:52 +#: ../../enterprise/meta/agentsearch.php:58 +#: ../../godmode/events/event_edit_filter.php:407 +#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1908 msgid "Agent search" msgstr "エージェント" @@ -9539,9 +10078,10 @@ msgstr "編集または削除するエージェントを選択" #: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241 #: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148 #: ../../mobile/operation/alerts.php:199 ../../mobile/operation/visualmap.php:256 -#: ../../mobile/operation/visualmaps.php:189 ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:377 ../../mobile/operation/events.php:913 -#: ../../mobile/operation/tactical.php:102 +#: ../../mobile/operation/visualmaps.php:189 +#: ../../mobile/operation/module_graph.php:364 +#: ../../mobile/operation/module_graph.php:377 +#: ../../mobile/operation/events.php:913 ../../mobile/operation/tactical.php:102 msgid "Back" msgstr "戻る" @@ -9604,8 +10144,9 @@ msgid "Template must be set." msgstr "テンプレートを設定する必要があります" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:653 -#: ../../godmode/users/configure_profile.php:291 ../../godmode/alerts/alert_list.php:494 -#: ../../godmode/alerts/alert_list.php:496 +#: ../../godmode/users/configure_profile.php:291 +#: ../../godmode/alerts/alert_list.php:519 +#: ../../godmode/alerts/alert_list.php:521 msgid "Manage alerts" msgstr "アラート管理" @@ -9634,8 +10175,8 @@ msgstr "モジュールタイプ" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 #: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_reporting_html.php:5286 -#: ../../include/functions_reporting_html.php:5440 +#: ../../include/functions_reporting_html.php:5325 +#: ../../include/functions_reporting_html.php:5479 msgid "Monitor" msgstr "モニタ項目" @@ -9644,10 +10185,10 @@ msgid "Web check" msgstr "ウェブチェック" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 -#: ../../enterprise/godmode/modules/configure_local_component.php:259 +#: ../../enterprise/godmode/modules/configure_local_component.php:261 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2017 -#: ../../enterprise/include/functions_reporting_csv.php:759 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2068 +#: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:156 #: ../../enterprise/operation/agentes/ver_agente.php:35 #: ../../extensions/agents_modules.php:410 @@ -9655,17 +10196,18 @@ msgstr "ウェブチェック" #: ../../godmode/agentes/module_manager_editor_common.php:265 #: ../../godmode/massive/massive_edit_modules.php:889 #: ../../godmode/reporting/create_container.php:540 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1653 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1692 #: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184 #: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294 #: ../../include/functions_reporting_html.php:1717 -#: ../../include/ajax/heatmap.ajax.php:190 ../../include/ajax/heatmap.ajax.php:249 -#: ../../include/ajax/heatmap.ajax.php:288 ../../include/functions_graph.php:5307 +#: ../../include/ajax/heatmap.ajax.php:191 +#: ../../include/ajax/heatmap.ajax.php:255 +#: ../../include/ajax/heatmap.ajax.php:294 ../../include/functions_graph.php:5099 #: ../../include/functions_treeview.php:122 ../../include/functions_html.php:1570 -#: ../../include/functions_events.php:4168 ../../operation/heatmap.php:96 -#: ../../operation/heatmap.php:98 ../../operation/agentes/status_monitor.php:517 +#: ../../include/functions_events.php:4281 ../../operation/heatmap.php:100 +#: ../../operation/heatmap.php:102 ../../operation/agentes/status_monitor.php:517 #: ../../operation/agentes/estado_monitores.php:552 -#: ../../operation/agentes/ver_agente.php:1157 +#: ../../operation/agentes/ver_agente.php:1175 msgid "Module group" msgstr "モジュールグループ" @@ -9680,14 +10222,14 @@ msgstr "段階的ウィザード" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268 #: ../../enterprise/meta/general/main_header.php:309 #: ../../enterprise/meta/general/main_header.php:391 -#: ../../enterprise/godmode/modules/configure_local_component.php:165 +#: ../../enterprise/godmode/modules/configure_local_component.php:167 #: ../../enterprise/godmode/agentes/plugins_manager.php:126 -#: ../../enterprise/godmode/policies/policy_plugins.php:108 +#: ../../enterprise/godmode/policies/policy_plugins.php:126 #: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/users/configure_user.php:1239 +#: ../../godmode/users/configure_user.php:1450 #: ../../godmode/netflow/nf_edit_form.php:237 -#: ../../godmode/alerts/alert_commands.php:158 -#: ../../godmode/alerts/alert_commands.php:195 +#: ../../godmode/alerts/alert_commands.php:159 +#: ../../godmode/alerts/alert_commands.php:196 #: ../../godmode/alerts/configure_alert_template.php:946 #: ../../godmode/alerts/configure_alert_template.php:987 #: ../../godmode/alerts/configure_alert_template.php:1138 @@ -9708,19 +10250,19 @@ msgstr "モジュールを選択してください" #: ../../enterprise/meta/monitoring/wizard/wizard.php:133 #: ../../enterprise/godmode/wizards/Cloud.class.php:579 -#: ../../enterprise/include/class/VMware.app.php:863 -#: ../../enterprise/include/class/Omnishell.class.php:852 -#: ../../enterprise/include/class/DB2.app.php:840 -#: ../../enterprise/include/class/SAP.app.php:802 -#: ../../enterprise/include/class/Aws.cloud.php:1423 -#: ../../enterprise/include/class/MySQL.app.php:908 -#: ../../enterprise/include/class/Oracle.app.php:949 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:793 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2180 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1240 +#: ../../enterprise/include/class/VMware.app.php:864 +#: ../../enterprise/include/class/Omnishell.class.php:854 +#: ../../enterprise/include/class/DB2.app.php:841 +#: ../../enterprise/include/class/SAP.app.php:803 +#: ../../enterprise/include/class/Aws.cloud.php:1424 +#: ../../enterprise/include/class/MySQL.app.php:909 +#: ../../enterprise/include/class/Oracle.app.php:950 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:794 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2182 #: ../../godmode/alerts/configure_alert_template.php:1171 -#: ../../godmode/wizards/HostDevices.class.php:1569 -#: ../../include/class/CustomNetScan.class.php:725 +#: ../../godmode/wizards/HostDevices.class.php:1593 +#: ../../include/class/CustomNetScan.class.php:726 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1240 msgid "Finish" msgstr "終了" @@ -9729,7 +10271,7 @@ msgid "The alert you are trying to add is already in the list of alerts" msgstr "追加しようとしているアラートは、アラート一覧にすでにあります。" #: ../../enterprise/meta/monitoring/wizard/wizard.php:135 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:609 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:615 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 msgid "No description available" msgstr "説明なし" @@ -9741,19 +10283,23 @@ msgstr "説明なし" #: ../../godmode/modules/manage_network_components_form_plugin.php:54 #: ../../godmode/modules/manage_network_components_form_wmi.php:60 #: ../../godmode/alerts/configure_alert_template.php:1288 -#: ../../godmode/alerts/alert_list.builder.php:293 ../../include/functions.php:2712 -#: ../../include/class/AgentWizard.class.php:2510 +#: ../../godmode/alerts/alert_list.builder.php:293 +#: ../../include/functions.php:2758 +#: ../../include/class/AgentWizard.class.php:2626 msgid "Empty" msgstr "空" #: ../../enterprise/meta/monitoring/wizard/wizard.php:139 -#: ../../include/functions_events.php:3064 ../../include/functions_events.php:3335 +#: ../../include/functions_events.php:3127 +#: ../../include/functions_events.php:3398 msgid "New" msgstr "新規" #: ../../enterprise/meta/monitoring/wizard/wizard.php:144 -msgid "Are you sure? If the agent is on a policy, it will be removed from the policy." -msgstr "よろしいですか? エージェントがポリシーにある場合はポリシーから削除されます。" +msgid "" +"Are you sure? If the agent is on a policy, it will be removed from the policy." +msgstr "" +"よろしいですか? エージェントがポリシーにある場合はポリシーから削除されます。" #: ../../enterprise/meta/monitoring/wizard/wizard.php:146 msgid "Please, select an alert" @@ -9764,31 +10310,33 @@ msgid "Please, select an agent" msgstr "エージェントを選択してください" #: ../../enterprise/meta/monitoring/wizard/wizard.php:149 -#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/policies/policy_modules.php:1641 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 #: ../../enterprise/include/class/CommandCenter.class.php:463 -#: ../../enterprise/operation/log/log_viewer.php:845 -#: ../../enterprise/operation/log/log_viewer.php:867 +#: ../../enterprise/operation/log/log_viewer.php:846 +#: ../../enterprise/operation/log/log_viewer.php:868 #: ../../godmode/massive/massive_copy_modules.php:235 -#: ../../godmode/massive/massive_operations.php:339 +#: ../../godmode/massive/massive_operations.php:344 #: ../../godmode/massive/massive_add_profiles.php:292 -#: ../../include/functions_events.php:4016 +#: ../../include/functions_events.php:4129 #: ../../operation/reporting/reporting_viewer.php:347 -#: ../../operation/reporting/graph_viewer.php:316 ../../general/ui/agents_list.php:146 +#: ../../operation/reporting/graph_viewer.php:384 +#: ../../general/ui/agents_list.php:146 msgid "Loading" msgstr "読み込み中" #: ../../enterprise/meta/monitoring/wizard/wizard.php:151 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 -#: ../../godmode/tag/edit_tag.php:227 ../../include/functions_reporting.php:7124 +#: ../../godmode/tag/edit_tag.php:227 ../../include/functions_reporting.php:7366 #: ../../include/lib/Dashboard/Widgets/url.php:216 msgid "Url" msgstr "URL" #: ../../enterprise/meta/monitoring/wizard/wizard.php:152 #: ../../godmode/modules/manage_network_components_form_wizard.php:393 -#: ../../godmode/modules/manage_network_components_form_wizard.php:435 -#: ../../include/functions_reports.php:1087 ../../include/functions_reports.php:1217 +#: ../../godmode/modules/manage_network_components_form_wizard.php:441 +#: ../../include/functions_reports.php:1087 +#: ../../include/functions_reports.php:1217 msgid "String" msgstr "文字列" @@ -9803,8 +10351,8 @@ msgstr "他のエージェントがすでに同じ名前で存在します" #: ../../enterprise/meta/monitoring/wizard/wizard.php:156 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:474 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:477 -#: ../../godmode/agentes/module_manager_editor_common.php:627 -#: ../../godmode/agentes/module_manager_editor_common.php:629 +#: ../../godmode/agentes/module_manager_editor_common.php:642 +#: ../../godmode/agentes/module_manager_editor_common.php:644 #, php-format msgid "Agent interval x %s" msgstr "エージェント実行間隔 x %s" @@ -9814,9 +10362,11 @@ msgid "Group View" msgstr "グループ表示" #: ../../enterprise/meta/monitoring/group_view.php:72 -#: ../../godmode/groups/group_list.php:321 ../../godmode/users/configure_user.php:1140 -#: ../../operation/users/user_edit.php:362 ../../operation/agentes/group_view.php:89 -#: ../../operation/menu.php:50 +#: ../../godmode/groups/group_list.php:326 +#: ../../godmode/users/configure_user.php:1351 +#: ../../godmode/massive/massive_edit_users.php:277 +#: ../../operation/users/user_edit.php:436 +#: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:50 msgid "Group view" msgstr "グループ" @@ -9862,8 +10412,8 @@ msgid "% Monitors Not init" msgstr "未初期化モジュール%" #: ../../enterprise/meta/monitoring/group_view.php:205 -#: ../../godmode/agentes/modificar_agente.php:945 -#: ../../operation/agentes/estado_agente.php:975 +#: ../../godmode/agentes/modificar_agente.php:939 +#: ../../operation/agentes/estado_agente.php:971 #: ../../operation/agentes/group_view.php:577 msgid "There are no defined agents" msgstr "定義されたエージェントがありません" @@ -9878,28 +10428,31 @@ msgid "Group or Tag" msgstr "グループまたはタグ" #: ../../enterprise/meta/monitoring/group_view.php:235 -#: ../../enterprise/include/functions_inventory.php:511 -#: ../../enterprise/include/functions_inventory.php:654 -#: ../../enterprise/operation/agentes/agent_inventory.php:266 #: ../../enterprise/operation/services/services.treeview_services.php:265 -#: ../../godmode/groups/group_list.php:1044 -#: ../../include/functions_reporting_html.php:2461 -#: ../../include/functions_reporting_html.php:2471 -#: ../../include/functions_alerts.php:3360 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:653 ../../operation/tree.php:456 -#: ../../operation/agentes/group_view.php:223 +#: ../../godmode/groups/group_list.php:1049 +#: ../../include/functions_reporting_html.php:2472 +#: ../../include/functions_reporting_html.php:2482 +#: ../../include/functions_inventory.php:511 +#: ../../include/functions_inventory.php:654 +#: ../../include/functions_alerts.php:3386 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:653 +#: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223 +#: ../../operation/agentes/agent_inventory.php:266 msgid "Total" msgstr "合計" #: ../../enterprise/meta/monitoring/group_view.php:247 #: ../../enterprise/operation/agentes/policy_view.php:345 -#: ../../godmode/alerts/alert_list.list.php:573 ../../godmode/alerts/alert_view.php:105 -#: ../../mobile/operation/alerts.php:324 ../../include/functions.php:1228 -#: ../../include/functions_agents.php:2942 ../../include/functions_agents.php:2953 -#: ../../include/functions_ui.php:1253 ../../include/class/AgentsAlerts.class.php:937 -#: ../../include/functions_reporting.php:12638 ../../include/functions_events.php:2738 -#: ../../include/functions_events.php:2938 ../../operation/agentes/group_view.php:234 -#: ../../operation/snmpconsole/snmp_view.php:1018 +#: ../../godmode/alerts/alert_list.list.php:573 +#: ../../godmode/alerts/alert_view.php:105 ../../mobile/operation/alerts.php:324 +#: ../../include/functions.php:1274 ../../include/functions_agents.php:2942 +#: ../../include/functions_agents.php:2953 ../../include/functions_ui.php:1253 +#: ../../include/class/AgentsAlerts.class.php:937 +#: ../../include/class/SnmpConsole.class.php:875 +#: ../../include/functions_reporting.php:12953 +#: ../../include/functions_events.php:2801 +#: ../../include/functions_events.php:3001 +#: ../../operation/agentes/group_view.php:234 msgid "Alert fired" msgstr "発生中アラート" @@ -9907,11 +10460,11 @@ msgstr "発生中アラート" #: ../../operation/agentes/group_view.php:320 #, php-format msgid "" -"This %s installation are using the secondary groups feature. For this reason, an " -"agent can be counted several times." +"This %s installation are using the secondary groups feature. For this reason, " +"an agent can be counted several times." msgstr "" -"この %s インストールはセカンダリグループ機能を使用しています。 このため、エージェント" -"は数回カウントされる可能性があります。" +"この %s インストールはセカンダリグループ機能を使用しています。 このため、エー" +"ジェントは数回カウントされる可能性があります。" #: ../../enterprise/meta/monitoring/tactical.php:42 #: ../../include/class/OrderInterpreter.class.php:105 @@ -9921,12 +10474,13 @@ msgstr "モニタ状態表示" #: ../../enterprise/meta/monitoring/tactical.php:63 #: ../../enterprise/meta/general/main_header.php:103 #: ../../enterprise/meta/general/main_menu.php:202 -#: ../../godmode/users/configure_user.php:1141 ../../mobile/operation/home.php:45 -#: ../../mobile/operation/tactical.php:97 +#: ../../godmode/users/configure_user.php:1352 +#: ../../godmode/massive/massive_edit_users.php:278 +#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 -#: ../../operation/users/user_edit.php:363 ../../operation/agentes/tactical.php:69 -#: ../../operation/menu.php:47 +#: ../../operation/users/user_edit.php:437 +#: ../../operation/agentes/tactical.php:70 ../../operation/menu.php:47 msgid "Tactical view" msgstr "モニタリング概要" @@ -9940,13 +10494,14 @@ msgstr "状態レポート" #: ../../enterprise/meta/general/main_menu.php:267 #: ../../enterprise/include/class/CommandCenter.class.php:1078 #: ../../enterprise/tools/ipam/ipam_network.php:400 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:240 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:243 #: ../../godmode/events/events.php:128 ../../mobile/include/functions_web.php:25 #: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 -#: ../../include/functions.php:4094 ../../include/ajax/events.php:2162 -#: ../../include/functions_reports.php:864 ../../include/functions_reports.php:868 -#: ../../include/functions_reports.php:872 ../../operation/menu.php:374 -#: ../../operation/events/events.php:1479 ../../operation/events/events.php:1487 +#: ../../include/functions.php:4145 ../../include/ajax/events.php:2134 +#: ../../include/functions_reports.php:864 +#: ../../include/functions_reports.php:868 +#: ../../include/functions_reports.php:872 ../../operation/menu.php:387 +#: ../../operation/events/events.php:1558 ../../operation/events/events.php:1566 msgid "Events" msgstr "イベント" @@ -9964,18 +10519,20 @@ msgstr "イベント追加" #: ../../enterprise/meta/event/custom_events.php:38 #: ../../enterprise/godmode/reporting/graph_template_editor.php:255 -#: ../../godmode/users/configure_profile.php:298 ../../operation/menu.php:380 +#: ../../godmode/users/configure_profile.php:298 ../../operation/menu.php:393 msgid "View events" msgstr "イベント参照" #: ../../enterprise/meta/event/custom_events.php:44 -#: ../../godmode/netflow/nf_edit.php:217 ../../godmode/netflow/nf_edit_form.php:190 +#: ../../godmode/netflow/nf_edit.php:217 +#: ../../godmode/netflow/nf_edit_form.php:190 #: ../../godmode/snmpconsole/snmp_filters.php:37 -#: ../../godmode/events/event_filter.php:225 ../../include/ajax/custom_fields.php:652 +#: ../../godmode/events/event_filter.php:225 +#: ../../include/ajax/custom_fields.php:654 msgid "Create filter" msgstr "フィルタの作成" -#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:235 +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:238 #: ../../godmode/events/events.php:68 msgid "Event responses" msgstr "イベント応答" @@ -9984,29 +10541,30 @@ msgstr "イベント応答" #: ../../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:916 -#: ../../godmode/agentes/agent_manager.php:941 ../../godmode/menu.php:99 +#: ../../godmode/agentes/agent_manager.php:945 +#: ../../godmode/agentes/agent_manager.php:970 ../../godmode/menu.php:100 #: ../../godmode/massive/massive_edit_agents.php:1251 #: ../../godmode/reporting/reporting_builder.item_editor.php:76 #: ../../include/functions_reporting_html.php:1585 -#: ../../include/functions_events.php:4130 ../../operation/agentes/status_monitor.php:62 +#: ../../include/functions_events.php:4243 +#: ../../operation/agentes/status_monitor.php:62 #: ../../operation/agentes/status_monitor.php:85 -#: ../../operation/agentes/ver_agente.php:1544 +#: ../../operation/agentes/ver_agente.php:1574 msgid "Custom fields" msgstr "カスタムフィールド" #: ../../enterprise/meta/event/custom_events.php:69 #: ../../enterprise/meta/event/custom_events.php:88 #: ../../enterprise/meta/general/main_header.php:291 -#: ../../enterprise/meta/general/main_menu.php:410 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2887 +#: ../../enterprise/meta/general/main_menu.php:442 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2889 #: ../../godmode/reporting/reporting_builder.list_items.php:222 #: ../../godmode/events/events.php:90 ../../godmode/events/events.php:109 msgid "Filters" msgstr "フィルタ" -#: ../../enterprise/meta/event/custom_events.php:79 ../../godmode/events/events.php:100 -#: ../../include/ajax/events.php:1749 +#: ../../enterprise/meta/event/custom_events.php:79 +#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1717 msgid "Responses" msgstr "応答" @@ -10016,7 +10574,7 @@ msgstr "ユーザは EW 権限のあるグループに含まれていません" #: ../../enterprise/meta/event/custom_events.php:160 #: ../../enterprise/include/ajax/log_viewer.ajax.php:75 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1250 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1252 msgid "Fields" msgstr "フィールド" @@ -10054,8 +10612,8 @@ msgstr "イベントフィールド表示" #: ../../godmode/events/custom_events.php:222 msgid "There must be at least one custom field. Timestamp will be set by default" msgstr "" -"少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定されま" -"す。" +"少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定" +"されます。" #: ../../enterprise/meta/include/functions_autoprovision.php:378 msgid "Round Robin" @@ -10068,40 +10626,41 @@ msgstr "低負荷" #: ../../enterprise/meta/include/functions_autoprovision.php:422 msgid "" "It uses the Round-robin planning method to distribute, \n" -" in an equitable way and in a rational order, all the new Pandora " -"software agents that reach the Metaconsole.\n" +" in an equitable way and in a rational order, all the new " +"Pandora software agents that reach the Metaconsole.\n" " The distribution of the agents will be done in a circular way, " "assigning the corresponding server to each new agent.\n" " " msgstr "" -"メタコンソールに到達するすべての新しい Pandora ソフトウェアエージェントをラウンドロビ" -"ン方式で公平に配布します。\n" -" エージェントの配布は循環的に行われ、新しいエージェントは対応するサー" -"バに割り当てられます。\n" +"メタコンソールに到達するすべての新しい Pandora ソフトウェアエージェントをラウン" +"ドロビン方式で公平に配布します。\n" +" エージェントの配布は循環的に行われ、新しいエージェントは対応す" +"るサーバに割り当てられます。\n" " " #: ../../enterprise/meta/include/functions_autoprovision.php:430 -msgid "The new agents will be dynamically assigned to those servers with less load." +msgid "" +"The new agents will be dynamically assigned to those servers with less load." msgstr "新しいエージェントは、負荷の少ないサーバに動的に割り当てられます。" #: ../../enterprise/meta/include/functions_autoprovision.php:435 msgid "" -"In the customized classification, we will be able to define our own classification " -"rules, \n" -" based on certain parameters retrieved from the information reported " -"by the agent (name of the agent and its IP address).\n" +"In the customized classification, we will be able to define our own " +"classification rules, \n" +" based on certain parameters retrieved from the information " +"reported by the agent (name of the agent and its IP address).\n" " " msgstr "" "カスタム配布では、独自の配布ルールを定義できます。\n" -" エージェントから取得された情報(エージェント名とその IP アドレス)に基" -"づきます。\n" +" エージェントから取得された情報(エージェント名とその IP アドレ" +"ス)に基づきます。\n" " " #: ../../enterprise/meta/include/functions_autoprovision.php:473 #: ../../enterprise/meta/include/functions_autoprovision.php:640 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2944 -#: ../../enterprise/include/functions_ipam.php:1643 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2946 +#: ../../enterprise/include/functions_ipam.php:1651 #: ../../godmode/reporting/reporting_builder.list_items.php:440 #: ../../godmode/reporting/reporting_builder.list_items.php:740 #: ../../godmode/reporting/graph_builder.graph_editor.php:217 @@ -10111,10 +10670,11 @@ msgstr "並べ替え" #: ../../enterprise/meta/include/functions_autoprovision.php:529 msgid "" -"There is no custom entries defined. Click on \"Create custom entry\" to add the first." +"There is no custom entries defined. Click on \"Create custom entry\" to add " +"the first." msgstr "" -"カスタムエントリは定義されていません。\"カスタムエントリの作成\" をクリックして、最初" -"のエントリを追加します。" +"カスタムエントリは定義されていません。\"カスタムエントリの作成\" をクリックし" +"て、最初のエントリを追加します。" #: ../../enterprise/meta/include/functions_autoprovision.php:534 msgid "Create custom entry" @@ -10130,11 +10690,11 @@ msgstr "設定:" #: ../../enterprise/meta/include/functions_autoprovision.php:610 msgid "" -"There is no rules configured for this custom entry. Click on Add button to create the " -"first." +"There is no rules configured for this custom entry. Click on Add button to " +"create the first." msgstr "" -"このカスタムエントリ用に設定されたルールがありません。 最初に追加ボタンをクリックして" -"作成します。" +"このカスタムエントリ用に設定されたルールがありません。 最初に追加ボタンをクリッ" +"クして作成します。" #: ../../enterprise/meta/include/functions_autoprovision.php:642 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:495 @@ -10188,24 +10748,27 @@ msgstr "名前重複エラー" #: ../../enterprise/meta/general/main_header.php:321 #: ../../enterprise/meta/general/main_header.php:401 #: ../../enterprise/meta/general/main_header.php:408 -#: ../../enterprise/meta/general/main_menu.php:471 -#: ../../enterprise/meta/general/main_menu.php:529 -#: ../../enterprise/meta/general/main_menu.php:552 -#: ../../enterprise/meta/general/main_menu.php:559 -#: ../../godmode/users/profile_list.php:63 ../../godmode/users/profile_list.php:84 +#: ../../enterprise/meta/general/main_menu.php:503 +#: ../../enterprise/meta/general/main_menu.php:567 +#: ../../enterprise/meta/general/main_menu.php:590 +#: ../../enterprise/meta/general/main_menu.php:597 +#: ../../godmode/users/profile_list.php:63 +#: ../../godmode/users/profile_list.php:84 #: ../../godmode/users/configure_profile.php:55 -#: ../../godmode/users/configure_profile.php:76 ../../godmode/users/user_list.php:214 -#: ../../godmode/users/user_list.php:239 ../../godmode/users/user_list.php:250 -#: ../../godmode/users/configure_user.php:238 +#: ../../godmode/users/configure_profile.php:76 +#: ../../godmode/users/user_list.php:253 ../../godmode/users/user_list.php:278 +#: ../../godmode/users/user_list.php:289 +#: ../../godmode/users/configure_user.php:287 #: ../../operation/users/user_edit_header.php:91 msgid "User management" msgstr "ユーザ管理" #: ../../enterprise/meta/include/functions_users_meta.php:187 #: ../../enterprise/meta/include/functions_users_meta.php:214 -#: ../../godmode/users/profile_list.php:74 ../../godmode/users/configure_profile.php:66 -#: ../../godmode/users/user_list.php:225 ../../godmode/users/configure_user.php:249 -#: ../../godmode/menu.php:155 +#: ../../godmode/users/profile_list.php:74 +#: ../../godmode/users/configure_profile.php:66 +#: ../../godmode/users/user_list.php:264 +#: ../../godmode/users/configure_user.php:298 ../../godmode/menu.php:156 msgid "Profile management" msgstr "プロファイル管理" @@ -10214,7 +10777,7 @@ msgstr "プロファイル管理" #: ../../enterprise/meta/general/header.php:211 #: ../../enterprise/meta/general/header.php:221 #: ../../enterprise/meta/general/main_header.php:624 -#: ../../enterprise/meta/general/main_header.php:630 ../../operation/menu.php:482 +#: ../../enterprise/meta/general/main_header.php:630 ../../operation/menu.php:492 #: ../../general/header.php:407 ../../general/header.php:417 msgid "Edit my user" msgstr "ユーザ情報編集" @@ -10230,7 +10793,7 @@ msgstr "グループ同期" #: ../../enterprise/meta/include/functions_wizard_meta.php:186 #: ../../enterprise/meta/include/functions_wizard_meta.php:1801 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255 -#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../godmode/agentes/agent_manager.php:292 #: ../../godmode/reporting/reporting_builder.item_editor.php:69 #: ../../include/functions_reporting_html.php:1557 @@ -10242,29 +10805,29 @@ msgstr "別名" #: ../../enterprise/meta/include/functions_wizard_meta.php:479 #: ../../enterprise/meta/include/functions_wizard_meta.php:1465 #: ../../enterprise/meta/include/functions_wizard_meta.php:1813 -#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../godmode/agentes/agent_manager.php:301 #: ../../godmode/servers/modificar_server.php:62 #: ../../include/functions_reporting_html.php:1561 -#: ../../include/functions_reporting_html.php:4035 -#: ../../include/functions_reporting_html.php:4129 -#: ../../include/functions_treeview.php:640 ../../include/functions_events.php:4106 -#: ../../operation/gis_maps/ajax.php:290 +#: ../../include/functions_reporting_html.php:4054 +#: ../../include/functions_reporting_html.php:4148 +#: ../../include/functions_treeview.php:640 +#: ../../include/functions_events.php:4219 ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "IP アドレス" #: ../../enterprise/meta/include/functions_wizard_meta.php:236 #: ../../enterprise/meta/include/functions_wizard_meta.php:682 -#: ../../enterprise/godmode/modules/configure_local_component.php:503 +#: ../../enterprise/godmode/modules/configure_local_component.php:515 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 #: ../../enterprise/godmode/setup/setup_log_collector.php:49 -#: ../../enterprise/include/functions_metaconsole.php:1313 -#: ../../enterprise/include/functions_metaconsole.php:1346 -#: ../../enterprise/include/functions_metaconsole.php:1379 -#: ../../enterprise/include/functions_metaconsole.php:1412 -#: ../../enterprise/include/functions_metaconsole.php:1445 -#: ../../enterprise/include/functions_metaconsole.php:1476 -#: ../../enterprise/include/functions_metaconsole.php:1509 +#: ../../enterprise/include/functions_metaconsole.php:1339 +#: ../../enterprise/include/functions_metaconsole.php:1372 +#: ../../enterprise/include/functions_metaconsole.php:1405 +#: ../../enterprise/include/functions_metaconsole.php:1438 +#: ../../enterprise/include/functions_metaconsole.php:1471 +#: ../../enterprise/include/functions_metaconsole.php:1502 +#: ../../enterprise/include/functions_metaconsole.php:1535 #: ../../godmode/agentes/module_manager_editor_web.php:172 msgid "Check" msgstr "チェック" @@ -10274,25 +10837,25 @@ msgstr "チェック" #: ../../enterprise/meta/include/functions_wizard_meta.php:602 #: ../../enterprise/meta/include/functions_wizard_meta.php:1150 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 -#: ../../enterprise/include/functions_reporting_csv.php:1038 +#: ../../enterprise/include/functions_reporting_csv.php:1042 #: ../../enterprise/include/class/Aws.cloud.php:345 #: ../../godmode/alerts/configure_alert_template.php:229 #: ../../godmode/alerts/configure_alert_template.php:233 #: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249 #: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372 -#: ../../include/ajax/events.php:1699 ../../include/functions_reports.php:771 -#: ../../include/functions_reporting.php:9735 +#: ../../include/ajax/events.php:1667 ../../include/functions_reports.php:771 +#: ../../include/functions_reporting.php:9982 msgid "General" msgstr "一般" #: ../../enterprise/meta/include/functions_wizard_meta.php:306 #: ../../godmode/modules/manage_network_templates_form.php:341 -#: ../../include/class/ModuleTemplates.class.php:804 +#: ../../include/class/ModuleTemplates.class.php:805 msgid "Components" msgstr "コンポーネント" #: ../../enterprise/meta/include/functions_wizard_meta.php:308 -#: ../../enterprise/include/functions_reporting_csv.php:2380 +#: ../../enterprise/include/functions_reporting_csv.php:2384 msgid "Agent modules" msgstr "エージェントモジュール" @@ -10323,36 +10886,39 @@ msgstr "プライマリを利用" #: ../../enterprise/meta/include/functions_wizard_meta.php:516 #: ../../enterprise/meta/include/functions_wizard_meta.php:1470 #: ../../enterprise/meta/include/functions_events_meta.php:70 -#: ../../enterprise/meta/include/functions_meta.php:1177 -#: ../../enterprise/meta/include/functions_meta.php:1231 -#: ../../enterprise/meta/include/functions_meta.php:1285 +#: ../../enterprise/meta/include/functions_meta.php:1196 +#: ../../enterprise/meta/include/functions_meta.php:1250 +#: ../../enterprise/meta/include/functions_meta.php:1304 #: ../../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:132 -#: ../../enterprise/godmode/setup/setup_auth.php:1039 -#: ../../enterprise/godmode/setup/setup_auth.php:1071 +#: ../../enterprise/godmode/setup/setup_auth.php:1037 +#: ../../enterprise/godmode/setup/setup_auth.php:1069 #: ../../enterprise/godmode/servers/manage_export_form.php:113 #: ../../enterprise/include/functions_tasklist.php:172 #: ../../enterprise/include/class/DB2.app.php:501 #: ../../enterprise/include/class/MySQL.app.php:523 #: ../../enterprise/include/class/Oracle.app.php:508 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502 -#: ../../extensions/api_checker.php:138 ../../extensions/users_connected.php:143 +#: ../../extensions/api_checker.php:222 ../../extensions/users_connected.php:143 #: ../../godmode/update_manager/update_manager.history.php:43 -#: ../../godmode/setup/setup_ehorus.php:80 ../../godmode/setup/setup_integria.php:283 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3460 -#: ../../godmode/events/custom_events.php:99 ../../mobile/include/user.class.php:396 +#: ../../godmode/setup/setup_ehorus.php:80 +#: ../../godmode/setup/setup_integria.php:283 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3479 +#: ../../godmode/events/custom_events.php:99 +#: ../../mobile/include/user.class.php:396 #: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:5884 ../../include/functions.php:3053 -#: ../../include/functions_cron.php:489 ../../include/functions_config.php:688 -#: ../../include/functions_config.php:708 -#: ../../include/class/CredentialStore.class.php:805 -#: ../../include/class/CredentialStore.class.php:1134 -#: ../../include/class/AuditLog.class.php:108 ../../include/class/AuditLog.class.php:211 +#: ../../include/functions_reporting_html.php:5923 +#: ../../include/functions.php:3099 ../../include/functions_cron.php:500 +#: ../../include/functions_config.php:705 ../../include/functions_config.php:725 +#: ../../include/class/CredentialStore.class.php:843 +#: ../../include/class/CredentialStore.class.php:1322 +#: ../../include/class/AuditLog.class.php:107 +#: ../../include/class/AuditLog.class.php:210 #: ../../include/functions_events.php:202 ../../include/functions_events.php:253 -#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:723 -#: ../../operation/users/user_edit.php:769 +#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:795 +#: ../../operation/users/user_edit.php:841 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 #: ../../general/logon_ok.php:249 ../../general/login_page.php:230 @@ -10362,15 +10928,15 @@ msgstr "ユーザ" #: ../../enterprise/meta/include/functions_wizard_meta.php:520 #: ../../enterprise/meta/include/functions_wizard_meta.php:1474 -#: ../../enterprise/meta/include/functions_meta.php:1189 -#: ../../enterprise/meta/include/functions_meta.php:1243 -#: ../../enterprise/meta/include/functions_meta.php:1297 +#: ../../enterprise/meta/include/functions_meta.php:1208 +#: ../../enterprise/meta/include/functions_meta.php:1262 +#: ../../enterprise/meta/include/functions_meta.php:1316 #: ../../enterprise/meta/general/login_page.php:139 #: ../../enterprise/meta/general/login_page.php:181 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 #: ../../enterprise/godmode/setup/setup_module_library.php:52 -#: ../../enterprise/godmode/setup/setup_auth.php:1045 -#: ../../enterprise/godmode/setup/setup_auth.php:1077 +#: ../../enterprise/godmode/setup/setup_auth.php:1043 +#: ../../enterprise/godmode/setup/setup_auth.php:1075 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 #: ../../enterprise/godmode/servers/manage_export_form.php:117 @@ -10385,20 +10951,23 @@ msgstr "ユーザ" #: ../../enterprise/include/class/MySQL.app.php:535 #: ../../enterprise/include/class/Oracle.app.php:520 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514 -#: ../../extensions/api_checker.php:143 +#: ../../extensions/api_checker.php:227 #: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/users/configure_user.php:958 +#: ../../godmode/users/configure_user.php:1169 #: ../../godmode/agentes/module_manager_editor_wmi.php:116 #: ../../godmode/massive/massive_edit_modules.php:908 -#: ../../godmode/setup/setup_ehorus.php:86 ../../godmode/setup/setup_integria.php:289 -#: ../../mobile/include/user.class.php:403 ../../include/functions_config.php:692 -#: ../../include/functions_config.php:712 -#: ../../include/class/CredentialStore.class.php:958 -#: ../../include/class/CredentialStore.class.php:995 -#: ../../include/class/CredentialStore.class.php:1135 -#: ../../include/class/CredentialStore.class.php:1158 -#: ../../include/class/AgentWizard.class.php:680 ../../operation/users/user_edit.php:729 -#: ../../operation/users/user_edit.php:775 ../../general/login_page.php:244 +#: ../../godmode/setup/setup_ehorus.php:86 +#: ../../godmode/setup/setup_integria.php:289 +#: ../../mobile/include/user.class.php:403 ../../include/functions_ui.php:6920 +#: ../../include/functions_config.php:709 ../../include/functions_config.php:729 +#: ../../include/class/CredentialStore.class.php:998 +#: ../../include/class/CredentialStore.class.php:1048 +#: ../../include/class/CredentialStore.class.php:1323 +#: ../../include/class/CredentialStore.class.php:1346 +#: ../../include/class/CredentialStore.class.php:1368 +#: ../../include/class/AgentWizard.class.php:689 +#: ../../operation/users/user_edit.php:801 +#: ../../operation/users/user_edit.php:847 ../../general/login_page.php:244 #: ../../general/login_page.php:285 msgid "Password" msgstr "パスワード" @@ -10419,7 +10988,7 @@ msgstr "チェックタイプ" #: ../../enterprise/meta/include/functions_wizard_meta.php:610 #: ../../enterprise/meta/include/functions_wizard_meta.php:667 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066 -#: ../../enterprise/include/functions_enterprise.php:460 +#: ../../enterprise/include/functions_enterprise.php:467 #: ../../godmode/agentes/module_manager_editor_web.php:93 #: ../../godmode/massive/massive_edit_modules.php:1141 msgid "Web checks" @@ -10438,7 +11007,7 @@ msgid "Delete check" msgstr "チェックを削除" #: ../../enterprise/meta/include/functions_wizard_meta.php:674 -#: ../../enterprise/godmode/modules/configure_local_component.php:494 +#: ../../enterprise/godmode/modules/configure_local_component.php:506 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 #: ../../godmode/agentes/module_manager_editor_web.php:164 msgid "Load basic" @@ -10472,7 +11041,7 @@ msgid "Last line must be \"task_end\"" msgstr "最後の行は、\"task_end\" でなければいけません。" #: ../../enterprise/meta/include/functions_wizard_meta.php:699 -#: ../../enterprise/godmode/modules/configure_local_component.php:513 +#: ../../enterprise/godmode/modules/configure_local_component.php:525 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:203 #: ../../godmode/agentes/module_manager_editor_web.php:257 msgid "There is a line with a unknown token 'token_fail'." @@ -10489,9 +11058,8 @@ msgstr "ウェブチェックを設定しました" #: ../../enterprise/meta/include/functions_wizard_meta.php:1520 #: ../../enterprise/meta/include/functions_wizard_meta.php:1605 #: ../../enterprise/meta/include/functions_wizard_meta.php:1742 -#: ../../enterprise/meta/agentsearch.php:137 -#: ../../enterprise/godmode/modules/configure_local_component.php:289 -#: ../../enterprise/godmode/agentes/inventory_manager.php:223 +#: ../../enterprise/meta/agentsearch.php:138 +#: ../../enterprise/godmode/modules/configure_local_component.php:291 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:465 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:507 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:304 @@ -10517,30 +11085,34 @@ msgstr "ウェブチェックを設定しました" #: ../../godmode/modules/manage_network_components_form_common.php:143 #: ../../godmode/agentes/status_monitor_custom_fields.php:93 #: ../../godmode/agentes/status_monitor_custom_fields.php:147 +#: ../../godmode/agentes/inventory_manager.php:224 #: ../../godmode/agentes/agent_manager.php:378 -#: ../../godmode/agentes/module_manager_editor_common.php:617 -#: ../../godmode/agentes/module_manager_editor_common.php:642 -#: ../../godmode/agentes/module_manager.php:863 +#: ../../godmode/agentes/module_manager_editor_common.php:632 +#: ../../godmode/agentes/module_manager_editor_common.php:657 +#: ../../godmode/agentes/module_manager.php:899 #: ../../godmode/massive/massive_edit_agents.php:714 #: ../../godmode/massive/massive_edit_modules.php:754 -#: ../../godmode/wizards/HostDevices.class.php:798 +#: ../../godmode/wizards/HostDevices.class.php:800 #: ../../godmode/wizards/DiscoveryTaskList.class.php:596 #: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 #: ../../mobile/operation/modules.php:851 -#: ../../include/functions_reporting_html.php:3602 ../../include/ajax/events.php:2315 -#: ../../include/functions_treeview.php:84 ../../include/functions_treeview.php:646 +#: ../../include/functions_reporting_html.php:3619 +#: ../../include/ajax/events.php:2287 ../../include/functions_treeview.php:84 +#: ../../include/functions_treeview.php:646 ../../include/functions_ui.php:6900 #: ../../include/class/CustomNetScan.class.php:520 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:372 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:319 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:362 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:387 #: ../../include/lib/Dashboard/Widgets/single_graph.php:347 #: ../../include/lib/Dashboard/Widgets/top_n.php:236 #: ../../operation/search_agents.php:45 ../../operation/search_agents.php:51 #: ../../operation/agentes/estado_agente.php:751 -#: ../../operation/agentes/status_monitor.php:1328 +#: ../../operation/agentes/status_monitor.php:1341 #: ../../operation/agentes/estado_generalagente.php:357 -#: ../../operation/netflow/nf_live_view.php:270 ../../operation/search_modules.php:35 +#: ../../operation/netflow/nf_live_view.php:270 +#: ../../operation/search_modules.php:35 #: ../../operation/events/sound_events.php:219 msgid "Interval" msgstr "間隔" @@ -10551,13 +11123,13 @@ msgstr "間隔" #: ../../enterprise/meta/include/functions_wizard_meta.php:1525 #: ../../enterprise/meta/include/functions_wizard_meta.php:1610 #: ../../enterprise/meta/include/functions_wizard_meta.php:1747 -#: ../../enterprise/godmode/modules/configure_local_component.php:468 +#: ../../enterprise/godmode/modules/configure_local_component.php:480 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868 -#: ../../enterprise/include/functions_reporting_csv.php:2787 -#: ../../godmode/modules/manage_network_components_form_common.php:312 -#: ../../godmode/agentes/module_manager_editor_common.php:582 +#: ../../enterprise/include/functions_reporting_csv.php:2791 +#: ../../godmode/modules/manage_network_components_form_common.php:323 +#: ../../godmode/agentes/module_manager_editor_common.php:597 #: ../../godmode/massive/massive_edit_modules.php:925 -#: ../../include/functions_reporting_html.php:3603 +#: ../../include/functions_reporting_html.php:3620 msgid "Unit" msgstr "単位" @@ -10578,7 +11150,8 @@ msgstr "SNMP コミュニティ" #: ../../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 +#: ../../extensions/api_checker.php:279 +#: ../../godmode/wizards/HostDevices.class.php:1491 msgid "Credentials" msgstr "認証情報" @@ -10597,15 +11170,18 @@ msgstr "認証情報" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:281 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:393 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1813 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2452 -#: ../../enterprise/include/functions_reporting_csv.php:1076 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1833 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2503 +#: ../../enterprise/include/functions_reporting_csv.php:1080 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2252 #: ../../godmode/alerts/alert_view.php:266 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1416 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2526 -#: ../../include/functions_reporting_html.php:4901 ../../include/functions_ui.php:2610 -#: ../../include/functions_reporting.php:1533 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1455 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2529 +#: ../../include/functions_reporting_html.php:4921 +#: ../../include/functions_ui.php:2614 ../../include/functions_reporting.php:1534 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:439 msgid "Min" msgstr "最小" @@ -10624,15 +11200,18 @@ msgstr "最小" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:293 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:386 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1811 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2445 -#: ../../enterprise/include/functions_reporting_csv.php:1076 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1831 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2496 +#: ../../enterprise/include/functions_reporting_csv.php:1080 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2252 #: ../../godmode/alerts/alert_view.php:266 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2519 -#: ../../include/functions_reporting_html.php:4900 ../../include/functions_ui.php:2610 -#: ../../include/functions_reporting.php:1529 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1457 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2522 +#: ../../include/functions_reporting_html.php:4920 +#: ../../include/functions_ui.php:2614 ../../include/functions_reporting.php:1530 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:448 msgid "Max" msgstr "最大" @@ -10649,16 +11228,16 @@ msgstr "最大" #: ../../enterprise/meta/include/functions_wizard_meta.php:1712 #: ../../enterprise/meta/include/functions_wizard_meta.php:1721 #: ../../enterprise/meta/include/functions_wizard_meta.php:1737 -#: ../../enterprise/godmode/modules/configure_local_component.php:338 -#: ../../enterprise/godmode/modules/configure_local_component.php:381 +#: ../../enterprise/godmode/modules/configure_local_component.php:340 +#: ../../enterprise/godmode/modules/configure_local_component.php:394 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 #: ../../godmode/modules/manage_network_components_form_common.php:192 -#: ../../godmode/modules/manage_network_components_form_common.php:233 +#: ../../godmode/modules/manage_network_components_form_common.php:244 #: ../../godmode/modules/manage_network_components_form_wizard.php:396 -#: ../../godmode/modules/manage_network_components_form_wizard.php:438 +#: ../../godmode/modules/manage_network_components_form_wizard.php:444 #: ../../godmode/agentes/module_manager_editor_common.php:459 -#: ../../godmode/agentes/module_manager_editor_common.php:520 +#: ../../godmode/agentes/module_manager_editor_common.php:535 #: ../../godmode/massive/massive_edit_modules.php:610 #: ../../godmode/massive/massive_edit_modules.php:701 msgid "Inverse interval" @@ -10667,7 +11246,7 @@ msgstr "条件の反転" #: ../../enterprise/meta/include/functions_wizard_meta.php:996 #: ../../enterprise/meta/include/functions_wizard_meta.php:1081 #: ../../enterprise/meta/include/functions_wizard_meta.php:1314 -#: ../../include/ajax/module.php:981 +#: ../../include/ajax/module.php:994 msgid "Thresholds" msgstr "しきい値" @@ -10698,7 +11277,7 @@ msgid "Alerts in module" msgstr "モジュール内のアラート" #: ../../enterprise/meta/include/functions_wizard_meta.php:1376 -#: ../../include/functions_reporting_html.php:5246 +#: ../../include/functions_reporting_html.php:5285 msgid "Alert description" msgstr "アラートの説明" @@ -10733,7 +11312,7 @@ msgstr "アラート作成でエラーが発生しました。操作はキャン #: ../../enterprise/meta/include/functions_wizard_meta.php:2064 #: ../../enterprise/meta/include/functions_wizard_meta.php:2159 -#: ../../enterprise/godmode/policies/policy_modules.php:919 +#: ../../enterprise/godmode/policies/policy_modules.php:922 msgid "Successfully added module." msgstr "モジュールを追加しました。" @@ -10758,7 +11337,7 @@ msgid "Could not update agent %s" msgstr "エージェント %s を更新できませんでした" #: ../../enterprise/meta/include/functions_wizard_meta.php:2338 -#: ../../enterprise/include/class/AgentRepository.class.php:552 +#: ../../enterprise/include/class/AgentRepository.class.php:567 msgid "Agent successfully updated" msgstr "エージェントを更新しました" @@ -10768,7 +11347,8 @@ msgid "%s Modules deleted" msgstr "%s モジュールを削除しました" #: ../../enterprise/meta/include/functions_wizard_meta.php:2693 -msgid "There was an error creating the alerts, the operation has been cancelled ." +msgid "" +"There was an error creating the alerts, the operation has been cancelled ." msgstr "アラート作成エラーです。操作はキャンセルされました。" #: ../../enterprise/meta/include/functions_wizard_meta.php:2723 @@ -10794,7 +11374,7 @@ msgstr "アラートの更新でエラーが発生しました。操作はキャ msgid "Successfully updated module." msgstr "モジュールを更新しました。" -#: ../../enterprise/meta/include/functions_wizard_meta.php:3504 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3508 msgid "Manage agent modules" msgstr "エージェントモジュール管理" @@ -10804,10 +11384,11 @@ msgid "Everyday" msgstr "毎日" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../enterprise/meta/include/functions_meta.php:2127 +#: ../../enterprise/meta/include/functions_meta.php:2117 #: ../../enterprise/include/ajax/ipam.ajax.php:521 #: ../../enterprise/tools/ipam/ipam_editor.php:327 -#: ../../godmode/alerts/alert_templates.php:73 ../../include/functions_config.php:1572 +#: ../../godmode/alerts/alert_templates.php:73 +#: ../../include/functions_config.php:1586 msgid "Days" msgstr "日間" @@ -10824,7 +11405,7 @@ msgstr "と" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2245 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2247 #: ../../godmode/snmpconsole/snmp_alert.php:1083 #: ../../godmode/alerts/alert_templates.php:91 #: ../../godmode/alerts/configure_alert_template.php:676 @@ -10834,23 +11415,24 @@ msgstr "再通知間隔" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 #: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 -#: ../../enterprise/include/functions_reporting_pdf.php:1817 -#: ../../enterprise/include/functions_reporting_pdf.php:1890 -#: ../../enterprise/include/functions_reporting_pdf.php:2005 -#: ../../enterprise/include/functions_reporting_csv.php:719 -#: ../../enterprise/include/functions_reporting_csv.php:997 -#: ../../enterprise/include/functions_reporting_csv.php:1371 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2379 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3379 -#: ../../godmode/agentes/planned_downtime.list.php:293 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:478 +#: ../../enterprise/include/functions_reporting_pdf.php:1820 +#: ../../enterprise/include/functions_reporting_pdf.php:1893 +#: ../../enterprise/include/functions_reporting_pdf.php:2008 +#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/functions_reporting_csv.php:1001 +#: ../../enterprise/include/functions_reporting_csv.php:1375 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2377 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2381 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3381 +#: ../../godmode/agentes/planned_downtime.list.php:330 #: ../../godmode/alerts/alert_list.list.php:658 #: ../../godmode/alerts/alert_list.list.php:661 #: ../../godmode/alerts/alert_templates.php:96 -#: ../../include/functions_reporting_html.php:147 -#: ../../include/functions_reporting_html.php:3105 -#: ../../include/functions_reporting_html.php:3910 ../../include/rest-api/index.php:359 +#: ../../include/functions_reporting_html.php:148 +#: ../../include/functions_reporting_html.php:3118 +#: ../../include/functions_reporting_html.php:3929 +#: ../../include/rest-api/index.php:372 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 #: ../../operation/agentes/gis_view.php:220 @@ -10861,25 +11443,25 @@ msgstr "開始" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 #: ../../enterprise/godmode/policies/policy_alerts.php:436 #: ../../enterprise/godmode/policies/policy_alerts.php:600 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:611 -#: ../../enterprise/include/functions_reporting_pdf.php:1823 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1017 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2379 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2536 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3381 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3510 -#: ../../godmode/massive/massive_add_action_alerts.php:254 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:478 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:613 +#: ../../enterprise/include/functions_reporting_pdf.php:1826 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1019 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2377 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2381 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2538 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3383 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3512 +#: ../../godmode/massive/massive_add_action_alerts.php:255 #: ../../godmode/alerts/alert_list.list.php:658 #: ../../godmode/alerts/alert_list.list.php:778 #: ../../godmode/alerts/alert_templates.php:98 #: ../../godmode/alerts/alert_list.builder.php:129 -#: ../../include/functions_reporting_html.php:148 -#: ../../include/functions_reporting_html.php:3110 +#: ../../include/functions_reporting_html.php:149 +#: ../../include/functions_reporting_html.php:3123 #: ../../include/ajax/alert_list.ajax.php:527 #: ../../include/class/AgentsAlerts.class.php:316 -#: ../../include/functions_reporting.php:14361 +#: ../../include/functions_reporting.php:14676 #: ../../operation/reporting/reporting_viewer.php:308 msgid "to" msgstr "終了" @@ -10903,38 +11485,33 @@ msgstr "イベント ID" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 #: ../../include/functions_reporting_html.php:1314 #: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:5178 -#: ../../include/functions_events.php:200 ../../include/functions_events.php:2444 -#: ../../include/functions_events.php:4593 +#: ../../include/functions_reporting_html.php:5217 +#: ../../include/functions_events.php:200 ../../include/functions_events.php:2528 +#: ../../include/functions_events.php:4706 msgid "Event name" msgstr "イベント名" #: ../../enterprise/meta/include/functions_events_meta.php:66 -#: ../../enterprise/include/functions_reporting_csv.php:917 -#: ../../enterprise/include/functions_ipam.php:2045 +#: ../../enterprise/include/functions_reporting_csv.php:921 +#: ../../enterprise/include/functions_ipam.php:2053 #: ../../godmode/agentes/modificar_agente.php:647 -#: ../../godmode/agentes/agent_manager.php:213 ../../mobile/operation/modules.php:597 -#: ../../mobile/operation/modules.php:849 -#: ../../include/functions_reporting_html.php:3546 +#: ../../godmode/agentes/agent_manager.php:213 +#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 +#: ../../include/functions_reporting_html.php:3563 #: ../../include/functions_treeview.php:617 -#: ../../include/class/SatelliteAgent.class.php:363 +#: ../../include/class/SatelliteAgent.class.php:522 #: ../../include/functions_events.php:201 ../../include/functions_events.php:247 -#: ../../include/functions_events.php:2449 ../../operation/events/events.php:2438 +#: ../../include/functions_events.php:2533 ../../operation/events/events.php:2592 msgid "Agent name" msgstr "エージェント名" #: ../../enterprise/meta/include/functions_events_meta.php:82 -#: ../../enterprise/include/functions_inventory.php:143 -#: ../../enterprise/include/functions_inventory.php:177 -#: ../../enterprise/include/functions_inventory.php:379 -#: ../../enterprise/include/functions_inventory.php:399 -#: ../../enterprise/include/functions_inventory.php:585 -#: ../../enterprise/include/functions_reporting_csv.php:848 -#: ../../enterprise/include/functions_reporting_csv.php:921 -#: ../../enterprise/include/functions_reporting_csv.php:1504 -#: ../../enterprise/include/functions_reporting_csv.php:2327 -#: ../../enterprise/include/functions_reporting_csv.php:2363 -#: ../../enterprise/include/functions_reporting_csv.php:2675 +#: ../../enterprise/include/functions_reporting_csv.php:852 +#: ../../enterprise/include/functions_reporting_csv.php:925 +#: ../../enterprise/include/functions_reporting_csv.php:1508 +#: ../../enterprise/include/functions_reporting_csv.php:2331 +#: ../../enterprise/include/functions_reporting_csv.php:2367 +#: ../../enterprise/include/functions_reporting_csv.php:2679 #: ../../enterprise/include/class/Omnishell.class.php:400 #: ../../enterprise/include/class/LogSource.class.php:628 #: ../../enterprise/operation/agentes/tag_view.php:686 @@ -10943,22 +11520,31 @@ msgstr "エージェント名" #: ../../godmode/agentes/status_monitor_custom_fields.php:153 #: ../../godmode/setup/news.php:249 ../../godmode/events/custom_events.php:102 #: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852 -#: ../../mobile/operation/events.php:804 ../../include/functions_reporting_html.php:1057 +#: ../../mobile/operation/events.php:804 +#: ../../include/functions_reporting_html.php:1057 #: ../../include/functions_reporting_html.php:1065 #: ../../include/functions_reporting_html.php:1318 #: ../../include/functions_reporting_html.php:1325 -#: ../../include/functions_reporting_html.php:2544 -#: ../../include/functions_reporting_html.php:5180 -#: ../../include/ajax/events_extended.php:90 ../../include/ajax/custom_fields.php:415 -#: ../../include/functions_netflow.php:278 ../../include/functions_events.php:205 -#: ../../include/functions_events.php:262 ../../include/functions_events.php:2454 -#: ../../include/functions_events.php:4606 ../../operation/agentes/exportdata.csv.php:74 +#: ../../include/functions_reporting_html.php:2555 +#: ../../include/functions_reporting_html.php:5219 +#: ../../include/ajax/events_extended.php:90 +#: ../../include/ajax/custom_fields.php:415 +#: ../../include/functions_inventory.php:143 +#: ../../include/functions_inventory.php:177 +#: ../../include/functions_inventory.php:379 +#: ../../include/functions_inventory.php:399 +#: ../../include/functions_inventory.php:585 +#: ../../include/functions_netflow.php:278 +#: ../../include/class/SnmpConsole.class.php:342 +#: ../../include/functions_events.php:205 ../../include/functions_events.php:262 +#: ../../include/functions_events.php:2538 +#: ../../include/functions_events.php:4719 +#: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/status_monitor.php:1364 -#: ../../operation/agentes/estado_generalagente.php:644 +#: ../../operation/agentes/status_monitor.php:1377 +#: ../../operation/agentes/estado_generalagente.php:660 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/messages/message_list.php:200 -#: ../../operation/snmpconsole/snmp_view.php:881 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247 #: ../../operation/search_modules.php:39 @@ -10967,101 +11553,106 @@ msgstr "タイムスタンプ" #: ../../enterprise/meta/include/functions_events_meta.php:86 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:658 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2854 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1382 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1123 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2905 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1384 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1124 #: ../../enterprise/include/functions_events.php:60 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2976 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2979 #: ../../godmode/events/event_filter.php:138 -#: ../../godmode/events/event_edit_filter.php:322 +#: ../../godmode/events/event_edit_filter.php:344 #: ../../include/lib/Dashboard/Widgets/events_list.php:332 -#: ../../include/functions_events.php:206 ../../operation/events/events.php:1595 +#: ../../include/functions_events.php:206 ../../operation/events/events.php:1674 msgid "Event type" msgstr "イベントタイプ" #: ../../enterprise/meta/include/functions_events_meta.php:90 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:347 -#: ../../enterprise/include/functions_reporting_csv.php:919 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:349 +#: ../../enterprise/include/functions_reporting_csv.php:923 #: ../../enterprise/operation/agentes/tag_view.php:205 #: ../../godmode/modules/manage_network_templates_form.php:231 -#: ../../godmode/modules/manage_network_components.php:748 +#: ../../godmode/modules/manage_network_components.php:751 #: ../../godmode/modules/manage_network_components_form_wizard.php:272 -#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/agent_template.php:236 #: ../../godmode/agentes/status_monitor_custom_fields.php:85 #: ../../godmode/agentes/status_monitor_custom_fields.php:145 -#: ../../godmode/alerts/alert_list.list.php:99 ../../mobile/operation/modules.php:594 -#: ../../mobile/operation/modules.php:848 ../../include/ajax/heatmap.ajax.php:225 -#: ../../include/ajax/heatmap.ajax.php:264 ../../include/ajax/module.php:978 +#: ../../godmode/alerts/alert_list.list.php:99 +#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848 +#: ../../include/ajax/heatmap.ajax.php:231 +#: ../../include/ajax/heatmap.ajax.php:270 ../../include/ajax/module.php:991 #: ../../include/ajax/custom_fields.php:411 #: ../../operation/agentes/status_monitor.php:536 -#: ../../operation/agentes/status_monitor.php:1318 +#: ../../operation/agentes/status_monitor.php:1331 msgid "Module name" msgstr "モジュール名" #: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:391 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:393 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4351 -#: ../../godmode/agentes/configurar_agente.php:737 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4353 +#: ../../godmode/agentes/configurar_agente.php:758 #: ../../godmode/alerts/configure_alert_template.php:1552 -#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4101 -#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:208 -#: ../../include/functions_events.php:271 +#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4152 +#: ../../include/functions_snmp.php:324 +#: ../../include/class/SnmpConsole.class.php:343 +#: ../../include/class/SnmpConsole.class.php:416 +#: ../../include/class/SnmpConsole.class.php:524 +#: ../../include/functions_events.php:208 ../../include/functions_events.php:271 #: ../../operation/agentes/estado_monitores.php:522 -#: ../../operation/snmpconsole/snmp_view.php:543 -#: ../../operation/snmpconsole/snmp_view.php:886 -#: ../../operation/snmpconsole/snmp_view.php:1246 msgid "Alert" msgstr "アラート" #: ../../enterprise/meta/include/functions_events_meta.php:98 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:93 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:632 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2827 -#: ../../enterprise/include/functions_reporting.php:2026 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2878 +#: ../../enterprise/include/functions_reporting.php:2027 #: ../../enterprise/include/functions_events.php:70 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2949 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2952 #: ../../godmode/events/event_filter.php:140 -#: ../../godmode/events/event_edit_filter.php:337 -#: ../../godmode/events/custom_events.php:106 ../../mobile/operation/events.php:678 -#: ../../mobile/operation/events.php:679 ../../mobile/operation/events.php:820 -#: ../../mobile/operation/events.php:982 ../../mobile/operation/events.php:983 +#: ../../godmode/events/event_edit_filter.php:359 +#: ../../godmode/events/custom_events.php:106 +#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 +#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982 +#: ../../mobile/operation/events.php:983 #: ../../include/functions_reporting_html.php:1055 #: ../../include/functions_reporting_html.php:1063 #: ../../include/functions_reporting_html.php:1316 #: ../../include/functions_reporting_html.php:1324 -#: ../../include/functions_reporting_html.php:2542 ../../include/functions_snmp.php:335 +#: ../../include/functions_reporting_html.php:2553 +#: ../../include/functions_snmp.php:335 +#: ../../include/class/SnmpConsole.class.php:426 +#: ../../include/class/SnmpConsole.class.php:550 #: ../../include/lib/Dashboard/Widgets/events_list.php:404 #: ../../include/functions_events.php:209 ../../include/functions_events.php:274 -#: ../../include/functions_events.php:2436 ../../include/functions_events.php:4659 -#: ../../operation/snmpconsole/snmp_view.php:572 ../../operation/events/events.php:1675 +#: ../../include/functions_events.php:2520 +#: ../../include/functions_events.php:4780 ../../operation/events/events.php:1770 msgid "Severity" msgstr "重要度" #: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:638 +#: ../../godmode/events/event_edit_filter.php:689 #: ../../godmode/events/custom_events.php:107 -#: ../../godmode/wizards/HostDevices.class.php:958 +#: ../../godmode/wizards/HostDevices.class.php:961 #: ../../include/class/CustomNetScan.class.php:468 #: ../../include/functions_events.php:210 ../../include/functions_events.php:277 -#: ../../include/functions_events.php:3412 ../../operation/events/events.php:1744 +#: ../../include/functions_events.php:3475 ../../operation/events/events.php:1868 msgid "Comment" msgstr "コメント" #: ../../enterprise/meta/include/functions_events_meta.php:106 -#: ../../enterprise/godmode/modules/configure_local_component.php:550 +#: ../../enterprise/godmode/modules/configure_local_component.php:562 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 #: ../../enterprise/godmode/setup/setup_auth.php:231 #: ../../enterprise/godmode/setup/setup_auth.php:510 -#: ../../enterprise/godmode/setup/setup_auth.php:1307 -#: ../../enterprise/include/functions_reporting_csv.php:759 +#: ../../enterprise/godmode/setup/setup_auth.php:1305 +#: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../enterprise/operation/agentes/tag_view.php:223 #: ../../enterprise/operation/agentes/tag_view.php:225 #: ../../enterprise/operation/agentes/tag_view.php:678 -#: ../../godmode/modules/manage_network_components_form_common.php:351 +#: ../../godmode/modules/manage_network_components_form_common.php:362 #: ../../godmode/massive/massive_copy_modules.php:172 #: ../../godmode/massive/massive_delete_modules.php:401 #: ../../godmode/massive/massive_delete_modules.php:515 @@ -11070,14 +11661,16 @@ msgstr "コメント" #: ../../godmode/massive/massive_edit_modules.php:1047 #: ../../godmode/reporting/reporting_builder.item_editor.php:85 #: ../../godmode/events/custom_events.php:108 ../../godmode/tag/edit_tag.php:66 -#: ../../mobile/operation/events.php:845 ../../include/functions_reporting_html.php:1718 -#: ../../include/functions_reporting_html.php:3605 -#: ../../include/functions_treeview.php:168 ../../include/functions_profile.php:215 +#: ../../mobile/operation/events.php:845 +#: ../../include/functions_reporting_html.php:1718 +#: ../../include/functions_reporting_html.php:3622 +#: ../../include/functions_treeview.php:168 +#: ../../include/functions_profile.php:215 #: ../../include/lib/Dashboard/Widgets/events_list.php:461 #: ../../include/lib/Dashboard/Widgets/tree_view.php:329 #: ../../include/functions_events.php:211 ../../include/functions_events.php:280 -#: ../../include/functions_events.php:4746 ../../operation/tree.php:66 -#: ../../operation/users/user_edit.php:842 +#: ../../include/functions_events.php:4867 ../../operation/tree.php:66 +#: ../../operation/users/user_edit.php:914 #: ../../operation/agentes/status_monitor.php:550 #: ../../operation/agentes/group_view.php:222 #: ../../operation/agentes/alerts_status.functions.php:108 @@ -11086,39 +11679,41 @@ msgid "Tags" msgstr "タグ" #: ../../enterprise/meta/include/functions_events_meta.php:114 -#: ../../include/functions_events.php:213 ../../include/functions_events.php:4318 +#: ../../include/functions_events.php:213 ../../include/functions_events.php:4431 msgid "Extra id" msgstr "拡張 ID" #: ../../enterprise/meta/include/functions_events_meta.php:118 -#: ../../godmode/setup/setup_integria.php:397 ../../godmode/setup/setup_integria.php:519 -#: ../../godmode/events/custom_events.php:111 ../../mobile/operation/events.php:808 -#: ../../include/functions_events.php:214 ../../include/functions_events.php:289 -#: ../../include/functions_events.php:4618 +#: ../../godmode/setup/setup_integria.php:397 +#: ../../godmode/setup/setup_integria.php:519 +#: ../../godmode/events/custom_events.php:111 +#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214 +#: ../../include/functions_events.php:289 ../../include/functions_events.php:4734 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:312 #: ../../operation/incidents/list_integriaims_incidents.php:342 #: ../../operation/incidents/list_integriaims_incidents.php:522 +#: ../../operation/events/events.php:1977 msgid "Owner" msgstr "所有者" #: ../../enterprise/meta/include/functions_events_meta.php:122 -#: ../../godmode/events/custom_events.php:112 ../../include/functions_events.php:215 -#: ../../include/functions_events.php:292 +#: ../../godmode/events/custom_events.php:112 +#: ../../include/functions_events.php:215 ../../include/functions_events.php:292 msgid "ACK Timestamp" msgstr "ACK タイムスタンプ" #: ../../enterprise/meta/include/functions_events_meta.php:126 -#: ../../godmode/events/custom_events.php:113 ../../include/functions_events.php:216 -#: ../../include/functions_events.php:295 ../../include/functions_events.php:4306 -#: ../../operation/events/events.php:2990 +#: ../../godmode/events/custom_events.php:113 +#: ../../include/functions_events.php:216 ../../include/functions_events.php:295 +#: ../../include/functions_events.php:4419 ../../operation/events/events.php:3152 msgid "Instructions" msgstr "手順" #: ../../enterprise/meta/include/functions_events_meta.php:130 #: ../../enterprise/godmode/setup/setup_metaconsole.php:198 #: ../../enterprise/godmode/setup/setup_metaconsole.php:273 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:772 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:878 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 #: ../../godmode/wizards/DiscoveryTaskList.class.php:593 @@ -11127,7 +11722,7 @@ msgid "Server name" msgstr "サーバ名" #: ../../enterprise/meta/include/functions_events_meta.php:138 -#: ../../include/functions_reporting_html.php:5109 +#: ../../include/functions_reporting_html.php:5129 #: ../../include/lib/Dashboard/Widgets/module_status.php:175 #: ../../include/lib/Dashboard/Widgets/module_status.php:572 #: ../../include/functions_events.php:219 ../../operation/tree.php:285 @@ -11136,7 +11731,8 @@ 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:79 +#: ../../enterprise/meta/general/login_page.php:45 +#: ../../general/login_page.php:79 msgid "Splash login" msgstr "スプラッシュログイン" @@ -11159,9 +11755,9 @@ msgstr "次へ行く " #: ../../enterprise/meta/include/reset_pass.php:47 #: ../../enterprise/meta/general/login_page.php:64 #: ../../enterprise/include/process_reset_pass.php:58 -#: ../../enterprise/include/reset_pass.php:53 ../../general/login_help_dialog.php:83 -#: ../../general/login_help_dialog.php:88 ../../general/login_page.php:148 -#: ../../general/login_page.php:151 +#: ../../enterprise/include/reset_pass.php:53 +#: ../../general/login_help_dialog.php:83 ../../general/login_help_dialog.php:88 +#: ../../general/login_page.php:148 ../../general/login_page.php:151 msgid "Support" msgstr "サポート" @@ -11174,15 +11770,15 @@ 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:645 -#: ../../godmode/servers/plugin.php:526 ../../include/functions_ui.php:1452 +#: ../../enterprise/godmode/modules/configure_local_component.php:657 +#: ../../godmode/servers/plugin.php:513 ../../include/functions_ui.php:1452 #: ../../include/class/ManageNetScanScripts.class.php:690 msgid "Help" msgstr "ヘルプ" #: ../../enterprise/meta/include/process_reset_pass.php:96 #: ../../enterprise/include/process_reset_pass.php:103 -#: ../../operation/users/user_edit.php:301 +#: ../../operation/users/user_edit.php:375 msgid "New Password" msgstr "新しいパスワード" @@ -11197,8 +11793,8 @@ msgid "Change password" msgstr "パスワード変更" #: ../../enterprise/meta/include/process_reset_pass.php:123 -#: ../../enterprise/meta/index.php:665 -#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:842 +#: ../../enterprise/meta/index.php:668 +#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:846 msgid "Passwords must be the same" msgstr "パスワードは同じでなければいけません" @@ -11218,7 +11814,7 @@ msgstr "%s NEXT GENERATION" #: ../../enterprise/meta/include/process_reset_pass.php:150 #: ../../enterprise/meta/include/reset_pass.php:147 #: ../../enterprise/meta/general/login_page.php:217 -#: ../../include/functions_config.php:2470 +#: ../../include/functions_config.php:2530 msgid "METACONSOLE" msgstr "メタコンソール" @@ -11226,7 +11822,8 @@ msgstr "メタコンソール" #: ../../enterprise/meta/include/reset_pass.php:161 #: ../../enterprise/meta/general/login_page.php:232 #: ../../enterprise/include/process_reset_pass.php:183 -#: ../../enterprise/include/reset_pass.php:170 ../../general/login_page.php:424 +#: ../../enterprise/include/reset_pass.php:170 +#: ../../include/functions_menu.php:836 ../../general/login_page.php:424 msgid "Build" msgstr "ビルド" @@ -11269,23 +11866,36 @@ msgid "Colecctions" msgstr "コレクション" #: ../../enterprise/meta/include/functions_agents_meta.php:605 -msgid "Agents Management" -msgstr "エージェント管理" +#: ../../enterprise/meta/general/main_menu.php:533 +msgid "Agent operations" +msgstr "エージェント操作" -#: ../../enterprise/meta/include/functions_agents_meta.php:614 -#: ../../enterprise/meta/include/functions_agents_meta.php:619 +#: ../../enterprise/meta/include/functions_agents_meta.php:616 +#: ../../enterprise/meta/general/main_menu.php:539 +msgid "User operations" +msgstr "ユーザ操作" + +#: ../../enterprise/meta/include/functions_agents_meta.php:625 +#: ../../enterprise/meta/include/functions_agents_meta.php:635 #: ../../enterprise/extensions/disabled/check_acls.php:50 #: ../../enterprise/extensions/disabled/check_acls.php:137 #: ../../include/functions_menu.php:492 msgid "Agents management" msgstr "エージェント管理" +#: ../../enterprise/meta/include/functions_agents_meta.php:630 +#: ../../enterprise/extensions/disabled/check_acls.php:53 +#: ../../enterprise/extensions/disabled/check_acls.php:140 +#: ../../godmode/menu.php:151 +msgid "Users management" +msgstr "ユーザ管理" + #: ../../enterprise/meta/include/functions_meta.php:51 msgid "No admin user" msgstr "管理者ではありません" #: ../../enterprise/meta/include/functions_meta.php:70 -#: ../../include/functions_config.php:411 +#: ../../include/functions_config.php:416 msgid "Activate Metaconsole" msgstr "メタコンソールの有効化" @@ -11302,6 +11912,11 @@ msgstr "添付ファイル保存場所。" msgid "Netflow disable custom live view filters" msgstr "Netflow は、カスタムライブビューフィルタを無効にします" +#: ../../enterprise/meta/include/functions_meta.php:250 +#: ../../enterprise/godmode/setup/setup.php:210 +msgid "Enable update manager" +msgstr "アップデートマネージャの有効化" + #: ../../enterprise/meta/include/functions_meta.php:264 msgid "Customizable section" msgstr "カスタマイズ可能なセクション" @@ -11318,578 +11933,577 @@ msgstr "ポリシーでの最大エージェントの追加" msgid "Sync items warn detection" msgstr "アイテム同期で警告検出" -#: ../../enterprise/meta/include/functions_meta.php:482 +#: ../../enterprise/meta/include/functions_meta.php:492 msgid "IP ElasticSearch" msgstr "IP ElasticSearch" -#: ../../enterprise/meta/include/functions_meta.php:492 +#: ../../enterprise/meta/include/functions_meta.php:502 msgid "Port ElasticSearch" msgstr "ポート ElasticSearch" -#: ../../enterprise/meta/include/functions_meta.php:502 +#: ../../enterprise/meta/include/functions_meta.php:512 #: ../../enterprise/godmode/setup/setup_log_collector.php:41 -#: ../../include/functions_config.php:1517 +#: ../../include/functions_config.php:1527 msgid "Number of logs viewed" msgstr "ログ表示数" -#: ../../enterprise/meta/include/functions_meta.php:514 -#: ../../godmode/setup/setup_auth.php:440 ../../include/functions_config.php:524 -#: ../../include/class/AgentWizard.class.php:839 +#: ../../enterprise/meta/include/functions_meta.php:533 +#: ../../godmode/setup/setup_auth.php:456 ../../include/functions_config.php:537 +#: ../../include/class/CredentialStore.class.php:1186 +#: ../../include/class/CredentialStore.class.php:1477 +#: ../../include/class/AgentWizard.class.php:922 msgid "Authentication method" msgstr "認証方法" -#: ../../enterprise/meta/include/functions_meta.php:524 -#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:648 +#: ../../enterprise/meta/include/functions_meta.php:543 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:665 msgid "Fallback to local authentication" msgstr "ローカル認証へのフォールバック" -#: ../../enterprise/meta/include/functions_meta.php:534 -#: ../../enterprise/meta/include/functions_meta.php:753 -#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:528 +#: ../../enterprise/meta/include/functions_meta.php:553 +#: ../../enterprise/meta/include/functions_meta.php:772 +#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:541 msgid "Autocreate remote users" msgstr "リモートユーザの自動作成" -#: ../../enterprise/meta/include/functions_meta.php:544 +#: ../../enterprise/meta/include/functions_meta.php:563 #: ../../enterprise/godmode/setup/setup_auth.php:55 #: ../../enterprise/godmode/setup/setup_auth.php:303 #: ../../enterprise/godmode/setup/setup_auth.php:364 -#: ../../enterprise/godmode/setup/setup_auth.php:1159 -#: ../../include/functions_config.php:532 +#: ../../enterprise/godmode/setup/setup_auth.php:1157 +#: ../../include/functions_config.php:545 msgid "Autocreate profile" msgstr "プロファイルの自動作成" -#: ../../enterprise/meta/include/functions_meta.php:554 +#: ../../enterprise/meta/include/functions_meta.php:573 #: ../../enterprise/godmode/setup/setup_auth.php:61 #: ../../enterprise/godmode/setup/setup_auth.php:309 #: ../../enterprise/godmode/setup/setup_auth.php:370 -#: ../../enterprise/godmode/setup/setup_auth.php:1165 -#: ../../include/functions_config.php:536 +#: ../../enterprise/godmode/setup/setup_auth.php:1163 +#: ../../include/functions_config.php:549 msgid "Autocreate profile group" msgstr "プロファイルグループの自動作成" -#: ../../enterprise/meta/include/functions_meta.php:564 +#: ../../enterprise/meta/include/functions_meta.php:583 #: ../../enterprise/godmode/setup/setup_auth.php:68 #: ../../enterprise/godmode/setup/setup_auth.php:318 #: ../../enterprise/godmode/setup/setup_auth.php:379 -#: ../../enterprise/godmode/setup/setup_auth.php:1174 -#: ../../include/functions_config.php:540 +#: ../../enterprise/godmode/setup/setup_auth.php:1172 +#: ../../include/functions_config.php:553 msgid "Autocreate profile tags" msgstr "自動作成プロファイルタグ" -#: ../../enterprise/meta/include/functions_meta.php:574 +#: ../../enterprise/meta/include/functions_meta.php:593 #: ../../enterprise/godmode/setup/setup_auth.php:324 -#: ../../include/functions_config.php:544 +#: ../../include/functions_config.php:557 msgid "Automatically assigned no hierarchy" msgstr "自動的に割り当てられた階層なし" -#: ../../enterprise/meta/include/functions_meta.php:584 +#: ../../enterprise/meta/include/functions_meta.php:603 #: ../../enterprise/godmode/setup/setup_auth.php:569 -#: ../../enterprise/godmode/setup/setup_auth.php:1371 -#: ../../include/functions_config.php:548 +#: ../../enterprise/godmode/setup/setup_auth.php:1369 +#: ../../include/functions_config.php:561 msgid "Autocreate blacklist" msgstr "ブラックリストの自動作成" -#: ../../enterprise/meta/include/functions_meta.php:594 -#: ../../enterprise/meta/include/functions_meta.php:896 -#: ../../godmode/users/configure_user.php:1360 ../../godmode/setup/setup_auth.php:353 -#: ../../include/functions_config.php:756 ../../operation/users/user_edit.php:429 +#: ../../enterprise/meta/include/functions_meta.php:613 +#: ../../enterprise/meta/include/functions_meta.php:915 +#: ../../godmode/users/configure_user.php:1570 +#: ../../godmode/setup/setup_auth.php:369 ../../include/functions_config.php:773 +#: ../../operation/users/user_edit.php:503 msgid "Double authentication" msgstr "二段階認証" -#: ../../enterprise/meta/include/functions_meta.php:604 +#: ../../enterprise/meta/include/functions_meta.php:623 msgid "2FA_all_users" msgstr "全ユーザ二段階認証" -#: ../../enterprise/meta/include/functions_meta.php:616 -#: ../../enterprise/meta/include/functions_meta.php:909 -#: ../../include/functions_config.php:764 ../../include/functions_config.php:770 +#: ../../enterprise/meta/include/functions_meta.php:635 +#: ../../enterprise/meta/include/functions_meta.php:928 +#: ../../include/functions_config.php:781 ../../include/functions_config.php:787 msgid "Session timeout" msgstr "セッションタイムアウト" -#: ../../enterprise/meta/include/functions_meta.php:630 -#: ../../enterprise/meta/include/functions_meta.php:1094 +#: ../../enterprise/meta/include/functions_meta.php:649 +#: ../../enterprise/meta/include/functions_meta.php:1113 #: ../../enterprise/godmode/setup/setup_auth.php:82 #: ../../enterprise/godmode/setup/setup_auth.php:348 -#: ../../include/functions_config.php:661 ../../include/functions_config.php:777 +#: ../../include/functions_config.php:678 ../../include/functions_config.php:794 msgid "Save Password" msgstr "パスワードを保存" -#: ../../enterprise/meta/include/functions_meta.php:647 +#: ../../enterprise/meta/include/functions_meta.php:666 #: ../../enterprise/godmode/setup/setup_auth.php:577 -#: ../../enterprise/godmode/setup/setup_auth.php:1379 -#: ../../include/functions_config.php:552 +#: ../../enterprise/godmode/setup/setup_auth.php:1377 +#: ../../include/functions_config.php:565 msgid "Active directory server" msgstr "アクティブディレクトリサーバ" -#: ../../enterprise/meta/include/functions_meta.php:657 +#: ../../enterprise/meta/include/functions_meta.php:676 #: ../../enterprise/godmode/setup/setup_auth.php:583 -#: ../../enterprise/godmode/setup/setup_auth.php:1385 -#: ../../include/functions_config.php:556 +#: ../../enterprise/godmode/setup/setup_auth.php:1383 +#: ../../include/functions_config.php:569 msgid "Active directory port" msgstr "アクティブディレクトリポート" -#: ../../enterprise/meta/include/functions_meta.php:667 -#: ../../enterprise/meta/include/functions_meta.php:951 +#: ../../enterprise/meta/include/functions_meta.php:686 +#: ../../enterprise/meta/include/functions_meta.php:970 #: ../../enterprise/godmode/setup/setup_auth.php:589 -#: ../../enterprise/godmode/setup/setup_auth.php:1391 -#: ../../godmode/setup/setup_auth.php:137 ../../include/functions_config.php:560 -#: ../../include/functions_config.php:596 +#: ../../enterprise/godmode/setup/setup_auth.php:1389 +#: ../../godmode/setup/setup_auth.php:138 ../../include/functions_config.php:573 +#: ../../include/functions_config.php:609 msgid "Start TLS" msgstr "TLS の開始" -#: ../../enterprise/meta/include/functions_meta.php:677 +#: ../../enterprise/meta/include/functions_meta.php:696 #: ../../enterprise/godmode/setup/setup_auth.php:353 -#: ../../enterprise/godmode/setup/setup_auth.php:1148 -#: ../../include/functions_config.php:564 +#: ../../enterprise/godmode/setup/setup_auth.php:1146 +#: ../../include/functions_config.php:577 msgid "Advanced Config AD" msgstr "拡張 AD 設定" -#: ../../enterprise/meta/include/functions_meta.php:687 +#: ../../enterprise/meta/include/functions_meta.php:706 #: ../../enterprise/godmode/setup/setup_auth.php:595 -#: ../../enterprise/godmode/setup/setup_auth.php:1397 -#: ../../include/functions_config.php:572 +#: ../../enterprise/godmode/setup/setup_auth.php:1395 +#: ../../include/functions_config.php:585 msgid "Domain" msgstr "ドメイン" -#: ../../enterprise/meta/include/functions_meta.php:697 +#: ../../enterprise/meta/include/functions_meta.php:716 #: ../../enterprise/godmode/setup/setup_auth.php:413 -#: ../../enterprise/godmode/setup/setup_auth.php:1208 -#: ../../include/functions_config.php:576 +#: ../../enterprise/godmode/setup/setup_auth.php:1206 +#: ../../include/functions_config.php:589 msgid "Advanced Permisions AD" msgstr "AD 拡張パーミッション" -#: ../../enterprise/meta/include/functions_meta.php:707 +#: ../../enterprise/meta/include/functions_meta.php:726 #: ../../enterprise/godmode/setup/setup_auth.php:129 -#: ../../include/functions_config.php:580 +#: ../../include/functions_config.php:593 msgid "Advanced Permissions LDAP" msgstr "LDAP 拡張パーミッション" -#: ../../enterprise/meta/include/functions_meta.php:717 +#: ../../enterprise/meta/include/functions_meta.php:736 #: ../../enterprise/godmode/setup/setup_auth.php:106 -#: ../../include/functions_config.php:568 +#: ../../include/functions_config.php:581 msgid "Advanced Config LDAP" msgstr "LDAP 拡張設定" -#: ../../enterprise/meta/include/functions_meta.php:727 -#: ../../enterprise/meta/include/functions_meta.php:739 +#: ../../enterprise/meta/include/functions_meta.php:746 +#: ../../enterprise/meta/include/functions_meta.php:758 #: ../../enterprise/godmode/setup/setup_auth.php:337 #: ../../enterprise/godmode/setup/setup_auth.php:385 -#: ../../enterprise/godmode/setup/setup_auth.php:1180 +#: ../../enterprise/godmode/setup/setup_auth.php:1178 msgid "Auto enable node access" msgstr "自動有効ノードアクセス" -#: ../../enterprise/meta/include/functions_meta.php:766 -#: ../../include/functions_config.php:716 +#: ../../enterprise/meta/include/functions_meta.php:785 +#: ../../include/functions_config.php:733 msgid "Saml path" msgstr "SAML パス" -#: ../../enterprise/meta/include/functions_meta.php:779 -#: ../../include/functions_config.php:720 +#: ../../enterprise/meta/include/functions_meta.php:798 +#: ../../include/functions_config.php:737 msgid "Saml source" msgstr "SAML ソース" -#: ../../enterprise/meta/include/functions_meta.php:792 -#: ../../include/functions_config.php:724 +#: ../../enterprise/meta/include/functions_meta.php:811 +#: ../../include/functions_config.php:741 msgid "Saml user id parameter" msgstr "SAML ユーザ ID パラメータ" -#: ../../enterprise/meta/include/functions_meta.php:805 -#: ../../include/functions_config.php:728 +#: ../../enterprise/meta/include/functions_meta.php:824 +#: ../../include/functions_config.php:745 msgid "Saml mail parameter" msgstr "SAML メールパラメータ" -#: ../../enterprise/meta/include/functions_meta.php:818 -#: ../../include/functions_config.php:732 +#: ../../enterprise/meta/include/functions_meta.php:837 +#: ../../include/functions_config.php:749 msgid "Saml group name parameter" msgstr "SAML グループ名パラメータ" -#: ../../enterprise/meta/include/functions_meta.php:831 -#: ../../include/functions_config.php:736 +#: ../../enterprise/meta/include/functions_meta.php:850 +#: ../../include/functions_config.php:753 msgid "Saml attr type parameter" msgstr "SAML attr タイプパラメータ" -#: ../../enterprise/meta/include/functions_meta.php:844 -#: ../../include/functions_config.php:740 +#: ../../enterprise/meta/include/functions_meta.php:863 +#: ../../include/functions_config.php:757 msgid "Saml profiles and tags parameter" msgstr "SAML プロファイルおよび タグパラメータ" -#: ../../enterprise/meta/include/functions_meta.php:857 -#: ../../include/functions_config.php:752 +#: ../../enterprise/meta/include/functions_meta.php:876 +#: ../../include/functions_config.php:769 msgid "Saml profile and tag separator" msgstr "SAML プロファイルおよびタグセパレータ" -#: ../../enterprise/meta/include/functions_meta.php:870 +#: ../../enterprise/meta/include/functions_meta.php:889 msgid "SAML profile parameters" msgstr "SAML プロファイルパラメータ" -#: ../../enterprise/meta/include/functions_meta.php:883 -#: ../../include/functions_config.php:748 +#: ../../enterprise/meta/include/functions_meta.php:902 +#: ../../include/functions_config.php:765 msgid "Saml tag parameter" msgstr "SAML タグパラメータ" -#: ../../enterprise/meta/include/functions_meta.php:921 -#: ../../godmode/setup/setup_auth.php:92 ../../include/functions_config.php:584 +#: ../../enterprise/meta/include/functions_meta.php:940 +#: ../../godmode/setup/setup_auth.php:93 ../../include/functions_config.php:597 msgid "LDAP server" msgstr "LDAP サーバ" -#: ../../enterprise/meta/include/functions_meta.php:931 -#: ../../godmode/setup/setup_auth.php:105 ../../include/functions_config.php:588 +#: ../../enterprise/meta/include/functions_meta.php:950 +#: ../../godmode/setup/setup_auth.php:106 ../../include/functions_config.php:601 msgid "LDAP port" msgstr "LDAP ポート" -#: ../../enterprise/meta/include/functions_meta.php:941 -#: ../../godmode/setup/setup_auth.php:123 ../../include/functions_config.php:592 +#: ../../enterprise/meta/include/functions_meta.php:960 +#: ../../godmode/setup/setup_auth.php:124 ../../include/functions_config.php:605 msgid "LDAP version" msgstr "LDAP バージョン" -#: ../../enterprise/meta/include/functions_meta.php:961 -#: ../../godmode/setup/setup_auth.php:148 ../../include/functions_config.php:600 +#: ../../enterprise/meta/include/functions_meta.php:980 +#: ../../godmode/setup/setup_auth.php:149 ../../include/functions_config.php:613 msgid "Base DN" msgstr "ベース DN" -#: ../../enterprise/meta/include/functions_meta.php:971 -#: ../../godmode/setup/setup_auth.php:161 ../../include/functions_config.php:604 +#: ../../enterprise/meta/include/functions_meta.php:990 +#: ../../godmode/setup/setup_auth.php:162 ../../include/functions_config.php:617 msgid "Login attribute" msgstr "ログイン属性" -#: ../../enterprise/meta/include/functions_meta.php:981 -#: ../../godmode/setup/setup_auth.php:174 ../../include/functions_config.php:608 +#: ../../enterprise/meta/include/functions_meta.php:1000 +#: ../../godmode/setup/setup_auth.php:175 ../../include/functions_config.php:621 msgid "Admin LDAP login" msgstr "LDAP 管理者ログイン" -#: ../../enterprise/meta/include/functions_meta.php:991 -#: ../../godmode/setup/setup_auth.php:187 ../../include/functions_config.php:612 +#: ../../enterprise/meta/include/functions_meta.php:1010 +#: ../../godmode/setup/setup_auth.php:188 ../../include/functions_config.php:625 msgid "Admin LDAP password" msgstr "LDAP 管理者パスワード" -#: ../../enterprise/meta/include/functions_meta.php:1002 -#: ../../include/functions_config.php:672 +#: ../../enterprise/meta/include/functions_meta.php:1021 +#: ../../include/functions_config.php:689 msgid "LDAP secondary enabled" msgstr "セカンダリ LDAP 有効" -#: ../../enterprise/meta/include/functions_meta.php:1011 -#: ../../godmode/setup/setup_auth.php:222 ../../include/functions_config.php:616 +#: ../../enterprise/meta/include/functions_meta.php:1030 +#: ../../godmode/setup/setup_auth.php:238 ../../include/functions_config.php:633 msgid "Secondary LDAP server" msgstr "セカンダリ LDAP サーバ" -#: ../../enterprise/meta/include/functions_meta.php:1021 -#: ../../godmode/setup/setup_auth.php:235 ../../include/functions_config.php:620 +#: ../../enterprise/meta/include/functions_meta.php:1040 +#: ../../godmode/setup/setup_auth.php:251 ../../include/functions_config.php:637 msgid "Secondary LDAP port" msgstr "セカンダリ LDAP ポート" -#: ../../enterprise/meta/include/functions_meta.php:1031 -#: ../../godmode/setup/setup_auth.php:253 ../../include/functions_config.php:624 +#: ../../enterprise/meta/include/functions_meta.php:1050 +#: ../../godmode/setup/setup_auth.php:269 ../../include/functions_config.php:641 msgid "Secondary LDAP version" msgstr "セカンダリ LDAP バージョン" -#: ../../enterprise/meta/include/functions_meta.php:1041 -#: ../../godmode/setup/setup_auth.php:267 +#: ../../enterprise/meta/include/functions_meta.php:1060 +#: ../../godmode/setup/setup_auth.php:283 msgid "Secondary start TLS" msgstr "セカンダリ開始 TLS" -#: ../../enterprise/meta/include/functions_meta.php:1051 -#: ../../include/functions_config.php:632 +#: ../../enterprise/meta/include/functions_meta.php:1070 +#: ../../include/functions_config.php:649 msgid "Secondary base DN" msgstr "セカンダリ base DN" -#: ../../enterprise/meta/include/functions_meta.php:1061 -#: ../../include/functions_config.php:636 +#: ../../enterprise/meta/include/functions_meta.php:1080 +#: ../../include/functions_config.php:653 msgid "Secondary login attribute" msgstr "セカンダリログイン属性" -#: ../../enterprise/meta/include/functions_meta.php:1071 -#: ../../godmode/setup/setup_auth.php:304 ../../include/functions_config.php:640 +#: ../../enterprise/meta/include/functions_meta.php:1090 +#: ../../godmode/setup/setup_auth.php:320 ../../include/functions_config.php:657 msgid "Admin secondary LDAP login" msgstr "セカンダリ LDAP 管理者ログイン" -#: ../../enterprise/meta/include/functions_meta.php:1081 -#: ../../godmode/setup/setup_auth.php:317 ../../include/functions_config.php:644 +#: ../../enterprise/meta/include/functions_meta.php:1100 +#: ../../godmode/setup/setup_auth.php:333 ../../include/functions_config.php:661 msgid "Admin secondary LDAP password" msgstr "セカンダリ LDAP 管理者パスワード" -#: ../../enterprise/meta/include/functions_meta.php:1114 +#: ../../enterprise/meta/include/functions_meta.php:1133 #: ../../enterprise/godmode/setup/setup_auth.php:101 -#: ../../include/functions_config.php:652 +#: ../../include/functions_config.php:669 msgid "Login user attribute" msgstr "ログインユーザアトリビュート" -#: ../../enterprise/meta/include/functions_meta.php:1124 -#: ../../include/functions_config.php:668 +#: ../../enterprise/meta/include/functions_meta.php:1143 +#: ../../include/functions_config.php:685 msgid "Save profile" msgstr "プロファイルの保存" -#: ../../enterprise/meta/include/functions_meta.php:1135 +#: ../../enterprise/meta/include/functions_meta.php:1154 #: ../../enterprise/godmode/setup/setup_auth.php:94 -#: ../../include/functions_config.php:656 +#: ../../include/functions_config.php:673 msgid "LDAP function" msgstr "LDAP 機能" -#: ../../enterprise/meta/include/functions_meta.php:1147 +#: ../../enterprise/meta/include/functions_meta.php:1166 #, php-format msgid "%s host" msgstr "%s ホスト" -#: ../../enterprise/meta/include/functions_meta.php:1157 -#: ../../enterprise/meta/include/functions_meta.php:1211 -#: ../../enterprise/meta/include/functions_meta.php:1265 -#: ../../enterprise/godmode/setup/setup_auth.php:1027 -#: ../../enterprise/godmode/setup/setup_auth.php:1059 -#: ../../include/functions_config.php:680 ../../include/functions_config.php:700 +#: ../../enterprise/meta/include/functions_meta.php:1176 +#: ../../enterprise/meta/include/functions_meta.php:1230 +#: ../../enterprise/meta/include/functions_meta.php:1284 +#: ../../enterprise/godmode/setup/setup_auth.php:1025 +#: ../../enterprise/godmode/setup/setup_auth.php:1057 +#: ../../include/functions_config.php:697 ../../include/functions_config.php:717 msgid "MySQL port" msgstr "MySQL ポート" -#: ../../enterprise/meta/include/functions_meta.php:1167 -#: ../../enterprise/meta/include/functions_meta.php:1221 -#: ../../enterprise/meta/include/functions_meta.php:1275 -#: ../../enterprise/meta/include/functions_meta.php:2097 -#: ../../enterprise/godmode/setup/setup_history.php:200 -#: ../../enterprise/godmode/setup/setup_auth.php:1033 -#: ../../enterprise/godmode/setup/setup_auth.php:1065 -#: ../../include/functions_config.php:684 ../../include/functions_config.php:704 -#: ../../include/functions_config.php:1547 +#: ../../enterprise/meta/include/functions_meta.php:1186 +#: ../../enterprise/meta/include/functions_meta.php:1240 +#: ../../enterprise/meta/include/functions_meta.php:1294 +#: ../../enterprise/meta/include/functions_meta.php:2087 +#: ../../enterprise/godmode/setup/setup_history.php:207 +#: ../../enterprise/godmode/setup/setup_auth.php:1031 +#: ../../enterprise/godmode/setup/setup_auth.php:1063 +#: ../../include/functions_config.php:701 ../../include/functions_config.php:721 +#: ../../include/functions_config.php:1557 msgid "Database name" msgstr "データベース名" -#: ../../enterprise/meta/include/functions_meta.php:1201 +#: ../../enterprise/meta/include/functions_meta.php:1220 msgid "Babel Enterprise host" msgstr "Babel Enterprise ホスト" -#: ../../enterprise/meta/include/functions_meta.php:1255 -#: ../../enterprise/godmode/setup/setup_auth.php:1053 -#: ../../include/functions_config.php:696 +#: ../../enterprise/meta/include/functions_meta.php:1274 +#: ../../enterprise/godmode/setup/setup_auth.php:1051 +#: ../../include/functions_config.php:713 msgid "Integria host" msgstr "Integria ホスト" -#: ../../enterprise/meta/include/functions_meta.php:1320 -#: ../../include/functions_config.php:946 +#: ../../enterprise/meta/include/functions_meta.php:1339 +#: ../../include/functions_config.php:947 msgid "Timestamp or time comparation" msgstr "タイムスタンプ表示" -#: ../../enterprise/meta/include/functions_meta.php:1330 +#: ../../enterprise/meta/include/functions_meta.php:1349 msgid "Graph color (min)" msgstr "グラフの色 (最小値)" -#: ../../enterprise/meta/include/functions_meta.php:1340 +#: ../../enterprise/meta/include/functions_meta.php:1359 msgid "Graph color (avg)" msgstr "グラフの色 (平均値)" -#: ../../enterprise/meta/include/functions_meta.php:1350 +#: ../../enterprise/meta/include/functions_meta.php:1369 msgid "Graph color (max)" msgstr "グラフの色 (最大値)" -#: ../../enterprise/meta/include/functions_meta.php:1385 -#: ../../include/functions_config.php:994 +#: ../../enterprise/meta/include/functions_meta.php:1404 +#: ../../include/functions_config.php:995 msgid "Data precision for reports" msgstr "レポートのデータ精度" -#: ../../enterprise/meta/include/functions_meta.php:1500 +#: ../../enterprise/meta/include/functions_meta.php:1519 msgid "full scale charts" msgstr "フルスケールグラフ" -#: ../../enterprise/meta/include/functions_meta.php:1510 +#: ../../enterprise/meta/include/functions_meta.php:1529 msgid "type mode type charts" msgstr "タイプモードタイプグラフ" -#: ../../enterprise/meta/include/functions_meta.php:1530 +#: ../../enterprise/meta/include/functions_meta.php:1549 msgid "type mode zoom charts" msgstr "タイプモード拡大グラフ" -#: ../../enterprise/meta/include/functions_meta.php:1550 +#: ../../enterprise/meta/include/functions_meta.php:1569 msgid "Type of charts" msgstr "グラフのタイプ" -#: ../../enterprise/meta/include/functions_meta.php:1590 -#: ../../include/functions_config.php:1043 +#: ../../enterprise/meta/include/functions_meta.php:1609 +#: ../../include/functions_config.php:1044 msgid "Custom logo collapsed" msgstr "折り畳み時カスタムロゴ" -#: ../../enterprise/meta/include/functions_meta.php:1600 +#: ../../enterprise/meta/include/functions_meta.php:1619 msgid "Custom logo (white background)" msgstr "カスタムロゴ (白背景)" -#: ../../enterprise/meta/include/functions_meta.php:1620 -#: ../../include/functions_config.php:1051 +#: ../../enterprise/meta/include/functions_meta.php:1639 +#: ../../include/functions_config.php:1052 msgid "Custom logo login" msgstr "ログイン時のカスタムロゴ" -#: ../../enterprise/meta/include/functions_meta.php:1630 -#: ../../include/functions_config.php:1055 +#: ../../enterprise/meta/include/functions_meta.php:1649 +#: ../../include/functions_config.php:1056 msgid "Custom splash login" msgstr "カスタムスプラッシュログイン" -#: ../../enterprise/meta/include/functions_meta.php:1660 -#: ../../include/functions_config.php:1091 +#: ../../enterprise/meta/include/functions_meta.php:1679 +#: ../../include/functions_config.php:1092 msgid "Custom title1 login" msgstr "カスタムタイトル1 ログイン" -#: ../../enterprise/meta/include/functions_meta.php:1670 -#: ../../include/functions_config.php:1095 +#: ../../enterprise/meta/include/functions_meta.php:1689 +#: ../../include/functions_config.php:1096 msgid "Custom title2 login" msgstr "カスタムタイトル2 ログイン" -#: ../../enterprise/meta/include/functions_meta.php:1680 -#: ../../include/functions_config.php:1083 +#: ../../enterprise/meta/include/functions_meta.php:1699 +#: ../../include/functions_config.php:1084 msgid "Meta custom title header" msgstr "メタカスタムタイトルヘッダ" -#: ../../enterprise/meta/include/functions_meta.php:1690 -#: ../../include/functions_config.php:1087 +#: ../../enterprise/meta/include/functions_meta.php:1709 +#: ../../include/functions_config.php:1088 msgid "Meta custom subtitle header" msgstr "メタカスタムサブタイトルヘッダ" -#: ../../enterprise/meta/include/functions_meta.php:1720 +#: ../../enterprise/meta/include/functions_meta.php:1739 msgid "Custom background login" msgstr "カスタムログイン背景" -#: ../../enterprise/meta/include/functions_meta.php:1730 +#: ../../enterprise/meta/include/functions_meta.php:1749 msgid "Custom product name" msgstr "カスタム製品名" -#: ../../enterprise/meta/include/functions_meta.php:1740 +#: ../../enterprise/meta/include/functions_meta.php:1759 msgid "Custom copyright notice" msgstr "カスタム著作権表示" -#: ../../enterprise/meta/include/functions_meta.php:1789 -#: ../../include/functions_config.php:1027 +#: ../../enterprise/meta/include/functions_meta.php:1808 +#: ../../include/functions_config.php:1028 msgid "Font path" msgstr "フォントパス" -#: ../../enterprise/meta/include/functions_meta.php:1799 -#: ../../include/functions_config.php:1465 +#: ../../enterprise/meta/include/functions_meta.php:1818 +#: ../../include/functions_config.php:1466 msgid "Use data multiplier" msgstr "データ乗数を使用する" -#: ../../enterprise/meta/include/functions_meta.php:1811 -#: ../../include/functions_config.php:1421 +#: ../../enterprise/meta/include/functions_meta.php:1830 +#: ../../include/functions_config.php:1422 msgid "Custom report info" msgstr "カスタムレポート情報" -#: ../../enterprise/meta/include/functions_meta.php:1821 +#: ../../enterprise/meta/include/functions_meta.php:1840 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 -#: ../../include/functions_config.php:1437 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 +#: ../../include/functions_config.php:1438 msgid "Font family" msgstr "フォントファミリ" -#: ../../enterprise/meta/include/functions_meta.php:1861 +#: ../../enterprise/meta/include/functions_meta.php:1880 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 -#: ../../godmode/setup/setup_visuals.php:1253 ../../include/functions_config.php:1453 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:163 +#: ../../godmode/setup/setup_visuals.php:1253 +#: ../../include/functions_config.php:1454 msgid "Footer" msgstr "フッター" -#: ../../enterprise/meta/include/functions_meta.php:1896 -#: ../../include/functions_config.php:1151 +#: ../../enterprise/meta/include/functions_meta.php:1915 +#: ../../include/functions_config.php:1152 msgid "Use the legacy Visual Console" msgstr "レガシービジュアルコンソールの利用" -#: ../../enterprise/meta/include/functions_meta.php:1907 -#: ../../include/functions_config.php:1155 +#: ../../enterprise/meta/include/functions_meta.php:1926 +#: ../../include/functions_config.php:1156 msgid "Default expiration of the Visual Console item's cache" msgstr "ビジュアルコンソールキャッシュのデフォルト有効期間" -#: ../../enterprise/meta/include/functions_meta.php:1951 +#: ../../enterprise/meta/include/functions_meta.php:1960 msgid "Realtime stats" msgstr "リアルタイム統計" -#: ../../enterprise/meta/include/functions_meta.php:1981 -#: ../../godmode/setup/performance.php:579 ../../include/functions_config.php:854 +#: ../../enterprise/meta/include/functions_meta.php:1990 +#: ../../godmode/setup/performance.php:579 ../../include/functions_config.php:864 msgid "Use agent access graph" msgstr "エージェントアクセスグラフの利用" -#: ../../enterprise/meta/include/functions_meta.php:1991 +#: ../../enterprise/meta/include/functions_meta.php:2000 msgid "Default block size migration agents" msgstr "デフォルトエージェントマイグレーションブロックサイズ" -#: ../../enterprise/meta/include/functions_meta.php:2013 +#: ../../enterprise/meta/include/functions_meta.php:2022 msgid "Default block size execution event" msgstr "デフォルト実行イベントブロックサイズ" -#: ../../enterprise/meta/include/functions_meta.php:2024 +#: ../../enterprise/meta/include/functions_meta.php:2033 msgid "Default row limit in csv log" msgstr "デフォルト csv ログ行制限" -#: ../../enterprise/meta/include/functions_meta.php:2054 -#: ../../include/functions_config.php:935 -msgid "PhantomJS cache interval" -msgstr "PhantomJS キャッシュ間隔" - -#: ../../enterprise/meta/include/functions_meta.php:2070 +#: ../../enterprise/meta/include/functions_meta.php:2060 msgid "Node address default" msgstr "デフォルトノードアドレス" -#: ../../enterprise/meta/include/functions_meta.php:2083 -#: ../../include/functions_config.php:1534 +#: ../../enterprise/meta/include/functions_meta.php:2073 +#: ../../include/functions_config.php:1544 msgid "Active and historical database cannot be the same." msgstr "メインとヒストリデータベースが異なります。" -#: ../../enterprise/meta/include/functions_meta.php:2087 -#: ../../enterprise/godmode/setup/setup_history.php:170 -#: ../../include/functions_config.php:1539 +#: ../../enterprise/meta/include/functions_meta.php:2077 +#: ../../enterprise/godmode/setup/setup_history.php:177 +#: ../../include/functions_config.php:1549 msgid "Host" msgstr "ホスト" -#: ../../enterprise/meta/include/functions_meta.php:2103 -#: ../../include/functions_config.php:1552 +#: ../../enterprise/meta/include/functions_meta.php:2093 +#: ../../include/functions_config.php:1562 msgid "Enable history database" msgstr "ヒストリデータベースの有効化" -#: ../../enterprise/meta/include/functions_meta.php:2108 -#: ../../include/functions_config.php:1556 +#: ../../enterprise/meta/include/functions_meta.php:2098 +#: ../../include/functions_config.php:1566 msgid "Enable history event" msgstr "ヒストリイベントの有効化" -#: ../../enterprise/meta/include/functions_meta.php:2113 -#: ../../enterprise/godmode/setup/setup_history.php:215 -#: ../../include/functions_config.php:1560 +#: ../../enterprise/meta/include/functions_meta.php:2103 +#: ../../enterprise/godmode/setup/setup_history.php:222 +#: ../../include/functions_config.php:1574 msgid "Database user" msgstr "データベースユーザ" -#: ../../enterprise/meta/include/functions_meta.php:2118 -#: ../../enterprise/godmode/setup/setup_history.php:230 -#: ../../include/functions_config.php:1564 +#: ../../enterprise/meta/include/functions_meta.php:2108 +#: ../../enterprise/godmode/setup/setup_history.php:237 +#: ../../include/functions_config.php:1578 msgid "Database password" msgstr "データベースパスワード" -#: ../../enterprise/meta/include/functions_meta.php:2136 -#: ../../include/functions_config.php:1592 +#: ../../enterprise/meta/include/functions_meta.php:2126 +#: ../../include/functions_config.php:1607 msgid "Event Days" msgstr "イベント日数" -#: ../../enterprise/meta/include/functions_meta.php:2154 -#: ../../include/functions_config.php:1608 +#: ../../enterprise/meta/include/functions_meta.php:2144 +#: ../../include/functions_config.php:1639 msgid "Delay" msgstr "遅延" -#: ../../enterprise/meta/include/functions_meta.php:2187 -#: ../../include/functions_config.php:1640 +#: ../../enterprise/meta/include/functions_meta.php:2177 +#: ../../include/functions_config.php:1671 msgid "Historical database purge" msgstr "ヒストリデータベース削除" -#: ../../enterprise/meta/include/functions_meta.php:2196 -#: ../../include/functions_config.php:1648 +#: ../../enterprise/meta/include/functions_meta.php:2186 +#: ../../include/functions_config.php:1679 msgid "Historical database partitions" msgstr "ヒストリデータベースパーティション" -#: ../../enterprise/meta/include/functions_meta.php:2205 -#: ../../include/functions_config.php:1656 +#: ../../enterprise/meta/include/functions_meta.php:2195 +#: ../../include/functions_config.php:1687 msgid "Historical database events purge" msgstr "ヒストリデータベースイベント削除" -#: ../../enterprise/meta/include/functions_meta.php:2214 -#: ../../include/functions_config.php:1664 +#: ../../enterprise/meta/include/functions_meta.php:2204 +#: ../../include/functions_config.php:1703 msgid "Historical database string purge" msgstr "ヒストリデータベース文字列削除" #: ../../enterprise/meta/include/functions_components_meta.php:80 #: ../../enterprise/meta/include/functions_components_meta.php:135 -#: ../../godmode/menu.php:102 +#: ../../godmode/menu.php:103 msgid "Component groups" msgstr "コンポーネントグループ管理" #: ../../enterprise/meta/include/functions_components_meta.php:88 #: ../../enterprise/meta/include/functions_components_meta.php:139 -#: ../../enterprise/godmode/menu.php:87 ../../godmode/menu.php:177 +#: ../../enterprise/godmode/menu.php:78 ../../godmode/menu.php:178 msgid "Local components" msgstr "ローカルコンポーネント" @@ -11905,19 +12519,20 @@ msgstr "プラグイン管理" #: ../../enterprise/meta/include/functions_components_meta.php:113 #: ../../enterprise/meta/include/functions_components_meta.php:160 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:70 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:282 -#: ../../enterprise/godmode/menu.php:78 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 #: ../../enterprise/include/functions_policies.php:3756 +#: ../../godmode/modules/manage_inventory_modules.php:45 +#: ../../godmode/modules/manage_inventory_modules_form.php:37 +#: ../../godmode/menu.php:184 msgid "Inventory modules" msgstr "インベントリモジュール" #: ../../enterprise/meta/include/functions_components_meta.php:124 #: ../../enterprise/meta/include/functions_components_meta.php:164 -#: ../../godmode/servers/plugin_registration.php:99 ../../godmode/servers/plugin.php:295 +#: ../../godmode/servers/plugin_registration.php:99 +#: ../../godmode/servers/plugin.php:295 msgid "Plugin registration" msgstr "プラグインの登録" @@ -11937,31 +12552,34 @@ msgstr "%s - フレキシブルモニタリングシステム" #: ../../enterprise/meta/include/functions_ui_meta.php:975 #: ../../enterprise/godmode/services/services.elements.php:884 #: ../../enterprise/godmode/services/services.elements.php:895 +#: ../../enterprise/godmode/setup/setup.php:564 #: ../../enterprise/include/class/CommandCenter.class.php:473 #: ../../enterprise/include/functions_login.php:104 -#: ../../enterprise/include/functions_login.php:488 +#: ../../enterprise/include/functions_login.php:505 #: ../../enterprise/include/lib/Metaconsole/Node.php:541 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4117 -#: ../../godmode/users/configure_user.php:1856 -#: ../../godmode/users/configure_user.php:1926 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4142 +#: ../../godmode/users/configure_user.php:2132 +#: ../../godmode/users/configure_user.php:2202 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 -#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1236 +#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1282 #: ../../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/ajax/events.php:2216 -#: ../../include/functions_ui.php:290 ../../include/class/SatelliteAgent.class.php:464 -#: ../../include/class/Diagnostics.class.php:1827 -#: ../../include/functions_events.php:2762 ../../include/functions_events.php:2962 -#: ../../index.php:1577 ../../operation/users/user_edit.php:1091 -#: ../../operation/users/user_edit.php:1157 ../../general/register.php:157 +#: ../../include/ajax/double_auth.ajax.php:516 ../../include/ajax/events.php:2188 +#: ../../include/functions_menu.php:808 ../../include/functions_ui.php:290 +#: ../../include/class/SatelliteAgent.class.php:839 +#: ../../include/class/Diagnostics.class.php:1835 +#: ../../include/functions_events.php:2825 +#: ../../include/functions_events.php:3025 ../../index.php:1559 +#: ../../operation/users/user_edit.php:1163 +#: ../../operation/users/user_edit.php:1229 ../../general/register.php:157 msgid "Error" msgstr "エラー" #: ../../enterprise/meta/include/functions_alerts_meta.php:137 #: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:276 +#: ../../godmode/menu.php:279 msgid "Commands" msgstr "コマンド" @@ -11974,8 +12592,9 @@ msgstr "カレンダー" msgid "User to reset password" msgstr "パスワードリセットするユーザ" -#: ../../enterprise/meta/include/reset_pass.php:103 ../../enterprise/meta/index.php:731 -#: ../../enterprise/include/reset_pass.php:108 ../../index.php:914 +#: ../../enterprise/meta/include/reset_pass.php:103 +#: ../../enterprise/meta/index.php:734 +#: ../../enterprise/include/reset_pass.php:108 ../../index.php:918 msgid "Reset password" msgstr "パスワードをリセット" @@ -12033,11 +12652,11 @@ 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" +"The relation type: %s to %s -> %s was not saved. This relationship already " +"exists in the database" msgstr "" -"関係タイプ: %s から %s -> %s は保存されませんでした。この関係はデータベースに既に存在" -"します" +"関係タイプ: %s から %s -> %s は保存されませんでした。この関係はデータベースに既" +"に存在します" #: ../../enterprise/meta/include/functions_relations.php:230 #, php-format @@ -12056,7 +12675,7 @@ msgstr "関係の削除エラー" msgid "Relation deleted successfully" msgstr "関係を削除しました" -#: ../../enterprise/meta/index.php:206 ../../index.php:1460 +#: ../../enterprise/meta/index.php:206 ../../index.php:1468 #: ../../operation/visual_console/legacy_public_view.php:57 #: ../../operation/visual_console/public_view.php:38 #: ../../operation/agentes/stat_win.php:92 @@ -12065,103 +12684,104 @@ msgstr "関係を削除しました" msgid "Connection with server has been lost" msgstr "サーバとの接続が切断されました" -#: ../../enterprise/meta/index.php:207 ../../index.php:1461 +#: ../../enterprise/meta/index.php:207 ../../index.php:1469 #: ../../operation/visual_console/legacy_public_view.php:58 #: ../../operation/visual_console/public_view.php:39 #: ../../operation/agentes/stat_win.php:93 #: ../../operation/gis_maps/public_console.php:278 #: ../../operation/events/sound_events.php:169 msgid "" -"Connection to the server has been lost. Please check your internet connection or " -"contact with administrator." +"Connection to the server has been lost. Please check your internet connection " +"or contact with administrator." msgstr "" -"サーバとの接続が切断されました。インターネット接続を確認するか管理者へ連絡してくださ" -"い。" +"サーバとの接続が切断されました。インターネット接続を確認するか管理者へ連絡して" +"ください。" #: ../../enterprise/meta/index.php:330 ../../mobile/include/user.class.php:303 -#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:370 +#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:373 msgid "Invalid code" msgstr "不正なコード" -#: ../../enterprise/meta/index.php:342 ../../index.php:382 +#: ../../enterprise/meta/index.php:342 ../../index.php:385 msgid "The code shouldn't be empty" msgstr "コードは空にできません" -#: ../../enterprise/meta/index.php:355 ../../index.php:395 +#: ../../enterprise/meta/index.php:355 ../../index.php:398 msgid "Expired login" msgstr "ログイン期限切れ" #: ../../enterprise/meta/index.php:362 ../../enterprise/meta/index.php:368 -#: ../../index.php:402 ../../index.php:408 +#: ../../index.php:405 ../../index.php:411 msgid "Login error" msgstr "ログインエラー" -#: ../../enterprise/meta/index.php:656 ../../index.php:831 +#: ../../enterprise/meta/index.php:659 ../../index.php:835 msgid "Password changed successfully" msgstr "パスワードを変更しました" -#: ../../enterprise/meta/index.php:662 ../../index.php:837 +#: ../../enterprise/meta/index.php:665 ../../index.php:841 msgid "Failed to change password" msgstr "パスワード変更に失敗しました" -#: ../../enterprise/meta/index.php:676 ../../index.php:854 +#: ../../enterprise/meta/index.php:679 ../../index.php:858 msgid "Too much time since password change request" msgstr "パスワード変更要求から長時間経過しました" -#: ../../enterprise/meta/index.php:683 ../../index.php:861 +#: ../../enterprise/meta/index.php:686 ../../index.php:865 msgid "This user has not requested a password change" msgstr "このユーザはパスワード変更を要求していません" -#: ../../enterprise/meta/index.php:699 ../../index.php:888 +#: ../../enterprise/meta/index.php:702 ../../index.php:892 msgid "Id user cannot be empty" msgstr "ユーザIDは空にできません" -#: ../../enterprise/meta/index.php:707 ../../index.php:896 +#: ../../enterprise/meta/index.php:710 ../../index.php:900 msgid "Error in reset password request" msgstr "パスワードリセット要求エラー" -#: ../../enterprise/meta/index.php:715 ../../index.php:904 +#: ../../enterprise/meta/index.php:718 ../../index.php:908 msgid "This user doesn't have a valid email address" msgstr "このユーザは正しいメールアドレスがありません" -#: ../../enterprise/meta/index.php:732 ../../index.php:915 +#: ../../enterprise/meta/index.php:735 ../../index.php:919 msgid "This is an automatically sent message for user " msgstr "これは、次のユーザへの自動送信メッセージです: " -#: ../../enterprise/meta/index.php:735 ../../index.php:918 +#: ../../enterprise/meta/index.php:738 ../../index.php:922 msgid "Please click the link below to reset your password" msgstr "パスワードをリセットするには、以下のリンクをクリックしてください" -#: ../../enterprise/meta/index.php:737 ../../index.php:920 +#: ../../enterprise/meta/index.php:740 ../../index.php:924 msgid "Reset your password" msgstr "パスワードリセット" -#: ../../enterprise/meta/index.php:741 ../../index.php:924 +#: ../../enterprise/meta/index.php:744 ../../index.php:928 msgid "Please do not reply to this email." msgstr "このメールには返信しないでください。" -#: ../../enterprise/meta/index.php:747 ../../index.php:929 +#: ../../enterprise/meta/index.php:750 ../../index.php:933 msgid "Error at sending the email" msgstr "メール送信エラー" -#: ../../enterprise/meta/index.php:900 +#: ../../enterprise/meta/index.php:903 #, php-format -msgid "System is not centralised, please go to %s to perform a database merge process." +msgid "" +"System is not centralised, please go to %s to perform a database merge process." msgstr "" -"システムは中央管理ではありません。データベースの統合処理を行うために %s へ行ってくださ" -"い。" +"システムは中央管理ではありません。データベースの統合処理を行うために %s へ行っ" +"てください。" -#: ../../enterprise/meta/index.php:968 +#: ../../enterprise/meta/index.php:971 #, php-format msgid "There are nodes with different MR than this (%d):" msgstr "こちら(%d)とは異なる MR を持つノードがあります: " -#: ../../enterprise/meta/index.php:977 ../../index.php:1219 +#: ../../enterprise/meta/index.php:980 ../../index.php:1223 msgid "Please keep all environment updated to same version." msgstr "環境全体を同じバージョンにアップデートしてください。" -#: ../../enterprise/meta/index.php:1046 ../../enterprise/meta/index.php:1133 -#: ../../index.php:1322 +#: ../../enterprise/meta/index.php:1049 ../../enterprise/meta/index.php:1136 +#: ../../index.php:1326 msgid "Sorry! I can't find the page!" msgstr "ページが見つかりません" @@ -12173,55 +12793,57 @@ msgstr "検索結果:" msgid "Agents found" msgstr "エージェントが見つかりました" -#: ../../enterprise/meta/agentsearch.php:142 +#: ../../enterprise/meta/agentsearch.php:143 #: ../../enterprise/godmode/reporting/aws_view.php:61 #: ../../enterprise/operation/agentes/policy_view.php:399 #: ../../enterprise/operation/agentes/tag_view.php:609 #: ../../enterprise/operation/agentes/ver_agente.php:77 -#: ../../extensions/users_connected.php:146 ../../godmode/users/user_list.php:481 -#: ../../godmode/agentes/planned_downtime.editor.php:1221 +#: ../../extensions/users_connected.php:146 ../../godmode/users/user_list.php:541 +#: ../../godmode/agentes/planned_downtime.editor.php:1209 #: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417 #: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 -#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:984 -#: ../../include/functions_treeview.php:668 ../../include/functions_events.php:4120 -#: ../../operation/search_users.php:46 ../../operation/search_agents.php:58 +#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:997 +#: ../../include/functions_treeview.php:668 +#: ../../include/functions_events.php:4233 ../../operation/search_users.php:46 +#: ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 #: ../../operation/agentes/estado_agente.php:769 -#: ../../operation/agentes/ver_agente.php:1028 +#: ../../operation/agentes/ver_agente.php:1046 #: ../../operation/agentes/estado_generalagente.php:362 #: ../../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:301 +#: ../../enterprise/meta/agentsearch.php:308 msgid "There are no agents included in this group" msgstr "このグループに属しているエージェントが存在しません" -#: ../../enterprise/meta/agentsearch.php:315 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:604 ../../operation/tree.php:420 +#: ../../enterprise/meta/agentsearch.php:322 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:604 +#: ../../operation/tree.php:420 msgid "Policies found" msgstr "ポリシーが見つかりました" -#: ../../enterprise/meta/agentsearch.php:409 +#: ../../enterprise/meta/agentsearch.php:417 #: ../../enterprise/godmode/policies/policies.php:475 #: ../../operation/search_policies.php:50 msgid "Policy updated" msgstr "ポリシーを更新しました" -#: ../../enterprise/meta/agentsearch.php:417 +#: ../../enterprise/meta/agentsearch.php:425 #: ../../enterprise/godmode/policies/policies.php:483 #: ../../operation/search_policies.php:58 msgid "Pending update policy only database" msgstr "データベースのみポリシー更新待ち" -#: ../../enterprise/meta/agentsearch.php:425 +#: ../../enterprise/meta/agentsearch.php:433 #: ../../enterprise/godmode/policies/policies.php:491 #: ../../operation/search_policies.php:66 msgid "Pending update policy" msgstr "ポリシー更新待ち" -#: ../../enterprise/meta/agentsearch.php:450 +#: ../../enterprise/meta/agentsearch.php:458 msgid "There are no policies included in this group" msgstr "このグループに含まれるポリシーがありません" @@ -12240,7 +12862,8 @@ msgstr "ページ更新日時:" #: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218 #: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117 #: ../../mobile/operation/alerts.php:176 ../../mobile/operation/visualmap.php:185 -#: ../../mobile/operation/visualmaps.php:159 ../../mobile/operation/module_graph.php:255 +#: ../../mobile/operation/visualmaps.php:159 +#: ../../mobile/operation/module_graph.php:255 #: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79 #: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16 #: ../../general/noaccess2.php:18 @@ -12254,11 +12877,11 @@ 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.
" +"Metaconsole needs previous activation from regular console, please contact " +"system administrator if you need assistance.
" msgstr "" -"メタコンソールは、通常のコンソールから事前に有効化する必要があります。手助けが必要であ" -"ればシステム管理者へ問い合わせてください。
" +"メタコンソールは、通常のコンソールから事前に有効化する必要があります。手助けが" +"必要であればシステム管理者へ問い合わせてください。
" #: ../../enterprise/meta/general/header.php:69 #: ../../enterprise/meta/general/header.php:75 @@ -12299,9 +12922,10 @@ msgstr "自動更新の無効化" #: ../../enterprise/meta/general/header.php:238 #: ../../enterprise/meta/general/header.php:240 #: ../../enterprise/meta/general/main_header.php:535 -#: ../../mobile/include/functions_web.php:34 ../../mobile/include/ui.class.php:225 -#: ../../mobile/include/user.class.php:463 ../../mobile/operation/home.php:148 -#: ../../general/header.php:432 ../../general/header.php:434 +#: ../../mobile/include/functions_web.php:34 +#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:463 +#: ../../mobile/operation/home.php:148 ../../general/header.php:432 +#: ../../general/header.php:434 msgid "Logout" msgstr "ログアウト" @@ -12309,10 +12933,10 @@ msgstr "ログアウト" #: ../../enterprise/meta/general/main_menu.php:196 #: ../../enterprise/operation/services/services.treeview_services.php:62 #: ../../enterprise/operation/services/services.treeview_services.php:69 -#: ../../godmode/groups/group_list.php:344 +#: ../../godmode/groups/group_list.php:349 #: ../../include/lib/Dashboard/Widgets/tree_view.php:173 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 ../../operation/tree.php:138 -#: ../../operation/menu.php:53 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 +#: ../../operation/tree.php:138 ../../operation/menu.php:53 msgid "Tree view" msgstr "ツリー表示" @@ -12339,32 +12963,33 @@ msgstr "カスタムフィールド表示" #: ../../enterprise/meta/general/main_header.php:167 #: ../../enterprise/meta/general/main_header.php:183 -#: ../../enterprise/meta/general/main_menu.php:279 +#: ../../enterprise/meta/general/main_menu.php:302 #: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../include/functions_reporting.php:15359 ../../include/functions_groups.php:139 -#: ../../operation/search_results.php:132 +#: ../../include/functions_reporting.php:15641 +#: ../../include/functions_groups.php:139 ../../operation/search_results.php:133 msgid "Reports" msgstr "レポート" #: ../../enterprise/meta/general/main_header.php:174 -#: ../../enterprise/meta/general/main_menu.php:286 +#: ../../enterprise/meta/general/main_menu.php:309 msgid "Create new report" msgstr "新規レポート作成" #: ../../enterprise/meta/general/main_header.php:190 -#: ../../enterprise/meta/general/main_menu.php:296 +#: ../../enterprise/meta/general/main_menu.php:319 msgid "Report templates" msgstr "レポートテンプレート" #: ../../enterprise/meta/general/main_header.php:200 -#: ../../enterprise/meta/general/main_menu.php:306 +#: ../../enterprise/meta/general/main_menu.php:329 #: ../../enterprise/include/functions_reporting.php:124 #: ../../include/functions_menu.php:509 msgid "Templates wizard" msgstr "テンプレートウィザード" #: ../../enterprise/meta/general/main_header.php:210 -#: ../../enterprise/meta/general/main_menu.php:339 ../../enterprise/godmode/menu.php:125 +#: ../../enterprise/meta/general/main_menu.php:371 +#: ../../enterprise/godmode/menu.php:116 #: ../../enterprise/godmode/services/services.massive.meta.php:42 #: ../../enterprise/godmode/services/services.service.php:510 #: ../../enterprise/godmode/services/services.service.php:530 @@ -12374,7 +12999,7 @@ msgstr "テンプレートウィザード" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:314 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 #: ../../enterprise/include/functions_groups.php:65 -#: ../../enterprise/operation/menu.php:77 +#: ../../enterprise/operation/menu.php:64 #: ../../enterprise/operation/services/services.service.php:83 #: ../../enterprise/operation/services/massive/services.delete.php:42 #: ../../enterprise/operation/services/massive/services.delete.php:59 @@ -12396,14 +13021,14 @@ msgstr "テンプレートウィザード" #: ../../enterprise/operation/services/services.list.php:75 #: ../../enterprise/operation/services/services.table_services.php:38 #: ../../enterprise/operation/services/services.table_services.php:58 -#: ../../operation/agentes/ver_agente.php:1654 +#: ../../operation/agentes/ver_agente.php:1684 #: ../../general/first_task/service_list.php:23 msgid "Services" msgstr "サービス" #: ../../enterprise/meta/general/main_header.php:240 -#: ../../enterprise/meta/general/main_menu.php:356 -#: ../../enterprise/include/functions_enterprise.php:456 +#: ../../enterprise/meta/general/main_menu.php:388 +#: ../../enterprise/include/functions_enterprise.php:463 #: ../../include/class/OrderInterpreter.class.php:233 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:175 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:515 @@ -12412,53 +13037,55 @@ msgid "Visual Console" msgstr "ビジュアルコンソール" #: ../../enterprise/meta/general/main_header.php:247 -#: ../../enterprise/meta/general/main_menu.php:363 +#: ../../enterprise/meta/general/main_menu.php:395 #: ../../godmode/reporting/visual_console_favorite.php:118 msgid "Favourite Visual Console" msgstr "お気に入りのビジュアルコンソール" #: ../../enterprise/meta/general/main_header.php:255 -#: ../../enterprise/meta/general/main_menu.php:371 +#: ../../enterprise/meta/general/main_menu.php:403 msgid "Template Visual Console" msgstr "ビジュアルコンソールテンプレート" #: ../../enterprise/meta/general/main_header.php:262 -#: ../../enterprise/meta/general/main_menu.php:378 +#: ../../enterprise/meta/general/main_menu.php:410 msgid "Wizard Visual Console" msgstr "ビジュアルコンソールウィザード" #: ../../enterprise/meta/general/main_header.php:275 #: ../../enterprise/meta/general/logon_ok.php:37 -#: ../../enterprise/meta/general/main_menu.php:393 -#: ../../enterprise/include/functions_enterprise.php:452 ../../godmode/menu.php:358 -#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:271 -#: ../../include/functions_reports.php:913 ../../include/functions_reports.php:917 -#: ../../include/functions_reports.php:921 ../../include/functions_reports.php:925 +#: ../../enterprise/meta/general/main_menu.php:425 +#: ../../enterprise/include/functions_enterprise.php:459 +#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:151 +#: ../../godmode/setup/setup.php:271 ../../include/functions_reports.php:913 +#: ../../include/functions_reports.php:917 +#: ../../include/functions_reports.php:921 +#: ../../include/functions_reports.php:925 msgid "Netflow" msgstr "Netflow" #: ../../enterprise/meta/general/main_header.php:281 -#: ../../enterprise/meta/general/main_menu.php:401 +#: ../../enterprise/meta/general/main_menu.php:433 msgid "Live view" msgstr "ライブビュー" #: ../../enterprise/meta/general/main_header.php:315 #: ../../enterprise/meta/general/main_header.php:417 -#: ../../enterprise/meta/general/main_menu.php:447 -#: ../../enterprise/meta/general/main_menu.php:568 +#: ../../enterprise/meta/general/main_menu.php:479 +#: ../../enterprise/meta/general/main_menu.php:606 msgid "Agent management" msgstr "エージェント管理" #: ../../enterprise/meta/general/main_header.php:327 #: ../../enterprise/meta/general/main_header.php:423 -#: ../../enterprise/meta/general/main_menu.php:453 -#: ../../enterprise/meta/general/main_menu.php:574 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 +#: ../../enterprise/meta/general/main_menu.php:485 +#: ../../enterprise/meta/general/main_menu.php:612 #: ../../enterprise/godmode/modules/local_components.php:157 -#: ../../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:290 +#: ../../godmode/modules/manage_inventory_modules.php:45 +#: ../../godmode/modules/manage_network_components.php:291 +#: ../../godmode/modules/manage_inventory_modules_form.php:37 #: ../../godmode/modules/module_list.php:29 #: ../../godmode/modules/manage_network_templates.php:39 msgid "Module management" @@ -12466,61 +13093,62 @@ msgstr "モジュール管理" #: ../../enterprise/meta/general/main_header.php:333 #: ../../enterprise/meta/general/main_header.php:439 -#: ../../enterprise/meta/general/main_menu.php:459 -#: ../../enterprise/meta/general/main_menu.php:597 +#: ../../enterprise/meta/general/main_menu.php:491 +#: ../../enterprise/meta/general/main_menu.php:635 msgid "Alert management" msgstr "アラート管理" #: ../../enterprise/meta/general/main_header.php:339 -#: ../../enterprise/meta/general/main_menu.php:465 +#: ../../enterprise/meta/general/main_menu.php:497 msgid "Component management" msgstr "コンポーネント管理" #: ../../enterprise/meta/general/main_header.php:345 -#: ../../enterprise/meta/general/main_menu.php:477 -#: ../../enterprise/meta/general/main_menu.php:588 +#: ../../enterprise/meta/general/main_menu.php:509 +#: ../../enterprise/meta/general/main_menu.php:626 msgid "Policy management" msgstr "ポリシー管理" #: ../../enterprise/meta/general/main_header.php:351 -#: ../../enterprise/meta/general/main_menu.php:483 +#: ../../enterprise/meta/general/main_menu.php:515 msgid "Category management" msgstr "カテゴリ管理" #: ../../enterprise/meta/general/main_header.php:357 #: ../../enterprise/meta/general/main_header.php:430 -#: ../../enterprise/meta/general/main_menu.php:489 -#: ../../enterprise/meta/general/main_menu.php:581 +#: ../../enterprise/meta/general/main_menu.php:521 +#: ../../enterprise/meta/general/main_menu.php:619 msgid "Server management" msgstr "サーバ管理" #: ../../enterprise/meta/general/main_header.php:363 -#: ../../enterprise/meta/general/main_menu.php:509 +#: ../../enterprise/meta/general/main_menu.php:547 msgid "Command Center" msgstr "コマンドセンター" #: ../../enterprise/meta/general/main_header.php:369 -#: ../../enterprise/meta/general/main_menu.php:618 ../../godmode/menu.php:385 +#: ../../enterprise/meta/general/main_menu.php:656 ../../godmode/menu.php:388 msgid "License" msgstr "ライセンス" #: ../../enterprise/meta/general/main_header.php:375 -#: ../../enterprise/meta/general/main_menu.php:624 -#: ../../enterprise/meta/general/main_menu.php:650 +#: ../../enterprise/meta/general/main_menu.php:662 +#: ../../enterprise/meta/general/main_menu.php:688 msgid "Metasetup" msgstr "メタセットアップ" #: ../../enterprise/meta/general/main_header.php:381 #: ../../enterprise/meta/general/main_header.php:448 -#: ../../enterprise/meta/general/main_menu.php:630 -#: ../../enterprise/meta/general/main_menu.php:656 -#: ../../enterprise/meta/general/main_menu.php:677 ../../godmode/menu.php:407 -#: ../../godmode/menu.php:525 ../../general/links_menu.php:17 +#: ../../enterprise/meta/general/main_menu.php:668 +#: ../../enterprise/meta/general/main_menu.php:694 +#: ../../enterprise/meta/general/main_menu.php:715 ../../godmode/menu.php:410 +#: ../../godmode/menu.php:528 ../../general/links_menu.php:17 msgid "Links" msgstr "リンク" #: ../../enterprise/meta/general/main_header.php:458 -#: ../../enterprise/meta/general/main_menu.php:687 ../../godmode/extensions.php:28 +#: ../../enterprise/meta/general/main_menu.php:725 +#: ../../godmode/extensions.php:28 msgid "Extensions" msgstr "拡張" @@ -12541,133 +13169,166 @@ msgstr "監査ログ" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:387 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74 -#: ../../enterprise/godmode/reporting/mysql_builder.php:75 -#: ../../enterprise/godmode/reporting/mysql_builder.php:202 -#: ../../enterprise/operation/agentes/transactional_map.php:70 -#: ../../enterprise/operation/agentes/manage_transmap.php:172 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:169 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:349 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:471 -#: ../../godmode/reporting/graph_builder.php:366 +#: ../../enterprise/godmode/reporting/mysql_builder.php:76 +#: ../../enterprise/godmode/reporting/mysql_builder.php:203 +#: ../../godmode/reporting/graph_builder.php:372 #: ../../godmode/reporting/graph_container.php:118 #: ../../godmode/reporting/graphs.php:129 #: ../../godmode/reporting/reporting_builder.php:572 #: ../../godmode/reporting/reporting_builder.php:579 #: ../../godmode/reporting/reporting_builder.php:592 -#: ../../godmode/reporting/reporting_builder.php:3531 -#: ../../godmode/reporting/reporting_builder.php:3538 -#: ../../godmode/reporting/reporting_builder.php:3551 -#: ../../godmode/reporting/reporting_builder.php:3642 -#: ../../godmode/reporting/reporting_builder.php:3649 -#: ../../godmode/reporting/reporting_builder.php:3665 -#: ../../godmode/reporting/reporting_builder.php:3694 ../../operation/menu.php:312 +#: ../../godmode/reporting/reporting_builder.php:3559 +#: ../../godmode/reporting/reporting_builder.php:3566 +#: ../../godmode/reporting/reporting_builder.php:3579 +#: ../../godmode/reporting/reporting_builder.php:3670 +#: ../../godmode/reporting/reporting_builder.php:3677 +#: ../../godmode/reporting/reporting_builder.php:3693 +#: ../../godmode/reporting/reporting_builder.php:3722 +#: ../../operation/menu.php:325 #: ../../operation/reporting/reporting_viewer.php:211 #: ../../operation/reporting/reporting_viewer.php:216 #: ../../operation/reporting/reporting_viewer.php:229 #: ../../operation/reporting/custom_reporting.php:23 #: ../../operation/reporting/graph_viewer.php:267 -#: ../../operation/reporting/graph_viewer.php:513 +#: ../../operation/reporting/graph_viewer.php:510 msgid "Reporting" msgstr "レポート" #: ../../enterprise/meta/general/logon_ok.php:99 -#: ../../enterprise/meta/general/main_menu.php:611 -#: ../../enterprise/meta/general/main_menu.php:643 -#: ../../enterprise/meta/general/main_menu.php:668 +#: ../../enterprise/meta/general/main_menu.php:649 +#: ../../enterprise/meta/general/main_menu.php:681 +#: ../../enterprise/meta/general/main_menu.php:706 #: ../../enterprise/godmode/policies/configure_policy.php:39 #: ../../enterprise/godmode/servers/HA_cluster.php:70 #: ../../enterprise/include/functions_policies.php:3715 #: ../../godmode/update_manager/update_manager.php:57 #: ../../godmode/update_manager/update_manager.php:87 -#: ../../godmode/agentes/configurar_agente.php:394 -#: ../../godmode/agentes/configurar_agente.php:699 ../../godmode/menu.php:325 -#: ../../godmode/menu.php:332 ../../godmode/module_library/module_library_view.php:48 +#: ../../godmode/agentes/configurar_agente.php:402 +#: ../../godmode/agentes/configurar_agente.php:720 ../../godmode/menu.php:328 +#: ../../godmode/menu.php:335 +#: ../../godmode/module_library/module_library_view.php:48 #: ../../operation/agentes/estado_agente.php:201 #: ../../operation/gis_maps/render_view.php:173 msgid "Setup" msgstr "セットアップ" -#: ../../enterprise/meta/general/noaccesssaml.php:135 ../../general/noaccesssaml.php:135 +#: ../../enterprise/meta/general/noaccesssaml.php:135 +#: ../../general/noaccesssaml.php:135 msgid "" -"Access to this page is restricted to authorized users SAML only, please contact " -"system administrator if you need assistance." +"Access to this page is restricted to authorized users SAML only, please " +"contact system administrator if you need assistance." msgstr "" -"このページへのアクセスは、SAML で許可されたユーザのみに制限されています。支援が必要な" -"場合はシステム管理者に連絡してください。" +"このページへのアクセスは、SAML で許可されたユーザのみに制限されています。支援が" +"必要な場合はシステム管理者に連絡してください。" -#: ../../enterprise/meta/general/noaccesssaml.php:137 ../../general/noaccesssaml.php:137 +#: ../../enterprise/meta/general/noaccesssaml.php:137 +#: ../../general/noaccesssaml.php:137 #, php-format 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" +"information the error to access this page are recorded in security logs of %s " +"System Database" msgstr "" -"SAML 認証が適切に構成されていることを確認してください。 詳細については、このページへの" -"アクセスエラーが %s システムデータベースのセキュリティログに記録されています。" +"SAML 認証が適切に構成されていることを確認してください。 詳細については、この" +"ページへのアクセスエラーが %s システムデータベースのセキュリティログに記録され" +"ています。" #: ../../enterprise/meta/general/noaccess.php:135 ../../general/noaccess.php:152 msgid "" -"Access to this page is restricted to authorized users only, please contact system " -"administrator if you need assistance." +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance." msgstr "" -"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な場合は" -"システム管理者に連絡してください。" +"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要" +"な場合はシステム管理者に連絡してください。" #: ../../enterprise/meta/general/noaccess.php:137 ../../general/noaccess.php:154 #, php-format msgid "" -"Please know that all attempts to access this page are recorded in security logs of %s " -"System Database" +"Please know that all attempts to access this page are recorded in security " +"logs of %s System Database" msgstr "" -"このページへのアクセス試行はすべて、%s システムデータベースのセキュリティログに記録さ" -"れます。" +"このページへのアクセス試行はすべて、%s システムデータベースのセキュリティログに" +"記録されます。" #: ../../enterprise/meta/general/main_menu.php:237 -#: ../../enterprise/godmode/agentes/configurar_agente.php:88 #: ../../enterprise/godmode/policies/policies.php:543 -#: ../../enterprise/include/functions_reporting_csv.php:800 -#: ../../enterprise/operation/agentes/ver_agente.php:192 +#: ../../enterprise/include/functions_reporting_csv.php:804 #: ../../enterprise/operation/snmpconsole/snmp_view.php:23 -#: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/inventory/inventory.php:137 -#: ../../godmode/agentes/configurar_agente.php:715 -#: ../../godmode/setup/setup_integria.php:314 ../../include/functions_reports.php:878 -#: ../../include/functions_reports.php:885 ../../include/functions_reports.php:892 -#: ../../include/functions_reports.php:893 ../../include/functions_reports.php:897 -#: ../../include/functions_reporting.php:2889 +#: ../../godmode/agentes/configurar_agente.php:466 +#: ../../godmode/agentes/configurar_agente.php:736 +#: ../../godmode/setup/setup_integria.php:314 +#: ../../include/functions_reports.php:878 +#: ../../include/functions_reports.php:885 +#: ../../include/functions_reports.php:892 +#: ../../include/functions_reports.php:893 +#: ../../include/functions_reports.php:897 +#: ../../include/functions_reporting.php:3020 +#: ../../operation/agentes/ver_agente.php:1463 ../../operation/menu.php:77 +#: ../../operation/inventory/inventory.php:140 msgid "Inventory" msgstr "インベントリ" -#: ../../enterprise/meta/general/main_menu.php:328 +#: ../../enterprise/meta/general/main_menu.php:275 ../../operation/menu.php:439 +msgid "Sound Console" +msgstr "サウンドコンソール" + +#: ../../enterprise/meta/general/main_menu.php:276 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:380 +#: ../../godmode/menu.php:51 ../../godmode/setup/setup_ehorus.php:112 +#: ../../godmode/setup/setup_integria.php:567 ../../include/ajax/events.php:2391 +#: ../../operation/users/user_edit.php:811 +#: ../../operation/users/user_edit.php:857 ../../operation/menu.php:440 +msgid "Start" +msgstr "開始" + +#: ../../enterprise/meta/general/main_menu.php:278 ../../operation/menu.php:442 +msgid "No alert" +msgstr "アラートなし" + +#: ../../enterprise/meta/general/main_menu.php:279 ../../operation/menu.php:443 +msgid "Silence alarm" +msgstr "サイレントアラーム" + +#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:452 +#: ../../operation/events/sound_events.php:63 +msgid "Sound Events" +msgstr "サウンドイベント" + +#: ../../enterprise/meta/general/main_menu.php:351 +#: ../../enterprise/godmode/reporting/mysql_builder.php:80 +#: ../../enterprise/godmode/reporting/mysql_builder.php:207 +#: ../../enterprise/operation/menu.php:130 +msgid "Custom SQL" +msgstr "カスタム SQL" + +#: ../../enterprise/meta/general/main_menu.php:360 #: ../../operation/messages/message_list.php:90 -#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:515 +#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:525 msgid "Messages" msgstr "メッセージ" -#: ../../enterprise/meta/general/main_menu.php:419 ../../enterprise/godmode/menu.php:245 +#: ../../enterprise/meta/general/main_menu.php:451 +#: ../../enterprise/godmode/menu.php:236 msgid "Alert correlation" msgstr "アラート相関" -#: ../../enterprise/meta/general/main_menu.php:440 -#: ../../enterprise/meta/general/main_menu.php:522 -#: ../../enterprise/meta/general/main_menu.php:542 +#: ../../enterprise/meta/general/main_menu.php:472 +#: ../../enterprise/meta/general/main_menu.php:560 +#: ../../enterprise/meta/general/main_menu.php:580 msgid "Centralised management" msgstr "中央管理" -#: ../../enterprise/meta/general/main_menu.php:495 ../../godmode/menu.php:198 -#: ../../godmode/massive/massive_operations.php:307 +#: ../../enterprise/meta/general/main_menu.php:527 ../../godmode/menu.php:201 +#: ../../godmode/massive/massive_operations.php:312 msgid "Bulk operations" msgstr "一括操作" -#: ../../enterprise/meta/general/main_menu.php:501 -msgid "Agent operations" -msgstr "エージェント操作" - -#: ../../enterprise/meta/general/main_menu.php:739 ../../godmode/menu.php:405 +#: ../../enterprise/meta/general/main_menu.php:777 ../../godmode/menu.php:408 msgid "System audit log" msgstr "システム監査ログ" -#: ../../enterprise/meta/general/login_page.php:109 ../../general/login_page.php:307 +#: ../../enterprise/meta/general/login_page.php:109 +#: ../../general/login_page.php:307 msgid "Authentication code" msgstr "認証コード" @@ -12687,13 +13348,13 @@ msgstr "ログイン" msgid "Login with SAML" msgstr "SAML でログイン" -#: ../../enterprise/meta/general/login_page.php:195 ../../general/login_page.php:334 -#: ../../general/login_page.php:337 +#: ../../enterprise/meta/general/login_page.php:195 +#: ../../general/login_page.php:334 ../../general/login_page.php:337 msgid "Forgot your password?" msgstr "パスワードを忘れましたか?" #: ../../enterprise/meta/general/login_page.php:209 -#: ../../include/functions_config.php:2466 +#: ../../include/functions_config.php:2526 msgid "PANDORA FMS NEXT GENERATION" msgstr "PANDORA FMS NEXT GENERATION" @@ -12702,38 +13363,42 @@ msgstr "PANDORA FMS NEXT GENERATION" #: ../../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:340 -#: ../../general/login_page.php:343 ../../general/login_page.php:428 -#: ../../general/login_page.php:431 ../../general/login_page.php:445 -#: ../../general/login_page.php:448 ../../general/login_page.php:465 -#: ../../general/login_page.php:468 +#: ../../enterprise/meta/general/login_page.php:275 +#: ../../general/login_page.php:340 ../../general/login_page.php:343 +#: ../../general/login_page.php:428 ../../general/login_page.php:431 +#: ../../general/login_page.php:445 ../../general/login_page.php:448 +#: ../../general/login_page.php:465 ../../general/login_page.php:468 msgid "Password reset" msgstr "パスワードのリセット" -#: ../../enterprise/meta/general/login_page.php:242 ../../general/login_page.php:435 +#: ../../enterprise/meta/general/login_page.php:242 +#: ../../general/login_page.php:435 msgid "INFO" msgstr "情報" -#: ../../enterprise/meta/general/login_page.php:243 ../../general/login_page.php:436 +#: ../../enterprise/meta/general/login_page.php:243 +#: ../../general/login_page.php:436 msgid "An email has been sent to your email address" msgstr "あなたのアドレス宛にメールを送信しました" -#: ../../enterprise/meta/general/login_page.php:279 ../../general/login_page.php:472 +#: ../../enterprise/meta/general/login_page.php:279 +#: ../../general/login_page.php:472 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:487 -#: ../../general/login_page.php:490 ../../general/login_page.php:644 -#: ../../general/login_page.php:647 +#: ../../enterprise/include/functions_login.php:141 +#: ../../general/login_page.php:487 ../../general/login_page.php:490 +#: ../../general/login_page.php:644 ../../general/login_page.php:647 msgid "Login failed" 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:512 -#: ../../general/login_page.php:515 ../../general/login_page.php:519 +#: ../../enterprise/meta/general/login_page.php:326 +#: ../../general/login_page.php:512 ../../general/login_page.php:515 +#: ../../general/login_page.php:519 msgid "Logged out" msgstr "ログアウトしました。" @@ -12741,129 +13406,145 @@ msgstr "ログアウトしました。" #: ../../mobile/include/user.class.php:365 ../../general/login_page.php:521 #, php-format msgid "" -"Your session has ended. Please close your browser window to close this %s session." +"Your session has ended. Please close your browser window to close this %s " +"session." msgstr "" -"セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを閉じて" -"ください。" +"セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを" +"閉じてください。" -#: ../../enterprise/load_enterprise.php:564 ../../godmode/setup/license.php:83 +#: ../../enterprise/load_enterprise.php:568 ../../godmode/setup/license.php:109 msgid "License updated" msgstr "ライセンスを更新しました" -#: ../../enterprise/load_enterprise.php:565 +#: ../../enterprise/load_enterprise.php:569 msgid "Failed while updating license." msgstr "ライセンス更新に失敗しました。" -#: ../../enterprise/load_enterprise.php:590 ../../enterprise/load_enterprise.php:655 +#: ../../enterprise/load_enterprise.php:594 +#: ../../enterprise/load_enterprise.php:659 msgid "Invalid licence." msgstr "不正なライセンス。" -#: ../../enterprise/load_enterprise.php:590 +#: ../../enterprise/load_enterprise.php:594 msgid "Please contact your system administrator." msgstr "システム管理者に連絡してください。" -#: ../../enterprise/load_enterprise.php:655 +#: ../../enterprise/load_enterprise.php:659 #, php-format msgid "Please contact %s for a valid licence." msgstr "正しいライセンス取得は %s に連絡してください。" -#: ../../enterprise/load_enterprise.php:656 +#: ../../enterprise/load_enterprise.php:660 #, php-format msgid "Or disable %s enterprise" msgstr "または、%s enterprise を無効化します" -#: ../../enterprise/load_enterprise.php:754 +#: ../../enterprise/load_enterprise.php:758 #: ../../enterprise/godmode/reporting/aws_view.php:181 #: ../../enterprise/godmode/wizards/Cloud.class.php:325 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3174 -#: ../../godmode/setup/license.php:165 ../../mobile/operation/events.php:858 -#: ../../include/ajax/alert_list.ajax.php:280 ../../include/ajax/alert_list.ajax.php:306 -#: ../../operation/agentes/alerts_status.php:429 -#: ../../operation/snmpconsole/snmp_view.php:1027 -#: ../../operation/snmpconsole/snmp_view.php:1217 -#: ../../operation/snmpconsole/snmp_view.php:1267 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3176 +#: ../../godmode/setup/license.php:207 ../../mobile/operation/events.php:858 +#: ../../include/ajax/alert_list.ajax.php:280 +#: ../../include/ajax/alert_list.ajax.php:306 +#: ../../include/class/SnmpConsole.class.php:493 +#: ../../include/class/SnmpConsole.class.php:545 +#: ../../include/class/SnmpConsole.class.php:888 +#: ../../operation/agentes/alerts_status.php:438 msgid "Validate" msgstr "承諾する" -#: ../../enterprise/load_enterprise.php:758 ../../enterprise/load_enterprise.php:1053 +#: ../../enterprise/load_enterprise.php:762 +#: ../../enterprise/load_enterprise.php:1057 msgid "Request new licence" msgstr "新規ライセンスの要求" -#: ../../enterprise/load_enterprise.php:837 +#: ../../enterprise/load_enterprise.php:841 msgid "" -"Metaconsole unreached

This node " -"has a metaconsole license and cannot contact with the metaconsole." +"Metaconsole unreached

This " +"node has a metaconsole license and cannot contact with the metaconsole." msgstr "" -"メタコンソールに到達できません

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

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

This license " -"allows %d agents and you have %d agents configured." +"License exceeded

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

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

このライセン" +"スは %d エージェントまでですが、%d エージェントが設定されています。" -#: ../../enterprise/load_enterprise.php:855 ../../enterprise/load_enterprise.php:862 -#: ../../enterprise/load_enterprise.php:871 ../../enterprise/load_enterprise.php:878 -#: ../../enterprise/load_enterprise.php:890 +#: ../../enterprise/load_enterprise.php:859 +#: ../../enterprise/load_enterprise.php:866 +#: ../../enterprise/load_enterprise.php:875 +#: ../../enterprise/load_enterprise.php:882 +#: ../../enterprise/load_enterprise.php:894 #, php-format msgid "Please contact %s to extend the license." msgstr "ライセンスを拡張するには %s へ連絡してください。" -#: ../../enterprise/load_enterprise.php:861 ../../enterprise/load_enterprise.php:863 -#: ../../enterprise/load_enterprise.php:877 ../../enterprise/load_enterprise.php:879 -#: ../../enterprise/load_enterprise.php:906 ../../enterprise/load_enterprise.php:912 -msgid "This console will work in limited mode. Enterprise features will not work." +#: ../../enterprise/load_enterprise.php:865 +#: ../../enterprise/load_enterprise.php:867 +#: ../../enterprise/load_enterprise.php:881 +#: ../../enterprise/load_enterprise.php:883 +#: ../../enterprise/load_enterprise.php:910 +#: ../../enterprise/load_enterprise.php:916 +msgid "" +"This console will work in limited mode. Enterprise features will not work." msgstr "このコンソールは制限モードで動作します。Enterprise 機能は動作しません。" -#: ../../enterprise/load_enterprise.php:870 +#: ../../enterprise/load_enterprise.php:874 #, php-format msgid "" -"License exceeded

This license " -"allows %d agents and you have %d agents configured." +"License exceeded

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

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

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

This license " -"allows %d modules and you have %d modules configured." +"License exceeded

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

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

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

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

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

ライ" -"センスを更新するまでアップデートの入手はできません。" +"このライセンスは期限切れです。 " +"

ライセンスを更新するまでアップデートの入手はできません。" -#: ../../enterprise/load_enterprise.php:900 ../../enterprise/load_enterprise.php:907 +#: ../../enterprise/load_enterprise.php:904 +#: ../../enterprise/load_enterprise.php:911 #, php-format msgid "Please contact %s to renew the license." msgstr "ライセンスを更新するには %s にご連絡ください。" -#: ../../enterprise/load_enterprise.php:910 ../../enterprise/load_enterprise.php:1049 +#: ../../enterprise/load_enterprise.php:914 +#: ../../enterprise/load_enterprise.php:1053 msgid "Renew" msgstr "更新" -#: ../../enterprise/load_enterprise.php:919 +#: ../../enterprise/load_enterprise.php:923 #, php-format msgid "" "This license is outside of support. " -"

This %s installation will continue working normally and without limitations, " -"but without support or updates." +"

This %s installation will continue working normally and without " +"limitations, but without support or updates." msgstr "" -"このライセンスはサポート外です。

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

この %s インストールは引き続き制限なく動作しますが、サポートや更新はあ" +"りません。" #: ../../enterprise/extensions/disabled/check_acls.php:16 msgid "ACL users for this agent" @@ -12884,11 +13565,6 @@ msgstr "エージェント無効化" msgid "Alerts editing" msgstr "アラート編集" -#: ../../enterprise/extensions/disabled/check_acls.php:53 -#: ../../enterprise/extensions/disabled/check_acls.php:140 ../../godmode/menu.php:150 -msgid "Users management" -msgstr "ユーザ管理" - #: ../../enterprise/extensions/disabled/check_acls.php:54 #: ../../enterprise/extensions/disabled/check_acls.php:141 msgid "Database management" @@ -12937,8 +13613,8 @@ msgstr "システム管理" #: ../../enterprise/extensions/disabled/check_acls.php:63 #: ../../enterprise/extensions/disabled/check_acls.php:150 #: ../../enterprise/godmode/setup/setup_metaconsole.php:276 -#: ../../enterprise/godmode/servers/HA_cluster.php:177 -#: ../../godmode/users/user_list.php:483 ../../godmode/users/user_list.php:664 +#: ../../enterprise/godmode/servers/HA_cluster.php:182 +#: ../../godmode/users/user_list.php:543 ../../godmode/users/user_list.php:726 #: ../../operation/search_users.php:62 msgid "Admin" msgstr "管理者" @@ -12947,7 +13623,8 @@ msgstr "管理者" msgid "There are no defined users" msgstr "定義済ユーザがありません" -#: ../../enterprise/extensions/disabled/check_acls.php:134 ../../godmode/menu.php:142 +#: ../../enterprise/extensions/disabled/check_acls.php:134 +#: ../../godmode/menu.php:143 msgid "Module tags" msgstr "モジュールタグ" @@ -13180,23 +13857,23 @@ msgstr "'%s' インベントリモジュールを追加しました。" msgid "Error add '%s' inventory module." msgstr "'%s' インベントリモジュール追加エラー。" -#: ../../enterprise/extensions/vmware/vmware_view.php:61 +#: ../../enterprise/extensions/vmware/vmware_view.php:59 msgid "Top 5 VMs CPU Usage" msgstr "CPU利用率上位 5位内のVM" -#: ../../enterprise/extensions/vmware/vmware_view.php:70 +#: ../../enterprise/extensions/vmware/vmware_view.php:66 msgid "Top 5 VMs Memory Usage" msgstr "メモリ使用率上位 5位内のVM" -#: ../../enterprise/extensions/vmware/vmware_view.php:82 +#: ../../enterprise/extensions/vmware/vmware_view.php:76 msgid "Top 5 VMs Provisioning Usage" msgstr "プロビジョニング使用量の上位 5つの VM" -#: ../../enterprise/extensions/vmware/vmware_view.php:91 +#: ../../enterprise/extensions/vmware/vmware_view.php:83 msgid "Top 5 VMs Network Usage" msgstr "ネットワーク使用率上位 5位内のVM" -#: ../../enterprise/extensions/vmware/vmware_view.php:684 +#: ../../enterprise/extensions/vmware/vmware_view.php:669 msgid "Host ESX" msgstr "ホスト ESX" @@ -13204,28 +13881,29 @@ msgstr "ホスト ESX" #: ../../enterprise/include/functions_services.php:1972 #: ../../enterprise/operation/agentes/policy_view.php:479 #: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/operation/agentes/tag_view.php:942 -#: ../../enterprise/operation/agentes/tag_view.php:948 -#: ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 +#: ../../enterprise/operation/agentes/tag_view.php:970 +#: ../../enterprise/operation/agentes/tag_view.php:976 +#: ../../enterprise/operation/agentes/tag_view.php:1017 +#: ../../enterprise/operation/agentes/tag_view.php:1023 #: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 #: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 -#: ../../include/functions.php:1360 ../../include/functions.php:1399 -#: ../../include/functions_modules.php:2883 ../../include/functions_modules.php:2889 -#: ../../include/functions_modules.php:4098 ../../include/functions_modules.php:4130 -#: ../../include/functions_ui.php:3828 ../../include/functions_ui.php:3894 -#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:572 -#: ../../include/functions_events.php:64 ../../include/functions_events.php:116 -#: ../../include/functions_events.php:179 -#: ../../operation/agentes/status_monitor.php:1579 -#: ../../operation/agentes/status_monitor.php:1585 -#: ../../operation/agentes/status_monitor.php:1662 -#: ../../operation/agentes/status_monitor.php:1668 -#: ../../operation/agentes/pandora_networkmap.view.php:1772 -#: ../../operation/agentes/pandora_networkmap.view.php:1780 +#: ../../include/functions.php:1406 ../../include/functions.php:1445 +#: ../../include/functions_modules.php:2883 +#: ../../include/functions_modules.php:2889 +#: ../../include/functions_modules.php:4195 +#: ../../include/functions_modules.php:4227 ../../include/functions_ui.php:3850 +#: ../../include/functions_ui.php:3916 ../../include/class/Tree.class.php:655 +#: ../../include/lib/Module.php:572 ../../include/functions_events.php:64 +#: ../../include/functions_events.php:116 ../../include/functions_events.php:179 +#: ../../operation/agentes/status_monitor.php:1592 +#: ../../operation/agentes/status_monitor.php:1598 +#: ../../operation/agentes/status_monitor.php:1695 +#: ../../operation/agentes/status_monitor.php:1701 +#: ../../operation/agentes/pandora_networkmap.view.php:1815 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 #: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141 -#: ../../operation/events/events.php:543 ../../operation/events/events.php:620 -#: ../../operation/events/events.php:646 +#: ../../operation/events/events.php:603 ../../operation/events/events.php:680 +#: ../../operation/events/events.php:706 msgid "NORMAL" msgstr "正常" @@ -13233,28 +13911,29 @@ msgstr "正常" #: ../../enterprise/include/functions_services.php:1980 #: ../../enterprise/operation/agentes/policy_view.php:473 #: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/operation/agentes/tag_view.php:956 -#: ../../enterprise/operation/agentes/tag_view.php:962 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 +#: ../../enterprise/operation/agentes/tag_view.php:984 +#: ../../enterprise/operation/agentes/tag_view.php:990 +#: ../../enterprise/operation/agentes/tag_view.php:1033 +#: ../../enterprise/operation/agentes/tag_view.php:1039 #: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 -#: ../../include/functions.php:1348 ../../include/functions.php:1380 -#: ../../include/functions_modules.php:2877 ../../include/functions_modules.php:2893 -#: ../../include/functions_modules.php:4102 ../../include/functions_modules.php:4122 -#: ../../include/functions_ui.php:3834 ../../include/functions_ui.php:3904 -#: ../../include/class/Tree.class.php:625 ../../include/lib/Module.php:556 -#: ../../include/functions_events.php:67 ../../include/functions_events.php:120 -#: ../../include/functions_events.php:164 -#: ../../operation/agentes/status_monitor.php:1593 -#: ../../operation/agentes/status_monitor.php:1601 -#: ../../operation/agentes/status_monitor.php:1678 -#: ../../operation/agentes/status_monitor.php:1684 -#: ../../operation/agentes/pandora_networkmap.view.php:1766 -#: ../../operation/agentes/pandora_networkmap.view.php:1785 +#: ../../include/functions.php:1394 ../../include/functions.php:1426 +#: ../../include/functions_modules.php:2877 +#: ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:4199 +#: ../../include/functions_modules.php:4219 ../../include/functions_ui.php:3856 +#: ../../include/functions_ui.php:3926 ../../include/class/Tree.class.php:625 +#: ../../include/lib/Module.php:556 ../../include/functions_events.php:67 +#: ../../include/functions_events.php:120 ../../include/functions_events.php:164 +#: ../../operation/agentes/status_monitor.php:1606 +#: ../../operation/agentes/status_monitor.php:1619 +#: ../../operation/agentes/status_monitor.php:1711 +#: ../../operation/agentes/status_monitor.php:1717 +#: ../../operation/agentes/pandora_networkmap.view.php:1809 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 #: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149 -#: ../../operation/events/events.php:518 ../../operation/events/events.php:626 -#: ../../operation/events/events.php:651 +#: ../../operation/events/events.php:578 ../../operation/events/events.php:686 +#: ../../operation/events/events.php:711 msgid "CRITICAL" msgstr "障害" @@ -13263,28 +13942,30 @@ msgstr "障害" #: ../../enterprise/include/functions_login.php:34 #: ../../enterprise/operation/agentes/policy_view.php:476 #: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/operation/agentes/tag_view.php:970 -#: ../../enterprise/operation/agentes/tag_view.php:976 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../enterprise/operation/agentes/tag_view.php:998 +#: ../../enterprise/operation/agentes/tag_view.php:1004 +#: ../../enterprise/operation/agentes/tag_view.php:1049 +#: ../../enterprise/operation/agentes/tag_view.php:1055 #: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 #: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1351 ../../include/functions.php:1387 -#: ../../include/functions_modules.php:2880 ../../include/functions_modules.php:2897 -#: ../../include/functions_modules.php:4106 ../../include/functions_modules.php:4138 -#: ../../include/functions_ui.php:3822 ../../include/functions_ui.php:3899 -#: ../../include/class/Tree.class.php:633 ../../include/class/NetworkMap.class.php:2805 -#: ../../include/lib/Module.php:560 ../../include/functions_events.php:78 -#: ../../include/functions_events.php:112 ../../include/functions_events.php:182 -#: ../../operation/agentes/status_monitor.php:1609 -#: ../../operation/agentes/status_monitor.php:1617 -#: ../../operation/agentes/status_monitor.php:1694 -#: ../../operation/agentes/status_monitor.php:1700 -#: ../../operation/agentes/pandora_networkmap.view.php:1769 -#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../include/functions.php:1397 ../../include/functions.php:1433 +#: ../../include/functions_modules.php:2880 +#: ../../include/functions_modules.php:2897 +#: ../../include/functions_modules.php:4203 +#: ../../include/functions_modules.php:4235 ../../include/functions_ui.php:3844 +#: ../../include/functions_ui.php:3921 ../../include/class/Tree.class.php:633 +#: ../../include/class/NetworkMap.class.php:2938 ../../include/lib/Module.php:560 +#: ../../include/functions_events.php:78 ../../include/functions_events.php:112 +#: ../../include/functions_events.php:182 +#: ../../operation/agentes/status_monitor.php:1627 +#: ../../operation/agentes/status_monitor.php:1640 +#: ../../operation/agentes/status_monitor.php:1727 +#: ../../operation/agentes/status_monitor.php:1733 +#: ../../operation/agentes/pandora_networkmap.view.php:1812 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157 -#: ../../operation/events/events.php:548 ../../operation/events/events.php:614 -#: ../../operation/events/events.php:668 +#: ../../operation/events/events.php:608 ../../operation/events/events.php:674 +#: ../../operation/events/events.php:728 msgid "WARNING" msgstr "警告" @@ -13293,37 +13974,38 @@ msgstr "警告" #: ../../enterprise/operation/agentes/policy_view.php:485 #: ../../enterprise/operation/agentes/policy_view.php:490 #: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../enterprise/operation/agentes/tag_view.php:1017 +#: ../../enterprise/operation/agentes/tag_view.php:1023 +#: ../../enterprise/operation/agentes/tag_view.php:1033 +#: ../../enterprise/operation/agentes/tag_view.php:1039 +#: ../../enterprise/operation/agentes/tag_view.php:1049 +#: ../../enterprise/operation/agentes/tag_view.php:1055 #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 #: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1364 ../../include/functions.php:1390 -#: ../../include/functions_modules.php:2889 ../../include/functions_modules.php:2893 -#: ../../include/functions_modules.php:2897 ../../include/functions_modules.php:4110 -#: ../../include/functions_ui.php:3841 ../../include/functions_ui.php:3919 -#: ../../include/class/Tree.class.php:639 ../../include/lib/Module.php:563 -#: ../../include/functions_events.php:81 ../../include/functions_events.php:125 -#: ../../include/functions_events.php:185 -#: ../../operation/agentes/status_monitor.php:1625 -#: ../../operation/agentes/status_monitor.php:1633 -#: ../../operation/agentes/status_monitor.php:1662 -#: ../../operation/agentes/status_monitor.php:1668 -#: ../../operation/agentes/status_monitor.php:1678 -#: ../../operation/agentes/status_monitor.php:1684 -#: ../../operation/agentes/status_monitor.php:1694 -#: ../../operation/agentes/status_monitor.php:1700 -#: ../../operation/agentes/pandora_networkmap.view.php:1780 -#: ../../operation/agentes/pandora_networkmap.view.php:1785 -#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../include/functions.php:1410 ../../include/functions.php:1436 +#: ../../include/functions_modules.php:2889 +#: ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:2897 +#: ../../include/functions_modules.php:4207 ../../include/functions_ui.php:3863 +#: ../../include/functions_ui.php:3941 ../../include/class/Tree.class.php:639 +#: ../../include/lib/Module.php:563 ../../include/functions_events.php:81 +#: ../../include/functions_events.php:125 ../../include/functions_events.php:185 +#: ../../operation/agentes/status_monitor.php:1648 +#: ../../operation/agentes/status_monitor.php:1661 +#: ../../operation/agentes/status_monitor.php:1695 +#: ../../operation/agentes/status_monitor.php:1701 +#: ../../operation/agentes/status_monitor.php:1711 +#: ../../operation/agentes/status_monitor.php:1717 +#: ../../operation/agentes/status_monitor.php:1727 +#: ../../operation/agentes/status_monitor.php:1733 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141 #: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157 -#: ../../operation/events/events.php:554 ../../operation/events/events.php:633 -#: ../../operation/events/events.php:673 +#: ../../operation/events/events.php:614 ../../operation/events/events.php:693 +#: ../../operation/events/events.php:733 msgid "UNKNOWN" msgstr "不明" @@ -13411,11 +14093,11 @@ msgstr "ノード分離 (割合)" #: ../../enterprise/extensions/vmware/vmware_view.php:1239 msgid "" -"Looking for VMware configuration? You can configure several tasks using Discovery " -"Applications." +"Looking for VMware configuration? You can configure several tasks using " +"Discovery Applications." msgstr "" -"VMware 設定を探しますか? 動検出アプリケーションを使用して、いくつかのタスクを設定でき" -"ます。" +"VMware 設定を探しますか? 動検出アプリケーションを使用して、いくつかのタスクを設" +"定できます。" #: ../../enterprise/extensions/vmware/vmware_view.php:1240 #: ../../enterprise/extensions/vmware/vmware_view.php:1520 @@ -13445,9 +14127,11 @@ msgstr "マップ" #: ../../enterprise/extensions/vmware/vmware_view.php:1311 #: ../../enterprise/extensions/vmware/vmware_view.php:1348 -#: ../../godmode/users/configure_user.php:1147 ../../mobile/include/functions_web.php:22 +#: ../../godmode/users/configure_user.php:1358 +#: ../../godmode/massive/massive_edit_users.php:281 +#: ../../mobile/include/functions_web.php:22 #: ../../include/class/OrderInterpreter.class.php:219 -#: ../../operation/users/user_edit.php:366 ../../operation/menu.php:340 +#: ../../operation/users/user_edit.php:440 ../../operation/menu.php:353 msgid "Dashboard" msgstr "ダッシュボード" @@ -13468,9 +14152,11 @@ msgid "VMWare" msgstr "VMWare" #: ../../enterprise/extensions/vmware/vmware_view.php:1498 -msgid "Some ESX Hosts are not up to date, please check VMware plugin configuration." +msgid "" +"Some ESX Hosts are not up to date, please check VMware plugin configuration." msgstr "" -"一部の ESX ホストは最新ではありません。VMware プラグインの設定を確認してください。" +"一部の ESX ホストは最新ではありません。VMware プラグインの設定を確認してくださ" +"い。" #: ../../enterprise/extensions/vmware/vmware_view.php:1500 msgid "VMware plugin is working." @@ -13508,13 +14194,13 @@ msgstr "こちら" #: ../../enterprise/extensions/vmware/vmware_view.php:1728 #, php-format msgid "" -"This map is a quick representation of all your VMware entities detected. You can " -"create a custom VMware map by defining a network map based on your VMware discovery " -"task %s" +"This map is a quick representation of all your VMware entities detected. You " +"can create a custom VMware map by defining a network map based on your VMware " +"discovery task %s" msgstr "" -"このマップは、検出されたすべての VMware エンティティをすばやく表したものです。 VMware " -"検出タスク %s に基づいてネットワークマップを定義することにより、カスタム VMware マップ" -"を作成できます。" +"このマップは、検出されたすべての VMware エンティティをすばやく表したものです。 " +"VMware 検出タスク %s に基づいてネットワークマップを定義することにより、カスタ" +"ム VMware マップを作成できます。" #: ../../enterprise/extensions/vmware/vmware_view.php:1738 msgid "Show Datastores" @@ -13536,14 +14222,14 @@ msgstr "フォント" #: ../../enterprise/extensions/vmware/vmware_view.php:1752 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154 -#: ../../operation/agentes/pandora_networkmap.editor.php:311 -#: ../../operation/agentes/pandora_networkmap.view.php:106 +#: ../../operation/agentes/pandora_networkmap.editor.php:329 +#: ../../operation/agentes/pandora_networkmap.view.php:143 msgid "Node radius" msgstr "ノード半径" #: ../../enterprise/extensions/vmware/vmware_view.php:1756 -#: ../../operation/agentes/pandora_networkmap.editor.php:425 -#: ../../operation/agentes/pandora_networkmap.view.php:247 +#: ../../operation/agentes/pandora_networkmap.editor.php:443 +#: ../../operation/agentes/pandora_networkmap.view.php:284 msgid "Node separation" msgstr "ノード分離" @@ -13556,7 +14242,7 @@ msgid "Power Status: " msgstr "電源状態: " #: ../../enterprise/extensions/vmware/vmware_manager.php:269 -#: ../../operation/agentes/pandora_networkmap.view.php:1805 +#: ../../operation/agentes/pandora_networkmap.view.php:1848 msgid "Status: " msgstr "状態: " @@ -13569,7 +14255,7 @@ msgid "Export agents" msgstr "エージェントエクスポート" #: ../../enterprise/extensions/resource_exportation/functions.php:21 -#: ../../enterprise/include/functions_reporting.php:8125 +#: ../../enterprise/include/functions_reporting.php:8126 #: ../../extensions/resource_exportation.php:435 #: ../../extensions/resource_exportation.php:438 #: ../../operation/agentes/exportdata.php:389 @@ -13579,11 +14265,11 @@ msgstr "エクスポート" #: ../../enterprise/extensions/csv_import_group.php:50 #, php-format msgid "" -"This node is configured with centralized mode. All group information is read only. Go " -"to %s to import the CSV." +"This node is configured with centralized mode. All group information is read " +"only. Go to %s to import the CSV." msgstr "" -"このノードは中央管理モードに設定されています。 すべてのグループ情報は読み取り専用で" -"す。CSV をインポートするには %s に移動します。" +"このノードは中央管理モードに設定されています。 すべてのグループ情報は読み取り専" +"用です。CSV をインポートするには %s に移動します。" #: ../../enterprise/extensions/csv_import_group.php:83 msgid "CSV group import" @@ -13603,14 +14289,15 @@ msgid "" "You can activate it manually
here or " "automatically filling the form below:" msgstr "" -"ここから手動で有効化するか、以下のフォームから自" -"動入力できます:" +"ここから手動で有効化するか、以下のフォーム" +"から自動入力できます:" #: ../../enterprise/load_html_extra.php:213 msgid "Auth Key:" msgstr "認証キー:" -#: ../../enterprise/load_html_extra.php:221 ../../enterprise/load_html_extra.php:240 +#: ../../enterprise/load_html_extra.php:221 +#: ../../enterprise/load_html_extra.php:240 msgid "Online validation" msgstr "オンライン認証" @@ -13622,57 +14309,57 @@ msgstr "エラー:" msgid "When connecting to licence server." msgstr "ライセンスサーバへの接続時。" -#: ../../enterprise/godmode/modules/configure_local_component.php:141 +#: ../../enterprise/godmode/modules/configure_local_component.php:143 msgid "Update Local Component" msgstr "ローカルコンポーネント更新" -#: ../../enterprise/godmode/modules/configure_local_component.php:143 +#: ../../enterprise/godmode/modules/configure_local_component.php:145 msgid "Create Local Component" msgstr "ローカルコンポーネント作成" -#: ../../enterprise/godmode/modules/configure_local_component.php:162 +#: ../../enterprise/godmode/modules/configure_local_component.php:164 #: ../../godmode/modules/manage_network_components_form_common.php:50 #: ../../godmode/alerts/configure_alert_template.php:1134 msgid "Wizard level" msgstr "ウィザードレベル" -#: ../../enterprise/godmode/modules/configure_local_component.php:192 +#: ../../enterprise/godmode/modules/configure_local_component.php:194 msgid "Throw unknown events" msgstr "不明イベントを発生させる" -#: ../../enterprise/godmode/modules/configure_local_component.php:292 +#: ../../enterprise/godmode/modules/configure_local_component.php:294 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:489 #: ../../godmode/modules/manage_network_components_form_common.php:146 #: ../../godmode/massive/massive_edit_modules.php:552 msgid "Dynamic Interval" msgstr "動的間隔" -#: ../../enterprise/godmode/modules/configure_local_component.php:298 +#: ../../enterprise/godmode/modules/configure_local_component.php:300 #: ../../godmode/modules/manage_network_components_form_common.php:152 -#: ../../godmode/agentes/module_manager_editor_common.php:691 +#: ../../godmode/agentes/module_manager_editor_common.php:705 msgid "Advanced options Dynamic Threshold" msgstr "拡張オプション 動的閾値" -#: ../../enterprise/godmode/modules/configure_local_component.php:303 +#: ../../enterprise/godmode/modules/configure_local_component.php:305 #: ../../godmode/modules/manage_network_components_form_common.php:157 msgid "Dynamic Min. " msgstr "動的最小値 " -#: ../../enterprise/godmode/modules/configure_local_component.php:305 +#: ../../enterprise/godmode/modules/configure_local_component.php:307 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493 #: ../../godmode/modules/manage_network_components_form_common.php:159 #: ../../godmode/massive/massive_edit_modules.php:556 msgid "Dynamic Max." msgstr "動的最大値" -#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/modules/configure_local_component.php:309 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495 #: ../../godmode/modules/manage_network_components_form_common.php:161 #: ../../godmode/massive/massive_edit_modules.php:558 msgid "Dynamic Two Tailed: " msgstr "2つの動的しきい値 " -#: ../../enterprise/godmode/modules/configure_local_component.php:310 +#: ../../enterprise/godmode/modules/configure_local_component.php:312 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498 #: ../../godmode/modules/manage_network_components_form_common.php:164 @@ -13681,542 +14368,463 @@ msgstr "2つの動的しきい値 " msgid "Warning status" msgstr "警告状態" -#: ../../enterprise/godmode/modules/configure_local_component.php:311 -#: ../../enterprise/godmode/modules/configure_local_component.php:354 +#: ../../enterprise/godmode/modules/configure_local_component.php:313 +#: ../../enterprise/godmode/modules/configure_local_component.php:367 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:293 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:342 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:593 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828 #: ../../godmode/modules/manage_network_components_form_common.php:165 -#: ../../godmode/modules/manage_network_components_form_common.php:206 +#: ../../godmode/modules/manage_network_components_form_common.php:217 #: ../../godmode/modules/manage_network_components_form_wizard.php:387 -#: ../../godmode/modules/manage_network_components_form_wizard.php:415 +#: ../../godmode/modules/manage_network_components_form_wizard.php:421 #: ../../godmode/massive/massive_edit_modules.php:565 #: ../../godmode/massive/massive_edit_modules.php:656 #: ../../godmode/massive/massive_edit_modules.php:885 #: ../../godmode/alerts/configure_alert_template.php:850 -#: ../../include/functions_reporting_html.php:5402 -#: ../../include/functions_treeview.php:92 ../../include/functions_treeview.php:104 +#: ../../include/functions_reporting_html.php:5441 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 #: ../../include/functions_alerts.php:676 #: ../../include/lib/Dashboard/Widgets/top_n.php:282 msgid "Min." msgstr "最小" -#: ../../enterprise/godmode/modules/configure_local_component.php:320 -#: ../../enterprise/godmode/modules/configure_local_component.php:363 +#: ../../enterprise/godmode/modules/configure_local_component.php:322 +#: ../../enterprise/godmode/modules/configure_local_component.php:376 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:308 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:357 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:517 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:608 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:830 #: ../../godmode/modules/manage_network_components_form_common.php:174 -#: ../../godmode/modules/manage_network_components_form_common.php:215 +#: ../../godmode/modules/manage_network_components_form_common.php:226 #: ../../godmode/modules/manage_network_components_form_wizard.php:389 -#: ../../godmode/modules/manage_network_components_form_wizard.php:424 +#: ../../godmode/modules/manage_network_components_form_wizard.php:430 #: ../../godmode/agentes/module_manager_editor_common.php:428 -#: ../../godmode/agentes/module_manager_editor_common.php:489 +#: ../../godmode/agentes/module_manager_editor_common.php:504 #: ../../godmode/massive/massive_edit_modules.php:580 #: ../../godmode/massive/massive_edit_modules.php:671 #: ../../godmode/massive/massive_edit_modules.php:887 #: ../../godmode/alerts/configure_alert_template.php:862 -#: ../../include/functions_reporting_html.php:5403 -#: ../../include/functions_treeview.php:92 ../../include/functions_treeview.php:104 +#: ../../include/functions_reporting_html.php:5442 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 #: ../../include/functions_alerts.php:675 #: ../../include/lib/Dashboard/Widgets/top_n.php:281 msgid "Max." msgstr "最大" -#: ../../enterprise/godmode/modules/configure_local_component.php:329 -#: ../../enterprise/godmode/modules/configure_local_component.php:372 +#: ../../enterprise/godmode/modules/configure_local_component.php:331 +#: ../../enterprise/godmode/modules/configure_local_component.php:385 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:323 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:372 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:532 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 #: ../../godmode/modules/manage_network_components_form_common.php:183 -#: ../../godmode/modules/manage_network_components_form_common.php:224 +#: ../../godmode/modules/manage_network_components_form_common.php:235 #: ../../godmode/agentes/module_manager_editor_common.php:444 -#: ../../godmode/agentes/module_manager_editor_common.php:505 +#: ../../godmode/agentes/module_manager_editor_common.php:520 #: ../../godmode/massive/massive_edit_modules.php:595 #: ../../godmode/massive/massive_edit_modules.php:686 -#: ../../include/functions_treeview.php:90 ../../include/functions_treeview.php:102 +#: ../../include/functions_treeview.php:90 +#: ../../include/functions_treeview.php:102 msgid "Str." msgstr "文字列" -#: ../../enterprise/godmode/modules/configure_local_component.php:343 -#: ../../enterprise/godmode/modules/configure_local_component.php:386 +#: ../../enterprise/godmode/modules/configure_local_component.php:345 +#: ../../enterprise/godmode/modules/configure_local_component.php:399 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:567 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 #: ../../godmode/modules/manage_network_components_form_common.php:196 -#: ../../godmode/modules/manage_network_components_form_common.php:237 +#: ../../godmode/modules/manage_network_components_form_common.php:248 #: ../../godmode/modules/manage_network_components_form_wizard.php:400 -#: ../../godmode/modules/manage_network_components_form_wizard.php:442 +#: ../../godmode/modules/manage_network_components_form_wizard.php:448 #: ../../godmode/agentes/module_manager_editor_common.php:464 -#: ../../godmode/agentes/module_manager_editor_common.php:526 +#: ../../godmode/agentes/module_manager_editor_common.php:541 #: ../../godmode/massive/massive_edit_modules.php:630 #: ../../godmode/massive/massive_edit_modules.php:722 msgid "Percentage" msgstr "パーセント" -#: ../../enterprise/godmode/modules/configure_local_component.php:353 +#: ../../enterprise/godmode/modules/configure_local_component.php:346 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:568 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:659 +msgid "Defines threshold as a percentage of value decrease/increment" +msgstr "値の減少/増加のパーセンテージでしきい値を定義します" + +#: ../../enterprise/godmode/modules/configure_local_component.php:350 +#: ../../godmode/modules/manage_network_components_form_common.php:201 +#: ../../godmode/modules/manage_network_components_form_wizard.php:412 +#: ../../godmode/agentes/module_manager_editor_common.php:470 +msgid "Change to critical status after" +msgstr "次のあとに障害状態に変更: " + +#: ../../enterprise/godmode/modules/configure_local_component.php:359 +#: ../../godmode/modules/manage_network_components_form_common.php:210 +#: ../../godmode/modules/manage_network_components_form_wizard.php:414 +#: ../../godmode/agentes/module_manager_editor_common.php:483 +msgid "intervals in warning status." +msgstr "警告状態の期間。" + +#: ../../enterprise/godmode/modules/configure_local_component.php:366 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589 -#: ../../godmode/modules/manage_network_components_form_common.php:205 +#: ../../godmode/modules/manage_network_components_form_common.php:216 #: ../../godmode/massive/massive_edit_modules.php:652 -#: ../../include/functions_treeview.php:108 ../../include/functions_alerts.php:680 +#: ../../include/functions_treeview.php:108 +#: ../../include/functions_alerts.php:680 msgid "Critical status" msgstr "障害状態" -#: ../../enterprise/godmode/modules/configure_local_component.php:391 +#: ../../enterprise/godmode/modules/configure_local_component.php:403 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:276 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873 -#: ../../godmode/modules/manage_network_components_form_common.php:243 -#: ../../godmode/agentes/module_manager_editor_common.php:780 +#: ../../godmode/modules/manage_network_components_form_common.php:254 +#: ../../godmode/agentes/module_manager_editor_common.php:794 #: ../../godmode/massive/massive_edit_modules.php:930 msgid "FF threshold" msgstr "連続抑制回数" -#: ../../enterprise/godmode/modules/configure_local_component.php:394 +#: ../../enterprise/godmode/modules/configure_local_component.php:406 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:279 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941 -#: ../../godmode/modules/manage_network_components_form_common.php:246 -#: ../../godmode/agentes/module_manager_editor_common.php:782 +#: ../../godmode/modules/manage_network_components_form_common.php:257 +#: ../../godmode/agentes/module_manager_editor_common.php:796 #: ../../godmode/massive/massive_edit_modules.php:994 msgid "Keep counters" msgstr "カウンタの維持" -#: ../../enterprise/godmode/modules/configure_local_component.php:402 +#: ../../enterprise/godmode/modules/configure_local_component.php:414 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:296 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 -#: ../../godmode/modules/manage_network_components_form_common.php:260 -#: ../../godmode/agentes/module_manager_editor_common.php:799 +#: ../../godmode/modules/manage_network_components_form_common.php:271 +#: ../../godmode/agentes/module_manager_editor_common.php:813 #: ../../godmode/massive/massive_edit_modules.php:938 #: ../../godmode/massive/massive_edit_modules.php:953 msgid "All state changing" msgstr "全状態変化" -#: ../../enterprise/godmode/modules/configure_local_component.php:417 +#: ../../enterprise/godmode/modules/configure_local_component.php:429 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910 -#: ../../godmode/modules/manage_network_components_form_common.php:276 -#: ../../godmode/agentes/module_manager_editor_common.php:821 +#: ../../godmode/modules/manage_network_components_form_common.php:287 +#: ../../godmode/agentes/module_manager_editor_common.php:835 #: ../../godmode/massive/massive_edit_modules.php:937 #: ../../godmode/massive/massive_edit_modules.php:963 msgid "Each state changing" msgstr "個別状態変化" -#: ../../enterprise/godmode/modules/configure_local_component.php:418 +#: ../../enterprise/godmode/modules/configure_local_component.php:430 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:319 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911 -#: ../../godmode/modules/manage_network_components_form_common.php:277 -#: ../../godmode/agentes/module_manager_editor_common.php:822 +#: ../../godmode/modules/manage_network_components_form_common.php:288 +#: ../../godmode/agentes/module_manager_editor_common.php:836 #: ../../godmode/massive/massive_edit_modules.php:964 msgid "To normal" msgstr "正常移行時" -#: ../../enterprise/godmode/modules/configure_local_component.php:427 +#: ../../enterprise/godmode/modules/configure_local_component.php:439 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:333 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921 -#: ../../godmode/modules/manage_network_components_form_common.php:286 -#: ../../godmode/agentes/module_manager_editor_common.php:836 +#: ../../godmode/modules/manage_network_components_form_common.php:297 +#: ../../godmode/agentes/module_manager_editor_common.php:850 #: ../../godmode/massive/massive_edit_modules.php:974 msgid "To warning" msgstr "警告移行時" -#: ../../enterprise/godmode/modules/configure_local_component.php:436 +#: ../../enterprise/godmode/modules/configure_local_component.php:448 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:347 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931 -#: ../../godmode/modules/manage_network_components_form_common.php:295 -#: ../../godmode/agentes/module_manager_editor_common.php:850 +#: ../../godmode/modules/manage_network_components_form_common.php:306 +#: ../../godmode/agentes/module_manager_editor_common.php:864 #: ../../godmode/massive/massive_edit_modules.php:984 msgid "To critical" msgstr "障害移行時" -#: ../../enterprise/godmode/modules/configure_local_component.php:447 +#: ../../enterprise/godmode/modules/configure_local_component.php:459 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966 -#: ../../enterprise/include/functions_reporting_csv.php:2221 -#: ../../godmode/modules/manage_network_components_form_common.php:305 -#: ../../godmode/agentes/module_manager_editor_common.php:532 +#: ../../enterprise/include/functions_reporting_csv.php:2225 +#: ../../godmode/modules/manage_network_components_form_common.php:316 +#: ../../godmode/agentes/module_manager_editor_common.php:547 #: ../../godmode/massive/massive_edit_modules.php:1042 -#: ../../include/functions_reporting.php:4284 +#: ../../include/functions_reporting.php:4560 msgid "Historical data" msgstr "データの保存" -#: ../../enterprise/godmode/modules/configure_local_component.php:450 +#: ../../enterprise/godmode/modules/configure_local_component.php:462 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 -#: ../../godmode/agentes/module_manager_editor_common.php:880 +#: ../../godmode/agentes/module_manager_editor_common.php:894 #: ../../godmode/massive/massive_edit_modules.php:1028 msgid "FF timeout" msgstr "連続抑制タイムアウト" -#: ../../enterprise/godmode/modules/configure_local_component.php:458 +#: ../../enterprise/godmode/modules/configure_local_component.php:470 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964 #: ../../godmode/massive/massive_edit_modules.php:1038 msgid "" -"Timeout in secs from start of flip flop counting. If this value is exceeded, FF " -"counter is reset. Set to 0 for no timeout." +"Timeout in secs from start of flip flop counting. If this value is exceeded, " +"FF counter is reset. Set to 0 for no timeout." msgstr "" -"連続抑制開始からのタイムアウト秒数です。この値を超えると連続抑制のカウンタがリセットさ" -"れます。0に設定するとタイムアウトしません。" +"連続抑制開始からのタイムアウト秒数です。この値を超えると連続抑制のカウンタがリ" +"セットされます。0に設定するとタイムアウトしません。" -#: ../../enterprise/godmode/modules/configure_local_component.php:459 +#: ../../enterprise/godmode/modules/configure_local_component.php:471 msgid "This value can be set only in the async modules." msgstr "この値は非同期モジュールでのみ設定可能です。" -#: ../../enterprise/godmode/modules/configure_local_component.php:461 -#: ../../enterprise/include/functions_reporting_csv.php:1247 -#: ../../godmode/modules/manage_network_components_form_common.php:308 -#: ../../godmode/agentes/module_manager_editor_common.php:664 +#: ../../enterprise/godmode/modules/configure_local_component.php:473 +#: ../../enterprise/include/functions_reporting_csv.php:1251 +#: ../../godmode/modules/manage_network_components_form_common.php:319 +#: ../../godmode/agentes/module_manager_editor_common.php:679 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../include/functions_reporting.php:6770 +#: ../../include/functions_reporting.php:6998 msgid "Min. Value" msgstr "最小値" -#: ../../enterprise/godmode/modules/configure_local_component.php:461 -#: ../../godmode/modules/manage_network_components_form_common.php:309 +#: ../../enterprise/godmode/modules/configure_local_component.php:473 +#: ../../godmode/modules/manage_network_components_form_common.php:320 msgid "Any value below this number is discarted" msgstr "この値よりも小さい値は削除されます。" -#: ../../enterprise/godmode/modules/configure_local_component.php:466 -#: ../../enterprise/include/functions_reporting_csv.php:1302 -#: ../../godmode/modules/manage_network_components_form_common.php:310 -#: ../../godmode/agentes/module_manager_editor_common.php:668 +#: ../../enterprise/godmode/modules/configure_local_component.php:478 +#: ../../enterprise/include/functions_reporting_csv.php:1306 +#: ../../godmode/modules/manage_network_components_form_common.php:321 +#: ../../godmode/agentes/module_manager_editor_common.php:683 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../include/functions_reporting.php:6766 +#: ../../include/functions_reporting.php:6994 msgid "Max. Value" msgstr "最大値" -#: ../../enterprise/godmode/modules/configure_local_component.php:466 -#: ../../godmode/modules/manage_network_components_form_common.php:311 +#: ../../enterprise/godmode/modules/configure_local_component.php:478 +#: ../../godmode/modules/manage_network_components_form_common.php:322 msgid "Any value over this number is discarted" msgstr "この値よりも大きい値は削除されます。" -#: ../../enterprise/godmode/modules/configure_local_component.php:473 +#: ../../enterprise/godmode/modules/configure_local_component.php:485 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 #: ../../godmode/modules/manage_network_components_form_plugin.php:49 #: ../../godmode/modules/manage_network_components_form_network.php:178 #: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/agentes/module_manager_editor_common.php:649 +#: ../../godmode/agentes/module_manager_editor_common.php:664 #: ../../godmode/massive/massive_edit_modules.php:780 #: ../../godmode/setup/snmp_wizard.php:43 msgid "Post process" msgstr "データ保存倍率" -#: ../../enterprise/godmode/modules/configure_local_component.php:500 +#: ../../enterprise/godmode/modules/configure_local_component.php:512 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 msgid "Load a basic structure on data configuration" msgstr "データ設定に基本構造をロードします" -#: ../../enterprise/godmode/modules/configure_local_component.php:503 +#: ../../enterprise/godmode/modules/configure_local_component.php:515 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 msgid "Check the correct structure of the data configuration" msgstr "データ設定の正常性を確認" -#: ../../enterprise/godmode/modules/configure_local_component.php:506 +#: ../../enterprise/godmode/modules/configure_local_component.php:518 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 msgid "First line must be \"module_begin\"" msgstr "最初の行は、\"module_begin\" でなければいけません" -#: ../../enterprise/godmode/modules/configure_local_component.php:507 +#: ../../enterprise/godmode/modules/configure_local_component.php:519 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 msgid "Data configuration is empty" msgstr "データ設定が空です" -#: ../../enterprise/godmode/modules/configure_local_component.php:508 -#: ../../enterprise/godmode/modules/configure_local_component.php:512 +#: ../../enterprise/godmode/modules/configure_local_component.php:520 +#: ../../enterprise/godmode/modules/configure_local_component.php:524 #: ../../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/modules/configure_local_component.php:509 +#: ../../enterprise/godmode/modules/configure_local_component.php:521 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to data " "configuration" msgstr "" -"名前がありません。データ設定に \"module_name モジュール名\" という行を追加してくださ" -"い。" +"名前がありません。データ設定に \"module_name モジュール名\" という行を追加して" +"ください。" -#: ../../enterprise/godmode/modules/configure_local_component.php:510 +#: ../../enterprise/godmode/modules/configure_local_component.php:522 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to data " "configuration" msgstr "" -"タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追加してく" -"ださい。" +"タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追" +"加してください。" -#: ../../enterprise/godmode/modules/configure_local_component.php:511 +#: ../../enterprise/godmode/modules/configure_local_component.php:523 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 msgid "Type is wrong. Please set a correct type" msgstr "タイプが不正です。正しいタイプを選択してください。" -#: ../../enterprise/godmode/modules/configure_local_component.php:514 +#: ../../enterprise/godmode/modules/configure_local_component.php:526 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:204 msgid "Error in the syntax, please check the data configuration." msgstr "書式エラーです。データ設定を確認してください。" -#: ../../enterprise/godmode/modules/configure_local_component.php:515 +#: ../../enterprise/godmode/modules/configure_local_component.php:527 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 msgid "Data configuration are built correctly" msgstr "データ設定が正しく作られました" -#: ../../enterprise/godmode/modules/configure_local_component.php:523 +#: ../../enterprise/godmode/modules/configure_local_component.php:535 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 -#: ../../godmode/modules/manage_network_components_form_common.php:323 -#: ../../godmode/agentes/module_manager_editor_common.php:1093 +#: ../../godmode/modules/manage_network_components_form_common.php:334 +#: ../../godmode/agentes/module_manager_editor_common.php:1107 #: ../../godmode/massive/massive_edit_modules.php:1092 msgid "Critical instructions" msgstr "障害時手順" -#: ../../enterprise/godmode/modules/configure_local_component.php:523 +#: ../../enterprise/godmode/modules/configure_local_component.php:535 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016 -#: ../../godmode/modules/manage_network_components_form_common.php:323 +#: ../../godmode/modules/manage_network_components_form_common.php:334 #: ../../godmode/massive/massive_edit_modules.php:1092 msgid "Instructions when the status is critical" msgstr "障害状態になった時の手順" -#: ../../enterprise/godmode/modules/configure_local_component.php:528 +#: ../../enterprise/godmode/modules/configure_local_component.php:540 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 -#: ../../godmode/modules/manage_network_components_form_common.php:327 -#: ../../godmode/agentes/module_manager_editor_common.php:1098 +#: ../../godmode/modules/manage_network_components_form_common.php:338 +#: ../../godmode/agentes/module_manager_editor_common.php:1112 #: ../../godmode/massive/massive_edit_modules.php:1096 msgid "Warning instructions" msgstr "警告時手順" -#: ../../enterprise/godmode/modules/configure_local_component.php:528 +#: ../../enterprise/godmode/modules/configure_local_component.php:540 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020 -#: ../../godmode/modules/manage_network_components_form_common.php:327 +#: ../../godmode/modules/manage_network_components_form_common.php:338 #: ../../godmode/massive/massive_edit_modules.php:1096 msgid "Instructions when the status is warning" msgstr "警告状態になった時の手順" -#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../enterprise/godmode/modules/configure_local_component.php:545 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 -#: ../../godmode/modules/manage_network_components_form_common.php:331 -#: ../../godmode/agentes/module_manager_editor_common.php:1102 +#: ../../godmode/modules/manage_network_components_form_common.php:342 +#: ../../godmode/agentes/module_manager_editor_common.php:1116 #: ../../godmode/massive/massive_edit_modules.php:1100 msgid "Unknown instructions" msgstr "不明状態時手順" -#: ../../enterprise/godmode/modules/configure_local_component.php:533 +#: ../../enterprise/godmode/modules/configure_local_component.php:545 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024 -#: ../../godmode/modules/manage_network_components_form_common.php:331 +#: ../../godmode/modules/manage_network_components_form_common.php:342 #: ../../godmode/massive/massive_edit_modules.php:1100 msgid "Instructions when the status is unknown" msgstr "不明状態になった時の手順" -#: ../../enterprise/godmode/modules/configure_local_component.php:542 +#: ../../enterprise/godmode/modules/configure_local_component.php:554 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984 -#: ../../godmode/modules/manage_network_components_form_common.php:342 -#: ../../godmode/agentes/module_manager_editor_common.php:1143 +#: ../../godmode/modules/manage_network_components_form_common.php:353 +#: ../../godmode/agentes/module_manager_editor_common.php:1157 #: ../../godmode/massive/massive_edit_modules.php:1060 #: ../../godmode/module_library/module_library_view.php:123 msgid "Category" msgstr "操作" -#: ../../enterprise/godmode/modules/configure_local_component.php:561 -#: ../../godmode/modules/manage_network_components_form_common.php:362 -#: ../../godmode/agentes/module_manager_editor_common.php:906 +#: ../../enterprise/godmode/modules/configure_local_component.php:573 +#: ../../godmode/modules/manage_network_components_form_common.php:373 +#: ../../godmode/agentes/module_manager_editor_common.php:920 msgid "Tags available" msgstr "利用可能なタグ" -#: ../../enterprise/godmode/modules/configure_local_component.php:579 -#: ../../godmode/modules/manage_network_components_form_common.php:380 -#: ../../godmode/agentes/module_manager_editor_common.php:1001 +#: ../../enterprise/godmode/modules/configure_local_component.php:591 +#: ../../godmode/modules/manage_network_components_form_common.php:391 +#: ../../godmode/agentes/module_manager_editor_common.php:1015 msgid "Add tags to module" msgstr "モジュールへのタグ追加" -#: ../../enterprise/godmode/modules/configure_local_component.php:580 -#: ../../godmode/modules/manage_network_components_form_common.php:381 -#: ../../godmode/agentes/module_manager_editor_common.php:1010 +#: ../../enterprise/godmode/modules/configure_local_component.php:592 +#: ../../godmode/modules/manage_network_components_form_common.php:392 +#: ../../godmode/agentes/module_manager_editor_common.php:1024 msgid "Delete tags to module" msgstr "モジュールのタグ削除" -#: ../../enterprise/godmode/modules/configure_local_component.php:581 +#: ../../enterprise/godmode/modules/configure_local_component.php:593 #: ../../enterprise/godmode/setup/setup_auth.php:174 #: ../../enterprise/godmode/setup/setup_auth.php:458 -#: ../../enterprise/godmode/setup/setup_auth.php:1253 -#: ../../godmode/modules/manage_network_components_form_common.php:382 -#: ../../godmode/agentes/module_manager_editor_common.php:1014 +#: ../../enterprise/godmode/setup/setup_auth.php:1251 +#: ../../godmode/modules/manage_network_components_form_common.php:393 +#: ../../godmode/agentes/module_manager_editor_common.php:1028 msgid "Tags selected" msgstr "選択タグ" -#: ../../enterprise/godmode/modules/configure_local_component.php:603 +#: ../../enterprise/godmode/modules/configure_local_component.php:615 msgid "Macros" msgstr "マクロ" -#: ../../enterprise/godmode/modules/configure_local_component.php:639 -#: ../../godmode/servers/plugin.php:492 +#: ../../enterprise/godmode/modules/configure_local_component.php:651 +#: ../../godmode/servers/plugin.php:482 #: ../../include/class/ManageNetScanScripts.class.php:636 msgid "Default value" msgstr "デフォルト値" -#: ../../enterprise/godmode/modules/configure_local_component.php:655 -#: ../../godmode/servers/plugin.php:554 +#: ../../enterprise/godmode/modules/configure_local_component.php:667 +#: ../../godmode/servers/plugin.php:534 #: ../../include/class/ManageNetScanScripts.class.php:724 msgid "Add macro" msgstr "マクロを追加" -#: ../../enterprise/godmode/modules/configure_local_component.php:663 -#: ../../godmode/servers/plugin.php:568 +#: ../../enterprise/godmode/modules/configure_local_component.php:675 +#: ../../godmode/servers/plugin.php:547 #: ../../include/class/ManageNetScanScripts.class.php:742 msgid "Delete macro" msgstr "マクロを削除" -#: ../../enterprise/godmode/modules/configure_local_component.php:978 -#: ../../godmode/modules/manage_network_components_form_common.php:706 -#: ../../godmode/agentes/module_manager_editor_common.php:1994 +#: ../../enterprise/godmode/modules/configure_local_component.php:990 +#: ../../godmode/modules/manage_network_components_form_common.php:717 +#: ../../godmode/agentes/module_manager_editor_common.php:2008 msgid "Normal Status" msgstr "正常状態" -#: ../../enterprise/godmode/modules/configure_local_component.php:979 -#: ../../godmode/modules/manage_network_components_form_common.php:707 -#: ../../godmode/agentes/module_manager_editor_common.php:1995 +#: ../../enterprise/godmode/modules/configure_local_component.php:991 +#: ../../godmode/modules/manage_network_components_form_common.php:718 +#: ../../godmode/agentes/module_manager_editor_common.php:2009 msgid "Warning Status" msgstr "警告状態" -#: ../../enterprise/godmode/modules/configure_local_component.php:980 -#: ../../godmode/modules/manage_network_components_form_common.php:708 -#: ../../godmode/agentes/module_manager_editor_common.php:1996 +#: ../../enterprise/godmode/modules/configure_local_component.php:992 +#: ../../godmode/modules/manage_network_components_form_common.php:719 +#: ../../godmode/agentes/module_manager_editor_common.php:2010 msgid "Critical Status" msgstr "障害状態" -#: ../../enterprise/godmode/modules/configure_local_component.php:983 -#: ../../godmode/modules/manage_network_components_form_common.php:710 -#: ../../godmode/agentes/module_manager_editor_common.php:1998 +#: ../../enterprise/godmode/modules/configure_local_component.php:995 +#: ../../godmode/modules/manage_network_components_form_common.php:721 +#: ../../godmode/agentes/module_manager_editor_common.php:2012 msgid "Please introduce a maximum warning higher than the minimun warning" msgstr "警告の最大値は、警告の最小値よりも大きくしてください" -#: ../../enterprise/godmode/modules/configure_local_component.php:985 -#: ../../godmode/modules/manage_network_components_form_common.php:711 -#: ../../godmode/agentes/module_manager_editor_common.php:1999 +#: ../../enterprise/godmode/modules/configure_local_component.php:997 +#: ../../godmode/modules/manage_network_components_form_common.php:722 +#: ../../godmode/agentes/module_manager_editor_common.php:2013 msgid "Please introduce a maximum critical higher than the minimun critical" msgstr "障害の最大値は、障害の最小値よりも大きくしてください" -#: ../../enterprise/godmode/modules/configure_local_component.php:987 +#: ../../enterprise/godmode/modules/configure_local_component.php:999 msgid "Please introduce a positicve percentage value" 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:63 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:350 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 -#, php-format -msgid "" -"This console is not manager of this environment, please manage this feature from " -"centralized manager console. Go to %s to manage it." -msgstr "" -"このコンソールはこの環境の管理コンソールではありません。中央管理コンソールからこの機能" -"を管理してください。管理するには %s に移動します。" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:72 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 -#: ../../enterprise/operation/log/log_viewer.php:458 -#: ../../godmode/netflow/nf_edit.php:47 ../../operation/netflow/nf_live_view.php:141 -msgid "Not supported in Windows systems" -msgstr "Windows システムでは対応していません" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:117 -msgid "Successfully created inventory module" -msgstr "インベントリモジュールを作成しました" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:118 -msgid "Error creating inventory module" -msgstr "インベントリモジュールの作成エラー" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 -#: ../../enterprise/godmode/agentes/inventory_manager.php:128 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 -msgid "Successfully updated inventory module" -msgstr "インベントリモジュールを更新しました" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:144 -#: ../../enterprise/godmode/agentes/inventory_manager.php:130 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 -msgid "Error updating inventory module" -msgstr "インベントリモジュールの更新エラー" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:162 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:183 -#: ../../enterprise/godmode/agentes/inventory_manager.php:100 -msgid "Successfully deleted inventory module" -msgstr "インベントリモジュールを削除しました" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:163 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:184 -#: ../../enterprise/godmode/agentes/inventory_manager.php:102 -msgid "Error deleting inventory module" -msgstr "インベントリモジュールの削除エラー" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:250 -#: ../../enterprise/godmode/modules/local_components.php:443 -#: ../../godmode/modules/manage_nc_groups.php:194 -#: ../../godmode/modules/manage_network_components.php:578 -#: ../../godmode/modules/manage_network_templates.php:114 -msgid "Successfully multiple deleted" -msgstr "複数削除しました" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:218 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:251 -#: ../../enterprise/godmode/modules/local_components.php:444 -#: ../../godmode/modules/manage_nc_groups.php:195 -#: ../../godmode/modules/manage_network_components.php:579 -#: ../../godmode/modules/manage_network_templates.php:115 -msgid "Not deleted. Error deleting multiple data" -msgstr "削除できませんでした。複数データの削除でエラーです。" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:275 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 -msgid "Interpreter" -msgstr "処理系" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284 -msgid "No inventory modules defined" -msgstr "インベントリモジュールがありません" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305 -msgid "Local module" -msgstr "ローカルモジュール" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:307 -msgid "Remote/Local" -msgstr "リモート/ローカル" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:353 -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/manage_inventory_modules.php:355 -msgid "You can find more information at:" -msgstr "詳細については次を参照してください:" - #: ../../enterprise/godmode/modules/local_components.php:141 -#: ../../godmode/modules/manage_network_components.php:196 +#: ../../godmode/modules/manage_network_components.php:197 #: ../../godmode/alerts/configure_alert_template.php:191 #, php-format msgid "Successfully created from %s" msgstr "%s から作成しました。" #: ../../enterprise/godmode/modules/local_components.php:142 -#: ../../enterprise/godmode/modules/local_components.php:318 +#: ../../enterprise/godmode/modules/local_components.php:320 #: ../../enterprise/godmode/policies/policies.php:172 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:124 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:126 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:129 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 #: ../../enterprise/godmode/setup/setup_metaconsole.php:126 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 @@ -14224,27 +14832,26 @@ msgstr "%s から作成しました。" #: ../../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:135 #: ../../enterprise/tools/ipam/ipam_action.php:164 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 #: ../../godmode/modules/manage_nc_groups.php:85 -#: ../../godmode/modules/manage_network_components.php:199 -#: ../../godmode/modules/manage_network_components.php:427 -#: ../../godmode/users/configure_user.php:493 -#: ../../godmode/agentes/configurar_agente.php:354 -#: ../../godmode/agentes/configurar_agente.php:879 +#: ../../godmode/modules/manage_network_components.php:200 +#: ../../godmode/modules/manage_network_components.php:429 +#: ../../godmode/users/configure_user.php:569 +#: ../../godmode/agentes/configurar_agente.php:362 +#: ../../godmode/agentes/configurar_agente.php:900 #: ../../godmode/agentes/planned_downtime.editor.php:642 -#: ../../godmode/alerts/alert_commands.php:645 +#: ../../godmode/alerts/alert_commands.php:646 #: ../../godmode/alerts/configure_alert_template.php:192 #: ../../godmode/alerts/configure_alert_template.php:527 -#: ../../godmode/alerts/alert_list.php:165 ../../godmode/setup/news.php:67 +#: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:67 #: ../../godmode/setup/gis.php:49 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5901 -#: ../../include/functions_alerts.php:2748 -#: ../../include/functions_planned_downtimes.php:112 -#: ../../include/functions_planned_downtimes.php:844 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5920 +#: ../../include/functions_alerts.php:2755 +#: ../../include/functions_planned_downtimes.php:113 +#: ../../include/functions_planned_downtimes.php:845 #: ../../operation/agentes/pandora_networkmap.php:140 -#: ../../operation/agentes/pandora_networkmap.php:375 +#: ../../operation/agentes/pandora_networkmap.php:378 msgid "Could not be created" msgstr "作成に失敗しました。" @@ -14252,73 +14859,89 @@ msgstr "作成に失敗しました。" msgid "Local component management" msgstr "ローカルコンポーネント管理" -#: ../../enterprise/godmode/modules/local_components.php:263 +#: ../../enterprise/godmode/modules/local_components.php:264 #, php-format msgid "" -"This node is configured with centralized mode. All local components are read only. Go " -"to %s to manage them." +"This node is configured with centralized mode. All local components are read " +"only. Go to %s to manage them." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのローカルコンポーネントは読み取" -"り専用です。それらを管理するには、%s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのローカルコンポーネントは" +"読み取り専用です。それらを管理するには、%s に移動します。" -#: ../../enterprise/godmode/modules/local_components.php:326 -#: ../../godmode/modules/manage_network_components.php:438 +#: ../../enterprise/godmode/modules/local_components.php:328 +#: ../../godmode/modules/manage_network_components.php:440 #: ../../include/class/ManageNetScanScripts.class.php:228 msgid "Created successfully" msgstr "作成しました。" -#: ../../enterprise/godmode/modules/local_components.php:393 +#: ../../enterprise/godmode/modules/local_components.php:396 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112 -#: ../../enterprise/godmode/policies/policy_modules.php:1250 +#: ../../enterprise/godmode/policies/policy_modules.php:1255 #: ../../enterprise/godmode/policies/policies.php:216 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133 #: ../../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:1172 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1360 #: ../../enterprise/include/ajax/servers.ajax.php:331 -#: ../../enterprise/operation/agentes/transactional_map.php:160 #: ../../enterprise/tools/ipam/ipam_action.php:277 #: ../../enterprise/tools/ipam/ipam_massive.php:48 -#: ../../godmode/modules/manage_network_components.php:525 +#: ../../godmode/modules/manage_network_components.php:528 #: ../../godmode/agentes/status_monitor_custom_fields.php:57 #: ../../godmode/agentes/planned_downtime.editor.php:644 #: ../../godmode/alerts/configure_alert_command.php:145 #: ../../godmode/alerts/alert_templates.php:157 #: ../../godmode/alerts/configure_alert_template.php:555 -#: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:313 -#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2748 -#: ../../include/functions_planned_downtimes.php:122 +#: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:320 +#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2755 +#: ../../include/functions_planned_downtimes.php:123 #: ../../operation/agentes/pandora_networkmap.php:216 -#: ../../operation/agentes/pandora_networkmap.php:508 -#: ../../operation/snmpconsole/snmp_view.php:175 +#: ../../operation/agentes/pandora_networkmap.php:515 msgid "Could not be updated" msgstr "更新に失敗しました。" -#: ../../enterprise/godmode/modules/local_components.php:401 -#: ../../godmode/modules/manage_network_components.php:534 +#: ../../enterprise/godmode/modules/local_components.php:404 +#: ../../godmode/modules/manage_network_components.php:537 #: ../../include/class/ManageNetScanScripts.class.php:315 msgid "Updated successfully" msgstr "更新しました。" -#: ../../enterprise/godmode/modules/local_components.php:547 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2852 -#: ../../godmode/modules/manage_network_components.php:659 +#: ../../enterprise/godmode/modules/local_components.php:446 +#: ../../godmode/modules/manage_nc_groups.php:194 +#: ../../godmode/modules/manage_inventory_modules.php:223 +#: ../../godmode/modules/manage_inventory_modules.php:256 +#: ../../godmode/modules/manage_network_components.php:581 +#: ../../godmode/modules/manage_network_templates.php:114 +msgid "Successfully multiple deleted" +msgstr "複数削除しました" + +#: ../../enterprise/godmode/modules/local_components.php:447 +#: ../../godmode/modules/manage_nc_groups.php:195 +#: ../../godmode/modules/manage_inventory_modules.php:224 +#: ../../godmode/modules/manage_inventory_modules.php:257 +#: ../../godmode/modules/manage_network_components.php:582 +#: ../../godmode/modules/manage_network_templates.php:115 +msgid "Not deleted. Error deleting multiple data" +msgstr "削除できませんでした。複数データの削除でエラーです。" + +#: ../../enterprise/godmode/modules/local_components.php:550 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2854 +#: ../../godmode/modules/manage_network_components.php:662 msgid "Free Search" msgstr "検索文字列" -#: ../../enterprise/godmode/modules/local_components.php:548 +#: ../../enterprise/godmode/modules/local_components.php:551 msgid "Search by name, description or data, list matches." msgstr "名前、説明、データでマッチするものを検索します。" -#: ../../enterprise/godmode/modules/local_components.php:690 -#: ../../enterprise/godmode/policies/policy_modules.php:1555 +#: ../../enterprise/godmode/modules/local_components.php:693 +#: ../../enterprise/godmode/policies/policy_modules.php:1560 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:627 #: ../../enterprise/include/class/NetworkConfigManager.class.php:628 -#: ../../godmode/modules/manage_network_components.php:859 -#: ../../godmode/modules/manage_network_components.php:860 -#: ../../godmode/agentes/module_manager.php:1191 +#: ../../godmode/modules/manage_network_components.php:862 +#: ../../godmode/modules/manage_network_components.php:863 +#: ../../godmode/agentes/module_manager.php:1231 #: ../../godmode/snmpconsole/snmp_alert.php:1347 #: ../../godmode/snmpconsole/snmp_alert.php:1348 #: ../../godmode/alerts/alert_actions.php:435 @@ -14327,46 +14950,6 @@ msgstr "名前、説明、データでマッチするものを検索します。 msgid "Duplicate" msgstr "複製" -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 -#: ../../enterprise/godmode/agentes/inventory_manager.php:165 -msgid "Inventory module error" -msgstr "インベントリモジュールエラー" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:116 -msgid "Left blank for the LOCAL inventory modules" -msgstr "ローカルインベントリモジュールの場合は入力しないでください" - -#: ../../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:223 -#: ../../godmode/massive/massive_standby_alerts.php:258 -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 -#: ../../include/class/ModuleTemplates.class.php:1208 -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:83 msgid "Cannot delete rule from autoconfiguration" msgstr "自動設定からルールを削除できません" @@ -14378,15 +14961,16 @@ msgstr "エージェント自動設定情報" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:90 msgid "You must click the Create or Update buttom for a correct configuration!!!" msgstr "" -"正しい設定を行うには、[作成] または [更新] ボタンをクリックする必要があります!!!" +"正しい設定を行うには、[作成] または [更新] ボタンをクリックする必要がありま" +"す!!!" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:98 msgid "" "Cannot create autoconfiguration from read only console, please create from " "metaconsole (centralized management)" msgstr "" -"読み取り専用コンソールから自動設定を作成できません。メタコンソールから作成してください" -"(中央管理)" +"読み取り専用コンソールから自動設定を作成できません。メタコンソールから作成して" +"ください(中央管理)" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:139 msgid "Cannot create autoconfiguration in metaconsole" @@ -14401,8 +14985,8 @@ msgid "" "Cannot udpate autoconfiguration from read only console, please create from " "metaconsole (centralized management)" msgstr "" -"読み取り専用コンソールから自動設定を更新できません。メタコンソールから作成してください" -"(中央管理)" +"読み取り専用コンソールから自動設定を更新できません。メタコンソールから作成して" +"ください(中央管理)" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:194 msgid "Cannot update autoconfiguration" @@ -14414,36 +14998,39 @@ msgid "" "Cannot modify autoconfiguration from read only console, please create from " "metaconsole (centralized management)" msgstr "" -"読み取り専用コンソールから自動設定を変更することはできません。メタコンソールから作成し" -"てください(中央管理)" +"読み取り専用コンソールから自動設定を変更することはできません。メタコンソールか" +"ら作成してください(中央管理)" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:319 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:92 msgid "Agent autoconfiguration list" msgstr "エージェント自動設定一覧" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:350 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 +#: ../../godmode/modules/manage_inventory_modules.php:63 +#, php-format +msgid "" +"This console is not manager of this environment, please manage this feature " +"from centralized manager console. Go to %s to manage it." +msgstr "" +"このコンソールはこの環境の管理コンソールではありません。中央管理コンソールから" +"この機能を管理してください。管理するには %s に移動します。" + #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 msgid "Autoconfiguration" msgstr "自動設定" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:377 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:138 -#: ../../godmode/modules/manage_network_components_form_wizard.php:655 -#: ../../godmode/agentes/planned_downtime.list.php:623 +#: ../../godmode/modules/manage_network_components_form_wizard.php:661 +#: ../../godmode/agentes/planned_downtime.list.php:660 #: ../../godmode/agentes/planned_downtime.editor.php:878 -#: ../../include/functions_reporting_html.php:6287 +#: ../../include/functions_reporting_html.php:6322 msgid "Execution" msgstr "実行" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:380 -#: ../../enterprise/operation/agentes/transactional_map.php:398 -#: ../../godmode/menu.php:50 ../../godmode/setup/setup_ehorus.php:112 -#: ../../godmode/setup/setup_integria.php:567 ../../include/ajax/events.php:2419 -#: ../../operation/users/user_edit.php:739 ../../operation/users/user_edit.php:785 -#: ../../operation/menu.php:431 -msgid "Start" -msgstr "開始" - #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 #: ../../godmode/agentes/planned_downtime.editor.php:898 msgid "Configure the time" @@ -14488,7 +15075,7 @@ msgid "From hour:" msgstr "開始時間:" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:497 -#: ../../include/class/CredentialStore.class.php:959 +#: ../../include/class/CredentialStore.class.php:999 msgid "Extra" msgstr "拡張" @@ -14516,7 +15103,6 @@ msgstr "アラートアクションの起動" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:586 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:404 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 msgid "Launch script" msgstr "スクリプトの起動" @@ -14546,6 +15132,17 @@ msgstr "スクリプトの起動" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134 +#: ../../godmode/massive/massive_edit_users.php:255 +#: ../../godmode/massive/massive_edit_users.php:267 +#: ../../godmode/massive/massive_edit_users.php:273 +#: ../../godmode/massive/massive_edit_users.php:347 +#: ../../godmode/massive/massive_edit_users.php:399 +#: ../../godmode/massive/massive_edit_users.php:463 +#: ../../godmode/massive/massive_edit_users.php:471 +#: ../../godmode/massive/massive_edit_users.php:508 +#: ../../godmode/massive/massive_edit_users.php:612 +#: ../../godmode/massive/massive_edit_users.php:631 +#: ../../godmode/massive/massive_edit_users.php:638 #: ../../godmode/massive/massive_edit_agents.php:677 #: ../../godmode/massive/massive_edit_agents.php:703 #: ../../godmode/massive/massive_edit_agents.php:739 @@ -14578,28 +15175,28 @@ msgstr "スクリプトの起動" #: ../../godmode/massive/massive_edit_modules.php:1080 #: ../../godmode/massive/massive_edit_modules.php:1108 #: ../../godmode/massive/massive_edit_modules.php:1212 -#: ../../include/functions_html.php:1850 ../../include/functions_html.php:1951 -#: ../../include/functions_html.php:2089 +#: ../../include/functions_html.php:1845 ../../include/functions_html.php:1946 +#: ../../include/functions_html.php:2084 msgid "No change" msgstr "変更無し" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:648 #: ../../godmode/agentes/agent_manager.php:505 #: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../include/functions_events.php:4727 +#: ../../include/functions_events.php:4848 #: ../../operation/agentes/estado_generalagente.php:408 msgid "Secondary groups" msgstr "セカンダリグループ" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:695 #: ../../godmode/massive/massive_edit_agents.php:825 -#: ../../include/functions_html.php:6154 +#: ../../include/functions_html.php:6149 msgid "Add secondary groups" msgstr "セカンダリグループの追加" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:702 #: ../../godmode/massive/massive_edit_agents.php:851 -#: ../../include/functions_html.php:6167 +#: ../../include/functions_html.php:6162 msgid "Remove secondary groups" msgstr "セカンダリグループの削除" @@ -14619,10 +15216,11 @@ msgstr "追加設定ブロック" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:773 msgid "" -"Put here any extra configuration you want to be applied to any new agent matching " -"previously defined rules" +"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:806 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:837 @@ -14630,7 +15228,7 @@ msgid "Extra actions" msgstr "追加アクション" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:827 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1145 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1158 msgid "Add extra action" msgstr "追加アクションの追加" @@ -14643,7 +15241,7 @@ msgstr "新規ルール追加" msgid "Update rule" msgstr "ルール更新" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1232 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1245 msgid "Update extra action" msgstr "拡張アクションの更新" @@ -14652,7 +15250,7 @@ msgid "Cannot delete autoconfiguration" msgstr "自動設定を削除できません" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:62 -#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 +#: ../../godmode/setup/license.php:177 ../../godmode/setup/license.php:180 msgid "enabled" msgstr "有効" @@ -14661,7 +15259,7 @@ msgid "enabling" msgstr "有効化" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:65 -#: ../../godmode/setup/license.php:151 ../../godmode/setup/license.php:154 +#: ../../godmode/setup/license.php:177 ../../godmode/setup/license.php:180 msgid "disabled" msgstr "無効化" @@ -14690,8 +15288,10 @@ msgstr "定義済の自動設定がありません" #: ../../enterprise/include/functions_HA_cluster.php:61 #: ../../enterprise/include/lib/Metaconsole/Node.php:1113 #: ../../enterprise/include/lib/Metaconsole/Node.php:1114 -#: ../../godmode/extensions.php:257 ../../godmode/users/user_list.php:745 +#: ../../godmode/extensions.php:257 ../../godmode/users/user_list.php:805 +#: ../../godmode/massive/massive_edit_users.php:530 #: ../../godmode/alerts/alert_list.list.php:1044 +#: ../../include/class/SatelliteAgent.class.php:1216 #: ../../operation/users/user_edit_notifications.php:64 msgid "Enable" msgstr "有効" @@ -14703,8 +15303,10 @@ msgstr "有効" #: ../../enterprise/include/functions_HA_cluster.php:58 #: ../../enterprise/include/lib/Metaconsole/Node.php:1139 #: ../../enterprise/include/lib/Metaconsole/Node.php:1140 -#: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:740 -#: ../../godmode/alerts/alert_list.list.php:1017 ../../include/functions.php:3357 +#: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:800 +#: ../../godmode/massive/massive_edit_users.php:519 +#: ../../godmode/alerts/alert_list.list.php:1017 ../../include/functions.php:3403 +#: ../../include/class/SatelliteAgent.class.php:1216 msgid "Disable" msgstr "無効" @@ -14721,10 +15323,10 @@ msgstr "エージェント表示 >" msgid "This collection has not been added to any agents" msgstr "このコレクションはどのエージェントにも追加されていません" -#: ../../enterprise/godmode/agentes/configurar_agente.php:112 +#: ../../enterprise/godmode/agentes/configurar_agente.php:88 #: ../../enterprise/godmode/policies/policy.php:82 #: ../../enterprise/include/functions_policies.php:3833 -#: ../../godmode/agentes/configurar_agente.php:721 +#: ../../godmode/agentes/configurar_agente.php:742 msgid "Agent plugins" msgstr "エージェントプラグイン" @@ -14751,31 +15353,32 @@ msgid "Show files" msgstr "ファイル表示" #: ../../enterprise/godmode/agentes/collection_manager.php:196 -#: ../../enterprise/operation/agentes/agent_inventory.php:280 -#: ../../enterprise/operation/log/log_viewer.php:1256 -#: ../../enterprise/operation/log/log_viewer.php:1264 -#: ../../enterprise/operation/inventory/inventory.php:475 -#: ../../enterprise/operation/inventory/inventory.php:518 +#: ../../enterprise/operation/log/log_viewer.php:1257 +#: ../../enterprise/operation/log/log_viewer.php:1265 #: ../../godmode/reporting/reporting_builder.php:1260 -#: ../../include/functions_reporting.php:2964 +#: ../../include/functions_reporting.php:3095 +#: ../../operation/agentes/agent_inventory.php:280 +#: ../../operation/inventory/inventory.php:478 +#: ../../operation/inventory/inventory.php:521 msgid "No data found." msgstr "データがありません。" #: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/inventory_manager.php:219 #: ../../enterprise/operation/agentes/collection_view.php:74 -#: ../../godmode/agentes/module_manager.php:848 +#: ../../godmode/agentes/inventory_manager.php:220 +#: ../../godmode/agentes/module_manager.php:884 #: ../../godmode/snmpconsole/snmp_alert.php:1254 #: ../../godmode/reporting/reporting_builder.list_items.php:371 #: ../../godmode/reporting/graph_builder.graph_editor.php:211 -#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:974 -#: ../../operation/agentes/status_monitor.php:1302 +#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:987 +#: ../../operation/agentes/status_monitor.php:1315 msgid "P." msgstr "P." #: ../../enterprise/godmode/agentes/collection_manager.php:207 #: ../../enterprise/operation/agentes/policy_view.php:164 #: ../../enterprise/operation/agentes/collection_view.php:76 +#: ../../include/class/SatelliteCollection.class.php:129 msgid "Dir" msgstr "ディレクトリ" @@ -14793,9 +15396,9 @@ msgstr "キャパシティプランニング" #: ../../enterprise/include/functions_visual_map_editor.php:85 #: ../../enterprise/include/functions_visual_map.php:539 #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 -#: ../../enterprise/include/functions_reporting.php:6131 +#: ../../enterprise/include/functions_reporting.php:6132 #: ../../enterprise/include/functions_services.php:1712 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3994 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4013 #: ../../include/lib/Dashboard/Widgets/service_map.php:318 msgid "Service" msgstr "サービス" @@ -14868,57 +15471,20 @@ msgstr "フィルタ選択" msgid "Percentual value" msgstr "パーセント値" -#: ../../enterprise/godmode/agentes/inventory_manager.php:84 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 -msgid "Successfully added inventory module" -msgstr "インベントリモジュールを追加しました" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:86 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 -msgid "Error adding inventory module" -msgstr "インベントリモジュールの追加エラー" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:89 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156 -msgid "The inventory of the module already exists" -msgstr "モジュールのインベントリはすでに存在します" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:110 -msgid "Successfully forced inventory module" -msgstr "インベントリモジュールを強制実行しました" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:112 -msgid "Error forcing inventory module" -msgstr "インベントリモジュールの強制実行エラー" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:222 -#: ../../enterprise/include/functions_ui.php:92 -msgid "Target" -msgstr "対象" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:257 -#: ../../enterprise/include/functions_ipam.php:1386 -#: ../../enterprise/operation/services/services.list.php:639 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:586 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:676 -#: ../../include/ajax/module.php:1052 ../../include/functions_ui.php:1162 -#: ../../operation/agentes/group_view.php:221 ../../operation/agentes/group_view.php:283 -msgid "Force" -msgstr "強制する" - #: ../../enterprise/godmode/agentes/collections.data.php:384 msgid "Collection updated successfully" msgstr "コレクションを更新しました" #: ../../enterprise/godmode/agentes/collections.data.php:395 #: ../../enterprise/godmode/agentes/collections.editor.php:109 -#: ../../enterprise/godmode/agentes/collections.php:92 +#: ../../enterprise/godmode/agentes/collections.php:141 #, php-format msgid "" -"This console is not manager of this environment, please manage this feature from %s." +"This console is not manager of this environment, please manage this feature " +"from %s." msgstr "" -"このコンソールはこの環境の管理コンソールではありません。%s からこの機能を管理してくだ" -"さい。" +"このコンソールはこの環境の管理コンソールではありません。%s からこの機能を管理し" +"てください。" #: ../../enterprise/godmode/agentes/collections.data.php:410 msgid "Please go to the metaconsole and apply this collection" @@ -14975,18 +15541,18 @@ msgid "Plug-in cannot be disabled" msgstr "プラグインを無効化できません" #: ../../enterprise/godmode/agentes/plugins_manager.php:127 -#: ../../enterprise/godmode/policies/policy_plugins.php:109 +#: ../../enterprise/godmode/policies/policy_plugins.php:127 msgid "If enabled, allows to define a complex module plugin or log." msgstr "有効にすると、複雑なモジュールプラグインまたはログを定義できます。" #: ../../enterprise/godmode/agentes/plugins_manager.php:142 -#: ../../enterprise/godmode/policies/policy_plugins.php:123 +#: ../../enterprise/godmode/policies/policy_plugins.php:141 msgid "New plug-in" msgstr "新規プラグイン" #: ../../enterprise/godmode/agentes/plugins_manager.php:192 -#: ../../enterprise/godmode/policies/policy_plugins.php:167 -#: ../../enterprise/godmode/policies/policies.php:539 ../../godmode/menu.php:309 +#: ../../enterprise/godmode/policies/policy_plugins.php:185 +#: ../../enterprise/godmode/policies/policies.php:539 ../../godmode/menu.php:312 msgid "Plugins" msgstr "プラグイン" @@ -15011,6 +15577,10 @@ msgstr "個別設定" msgid "No component was found" msgstr "コンポーネントが見つかりません。" +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:114 +msgid "macro_help" +msgstr "マクロヘルプ" + #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 msgid "Show configuration data" msgstr "設定データを表示する" @@ -15032,7 +15602,7 @@ msgid "Error: The conf file of agent is not writable." msgstr "エラー: エージェント設定ファイルに書き込めません。" #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178 -#: ../../enterprise/godmode/policies/policy_modules.php:387 +#: ../../enterprise/godmode/policies/policy_modules.php:388 msgid "Add module" msgstr "モジュール追加" @@ -15045,18 +15615,18 @@ msgid "Delete remote conf agent files" msgstr "エージェントのリモート設定ファイル削除" #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1189 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 #: ../../godmode/agentes/agent_manager.php:543 msgid "Delete remote configuration file" msgstr "リモート設定ファイル削除" #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 msgid "" -"Delete this conf file implies that for restore you must reactive remote config in the " -"local agent." +"Delete this conf file implies that for restore you must reactive remote config " +"in the local agent." msgstr "" -"この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効化する必" -"要があります。" +"この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効" +"化する必要があります。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98 #: ../../godmode/agentes/module_manager_editor_common.php:238 @@ -15072,8 +15642,10 @@ msgid "Target web site" msgstr "対象ウェブサイト" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140 -msgid "The url specified in this field is mandatory to retrieve performance stats." -msgstr "このフィールドで指定された URL は、パフォーマンス統計を取得するために必須です。" +msgid "" +"The url specified in this field is mandatory to retrieve performance stats." +msgstr "" +"このフィールドで指定された URL は、パフォーマンス統計を取得するために必須です。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154 msgid "target web site (http://...)" @@ -15089,10 +15661,11 @@ msgstr "ブラウザ" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179 msgid "" -"Support for IE and Edge browsers is experimental. Tests might not work as expected." +"Support for IE and Edge browsers is experimental. Tests might not work as " +"expected." msgstr "" -"IE および Edge ブラウザのサポートは実験的なものです。 テストが期待どおりに機能しない可" -"能性があります。" +"IE および Edge ブラウザのサポートは実験的なものです。 テストが期待どおりに機能" +"しない可能性があります。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:219 msgid "User data dir" @@ -15102,7 +15675,8 @@ msgstr "ユーザデータディレクトリ" #, php-format msgid "Google Chrome only. Set user data dir, specify the full path %s." msgstr "" -"Google Chrome のみ。 ユーザデータディレクトリを設定し、フルパス %s を指定します。" +"Google Chrome のみ。 ユーザデータディレクトリを設定し、フルパス %s を指定しま" +"す。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:241 #: ../../operation/search_users.php:47 @@ -15111,10 +15685,11 @@ msgstr "プロファイル" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:243 #, php-format -msgid "Google Chrome only. Use a custom profile, specify the full folder name %s." +msgid "" +"Google Chrome only. Use a custom profile, specify the full folder name %s." msgstr "" -"Google Chrome のみ。 カスタムプロファイルを使用して、完全なフォルダ名 %s を指定しま" -"す。" +"Google Chrome のみ。 カスタムプロファイルを使用して、完全なフォルダ名 %s を指定" +"します。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:265 msgid "Accept insecure certificates" @@ -15134,31 +15709,32 @@ msgstr "ファイル追加" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:414 msgid "Upload your selenium test in html or side (only Selenium 3) format" -msgstr "selenium テストを html または side (Selenium 3 のみ)形式でアップロードします" +msgstr "" +"selenium テストを html または side (Selenium 3 のみ)形式でアップロードします" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:442 -#: ../../enterprise/tools/ipam/ipam_excel.php:212 +#: ../../enterprise/tools/ipam/ipam_excel.php:220 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:342 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:674 #: ../../godmode/groups/configure_group.php:238 #: ../../godmode/agentes/agent_manager.php:198 -#: ../../godmode/agentes/module_manager_editor_common.php:567 +#: ../../godmode/agentes/module_manager_editor_common.php:582 #: ../../godmode/massive/massive_edit_agents.php:812 msgid "Custom ID" msgstr "カスタムID" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:498 -#: ../../godmode/agentes/module_manager.php:1130 +#: ../../godmode/agentes/module_manager.php:1166 msgid "" -"The policy modules of data type will only update their intervals when policy is " -"applied." +"The policy modules of data type will only update their intervals when policy " +"is applied." msgstr "" -"データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔でのみ更" -"新されます。" +"データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔" +"でのみ更新されます。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:524 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 -#: ../../godmode/agentes/module_manager_editor_common.php:865 +#: ../../godmode/agentes/module_manager_editor_common.php:879 #: ../../godmode/massive/massive_edit_modules.php:1014 msgid "FF interval" msgstr "連続抑制時の間隔" @@ -15171,8 +15747,7 @@ msgstr "連続抑制時のモジュールの実行間隔(秒単位)です。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:544 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 -#: ../../godmode/agentes/module_manager_editor_common.php:1138 +#: ../../godmode/agentes/module_manager_editor_common.php:1152 #: ../../godmode/massive/massive_edit_modules.php:1135 msgid "Retries" msgstr "リトライ" @@ -15184,9 +15759,9 @@ msgid "Number of retries that the module will attempt to run." msgstr "モジュールを再実行する回数。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:618 -#: ../../enterprise/godmode/policies/policy_modules.php:417 -#: ../../godmode/agentes/module_manager_editor.php:750 -#: ../../godmode/agentes/module_manager_editor_common.php:1226 +#: ../../enterprise/godmode/policies/policy_modules.php:418 +#: ../../godmode/agentes/module_manager_editor.php:752 +#: ../../godmode/agentes/module_manager_editor_common.php:1240 msgid "Custom macros" msgstr "カスタムマクロ" @@ -15214,54 +15789,55 @@ msgstr "空のネットワークマップエディタ" #: ../../godmode/reporting/visual_console_builder.php:878 #: ../../godmode/reporting/map_builder.php:130 #: ../../godmode/reporting/visual_console_favorite.php:127 -#: ../../operation/visual_console/view.php:226 -#: ../../operation/agentes/pandora_networkmap.editor.php:214 -#: ../../operation/agentes/pandora_networkmap.php:665 ../../operation/menu.php:301 +#: ../../operation/visual_console/view.php:228 +#: ../../operation/agentes/pandora_networkmap.editor.php:232 +#: ../../operation/agentes/pandora_networkmap.php:672 +#: ../../operation/menu.php:314 msgid "Topology maps" msgstr "トポロジーマップ" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 -#: ../../operation/agentes/pandora_networkmap.editor.php:218 -#: ../../operation/agentes/pandora_networkmap.php:669 -#: ../../operation/agentes/pandora_networkmap.view.php:2230 +#: ../../operation/agentes/pandora_networkmap.editor.php:236 +#: ../../operation/agentes/pandora_networkmap.php:676 +#: ../../operation/agentes/pandora_networkmap.view.php:2278 msgid "Networkmap" msgstr "ネットワークマップ" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 -#: ../../operation/agentes/pandora_networkmap.editor.php:256 -#: ../../operation/agentes/pandora_networkmap.view.php:2236 +#: ../../operation/agentes/pandora_networkmap.editor.php:274 +#: ../../operation/agentes/pandora_networkmap.view.php:2284 msgid "Not found networkmap." msgstr "ネットワークマップがありません。" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175 -#: ../../operation/agentes/pandora_networkmap.editor.php:445 +#: ../../operation/agentes/pandora_networkmap.editor.php:476 msgid "Save networkmap" msgstr "ネットワークマップの保存" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186 -#: ../../operation/agentes/pandora_networkmap.editor.php:456 +#: ../../operation/agentes/pandora_networkmap.editor.php:487 msgid "Update networkmap" msgstr "ネットワークマップの更新" -#: ../../enterprise/godmode/agentes/collections.php:65 +#: ../../enterprise/godmode/agentes/collections.php:106 msgid "Success: recreate file" msgstr "成功: ファイル再作成" -#: ../../enterprise/godmode/agentes/collections.php:67 +#: ../../enterprise/godmode/agentes/collections.php:108 msgid "Error: recreate file " msgstr "エラー: ファイル再作成 " -#: ../../enterprise/godmode/agentes/collections.php:82 -#: ../../enterprise/godmode/agentes/collections.php:123 -#: ../../enterprise/godmode/agentes/collections.php:232 +#: ../../enterprise/godmode/agentes/collections.php:131 +#: ../../enterprise/godmode/agentes/collections.php:172 +#: ../../enterprise/godmode/agentes/collections.php:281 msgid "Collections Management" msgstr "コレクション管理" -#: ../../enterprise/godmode/agentes/collections.php:175 +#: ../../enterprise/godmode/agentes/collections.php:224 msgid "Manager collection" msgstr "コレクション管理" @@ -15274,52 +15850,67 @@ msgid "Duplicate configuration" msgstr "設定の複製" #: ../../enterprise/godmode/agentes/manage_config_remote.php:78 -msgid "No source agent selected" -msgstr "ソースエージェントが選択されていません" +msgid "ERROR: No source agent selected" +msgstr "エラー: ソースエージェントが選択されていません" #: ../../enterprise/godmode/agentes/manage_config_remote.php:80 -msgid "No destination agent/s selected" -msgstr "対象エージェントが選択されていません。" +msgid "ERROR: No destination agent/s selected" +msgstr "エラー: 対象エージェントが選択されていません。" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:152 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:108 +msgid "Error: No destination agent specified." +msgstr "エラー: 対象エージェントが選択されていません。" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:150 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:168 msgid "Copied " msgstr "コピーしました: " -#: ../../enterprise/godmode/agentes/manage_config_remote.php:140 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:146 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:158 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:150 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:161 msgid " md5 file/s" msgstr " md5 ファイル" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:146 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:158 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:157 +msgid "Error copying md5 file/s: origin and destiny agent are the same." +msgstr "" +"md5 ファイルのコピーエラー: 元のエージェントと宛先のエージェントが同じです。" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:161 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:179 msgid "Error copying " msgstr "コピーエラー " -#: ../../enterprise/godmode/agentes/manage_config_remote.php:152 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:168 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:179 msgid " config file/s" msgstr " 設定ファイル" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:225 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:175 +msgid "Error copying config file/s: origin and destiny agent are the same." +msgstr "" +"設定ファイルのコピーエラー: 元のエージェントと宛先のエージェントが同じです。" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:248 msgid "Source Group" msgstr "ソースグループ" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:256 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:279 msgid "Destination agent(s)" msgstr "対象エージェント" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:268 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:291 msgid "Source Agent" msgstr "ソースエージェント" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:293 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:316 msgid "Replicate configuration" msgstr "設定の複製" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:314 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:337 msgid "The action to be performed cannot be reversed. Are you sure to continue?" -msgstr "実行したアクションを元に戻すことはできません。 続行してもよろしいですか?" +msgstr "" +"実行したアクションを元に戻すことはできません。 続行してもよろしいですか?" #: ../../enterprise/godmode/agentes/module_manager.php:48 msgid "Create a new web analysis module" @@ -15328,11 +15919,11 @@ msgstr "新規ウェブ分析モジュールの作成" #: ../../enterprise/godmode/policies/policy_plugins.php:38 #: ../../enterprise/godmode/policies/policy_alerts.php:64 #: ../../enterprise/godmode/policies/configure_policy.php:83 -#: ../../enterprise/godmode/policies/policy_modules.php:476 +#: ../../enterprise/godmode/policies/policy_modules.php:477 #: ../../enterprise/godmode/policies/policy_queue.php:218 #: ../../enterprise/godmode/policies/policies.php:272 #: ../../enterprise/godmode/policies/policy_linking.php:117 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:318 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:320 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 #: ../../enterprise/godmode/policies/policy_collections.php:50 #: ../../enterprise/godmode/policies/policy_agents.php:326 @@ -15345,16 +15936,16 @@ msgstr "新規ウェブ分析モジュールの作成" #: ../../enterprise/operation/agentes/policy_view.php:58 #, php-format msgid "" -"This node is configured with centralized mode. All policies information is read only. " -"Go to %s to manage it." +"This node is configured with centralized mode. All policies information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのポリシー情報は読み取り専用で" -"す。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのポリシー情報は読み取り専" +"用です。管理するには %s に移動します。" #: ../../enterprise/godmode/policies/policy_plugins.php:56 msgid "" -"Successfully added to delete pending plugins. Will be deleted in the next policy " -"application." +"Successfully added to delete pending plugins. Will be deleted in the next " +"policy application." msgstr "削除待ちプラグインを追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_plugins.php:57 @@ -15363,8 +15954,8 @@ msgstr "削除待ちプラグインを追加できません。" #: ../../enterprise/godmode/policies/policy_plugins.php:70 #: ../../enterprise/godmode/policies/policy_alerts.php:259 -#: ../../enterprise/godmode/policies/policy_modules.php:1316 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:150 +#: ../../enterprise/godmode/policies/policy_modules.php:1321 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:152 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 #: ../../enterprise/godmode/policies/policy_collections.php:103 #: ../../enterprise/godmode/policies/policy_agents.php:113 @@ -15374,8 +15965,8 @@ msgstr "削除を取り消しました" #: ../../enterprise/godmode/policies/policy_plugins.php:71 #: ../../enterprise/godmode/policies/policy_alerts.php:260 -#: ../../enterprise/godmode/policies/policy_modules.php:1317 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:151 +#: ../../enterprise/godmode/policies/policy_modules.php:1322 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:153 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 #: ../../enterprise/godmode/policies/policy_collections.php:104 #: ../../enterprise/godmode/policies/policy_agents.php:114 @@ -15383,53 +15974,62 @@ msgstr "削除を取り消しました" msgid "Could not be reverted" msgstr "取り消しできませんでした" -#: ../../enterprise/godmode/policies/policy_plugins.php:210 +#: ../../enterprise/godmode/policies/policy_plugins.php:108 +msgid "Plugin updated succesfully" +msgstr "プラグインを更新しました。" + +#: ../../enterprise/godmode/policies/policy_plugins.php:109 +msgid "Plugin cannot be updated" +msgstr "プラグインを更新できませんでした" + +#: ../../enterprise/godmode/policies/policy_plugins.php:269 msgid "There are no defined plugins" msgstr "定義済のプラグインがありません" #: ../../enterprise/godmode/policies/policy_alerts.php:94 -#: ../../enterprise/godmode/policies/policy_modules.php:599 +#: ../../enterprise/godmode/policies/policy_modules.php:600 #: ../../enterprise/godmode/policies/policies.php:253 #: ../../enterprise/godmode/policies/policy_linking.php:41 #: ../../enterprise/godmode/policies/policy_external_alerts.php:77 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:98 #: ../../enterprise/godmode/policies/policy_collections.php:63 #: ../../enterprise/godmode/policies/policy_agents.php:85 -#: ../../godmode/agentes/module_manager_editor.php:542 +#: ../../godmode/agentes/module_manager_editor.php:544 msgid "This policy is applying and cannot be modified" msgstr "このポリシーを摘要すると変更できません。" #: ../../enterprise/godmode/policies/policy_alerts.php:153 -#: ../../enterprise/godmode/policies/policy_modules.php:535 +#: ../../enterprise/godmode/policies/policy_modules.php:536 #: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../godmode/agentes/configurar_agente.php:2208 +#: ../../godmode/agentes/configurar_agente.php:2250 #: ../../godmode/agentes/modificar_agente.php:278 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/alerts/alert_list.php:394 ../../include/ajax/alert_list.ajax.php:381 +#: ../../godmode/alerts/alert_list.php:419 +#: ../../include/ajax/alert_list.ajax.php:381 msgid "Could not be disabled" msgstr "無効にできませんでした。" #: ../../enterprise/godmode/policies/policy_alerts.php:178 #: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:420 +#: ../../godmode/alerts/alert_list.php:445 msgid "Successfully set standby" msgstr "スタンバイ状態にしました。" #: ../../enterprise/godmode/policies/policy_alerts.php:179 #: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:421 +#: ../../godmode/alerts/alert_list.php:446 msgid "Could not be set standby" msgstr "スタンバイ状態にできませんでした。" #: ../../enterprise/godmode/policies/policy_alerts.php:204 #: ../../godmode/massive/massive_standby_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:447 +#: ../../godmode/alerts/alert_list.php:472 msgid "Successfully set off standby" msgstr "非スタンバイ状態にしました。" #: ../../enterprise/godmode/policies/policy_alerts.php:205 #: ../../godmode/massive/massive_standby_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:448 +#: ../../godmode/alerts/alert_list.php:473 msgid "Could not be set off standby" msgstr "非スタンバイ状態にできませんでした。" @@ -15442,19 +16042,19 @@ msgid " could not be created" msgstr " の作成ができませんでした" #: ../../enterprise/godmode/policies/policy_alerts.php:255 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:145 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:147 msgid "" -"Successfully added to delete pending alerts. Will be deleted in the next policy " -"application." +"Successfully added to delete pending alerts. Will be deleted in the next " +"policy application." msgstr "削除待ちアラートを追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:202 msgid "Added action successfuly" msgstr "アクションを追加しました" #: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:203 #: ../../enterprise/godmode/policies/policy_agents.php:251 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 #: ../../godmode/massive/massive_delete_action_alerts.php:175 @@ -15464,52 +16064,52 @@ msgstr "アクションを追加しました" #: ../../godmode/massive/massive_add_action_alerts.php:160 #: ../../godmode/massive/massive_add_action_alerts.php:163 #: ../../godmode/massive/massive_add_action_alerts.php:166 -#: ../../godmode/alerts/alert_list.php:272 +#: ../../godmode/alerts/alert_list.php:279 msgid "Could not be added" msgstr "追加できませんでした。" #: ../../enterprise/godmode/policies/policy_alerts.php:302 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:173 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:175 msgid "Deleted action successfuly" msgstr "アクションを削除しました" #: ../../enterprise/godmode/policies/policy_alerts.php:428 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:468 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2402 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3370 -#: ../../godmode/alerts/alert_list.list.php:650 ../../godmode/alerts/alert_view.php:234 -#: ../../include/functions_alerts.php:683 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:470 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2404 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372 +#: ../../godmode/alerts/alert_list.list.php:650 +#: ../../godmode/alerts/alert_view.php:234 ../../include/functions_alerts.php:683 msgid "Always" msgstr "常時" #: ../../enterprise/godmode/policies/policy_alerts.php:430 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:470 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:472 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3374 #: ../../godmode/alerts/alert_list.list.php:652 -#: ../../include/class/Diagnostics.class.php:1181 -#: ../../include/class/Diagnostics.class.php:1185 +#: ../../include/class/Diagnostics.class.php:1184 +#: ../../include/class/Diagnostics.class.php:1188 msgid "On" msgstr "次のアラート回数でアクション実施:" #: ../../enterprise/godmode/policies/policy_alerts.php:434 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:474 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3376 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3378 #: ../../godmode/alerts/alert_list.list.php:656 msgid "Until" msgstr "次のアラート回数までアクション実施:" #: ../../enterprise/godmode/policies/policy_alerts.php:529 -#: ../../enterprise/godmode/policies/policy_modules.php:1573 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:542 +#: ../../enterprise/godmode/policies/policy_modules.php:1578 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:544 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 -#: ../../enterprise/godmode/policies/policy_agents.php:1066 -#: ../../enterprise/godmode/policies/policy_agents.php:1535 +#: ../../enterprise/godmode/policies/policy_agents.php:1102 +#: ../../enterprise/godmode/policies/policy_agents.php:1571 msgid "Undo deletion" msgstr "削除取り消し" #: ../../enterprise/godmode/policies/policy_alerts.php:596 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:609 -#: ../../godmode/massive/massive_add_action_alerts.php:252 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:611 +#: ../../godmode/massive/massive_add_action_alerts.php:253 #: ../../godmode/alerts/alert_list.list.php:767 #: ../../godmode/alerts/alert_list.builder.php:127 #: ../../include/ajax/alert_list.ajax.php:516 @@ -15524,10 +16124,10 @@ msgstr "このポリシーにアラート設定がありません。" #: ../../enterprise/godmode/policies/policy_alerts.php:642 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 #: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 -#: ../../godmode/massive/massive_standby_alerts.php:217 +#: ../../godmode/massive/massive_standby_alerts.php:218 #: ../../godmode/massive/massive_add_alerts.php:280 -#: ../../godmode/massive/massive_enable_disable_alerts.php:189 -#: ../../godmode/massive/massive_delete_alerts.php:271 +#: ../../godmode/massive/massive_enable_disable_alerts.php:190 +#: ../../godmode/massive/massive_delete_alerts.php:272 msgid "Alert template" msgstr "アラートテンプレート" @@ -15546,7 +16146,7 @@ msgid "Set standby" msgstr "スタンバイ状態にする" #: ../../enterprise/godmode/policies/policy_alerts.php:754 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:517 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:519 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 @@ -15567,7 +16167,8 @@ msgid "" "Force the creation of modules even if the software agent does not have remote " "configuration" msgstr "" -"ソフトウェアエージェントにリモート設定がない場合でも、モジュールの作成を強制します" +"ソフトウェアエージェントにリモート設定がない場合でも、モジュールの作成を強制し" +"ます" #: ../../enterprise/godmode/policies/configure_policy.php:127 msgid "Use secondary groups" @@ -15575,151 +16176,155 @@ msgstr "セカンダリグループの利用" #: ../../enterprise/godmode/policies/configure_policy.php:127 msgid "" -"Policy will be applied to those agents belonging to groups or secondary groups that " -"have been selected" +"Policy will be applied to those agents belonging to groups or secondary groups " +"that have been selected" msgstr "" -"ポリシーは、選択されたグループまたはセカンダリグループに属するエージェントに適用されま" -"す" +"ポリシーは、選択されたグループまたはセカンダリグループに属するエージェントに適" +"用されます" -#: ../../enterprise/godmode/policies/policy_modules.php:299 +#: ../../enterprise/godmode/policies/policy_modules.php:300 msgid "" -"If you change this description, you must change into the text of Data configuration." +"If you change this description, you must change into the text of Data " +"configuration." msgstr "この説明を変更すると、データ設定のテキストを変更する必要があります。" -#: ../../enterprise/godmode/policies/policy_modules.php:372 +#: ../../enterprise/godmode/policies/policy_modules.php:373 msgid "Invalid module type." msgstr "不正なモジュールタイプ。" -#: ../../enterprise/godmode/policies/policy_modules.php:403 -#: ../../godmode/agentes/module_manager_editor.php:738 +#: ../../enterprise/godmode/policies/policy_modules.php:404 +#: ../../godmode/agentes/module_manager_editor.php:740 msgid "Base options" msgstr "ベースオプション" -#: ../../enterprise/godmode/policies/policy_modules.php:548 +#: ../../enterprise/godmode/policies/policy_modules.php:549 msgid "Could not be added module(s). You must select a policy" msgstr "モジュールを追加できません。ポリシーを選択する必要があります。" -#: ../../enterprise/godmode/policies/policy_modules.php:581 +#: ../../enterprise/godmode/policies/policy_modules.php:582 #, php-format msgid "Successfully added module(s) (%s/%s) to policy %s" msgstr "モジュール (%s/%s) を、ポリシー %s に追加しました" -#: ../../enterprise/godmode/policies/policy_modules.php:587 +#: ../../enterprise/godmode/policies/policy_modules.php:588 #, php-format msgid "Could not be added module(s) (%s/%s) to policy %s" msgstr "モジュール (%s/%s) をポリシー %s に追加できませんでした" -#: ../../enterprise/godmode/policies/policy_modules.php:623 +#: ../../enterprise/godmode/policies/policy_modules.php:624 msgid "To define plugins please use plugin configuration tab." msgstr "プラグインの定義にはプラグイン設定タブを使ってください。" -#: ../../enterprise/godmode/policies/policy_modules.php:920 +#: ../../enterprise/godmode/policies/policy_modules.php:923 msgid "Could not be added module." msgstr "モジュールを追加できませんでした。" -#: ../../enterprise/godmode/policies/policy_modules.php:1265 -msgid "The module type in Data configuration is empty, take from combo box of form." +#: ../../enterprise/godmode/policies/policy_modules.php:1270 +msgid "" +"The module type in Data configuration is empty, take from combo box of form." msgstr "データ設定内のモジュールタイプが空です。フォームから選択してください。" -#: ../../enterprise/godmode/policies/policy_modules.php:1269 -msgid "The module name in Data configuration is empty, take from text field of form." -msgstr "データ設定内のモジュール名が空です。テキストフィールドに入力してください。" +#: ../../enterprise/godmode/policies/policy_modules.php:1274 +msgid "" +"The module name in Data configuration is empty, take from text field of form." +msgstr "" +"データ設定内のモジュール名が空です。テキストフィールドに入力してください。" -#: ../../enterprise/godmode/policies/policy_modules.php:1299 -#: ../../enterprise/godmode/policies/policy_modules.php:1312 +#: ../../enterprise/godmode/policies/policy_modules.php:1304 +#: ../../enterprise/godmode/policies/policy_modules.php:1317 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:163 msgid "" -"Successfully added to delete pending modules. Will be deleted in the next policy " -"application." +"Successfully added to delete pending modules. Will be deleted in the next " +"policy application." msgstr "削除待ちモジュールに追加しました。次回のポリシー適用時に削除されます。" -#: ../../enterprise/godmode/policies/policy_modules.php:1303 +#: ../../enterprise/godmode/policies/policy_modules.php:1308 msgid "Could not be added to deleted all modules." msgstr "削除済の全モジュールへの追加ができませんでした。" -#: ../../enterprise/godmode/policies/policy_modules.php:1363 -#: ../../godmode/agentes/configurar_agente.php:2121 +#: ../../enterprise/godmode/policies/policy_modules.php:1368 +#: ../../godmode/agentes/configurar_agente.php:2163 #: ../../include/functions_reports.php:963 #, php-format msgid "copy of %s" msgstr "%s のコピー" -#: ../../enterprise/godmode/policies/policy_modules.php:1381 -#: ../../godmode/agentes/configurar_agente.php:2135 +#: ../../enterprise/godmode/policies/policy_modules.php:1386 +#: ../../godmode/agentes/configurar_agente.php:2177 #, php-format msgid "copy of %s (%d)" msgstr "%s のコピー (%d)" -#: ../../enterprise/godmode/policies/policy_modules.php:1411 +#: ../../enterprise/godmode/policies/policy_modules.php:1416 msgid "Successfully duplicate the module." msgstr "モジュールを複製しました。" -#: ../../enterprise/godmode/policies/policy_modules.php:1412 -#: ../../operation/agentes/pandora_networkmap.php:533 +#: ../../enterprise/godmode/policies/policy_modules.php:1417 +#: ../../operation/agentes/pandora_networkmap.php:540 msgid "Could not be duplicated" msgstr "複製できません" -#: ../../enterprise/godmode/policies/policy_modules.php:1492 +#: ../../enterprise/godmode/policies/policy_modules.php:1497 msgid "Local component" msgstr "ローカルコンポーネント" -#: ../../enterprise/godmode/policies/policy_modules.php:1509 -#: ../../enterprise/godmode/policies/policy_modules.php:1510 +#: ../../enterprise/godmode/policies/policy_modules.php:1514 +#: ../../enterprise/godmode/policies/policy_modules.php:1515 msgid "Disabled module" msgstr "無効化モジュール" -#: ../../enterprise/godmode/policies/policy_modules.php:1517 -#: ../../enterprise/godmode/policies/policy_modules.php:1518 +#: ../../enterprise/godmode/policies/policy_modules.php:1522 +#: ../../enterprise/godmode/policies/policy_modules.php:1523 msgid "Enabled module" msgstr "有効化モジュール" -#: ../../enterprise/godmode/policies/policy_modules.php:1528 -#: ../../enterprise/godmode/policies/policy_modules.php:1529 -#: ../../godmode/agentes/module_manager.php:1168 -#: ../../godmode/agentes/module_manager.php:1169 +#: ../../enterprise/godmode/policies/policy_modules.php:1533 +#: ../../enterprise/godmode/policies/policy_modules.php:1534 +#: ../../godmode/agentes/module_manager.php:1208 +#: ../../godmode/agentes/module_manager.php:1209 msgid "Enable module" msgstr "モジュールを有効化" -#: ../../enterprise/godmode/policies/policy_modules.php:1538 -#: ../../enterprise/godmode/policies/policy_modules.php:1539 -#: ../../godmode/agentes/module_manager.php:1178 -#: ../../godmode/agentes/module_manager.php:1179 +#: ../../enterprise/godmode/policies/policy_modules.php:1543 +#: ../../enterprise/godmode/policies/policy_modules.php:1544 +#: ../../godmode/agentes/module_manager.php:1218 +#: ../../godmode/agentes/module_manager.php:1219 msgid "Disable module" msgstr "モジュールを無効化" -#: ../../enterprise/godmode/policies/policy_modules.php:1624 +#: ../../enterprise/godmode/policies/policy_modules.php:1629 msgid "There are no defined modules" msgstr "定義済のモジュールがありません" -#: ../../enterprise/godmode/policies/policy_modules.php:1643 +#: ../../enterprise/godmode/policies/policy_modules.php:1648 #: ../../godmode/massive/massive_copy_modules.php:188 msgid "Copy modules" msgstr "モジュールのコピー" -#: ../../enterprise/godmode/policies/policy_modules.php:1644 +#: ../../enterprise/godmode/policies/policy_modules.php:1649 msgid "Copy selected modules to policy: " msgstr "選択したモジュールをポリシーへコピー: " -#: ../../enterprise/godmode/policies/policy_modules.php:1706 -#: ../../godmode/agentes/module_manager_editor.php:822 +#: ../../enterprise/godmode/policies/policy_modules.php:1711 +#: ../../godmode/agentes/module_manager_editor.php:824 msgid "No module name provided" msgstr "モジュール名がありません。" -#: ../../enterprise/godmode/policies/policy_modules.php:1707 -#: ../../godmode/agentes/module_manager_editor.php:832 +#: ../../enterprise/godmode/policies/policy_modules.php:1712 +#: ../../godmode/agentes/module_manager_editor.php:834 msgid "No target IP provided" msgstr "対象 IP がありません。" -#: ../../enterprise/godmode/policies/policy_modules.php:1708 -#: ../../godmode/agentes/module_manager_editor.php:842 +#: ../../enterprise/godmode/policies/policy_modules.php:1713 +#: ../../godmode/agentes/module_manager_editor.php:844 msgid "No SNMP OID provided" msgstr "SNMP OID がありません。" -#: ../../enterprise/godmode/policies/policy_modules.php:1849 +#: ../../enterprise/godmode/policies/policy_modules.php:1854 msgid "Are you sure to copy modules into policy?\\n" msgstr "モジュールをポリシーにコピーしますか?\\n" -#: ../../enterprise/godmode/policies/policy_modules.php:1869 +#: ../../enterprise/godmode/policies/policy_modules.php:1874 msgid "Please select any module to copy" msgstr "コピーするモジュールを選択してください" @@ -15730,11 +16335,11 @@ msgstr "この ID のポリシーがありません" #: ../../enterprise/godmode/policies/policy_queue.php:78 #: ../../enterprise/godmode/policies/policy_agents.php:62 msgid "" -"Starting with Pandora FMS version 760, assigning an entire group to a policy will " -"apply it automatically to all the new agents added to that group." +"Starting with Pandora FMS version 760, assigning an entire group to a policy " +"will apply it automatically to all the new agents added to that group." msgstr "" -"Pandora FMS バージョン 760 以降、グループ全体をポリシーに割り当てると、そのグループに" -"追加されたすべての新しいエージェントに自動的に適用されます。" +"Pandora FMS バージョン 760 以降、グループ全体をポリシーに割り当てると、そのグ" +"ループに追加されたすべての新しいエージェントに自動的に適用されます。" #: ../../enterprise/godmode/policies/policy_queue.php:146 #, php-format @@ -15753,7 +16358,8 @@ msgstr "キューから操作を削除できません" #, php-format msgid "Some nodes (%s) are unreachebles. Some information may be missing." msgstr "" -"いくつかのノード(%s)には到達できません。一部の情報が欠落している可能性があります。" +"いくつかのノード(%s)には到達できません。一部の情報が欠落している可能性がありま" +"す。" #: ../../enterprise/godmode/policies/policy_queue.php:308 msgid "Update pending" @@ -15764,8 +16370,8 @@ msgid "Update pending agents" msgstr "更新待ちエージェント" #: ../../enterprise/godmode/policies/policy_queue.php:337 -#: ../../enterprise/godmode/policies/policy_agents.php:1012 -#: ../../enterprise/godmode/policies/policy_agents.php:1493 +#: ../../enterprise/godmode/policies/policy_agents.php:1048 +#: ../../enterprise/godmode/policies/policy_agents.php:1529 msgid "Add to apply queue" msgstr "適用キューへ追加" @@ -15855,7 +16461,8 @@ msgstr "キューフィルタ" #: ../../enterprise/godmode/policies/policy_queue.php:670 #: ../../enterprise/godmode/policies/policy_linking.php:153 #: ../../include/functions_massive_operations.php:191 -#: ../../include/lib/Dashboard/Widget.php:594 ../../include/functions_events.php:4600 +#: ../../include/lib/Dashboard/Widget.php:596 +#: ../../include/functions_events.php:4713 msgid "Node" msgstr "ノード" @@ -15890,21 +16497,21 @@ msgstr "ポリシー管理" #: ../../enterprise/godmode/policies/policies.php:239 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 #: ../../godmode/alerts/alert_actions.php:129 -#: ../../godmode/alerts/alert_commands.php:711 +#: ../../godmode/alerts/alert_commands.php:712 #: ../../godmode/reporting/map_builder.php:315 #: ../../godmode/reporting/map_builder.php:322 #: ../../godmode/reporting/reporting_builder.php:737 #: ../../include/functions_agents.php:1022 -#: ../../include/functions_planned_downtimes.php:978 +#: ../../include/functions_planned_downtimes.php:979 msgid "Successfully copied" msgstr "コピーしました。" #: ../../enterprise/godmode/policies/policies.php:240 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 #: ../../godmode/alerts/alert_actions.php:130 -#: ../../godmode/alerts/alert_commands.php:712 +#: ../../godmode/alerts/alert_commands.php:713 #: ../../godmode/reporting/reporting_builder.php:738 -#: ../../include/functions_planned_downtimes.php:975 +#: ../../include/functions_planned_downtimes.php:976 msgid "Could not be copied" msgstr "コピーできませんでした。" @@ -15949,7 +16556,8 @@ msgstr "ポリシーを削除するにはエージェントがあってはいけ #: ../../enterprise/godmode/policies/policies.php:605 msgid "A policy with agents cannot be deleted. Purge it first" msgstr "" -"エージェントのあるポリシーは削除できません。先にエージェントを削除してください。" +"エージェントのあるポリシーは削除できません。先にエージェントを削除してくださ" +"い。" #: ../../enterprise/godmode/policies/policies.php:615 msgid "Deleting all policy agents" @@ -15996,36 +16604,36 @@ msgid "List of modules unlinked" msgstr "未リンクモジュール一覧" #: ../../enterprise/godmode/policies/policy_external_alerts.php:87 -#: ../../godmode/alerts/alert_list.php:173 +#: ../../godmode/alerts/alert_list.php:180 msgid "No module specified" msgstr "モジュールが指定されていません" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:123 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:125 msgid "Created successfuly" msgstr "作成しました" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:129 msgid "Duplicated alert" msgstr "アラートが重複しています" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:381 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:383 #: ../../godmode/alerts/alert_list.list.php:188 msgid "Alert control filter" msgstr "アラートフィルタ" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:392 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:394 msgid "Modules in policy per agents" msgstr "エージェントごとのポリシー内モジュール" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:575 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:577 msgid "There is not external alerts configured in this policy" msgstr "このポリシーに設定された外部アラートがありません" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:629 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:631 msgid "Modules in policy agents" msgstr "ポリシーエージェント内のモジュール" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:657 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:659 msgid "Alert Template" msgstr "アラートテンプレート" @@ -16033,14 +16641,41 @@ msgstr "アラートテンプレート" msgid "Module is not selected" msgstr "モジュールが選択されていません" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 +#: ../../godmode/agentes/inventory_manager.php:84 +msgid "Successfully added inventory module" +msgstr "インベントリモジュールを追加しました" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 +#: ../../godmode/agentes/inventory_manager.php:86 +msgid "Error adding inventory module" +msgstr "インベントリモジュールの追加エラー" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156 +#: ../../godmode/agentes/inventory_manager.php:89 +msgid "The inventory of the module already exists" +msgstr "モジュールのインベントリはすでに存在します" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 +#: ../../godmode/modules/manage_inventory_modules.php:149 +#: ../../godmode/agentes/inventory_manager.php:128 +msgid "Successfully updated inventory module" +msgstr "インベントリモジュールを更新しました" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 +#: ../../godmode/modules/manage_inventory_modules.php:150 +#: ../../godmode/agentes/inventory_manager.php:130 +msgid "Error updating inventory module" +msgstr "インベントリモジュールの更新エラー" + #: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 msgid "There are no defined inventory modules" msgstr "定義済のインベントリモジュールがありません" #: ../../enterprise/godmode/policies/policy_collections.php:99 msgid "" -"Successfully added to delete the collection. Will be deleted in the next policy " -"application." +"Successfully added to delete the collection. Will be deleted in the next " +"policy application." msgstr "コレクション削除を追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_collections.php:224 @@ -16066,14 +16701,14 @@ msgstr "追加するコレクションがありません" #: ../../enterprise/godmode/policies/policy_agents.php:102 msgid "" -"Successfully added to delete pending agents. Will be deleted in the next policy " -"application." +"Successfully added to delete pending agents. Will be deleted in the next " +"policy application." msgstr "削除待ちエージェントに追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_agents.php:124 msgid "" -"Successfully added to delete pending groups. Will be deleted in the next policy " -"application." +"Successfully added to delete pending groups. Will be deleted in the next " +"policy application." msgstr "削除保留中グループに追加しました。 次のポリシー適用で削除されます。" #: ../../enterprise/godmode/policies/policy_agents.php:148 @@ -16099,11 +16734,11 @@ msgstr "追加しました %d" #: ../../enterprise/godmode/policies/policy_agents.php:281 msgid "" -"Number of agents added to the policy concurrently is too large. This might cause the " -"operation to fail or lead to performance issues." +"Number of agents added to the policy concurrently is too large. This might " +"cause the operation to fail or lead to performance issues." msgstr "" -"ポリシーに同時に追加されたエージェントの数が多すぎます。 これにより、操作が失敗した" -"り、パフォーマンスの問題が発生したりする可能性があります。" +"ポリシーに同時に追加されたエージェントの数が多すぎます。 これにより、操作が失敗" +"したり、パフォーマンスの問題が発生したりする可能性があります。" #: ../../enterprise/godmode/policies/policy_agents.php:288 msgid "Successfully added to policy" @@ -16117,56 +16752,27 @@ msgstr "ポリシーに追加できませんでした" msgid "Apply to" msgstr "次へ適用:" -#: ../../enterprise/godmode/policies/policy_agents.php:454 -#: ../../enterprise/godmode/policies/policy_agents.php:485 -#: ../../enterprise/godmode/policies/policy_agents.php:549 -#: ../../enterprise/godmode/policies/policy_agents.php:814 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115 -#: ../../godmode/massive/massive_copy_modules.php:112 -#: ../../godmode/massive/massive_copy_modules.php:265 -#: ../../godmode/massive/massive_standby_alerts.php:200 -#: ../../godmode/massive/massive_delete_action_alerts.php:221 -#: ../../godmode/massive/massive_delete_modules.php:386 -#: ../../godmode/massive/massive_add_alerts.php:228 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -#: ../../godmode/massive/massive_delete_alerts.php:311 -#: ../../godmode/massive/massive_add_action_alerts.php:209 -#: ../../godmode/massive/massive_edit_modules.php:370 -#: ../../include/functions_html.php:1258 ../../include/functions_html.php:1410 -#: ../../include/functions_massive_operations.php:138 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:243 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:334 -#: ../../include/lib/Dashboard/Widgets/events_list.php:447 -msgid "Group recursion" -msgstr "子グループを含める" - #: ../../enterprise/godmode/policies/policy_agents.php:499 -#: ../../enterprise/godmode/policies/policy_agents.php:513 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749 -#: ../../enterprise/include/class/Omnishell.class.php:825 -#: ../../enterprise/include/class/Omnishell.class.php:904 -msgid "Filter agent" -msgstr "エージェントのフィルタ" +#: ../../enterprise/godmode/policies/policy_agents.php:517 +msgid "Filter OS" +msgstr "OS フィルタ" -#: ../../enterprise/godmode/policies/policy_agents.php:538 -#: ../../enterprise/godmode/policies/policy_agents.php:670 +#: ../../enterprise/godmode/policies/policy_agents.php:574 +#: ../../enterprise/godmode/policies/policy_agents.php:706 msgid "Agents in Policy" msgstr "ポリシー内エージェント" -#: ../../enterprise/godmode/policies/policy_agents.php:566 -#: ../../enterprise/godmode/policies/policy_agents.php:1215 +#: ../../enterprise/godmode/policies/policy_agents.php:602 +#: ../../enterprise/godmode/policies/policy_agents.php:1251 #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:509 -#: ../../enterprise/godmode/setup/setup_auth.php:1306 +#: ../../enterprise/godmode/setup/setup_auth.php:1304 #: ../../extensions/files_repo/files_repo_form.php:55 #: ../../extensions/module_groups.php:311 #: ../../godmode/reporting/visual_console_builder.wizard.php:362 #: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57 -#: ../../mobile/operation/groups.php:77 ../../include/functions_networkmap.php:1295 +#: ../../mobile/operation/groups.php:77 +#: ../../include/functions_networkmap.php:1295 #: ../../include/functions_maps.php:46 #: ../../include/lib/Dashboard/Widgets/groups_status.php:231 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:299 @@ -16177,188 +16783,195 @@ msgstr "ポリシー内エージェント" #: ../../include/lib/Dashboard/Widgets/tree_view.php:359 #: ../../include/lib/Dashboard/Widgets/tactical.php:331 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 -#: ../../operation/tree.php:90 ../../operation/agentes/pandora_networkmap.php:710 +#: ../../operation/tree.php:90 ../../operation/agentes/pandora_networkmap.php:717 msgid "Groups" msgstr "グループ" -#: ../../enterprise/godmode/policies/policy_agents.php:572 -#: ../../enterprise/godmode/policies/policy_agents.php:1217 +#: ../../enterprise/godmode/policies/policy_agents.php:608 +#: ../../enterprise/godmode/policies/policy_agents.php:1253 msgid "Groups in Policy" msgstr "ポリシー内グループ" -#: ../../enterprise/godmode/policies/policy_agents.php:707 +#: ../../enterprise/godmode/policies/policy_agents.php:743 msgid "Add agents to policy" msgstr "ポリシーへのエージェント追加" -#: ../../enterprise/godmode/policies/policy_agents.php:734 +#: ../../enterprise/godmode/policies/policy_agents.php:770 msgid "Delete agents from policy" msgstr "ポリシーからエージェント削除" -#: ../../enterprise/godmode/policies/policy_agents.php:831 +#: ../../enterprise/godmode/policies/policy_agents.php:867 msgid "Applied" msgstr "適用済" -#: ../../enterprise/godmode/policies/policy_agents.php:832 +#: ../../enterprise/godmode/policies/policy_agents.php:868 msgid "Not applied" msgstr "未適用" -#: ../../enterprise/godmode/policies/policy_agents.php:849 -#: ../../godmode/agentes/configurar_agente.php:607 -#: ../../godmode/agentes/configurar_agente.php:757 +#: ../../enterprise/godmode/policies/policy_agents.php:885 +#: ../../godmode/agentes/configurar_agente.php:628 +#: ../../godmode/agentes/configurar_agente.php:778 #: ../../godmode/agentes/agent_manager.php:533 #: ../../godmode/massive/massive_edit_agents.php:966 #: ../../godmode/reporting/reporting_builder.item_editor.php:79 -#: ../../godmode/servers/servers.build_table.php:246 +#: ../../godmode/servers/servers.build_table.php:257 msgid "Remote configuration" msgstr "リモート設定" -#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../enterprise/godmode/policies/policy_agents.php:885 #: ../../enterprise/operation/agentes/policy_view.php:394 msgid "R." msgstr "R." -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 +#: ../../enterprise/godmode/policies/policy_agents.php:888 +#: ../../enterprise/godmode/policies/policy_agents.php:1404 #: ../../enterprise/godmode/admin_access_logs.php:50 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 #: ../../enterprise/operation/agentes/policy_view.php:66 #: ../../enterprise/operation/agentes/policy_view.php:166 #: ../../enterprise/operation/agentes/policy_view.php:257 #: ../../enterprise/operation/agentes/policy_view.php:262 -#: ../../godmode/agentes/module_manager.php:851 ../../mobile/operation/agents.php:406 -#: ../../include/ajax/alert_list.ajax.php:286 ../../include/ajax/alert_list.ajax.php:311 -#: ../../include/class/AuditLog.class.php:128 ../../include/functions_events.php:2436 +#: ../../godmode/agentes/module_manager.php:887 +#: ../../mobile/operation/agents.php:406 +#: ../../include/ajax/alert_list.ajax.php:286 +#: ../../include/ajax/alert_list.ajax.php:311 +#: ../../include/class/AuditLog.class.php:127 +#: ../../include/functions_events.php:2520 msgid "S." msgstr "S." -#: ../../enterprise/godmode/policies/policy_agents.php:853 +#: ../../enterprise/godmode/policies/policy_agents.php:889 msgid "Unlinked modules" msgstr "未リンクモジュール" -#: ../../enterprise/godmode/policies/policy_agents.php:853 +#: ../../enterprise/godmode/policies/policy_agents.php:889 msgid "U." msgstr "U." -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/policies/policy_agents.php:890 +#: ../../enterprise/godmode/policies/policy_agents.php:1405 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../godmode/reporting/visual_console_builder.elements.php:118 -#: ../../mobile/operation/agents.php:407 ../../include/class/AuditLog.class.php:128 +#: ../../mobile/operation/agents.php:407 +#: ../../include/class/AuditLog.class.php:127 msgid "A." msgstr "A." -#: ../../enterprise/godmode/policies/policy_agents.php:856 -#: ../../enterprise/godmode/policies/policy_agents.php:1371 +#: ../../enterprise/godmode/policies/policy_agents.php:892 +#: ../../enterprise/godmode/policies/policy_agents.php:1407 #: ../../enterprise/operation/agentes/policy_view.php:69 msgid "Last application" msgstr "最後の適用" -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 +#: ../../enterprise/godmode/policies/policy_agents.php:893 +#: ../../enterprise/godmode/policies/policy_agents.php:1409 msgid "Add to delete queue" msgstr "削除キューへの追加" -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 +#: ../../enterprise/godmode/policies/policy_agents.php:893 +#: ../../enterprise/godmode/policies/policy_agents.php:1409 msgid "D." msgstr "削除" -#: ../../enterprise/godmode/policies/policy_agents.php:946 +#: ../../enterprise/godmode/policies/policy_agents.php:982 #: ../../godmode/agentes/agent_manager.php:263 msgid "This agent can be remotely configured" msgstr "このエージェントはリモートから設定可能です。" -#: ../../enterprise/godmode/policies/policy_agents.php:953 +#: ../../enterprise/godmode/policies/policy_agents.php:989 msgid "This agent can not be remotely configured" msgstr "このエージェントはリモート設定できません" -#: ../../enterprise/godmode/policies/policy_agents.php:1003 -#: ../../enterprise/godmode/policies/policy_agents.php:1482 +#: ../../enterprise/godmode/policies/policy_agents.php:1039 +#: ../../enterprise/godmode/policies/policy_agents.php:1518 msgid "Process deletion" msgstr "プロセス削除" -#: ../../enterprise/godmode/policies/policy_agents.php:1102 -#: ../../enterprise/godmode/policies/policy_agents.php:1427 +#: ../../enterprise/godmode/policies/policy_agents.php:1138 +#: ../../enterprise/godmode/policies/policy_agents.php:1463 #: ../../enterprise/operation/agentes/policy_view.php:83 msgid "Policy applied" msgstr "適用済ポリシー" -#: ../../enterprise/godmode/policies/policy_agents.php:1110 -#: ../../enterprise/godmode/policies/policy_agents.php:1435 +#: ../../enterprise/godmode/policies/policy_agents.php:1146 +#: ../../enterprise/godmode/policies/policy_agents.php:1471 msgid "Need apply" msgstr "要適用" -#: ../../enterprise/godmode/policies/policy_agents.php:1122 -#: ../../enterprise/godmode/policies/policy_agents.php:1447 +#: ../../enterprise/godmode/policies/policy_agents.php:1158 +#: ../../enterprise/godmode/policies/policy_agents.php:1483 msgid "Applying policy" msgstr "ポリシー適用中" -#: ../../enterprise/godmode/policies/policy_agents.php:1135 -#: ../../enterprise/godmode/policies/policy_agents.php:1458 +#: ../../enterprise/godmode/policies/policy_agents.php:1171 +#: ../../enterprise/godmode/policies/policy_agents.php:1494 msgid "Deleting from policy" msgstr "ポリシーから削除中" -#: ../../enterprise/godmode/policies/policy_agents.php:1152 +#: ../../enterprise/godmode/policies/policy_agents.php:1188 #: ../../godmode/massive/massive_delete_modules.php:87 #: ../../godmode/massive/massive_add_alerts.php:100 #: ../../godmode/massive/massive_delete_agents.php:61 #: ../../godmode/massive/massive_edit_agents.php:214 #: ../../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:2963 +#: ../../include/functions_visual_map.php:2568 +#: ../../include/functions_visual_map.php:2914 msgid "No agents selected" msgstr "エージェントが選択されていません。" -#: ../../enterprise/godmode/policies/policy_agents.php:1295 +#: ../../enterprise/godmode/policies/policy_agents.php:1331 msgid "Add groups to policy" msgstr "ポリシーへのグループ追加" -#: ../../enterprise/godmode/policies/policy_agents.php:1317 +#: ../../enterprise/godmode/policies/policy_agents.php:1353 msgid "Delete groups from policy" msgstr "ポリシーからグループを削除" -#: ../../enterprise/godmode/policies/policy_agents.php:1370 +#: ../../enterprise/godmode/policies/policy_agents.php:1406 msgid "Total agents in policy group" msgstr "ポリシーグループ内の全エージェント" -#: ../../enterprise/godmode/policies/policy_agents.php:1370 +#: ../../enterprise/godmode/policies/policy_agents.php:1406 msgid "T." msgstr "T." #: ../../enterprise/godmode/policies/policy.php:102 #: ../../enterprise/include/functions_policies.php:3733 -#: ../../godmode/agentes/configurar_agente.php:530 +#: ../../godmode/agentes/configurar_agente.php:551 msgid "Agent wizard" msgstr "エージェントウィザード" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:41 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 #: ../../enterprise/operation/snmpconsole/snmp_view.php:82 -#: ../../enterprise/operation/menu.php:170 +#: ../../enterprise/operation/menu.php:140 +#: ../../include/class/SnmpConsole.class.php:929 msgid "SNMP trap editor" msgstr "SNMP トラップエディタ" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:58 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:77 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 -#: ../../godmode/setup/snmp_wizard.php:42 ../../include/functions_snmp_browser.php:556 +#: ../../godmode/setup/snmp_wizard.php:42 +#: ../../include/functions_snmp_browser.php:556 msgid "OID" msgstr "OID" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:66 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:85 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383 msgid "Custom OID" msgstr "カスタム OID" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2192 -#: ../../enterprise/include/functions_reporting_csv.php:2433 -#: ../../enterprise/include/functions_reporting_csv.php:2447 -#: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1343 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2301 -#: ../../include/functions_reports.php:835 ../../include/functions_reporting.php:7163 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:95 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2243 +#: ../../enterprise/include/functions_reporting_csv.php:2437 +#: ../../enterprise/include/functions_reporting_csv.php:2451 +#: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1364 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2304 +#: ../../include/functions_reports.php:835 +#: ../../include/functions_reporting.php:7405 #: ../../include/lib/Dashboard/Widgets/post.php:214 msgid "Text" msgstr "文字列" @@ -16371,8 +16984,8 @@ msgstr "文字列" msgid "SMNP" msgstr "SNMP" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:226 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:238 msgid "Successfully added trap custom values" msgstr "トラップカスタム値を追加しました" @@ -16382,7 +16995,7 @@ msgid "Error adding trap custom values" msgstr "トラップカスタム値の追加エラー" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:242 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:317 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:319 msgid "This custom OID is preexistent." msgstr "このカスタム OID はすでに存在します。" @@ -16390,46 +17003,46 @@ msgstr "このカスタム OID はすでに存在します。" msgid "No change in data" msgstr "データに変更がありません" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:285 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:312 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:315 msgid "Successfully updated trap custom values" msgstr "トラップカスタム値を更新しました" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:314 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:288 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:316 msgid "Error updating trap custom values" msgstr "トラップカスタム値の更新エラー" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:330 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:328 msgid "Successfully deleted trap custom values" msgstr "トラップカスタム値を削除しました" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:336 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:329 msgid "Error deleting trap custom values" msgstr "トラップカスタム値の削除エラー" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:340 #, php-format msgid "Uploaded %s/%s traps" msgstr "%s/%s トラップをアップロードしました" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:346 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:344 msgid "Fail uploaded file" msgstr "ファイルのアップロードに失敗しました" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:351 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:349 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." +"MIB files will be loaded and searched for SNMP trap definitions. They will not " +"be installed on the system! You can use the MIB uploader for that purpose." msgstr "" -"MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストールされ" -"ません。MIB アップローダはこの目的の範囲で利用できます。" +"MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストー" +"ルされません。MIB アップローダはこの目的の範囲で利用できます。" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:361 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:359 msgid "Load MIB" msgstr "MIBのロード" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:363 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:361 msgid "Upload MIB" msgstr "MIBをアップロード" @@ -16452,90 +17065,93 @@ msgstr "SNMP 操作" msgid "Satellite operations" msgstr "サテライト操作" -#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:266 +#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:257 msgid "Duplicate config" msgstr "設定の複製" -#: ../../enterprise/godmode/menu.php:69 ../../godmode/agentes/configurar_agente.php:710 +#: ../../enterprise/godmode/menu.php:69 +#: ../../godmode/agentes/configurar_agente.php:731 msgid "Network config manager" msgstr "ネットワーク設定管理" -#: ../../enterprise/godmode/menu.php:96 +#: ../../enterprise/godmode/menu.php:87 #: ../../enterprise/include/functions_policies.php:3712 msgid "Manage policies" msgstr "ポリシー管理" -#: ../../enterprise/godmode/menu.php:105 +#: ../../enterprise/godmode/menu.php:96 msgid "Manage agent autoconfiguration" msgstr "エージェント自動設定管理" -#: ../../enterprise/godmode/menu.php:114 -#: ../../enterprise/include/class/AgentRepository.class.php:653 +#: ../../enterprise/godmode/menu.php:105 +#: ../../enterprise/include/class/AgentRepository.class.php:668 msgid "Software agents repository" msgstr "ソフトウエアエージェントリポジトリ" -#: ../../enterprise/godmode/menu.php:147 +#: ../../enterprise/godmode/menu.php:138 #: ../../enterprise/include/class/CSVImportAgents.class.php:114 #: ../../godmode/wizards/HostDevices.class.php:159 msgid "Import CSV" msgstr "CSVのインポート" -#: ../../enterprise/godmode/menu.php:151 +#: ../../enterprise/godmode/menu.php:142 #: ../../enterprise/include/class/DeploymentCenter.class.php:613 #: ../../godmode/wizards/HostDevices.class.php:165 #: ../../godmode/wizards/DiscoveryTaskList.class.php:825 msgid "Agent deployment" msgstr "エージェントの展開" -#: ../../enterprise/godmode/menu.php:161 +#: ../../enterprise/godmode/menu.php:152 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 msgid "Microsoft SQL Server" msgstr "Microsoft SQL Server" -#: ../../enterprise/godmode/menu.php:162 +#: ../../enterprise/godmode/menu.php:153 msgid "Mysql" msgstr "Mysql" -#: ../../enterprise/godmode/menu.php:163 ../../enterprise/godmode/setup/setup.php:108 +#: ../../enterprise/godmode/menu.php:154 +#: ../../enterprise/godmode/setup/setup.php:108 #: ../../enterprise/include/class/Oracle.app.php:411 msgid "Oracle" msgstr "Oracle" -#: ../../enterprise/godmode/menu.php:164 +#: ../../enterprise/godmode/menu.php:155 #: ../../enterprise/include/class/VMware.app.php:503 msgid "VMware" msgstr "VMware" -#: ../../enterprise/godmode/menu.php:165 +#: ../../enterprise/godmode/menu.php:156 #: ../../enterprise/include/class/SAPView.class.php:621 #: ../../enterprise/include/class/SAPView.class.php:624 -#: ../../include/class/CredentialStore.class.php:948 +#: ../../include/class/CredentialStore.class.php:986 msgid "SAP" msgstr "SAP" -#: ../../enterprise/godmode/menu.php:166 ../../enterprise/include/class/DB2.app.php:404 +#: ../../enterprise/godmode/menu.php:157 +#: ../../enterprise/include/class/DB2.app.php:404 msgid "DB2" msgstr "DB2" -#: ../../enterprise/godmode/menu.php:167 +#: ../../enterprise/godmode/menu.php:158 #: ../../enterprise/godmode/wizards/Applications.class.php:163 #: ../../enterprise/godmode/wizards/Applications.class.php:171 msgid "Applications" msgstr "アプリケーション" -#: ../../enterprise/godmode/menu.php:178 +#: ../../enterprise/godmode/menu.php:169 msgid "Amazon Web Services" msgstr "Amazon Web Services" -#: ../../enterprise/godmode/menu.php:179 +#: ../../enterprise/godmode/menu.php:170 msgid "Microsoft Azure" msgstr "Microsoft Azure" -#: ../../enterprise/godmode/menu.php:180 +#: ../../enterprise/godmode/menu.php:171 msgid "Google Compute Platform" msgstr "Google Compute Platform" -#: ../../enterprise/godmode/menu.php:181 +#: ../../enterprise/godmode/menu.php:172 #: ../../enterprise/godmode/wizards/Cloud.class.php:186 #: ../../enterprise/godmode/wizards/Cloud.class.php:195 #: ../../enterprise/include/class/Azure.cloud.php:150 @@ -16547,58 +17163,60 @@ msgstr "Google Compute Platform" msgid "Cloud" msgstr "クラウド" -#: ../../enterprise/godmode/menu.php:196 +#: ../../enterprise/godmode/menu.php:187 msgid "New console task" msgstr "新規コンソールタスク" -#: ../../enterprise/godmode/menu.php:206 +#: ../../enterprise/godmode/menu.php:197 msgid "Enterprise ACL Setup" msgstr "Enterprise ACL 設定" -#: ../../enterprise/godmode/menu.php:215 +#: ../../enterprise/godmode/menu.php:206 msgid "Skins" msgstr "スキン" -#: ../../enterprise/godmode/menu.php:225 +#: ../../enterprise/godmode/menu.php:216 msgid "Manage database HA" msgstr "データベース HA 管理" -#: ../../enterprise/godmode/menu.php:235 +#: ../../enterprise/godmode/menu.php:226 #: ../../enterprise/godmode/servers/manage_export.php:43 #: ../../enterprise/godmode/servers/manage_export_form.php:59 msgid "Export targets" msgstr "エクスポートターゲット" -#: ../../enterprise/godmode/menu.php:257 +#: ../../enterprise/godmode/menu.php:248 msgid "Log Collector" msgstr "ログ収集" -#: ../../enterprise/godmode/menu.php:275 +#: ../../enterprise/godmode/menu.php:266 msgid "Password policy" msgstr "パスワードポリシー" -#: ../../enterprise/godmode/menu.php:283 ../../enterprise/include/functions_setup.php:44 -#: ../../enterprise/include/functions_setup.php:108 ../../godmode/extensions.php:140 -#: ../../godmode/setup/setup.php:317 +#: ../../enterprise/godmode/menu.php:274 +#: ../../enterprise/include/functions_setup.php:44 +#: ../../enterprise/include/functions_setup.php:108 +#: ../../godmode/extensions.php:140 ../../godmode/setup/setup.php:317 msgid "Enterprise" msgstr "エンタープライズ" -#: ../../enterprise/godmode/menu.php:296 ../../general/first_task/omnishell.php:31 +#: ../../enterprise/godmode/menu.php:287 +#: ../../general/first_task/omnishell.php:31 #: ../../general/first_task/omnishell.php:34 msgid "Omnishell" msgstr "Omnishell" -#: ../../enterprise/godmode/menu.php:310 ../../enterprise/tools/ipam/ipam.php:453 +#: ../../enterprise/godmode/menu.php:301 ../../enterprise/tools/ipam/ipam.php:453 #: ../../include/functions_reports.php:692 msgid "IPAM" msgstr "IPAM" -#: ../../enterprise/godmode/menu.php:319 ../../godmode/setup/setup.php:190 +#: ../../enterprise/godmode/menu.php:310 ../../godmode/setup/setup.php:190 #: ../../godmode/setup/setup.php:289 msgid "Module Library" msgstr "モジュールライブラリ" -#: ../../enterprise/godmode/menu.php:327 +#: ../../enterprise/godmode/menu.php:318 #: ../../enterprise/godmode/alerts/alert_inventory.php:78 #: ../../enterprise/godmode/alerts/alert_inventory.php:80 msgid "Inventory alerts" @@ -16716,19 +17334,19 @@ msgstr " ポリシー" #: ../../enterprise/godmode/setup/setup_auth.php:319 #: ../../enterprise/godmode/setup/setup_auth.php:380 #: ../../enterprise/godmode/setup/setup_auth.php:546 -#: ../../enterprise/godmode/setup/setup_auth.php:1175 -#: ../../enterprise/godmode/setup/setup_auth.php:1345 +#: ../../enterprise/godmode/setup/setup_auth.php:1173 +#: ../../enterprise/godmode/setup/setup_auth.php:1343 #: ../../enterprise/godmode/setup/setup_acl.php:572 #: ../../enterprise/include/class/DeploymentCenter.class.php:779 -#: ../../enterprise/include/class/AgentRepository.class.php:693 +#: ../../enterprise/include/class/AgentRepository.class.php:708 #: ../../enterprise/include/class/Omnishell.class.php:361 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1734 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3909 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1736 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3911 #: ../../enterprise/operation/services/services.list.php:249 #: ../../enterprise/operation/services/services.list.php:279 #: ../../enterprise/operation/services/services.table_services.php:171 #: ../../enterprise/operation/services/services.table_services.php:201 -#: ../../godmode/agentes/planned_downtime.list.php:327 +#: ../../godmode/agentes/planned_downtime.list.php:364 #: ../../godmode/agentes/planned_downtime.editor.php:1104 #: ../../godmode/agentes/agent_manager.php:340 #: ../../godmode/agentes/agent_manager.php:520 @@ -16737,25 +17355,27 @@ msgstr " ポリシー" #: ../../godmode/massive/massive_delete_modules.php:521 #: ../../godmode/massive/massive_edit_agents.php:650 #: ../../godmode/massive/massive_edit_agents.php:1153 -#: ../../godmode/massive/massive_add_action_alerts.php:216 +#: ../../godmode/massive/massive_add_action_alerts.php:217 #: ../../godmode/massive/massive_edit_modules.php:411 #: ../../godmode/massive/massive_edit_modules.php:497 #: ../../godmode/reporting/create_container.php:573 -#: ../../godmode/events/event_edit_filter.php:436 +#: ../../godmode/events/event_edit_filter.php:472 +#: ../../godmode/events/event_edit_filter.php:483 #: ../../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:2291 +#: ../../include/functions_profile.php:373 ../../include/functions_html.php:2284 +#: ../../include/functions_html.php:2285 ../../include/functions_html.php:2286 +#: ../../include/functions_html.php:2287 ../../include/functions_html.php:2288 +#: ../../include/functions_html.php:2290 ../../include/functions_html.php:2291 #: ../../include/functions_html.php:2292 ../../include/functions_html.php:2293 -#: ../../include/functions_html.php:2294 ../../include/functions_html.php:2295 -#: ../../include/functions_html.php:2297 ../../include/functions_html.php:2298 -#: ../../include/functions_html.php:2299 ../../include/functions_html.php:2300 -#: ../../include/functions_html.php:2301 ../../include/functions_html.php:2313 -#: ../../include/functions_html.php:2329 ../../include/functions_html.php:2345 -#: ../../include/functions_html.php:2361 ../../include/functions_html.php:2377 +#: ../../include/functions_html.php:2294 ../../include/functions_html.php:2306 +#: ../../include/functions_html.php:2322 ../../include/functions_html.php:2338 +#: ../../include/functions_html.php:2354 ../../include/functions_html.php:2370 #: ../../include/lib/Dashboard/Widgets/events_list.php:340 -#: ../../operation/events/events.php:1831 ../../operation/events/events.php:2793 +#: ../../operation/events/events.php:1960 ../../operation/events/events.php:1973 +#: ../../operation/events/events.php:2951 msgid "Any" msgstr "任意" @@ -16771,10 +17391,10 @@ msgstr "ポリシーへ" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 #: ../../godmode/massive/massive_add_alerts.php:324 #: ../../godmode/massive/massive_edit_agents.php:1391 -#: ../../godmode/massive/massive_delete_alerts.php:388 +#: ../../godmode/massive/massive_delete_alerts.php:389 msgid "" -"Unsucessful sending the data, please contact with your administrator or make with " -"less elements." +"Unsucessful sending the data, please contact with your administrator or make " +"with less elements." msgstr "データ処理に失敗しました。管理者に連絡するか要素を少なくしてください。" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366 @@ -16805,41 +17425,41 @@ msgid "Filter module" msgstr "モジュールのフィルタ" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:261 -#: ../../godmode/massive/massive_delete_action_alerts.php:241 +#: ../../godmode/massive/massive_delete_action_alerts.php:242 #: ../../godmode/massive/massive_delete_modules.php:551 #: ../../godmode/massive/massive_add_alerts.php:260 -#: ../../godmode/massive/massive_delete_alerts.php:341 -#: ../../godmode/massive/massive_add_action_alerts.php:220 +#: ../../godmode/massive/massive_delete_alerts.php:342 +#: ../../godmode/massive/massive_add_action_alerts.php:221 #: ../../godmode/massive/massive_edit_modules.php:524 msgid "When select agents" msgstr "エージェント選択時の動作" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:436 ../../extensions/agents_modules.php:439 -#: ../../godmode/agentes/planned_downtime.editor.php:1115 -#: ../../godmode/massive/massive_delete_action_alerts.php:245 +#: ../../extensions/agents_modules.php:436 +#: ../../extensions/agents_modules.php:439 +#: ../../godmode/agentes/planned_downtime.editor.php:1111 +#: ../../godmode/massive/massive_delete_action_alerts.php:246 #: ../../godmode/massive/massive_delete_modules.php:555 #: ../../godmode/massive/massive_add_alerts.php:264 -#: ../../godmode/massive/massive_delete_alerts.php:345 -#: ../../godmode/massive/massive_add_action_alerts.php:224 +#: ../../godmode/massive/massive_delete_alerts.php:346 +#: ../../godmode/massive/massive_add_action_alerts.php:225 #: ../../godmode/massive/massive_edit_modules.php:528 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1892 -#: ../../include/functions_html.php:1669 ../../include/functions_html.php:1688 -#: ../../include/functions_html.php:5583 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1895 +#: ../../include/functions_html.php:5576 msgid "Show common modules" msgstr "共通モジュールの表示" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 #: ../../extensions/agents_modules.php:437 -#: ../../godmode/agentes/planned_downtime.editor.php:1116 -#: ../../godmode/massive/massive_delete_action_alerts.php:246 +#: ../../godmode/agentes/planned_downtime.editor.php:1112 +#: ../../godmode/massive/massive_delete_action_alerts.php:247 #: ../../godmode/massive/massive_delete_modules.php:556 #: ../../godmode/massive/massive_add_alerts.php:265 -#: ../../godmode/massive/massive_delete_alerts.php:346 -#: ../../godmode/massive/massive_add_action_alerts.php:225 +#: ../../godmode/massive/massive_delete_alerts.php:347 +#: ../../godmode/massive/massive_add_action_alerts.php:226 #: ../../godmode/massive/massive_edit_modules.php:529 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1893 -#: ../../include/functions_html.php:1670 ../../include/functions_html.php:5584 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1896 +#: ../../include/functions_html.php:5577 msgid "Show all modules" msgstr "全モジュール表示" @@ -16856,8 +17476,9 @@ msgid "No changes have been made." msgstr "変更されませんでした。" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692 -#: ../../enterprise/tools/ipam/ipam.php:300 ../../enterprise/tools/ipam/ipam.php:361 -#: ../../godmode/massive/massive_operations.php:368 +#: ../../enterprise/tools/ipam/ipam.php:300 +#: ../../enterprise/tools/ipam/ipam.php:361 +#: ../../godmode/massive/massive_operations.php:373 #: ../../godmode/massive/massive_edit_plugins.php:921 msgid "Massive operations" msgstr "一括操作" @@ -16865,45 +17486,40 @@ msgstr "一括操作" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 #: ../../godmode/snmpconsole/snmp_alert.php:41 -#: ../../operation/snmpconsole/snmp_view.php:631 -#: ../../operation/snmpconsole/snmp_view.php:1115 -#: ../../operation/snmpconsole/snmp_view.php:1129 +#: ../../include/class/SnmpConsole.class.php:378 +#: ../../include/class/SnmpConsole.class.php:1377 msgid "Cold start (0)" msgstr "Cold start (0)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 #: ../../godmode/snmpconsole/snmp_alert.php:42 -#: ../../operation/snmpconsole/snmp_view.php:632 -#: ../../operation/snmpconsole/snmp_view.php:1116 -#: ../../operation/snmpconsole/snmp_view.php:1133 +#: ../../include/class/SnmpConsole.class.php:379 +#: ../../include/class/SnmpConsole.class.php:1381 msgid "Warm start (1)" msgstr "Warm start (1)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 #: ../../godmode/snmpconsole/snmp_alert.php:43 -#: ../../operation/snmpconsole/snmp_view.php:633 -#: ../../operation/snmpconsole/snmp_view.php:1117 -#: ../../operation/snmpconsole/snmp_view.php:1137 +#: ../../include/class/SnmpConsole.class.php:380 +#: ../../include/class/SnmpConsole.class.php:1385 msgid "Link down (2)" msgstr "Link down (2)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 #: ../../godmode/snmpconsole/snmp_alert.php:44 -#: ../../operation/snmpconsole/snmp_view.php:634 -#: ../../operation/snmpconsole/snmp_view.php:1118 -#: ../../operation/snmpconsole/snmp_view.php:1141 +#: ../../include/class/SnmpConsole.class.php:381 +#: ../../include/class/SnmpConsole.class.php:1389 msgid "Link up (3)" msgstr "Link up (3)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:45 -#: ../../operation/snmpconsole/snmp_view.php:635 -#: ../../operation/snmpconsole/snmp_view.php:1119 -#: ../../operation/snmpconsole/snmp_view.php:1145 +#: ../../include/class/SnmpConsole.class.php:382 +#: ../../include/class/SnmpConsole.class.php:1393 msgid "Authentication failure (4)" msgstr "Authentication failure (4)" @@ -16912,27 +17528,16 @@ msgstr "Authentication failure (4)" #: ../../enterprise/godmode/setup/setup_acl.php:475 #: ../../enterprise/godmode/setup/setup_acl.php:479 #: ../../enterprise/include/class/Aws.cloud.php:347 -#: ../../enterprise/include/functions_ipam.php:1598 ../../extensions/api_checker.php:176 +#: ../../extensions/api_checker.php:260 #: ../../godmode/groups/configure_group.php:250 -#: ../../godmode/users/configure_user.php:1144 -#: ../../godmode/snmpconsole/snmp_alert.php:46 ../../include/functions_graph.php:3065 -#: ../../include/functions_graph.php:3110 ../../include/functions_graph.php:3151 -#: ../../include/functions_graph.php:3193 ../../include/functions_graph.php:3270 -#: ../../include/functions_graph.php:3414 ../../include/functions_graph.php:3522 -#: ../../include/functions_graph.php:3587 ../../include/functions_graph.php:3754 -#: ../../include/functions_graph.php:3766 ../../include/functions_graph.php:3767 -#: ../../include/functions_graph.php:3770 ../../include/functions_graph.php:3775 -#: ../../include/functions_graph.php:3776 ../../include/functions_graph.php:3779 -#: ../../include/functions_graph.php:4778 ../../include/functions_reporting.php:5186 -#: ../../include/functions_reporting.php:5198 ../../include/functions_reporting.php:5199 -#: ../../include/functions_reporting.php:5202 ../../include/functions_reporting.php:5207 -#: ../../include/functions_reporting.php:5208 ../../include/functions_reporting.php:5211 -#: ../../operation/users/user_edit.php:365 -#: ../../operation/snmpconsole/snmp_statistics.php:218 -#: ../../operation/snmpconsole/snmp_statistics.php:275 -#: ../../operation/snmpconsole/snmp_view.php:636 -#: ../../operation/snmpconsole/snmp_view.php:1120 -#: ../../operation/snmpconsole/snmp_view.php:1149 +#: ../../godmode/users/configure_user.php:1355 +#: ../../godmode/snmpconsole/snmp_alert.php:46 +#: ../../godmode/massive/massive_edit_users.php:280 +#: ../../include/functions_graph.php:3543 +#: ../../include/class/SnmpConsole.class.php:383 +#: ../../include/class/SnmpConsole.class.php:1370 +#: ../../include/class/SnmpConsole.class.php:1397 +#: ../../operation/users/user_edit.php:439 #: ../../operation/gis_maps/render_view.php:167 msgid "Other" msgstr "その他" @@ -16957,18 +17562,19 @@ msgstr "SNMP アラートを選択する必要があります" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258 msgid "" -"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single value, " -"each Custom OIDs/Datas." +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " +"value, each Custom OIDs/Datas." msgstr "" -"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/データ " -"フィールドで検索します。" +"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/" +"データ フィールドで検索します。" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305 #: ../../godmode/snmpconsole/snmp_alert.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:1166 ../../include/functions_snmp.php:433 -#: ../../operation/snmpconsole/snmp_view.php:628 +#: ../../godmode/snmpconsole/snmp_alert.php:1166 +#: ../../include/functions_snmp.php:433 +#: ../../include/class/SnmpConsole.class.php:475 msgid "Trap type" msgstr "トラップタイプ" @@ -17001,10 +17607,10 @@ msgid "Custom Value/OID" msgstr "カスタム値/OID" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:125 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:126 #: ../../godmode/snmpconsole/snmp_alert.php:790 #: ../../godmode/snmpconsole/snmp_alert.php:1259 -#: ../../operation/snmpconsole/snmp_view.php:854 +#: ../../include/class/SnmpConsole.class.php:337 msgid "SNMP Agent" msgstr "SNMPエージェント" @@ -17037,7 +17643,7 @@ msgstr "他の値" #: ../../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:2023 +#: ../../include/rest-api/models/VisualConsole/Item.php:2024 msgid "Position" msgstr "位置" @@ -17072,7 +17678,7 @@ msgid "SMNP community" msgstr "SNMPコミュニティ" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 -#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/agentes/module_manager_editor_network.php:270 #: ../../godmode/massive/massive_edit_modules.php:806 msgid "SNMP OID" msgstr "SNMP OID" @@ -17081,28 +17687,30 @@ msgstr "SNMP OID" #: ../../godmode/agentes/module_manager_editor_wmi.php:45 #: ../../godmode/agentes/module_manager_editor_network.php:80 #: ../../godmode/massive/massive_edit_modules.php:821 -#: ../../include/class/AgentWizard.class.php:623 +#: ../../include/class/AgentWizard.class.php:632 #: ../../include/functions_snmp_browser.php:702 msgid "Target IP" msgstr "対象IP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:856 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:976 #: ../../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/agentes/module_manager_editor_network.php:223 #: ../../godmode/massive/massive_edit_modules.php:839 -#: ../../godmode/wizards/HostDevices.class.php:1199 -#: ../../include/class/AgentWizard.class.php:734 +#: ../../godmode/wizards/HostDevices.class.php:1203 +#: ../../include/class/CredentialStore.class.php:1130 +#: ../../include/class/CredentialStore.class.php:1404 +#: ../../include/class/AgentWizard.class.php:817 msgid "SNMP version" msgstr "SNMPバージョン" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 #: ../../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/agentes/module_manager_editor_network.php:380 #: ../../godmode/massive/massive_edit_modules.php:852 -#: ../../godmode/wizards/HostDevices.class.php:1259 +#: ../../godmode/wizards/HostDevices.class.php:1281 #: ../../include/functions_snmp_browser.php:826 msgid "Auth user" msgstr "認証ユーザ" @@ -17110,31 +17718,33 @@ msgstr "認証ユーザ" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../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/agentes/module_manager_editor_network.php:393 #: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/wizards/HostDevices.class.php:1270 +#: ../../godmode/wizards/HostDevices.class.php:1323 #: ../../include/functions_snmp_browser.php:836 msgid "Auth password" msgstr "認証パスワード" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 -#: ../../godmode/agentes/module_manager_editor_network.php:349 -#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/agentes/module_manager_editor_network.php:393 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:861 #: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1272 -#: ../../godmode/wizards/HostDevices.class.php:1303 +#: ../../godmode/wizards/HostDevices.class.php:1325 +#: ../../godmode/wizards/HostDevices.class.php:1356 msgid "The pass length must be eight character minimum." msgstr "パスワード長は、最低8文字以上必要です。" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 #: ../../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/agentes/module_manager_editor_network.php:413 #: ../../godmode/massive/massive_edit_modules.php:863 -#: ../../godmode/wizards/HostDevices.class.php:1286 -#: ../../include/class/AgentWizard.class.php:868 +#: ../../godmode/wizards/HostDevices.class.php:1339 +#: ../../include/class/CredentialStore.class.php:1220 +#: ../../include/class/CredentialStore.class.php:1511 +#: ../../include/class/AgentWizard.class.php:951 #: ../../include/functions_snmp_browser.php:853 msgid "Privacy method" msgstr "暗号化方式" @@ -17142,9 +17752,11 @@ msgstr "暗号化方式" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../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/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1291 +#: ../../godmode/wizards/HostDevices.class.php:1344 +#: ../../include/class/CredentialStore.class.php:1229 +#: ../../include/class/CredentialStore.class.php:1520 #: ../../include/functions_snmp_browser.php:856 msgid "DES" msgstr "DES" @@ -17152,19 +17764,23 @@ msgstr "DES" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 #: ../../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/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1292 +#: ../../godmode/wizards/HostDevices.class.php:1345 +#: ../../include/class/CredentialStore.class.php:1228 +#: ../../include/class/CredentialStore.class.php:1518 #: ../../include/functions_snmp_browser.php:857 msgid "AES" msgstr "AES" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808 #: ../../godmode/modules/manage_network_components_form_network.php:136 -#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1301 -#: ../../include/class/AgentWizard.class.php:882 +#: ../../godmode/wizards/HostDevices.class.php:1354 +#: ../../include/class/CredentialStore.class.php:1237 +#: ../../include/class/CredentialStore.class.php:1532 +#: ../../include/class/AgentWizard.class.php:965 #: ../../include/functions_snmp_browser.php:867 msgid "Privacy pass" msgstr "暗号化パスワード" @@ -17172,9 +17788,9 @@ msgstr "暗号化パスワード" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 #: ../../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/agentes/module_manager_editor_network.php:435 #: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1317 +#: ../../godmode/wizards/HostDevices.class.php:1308 #: ../../include/functions_snmp_browser.php:877 msgid "Auth method" msgstr "認証方式" @@ -17182,10 +17798,12 @@ msgstr "認証方式" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../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/agentes/module_manager_editor_network.php:438 #: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1322 -#: ../../include/class/Diagnostics.class.php:2175 +#: ../../godmode/wizards/HostDevices.class.php:1313 +#: ../../include/class/Diagnostics.class.php:2183 +#: ../../include/class/CredentialStore.class.php:1194 +#: ../../include/class/CredentialStore.class.php:1484 #: ../../include/functions_snmp_browser.php:880 msgid "MD5" msgstr "MD5" @@ -17193,9 +17811,11 @@ msgstr "MD5" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811 #: ../../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/agentes/module_manager_editor_network.php:439 #: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1323 +#: ../../godmode/wizards/HostDevices.class.php:1314 +#: ../../include/class/CredentialStore.class.php:1195 +#: ../../include/class/CredentialStore.class.php:1486 #: ../../include/functions_snmp_browser.php:881 msgid "SHA" msgstr "SHA" @@ -17203,10 +17823,12 @@ msgstr "SHA" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812 #: ../../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/agentes/module_manager_editor_network.php:452 #: ../../godmode/massive/massive_edit_modules.php:869 -#: ../../godmode/wizards/HostDevices.class.php:1332 -#: ../../include/class/AgentWizard.class.php:809 +#: ../../godmode/wizards/HostDevices.class.php:1292 +#: ../../include/class/CredentialStore.class.php:1149 +#: ../../include/class/CredentialStore.class.php:1436 +#: ../../include/class/AgentWizard.class.php:892 #: ../../include/functions_snmp_browser.php:890 msgid "Security level" msgstr "セキュリティレベル" @@ -17214,9 +17836,9 @@ msgstr "セキュリティレベル" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 #: ../../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/agentes/module_manager_editor_network.php:455 #: ../../godmode/massive/massive_edit_modules.php:872 -#: ../../godmode/wizards/HostDevices.class.php:1337 +#: ../../godmode/wizards/HostDevices.class.php:1297 #: ../../include/functions_snmp_browser.php:893 msgid "Not auth and not privacy method" msgstr "認証なし、暗号化なし" @@ -17224,9 +17846,9 @@ msgstr "認証なし、暗号化なし" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816 #: ../../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/agentes/module_manager_editor_network.php:456 #: ../../godmode/massive/massive_edit_modules.php:873 -#: ../../godmode/wizards/HostDevices.class.php:1338 +#: ../../godmode/wizards/HostDevices.class.php:1298 #: ../../include/functions_snmp_browser.php:894 msgid "Auth and not privacy method" msgstr "認証あり、暗号化なし" @@ -17234,9 +17856,9 @@ msgstr "認証あり、暗号化なし" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817 #: ../../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/agentes/module_manager_editor_network.php:457 #: ../../godmode/massive/massive_edit_modules.php:874 -#: ../../godmode/wizards/HostDevices.class.php:1339 +#: ../../godmode/wizards/HostDevices.class.php:1299 #: ../../include/functions_snmp_browser.php:895 msgid "Auth and privacy method" msgstr "認証あり、暗号化あり" @@ -17244,35 +17866,38 @@ msgstr "認証あり、暗号化あり" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 #: ../../enterprise/operation/agentes/tag_view.php:157 #: ../../godmode/agentes/module_manager_editor_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:1188 +#: ../../godmode/agentes/module_manager_editor_common.php:1202 #: ../../godmode/massive/massive_edit_modules.php:892 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3863 -#: ../../include/ajax/heatmap.ajax.php:196 ../../include/functions_graph.php:5257 -#: ../../include/functions_treeview.php:116 ../../operation/heatmap.php:96 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3882 +#: ../../include/ajax/heatmap.ajax.php:197 ../../include/functions_graph.php:5049 +#: ../../include/functions_treeview.php:116 ../../operation/heatmap.php:100 #: ../../operation/agentes/status_monitor.php:518 msgid "Not assigned" msgstr "未割当" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 #: ../../enterprise/godmode/setup/setup_module_library.php:49 -#: ../../enterprise/include/functions_ui.php:102 ../../extensions/quick_shell.php:174 +#: ../../enterprise/include/functions_ui.php:102 +#: ../../extensions/quick_shell.php:174 #: ../../godmode/modules/manage_network_components_form_wmi.php:47 #: ../../godmode/agentes/module_manager_editor_wmi.php:103 #: ../../godmode/massive/massive_edit_modules.php:906 -#: ../../include/class/CredentialStore.class.php:957 -#: ../../include/class/AgentWizard.class.php:667 +#: ../../include/functions_ui.php:6918 +#: ../../include/class/CredentialStore.class.php:997 +#: ../../include/class/CredentialStore.class.php:1367 +#: ../../include/class/AgentWizard.class.php:676 msgid "Username" msgstr "ユーザ名" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855 -#: ../../godmode/agentes/module_manager_editor_common.php:731 +#: ../../godmode/agentes/module_manager_editor_common.php:745 #: ../../godmode/massive/massive_edit_modules.php:912 msgid "Export target" msgstr "データのエクスポート" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880 #: ../../enterprise/godmode/services/services.service.php:684 -#: ../../enterprise/godmode/servers/HA_cluster.php:175 +#: ../../enterprise/godmode/servers/HA_cluster.php:180 #: ../../enterprise/operation/services/massive/services.create.php:714 #: ../../enterprise/operation/services/services.list.php:278 #: ../../enterprise/operation/services/services.table_services.php:200 @@ -17307,16 +17932,16 @@ msgid "Linked" msgstr "リンク済" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/agentes/module_manager.php:1075 -#: ../../godmode/agentes/module_manager.php:1078 +#: ../../godmode/agentes/module_manager.php:1111 +#: ../../godmode/agentes/module_manager.php:1114 #: ../../godmode/massive/massive_edit_modules.php:1067 -#: ../../include/ajax/module.php:1092 ../../include/ajax/module.php:1095 +#: ../../include/ajax/module.php:1105 ../../include/ajax/module.php:1108 msgid "Unlinked" msgstr "未リンク" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000 -#: ../../godmode/modules/manage_network_components_form_common.php:315 -#: ../../godmode/agentes/module_manager_editor_common.php:764 +#: ../../godmode/modules/manage_network_components_form_common.php:326 +#: ../../godmode/agentes/module_manager_editor_common.php:778 #: ../../godmode/massive/massive_edit_modules.php:1076 msgid "Discard unknown events" msgstr "不明イベントを削除" @@ -17327,8 +17952,7 @@ msgid "The module still store data but the alerts and events will be stop" msgstr "モジュールはデータを保存しますが、アラートとイベントは停止します" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 -#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/agentes/module_manager_editor_common.php:1149 #: ../../godmode/massive/massive_edit_modules.php:1122 msgid "Timeout" msgstr "タイムアウト" @@ -17340,14 +17964,14 @@ msgstr "エージェントがモジュールの実行完了を待つ秒数。" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070 #: ../../godmode/modules/manage_network_components_form_network.php:209 -#: ../../godmode/agentes/module_manager_editor_network.php:281 +#: ../../godmode/agentes/module_manager_editor_network.php:324 #: ../../godmode/massive/massive_edit_modules.php:1148 msgid "TCP send" msgstr "TCP 送信文字列" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073 #: ../../godmode/modules/manage_network_components_form_network.php:216 -#: ../../godmode/agentes/module_manager_editor_network.php:295 +#: ../../godmode/agentes/module_manager_editor_network.php:338 #: ../../godmode/massive/massive_edit_modules.php:1151 msgid "TCP receive" msgstr "TCP 受信文字列" @@ -17361,7 +17985,7 @@ msgstr "WMI クエリ" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079 #: ../../godmode/modules/manage_network_components_form_wmi.php:33 -#: ../../godmode/modules/manage_network_components_form_wizard.php:685 +#: ../../godmode/modules/manage_network_components_form_wizard.php:691 #: ../../godmode/agentes/module_manager_editor_wmi.php:151 #: ../../godmode/massive/massive_edit_modules.php:1157 msgid "Key string" @@ -17385,16 +18009,17 @@ msgstr "プラグイン" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103 #: ../../godmode/modules/manage_network_components_form_network.php:223 -#: ../../godmode/agentes/module_manager_editor_network.php:433 +#: ../../godmode/agentes/module_manager_editor_network.php:477 #: ../../godmode/massive/massive_edit_plugins.php:480 #: ../../godmode/massive/massive_edit_modules.php:1181 #: ../../godmode/alerts/configure_alert_command.php:246 -#: ../../godmode/alerts/alert_actions.php:272 ../../godmode/alerts/alert_actions.php:327 +#: ../../godmode/alerts/alert_actions.php:272 +#: ../../godmode/alerts/alert_actions.php:327 #: ../../godmode/alerts/configure_alert_action.php:247 #: ../../godmode/events/event_responses.editor.php:157 #: ../../godmode/events/event_responses.editor.php:164 -#: ../../godmode/servers/plugin.php:429 ../../godmode/servers/plugin.php:434 -#: ../../godmode/servers/plugin.php:817 +#: ../../godmode/servers/plugin.php:422 ../../godmode/servers/plugin.php:427 +#: ../../godmode/servers/plugin.php:796 #: ../../include/class/ManageNetScanScripts.class.php:434 #: ../../include/class/ExternalTools.class.php:353 msgid "Command" @@ -17403,14 +18028,14 @@ msgstr "コマンド" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 #: ../../enterprise/include/class/DeploymentCenter.class.php:1397 #: ../../godmode/modules/manage_network_components_form_network.php:242 -#: ../../godmode/agentes/module_manager_editor_network.php:459 +#: ../../godmode/agentes/module_manager_editor_network.php:503 #: ../../godmode/massive/massive_edit_modules.php:1198 msgid "Credential identifier" msgstr "認証情報識別子" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135 #: ../../godmode/modules/manage_network_components_form_network.php:258 -#: ../../godmode/agentes/module_manager_editor_network.php:477 +#: ../../godmode/agentes/module_manager_editor_network.php:521 #: ../../godmode/massive/massive_edit_modules.php:1213 msgid "Inherited" msgstr "継承" @@ -17439,11 +18064,11 @@ msgstr "拡張情報表示" #: ../../enterprise/godmode/admin_access_logs.php:99 msgid "" -"The security check cannot be performed. There are no data in tsession_extended to " -"check the hash." +"The security check cannot be performed. There are no data in tsession_extended " +"to check the hash." msgstr "" -"セキュリティチェックを実行できません。ハッシュをチェックするための tsession_extended " -"にデータがありません。" +"セキュリティチェックを実行できません。ハッシュをチェックするための " +"tsession_extended にデータがありません。" #: ../../enterprise/godmode/admin_access_logs.php:108 msgid "Security check is ok." @@ -17467,8 +18092,8 @@ msgstr "グループ ACL" #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2544 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2674 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2595 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2677 msgid "Condition" msgstr "状態" @@ -17477,7 +18102,7 @@ msgid "Alert groups" msgstr "アラートグループ" #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1081 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1083 #: ../../godmode/snmpconsole/snmp_alert.php:1130 #: ../../godmode/alerts/configure_alert_template.php:749 msgid "Disable event" @@ -17497,7 +18122,7 @@ msgstr "アラートの追加" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:91 #: ../../godmode/massive/massive_add_alerts.php:168 #: ../../godmode/massive/massive_add_action_alerts.php:160 -#: ../../godmode/alerts/alert_list.php:271 +#: ../../godmode/alerts/alert_list.php:278 msgid "Successfully added" msgstr "追加されました。" @@ -17511,21 +18136,24 @@ msgstr "アラート名" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:221 #: ../../enterprise/operation/agentes/policy_view.php:261 -#: ../../godmode/snmpconsole/snmp_alert.php:1275 ../../godmode/alerts/alert_view.php:99 -#: ../../include/functions_reporting_html.php:5368 -#: ../../include/ajax/alert_list.ajax.php:295 ../../include/ajax/alert_list.ajax.php:320 +#: ../../godmode/snmpconsole/snmp_alert.php:1275 +#: ../../godmode/alerts/alert_view.php:99 +#: ../../include/functions_reporting_html.php:5407 +#: ../../include/ajax/alert_list.ajax.php:295 +#: ../../include/ajax/alert_list.ajax.php:320 #: ../../include/functions_treeview.php:455 #: ../../include/class/AgentsAlerts.class.php:893 msgid "Last fired" msgstr "通知日時" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:261 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3228 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3230 #: ../../enterprise/operation/agentes/policy_view.php:348 -#: ../../godmode/alerts/alert_list.list.php:576 ../../godmode/alerts/alert_view.php:108 -#: ../../mobile/operation/alerts.php:327 ../../include/functions_ui.php:1256 +#: ../../godmode/alerts/alert_list.list.php:576 +#: ../../godmode/alerts/alert_view.php:108 ../../mobile/operation/alerts.php:327 +#: ../../include/functions_ui.php:1256 #: ../../include/class/AgentsAlerts.class.php:940 -#: ../../include/functions_reporting.php:12647 +#: ../../include/functions_reporting.php:12962 msgid "Alert disabled" msgstr "無効アラート" @@ -17680,9 +18308,12 @@ msgstr "ランダムな名前" #: ../../enterprise/godmode/services/services.service.php:603 #: ../../enterprise/operation/services/massive/services.create.php:683 -msgid "This group will be used also to control access to this service and its elements." +msgid "" +"This group will be used also to control access to this service and its " +"elements." msgstr "" -"このグループは、このサービスとその要素へのアクセスを制御するためにも使用されます。" +"このグループは、このサービスとその要素へのアクセスを制御するためにも使用されま" +"す。" #: ../../enterprise/godmode/services/services.service.php:619 msgid "Server assigned" @@ -17715,7 +18346,7 @@ msgstr "データを保存するエージェント" #: ../../enterprise/operation/services/services.list.php:275 #: ../../enterprise/operation/services/services.table_services.php:197 #: ../../enterprise/tools/ipam/ipam_list.php:696 -#: ../../godmode/wizards/HostDevices.class.php:807 +#: ../../godmode/wizards/HostDevices.class.php:809 #: ../../godmode/wizards/DiscoveryTaskList.class.php:714 #: ../../include/class/CustomNetScan.class.php:529 msgid "Manual" @@ -17748,8 +18379,9 @@ msgid "Cascade protection enabled" msgstr "関連障害検知抑制が有効" #: ../../enterprise/godmode/services/services.service.php:809 -msgid "Enable Sunburst" -msgstr "サンバーストの有効化" +#: ../../include/lib/Dashboard/Widgets/service_map.php:331 +msgid "Show sunburst by default" +msgstr "デフォルトでサンバースト表示" #: ../../enterprise/godmode/services/services.service.php:819 msgid "General Data" @@ -17772,20 +18404,21 @@ msgstr "SLA 制限" #: ../../enterprise/godmode/services/services.service.php:865 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 -#: ../../enterprise/include/functions_reporting_csv.php:1527 -#: ../../include/functions_reports.php:699 ../../include/functions_reporting.php:959 +#: ../../enterprise/include/functions_reporting_csv.php:1531 +#: ../../include/functions_reports.php:699 +#: ../../include/functions_reporting.php:960 msgid "S.L.A." msgstr "SLA" #: ../../enterprise/godmode/services/services.service.php:874 msgid "" "Here are described the alert templates, which will use their default actions.\n" -"\t\tYou can modify the default behaviour editing alerts in the agent who stores data " -"and alert definitions about the service and the SLA status." +"\t\tYou can modify the default behaviour editing alerts in the agent who " +"stores data and alert definitions about the service and the SLA status." msgstr "" "アラートテンプレートの説明です。デフォルトのアクションで利用されます。\n" -"\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントでアラー" -"トを編集することによりデフォルトの動作を変更できます。" +"\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントで" +"アラートを編集することによりデフォルトの動作を変更できます。" #: ../../enterprise/godmode/services/services.service.php:900 #: ../../enterprise/operation/services/massive/services.create.php:920 @@ -17809,79 +18442,83 @@ msgstr "SLA 障害サービスアラート" #: ../../enterprise/godmode/services/services.service.php:1039 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2568 -#: ../../enterprise/include/functions_reporting_csv.php:1585 -#: ../../enterprise/include/functions_reporting_csv.php:1631 -#: ../../enterprise/include/functions_reporting_csv.php:1949 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2619 +#: ../../enterprise/include/functions_reporting_csv.php:1589 +#: ../../enterprise/include/functions_reporting_csv.php:1635 +#: ../../enterprise/include/functions_reporting_csv.php:1953 #: ../../enterprise/include/class/DeploymentCenter.class.php:1668 #: ../../enterprise/include/class/DeploymentCenter.class.php:1720 #: ../../enterprise/include/class/DatabaseHA.class.php:390 #: ../../enterprise/include/class/DatabaseHA.class.php:625 #: ../../enterprise/include/class/DatabaseHA.class.php:727 -#: ../../enterprise/include/class/AgentRepository.class.php:941 +#: ../../enterprise/include/class/AgentRepository.class.php:967 #: ../../enterprise/include/class/LogSource.class.php:844 #: ../../enterprise/include/class/ManageBackups.class.php:292 #: ../../enterprise/include/class/ManageBackups.class.php:445 -#: ../../enterprise/include/functions_reporting.php:1883 -#: ../../enterprise/include/functions_reporting.php:2930 -#: ../../enterprise/include/functions_reporting.php:3186 -#: ../../enterprise/include/functions_reporting.php:3918 -#: ../../enterprise/include/functions_reporting.php:4187 -#: ../../enterprise/include/functions_reporting.php:4833 -#: ../../enterprise/include/functions_reporting.php:6150 -#: ../../enterprise/include/functions_reporting.php:6188 +#: ../../enterprise/include/functions_reporting.php:1884 +#: ../../enterprise/include/functions_reporting.php:2931 +#: ../../enterprise/include/functions_reporting.php:3187 +#: ../../enterprise/include/functions_reporting.php:3919 +#: ../../enterprise/include/functions_reporting.php:4188 +#: ../../enterprise/include/functions_reporting.php:4834 +#: ../../enterprise/include/functions_reporting.php:6151 +#: ../../enterprise/include/functions_reporting.php:6189 #: ../../enterprise/include/functions_services.php:2084 -#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/include/functions_ux_console.php:483 #: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:384 -#: ../../enterprise/operation/agentes/wux_console_view.php:424 +#: ../../enterprise/operation/agentes/ux_console_view.php:391 +#: ../../enterprise/operation/agentes/wux_console_view.php:407 #: ../../extensions/module_groups.php:53 -#: ../../godmode/massive/massive_operations.php:370 -#: ../../godmode/setup/setup_general.php:789 ../../godmode/setup/setup_general.php:807 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2685 -#: ../../include/functions_reporting_html.php:663 -#: ../../include/functions_reporting_html.php:858 -#: ../../include/functions_reporting_html.php:3461 -#: ../../include/functions_reporting_html.php:4760 ../../include/functions_db.php:1933 +#: ../../godmode/massive/massive_operations.php:375 +#: ../../godmode/setup/setup_general.php:870 +#: ../../godmode/setup/setup_general.php:888 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2688 +#: ../../include/functions_reporting_html.php:664 +#: ../../include/functions_reporting_html.php:859 +#: ../../include/functions_reporting_html.php:3474 +#: ../../include/functions_reporting_html.php:4780 +#: ../../include/functions_db.php:1974 #: ../../include/class/ConfigPEN.class.php:668 #: ../../include/class/ConfigPEN.class.php:692 -#: ../../include/class/SatelliteAgent.class.php:672 -#: ../../include/class/HelpFeedBack.class.php:369 -#: ../../include/class/CredentialStore.class.php:1241 -#: ../../include/class/ModuleTemplates.class.php:1381 +#: ../../include/class/SatelliteAgent.class.php:1126 +#: ../../include/class/HelpFeedBack.class.php:370 +#: ../../include/class/CredentialStore.class.php:1668 +#: ../../include/class/ModuleTemplates.class.php:1382 #: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/class/AgentWizard.class.php:6040 +#: ../../include/class/AgentWizard.class.php:6215 #: ../../include/lib/Dashboard/Widgets/maps_status.php:362 -#: ../../operation/agentes/pandora_networkmap.editor.php:602 -#: ../../operation/snmpconsole/snmp_browser.php:645 +#: ../../operation/agentes/pandora_networkmap.editor.php:633 +#: ../../operation/snmpconsole/snmp_browser.php:643 msgid "OK" msgstr "OK" #: ../../enterprise/godmode/services/services.service.php:1042 msgid "" -"This change in the service configuration will delete the history of the service " -"modules. Do you wish to continue?" +"This change in the service configuration will delete the history of the " +"service modules. Do you wish to continue?" msgstr "" -"このサービス設定の変更により、サービスモジュールの履歴が削除されます。 続行しますか?" +"このサービス設定の変更により、サービスモジュールの履歴が削除されます。 続行しま" +"すか?" #: ../../enterprise/godmode/services/services.service.php:1044 msgid "" -"This change in the service configuration will prevent the SLA modules from being " -"created. Do you wish to continue?" +"This change in the service configuration will prevent the SLA modules from " +"being created. Do you wish to continue?" msgstr "" -"このサービス設定の変更により、SLA モジュールを作成できなくなります。 続行しますか?" +"このサービス設定の変更により、SLA モジュールを作成できなくなります。 続行します" +"か?" #: ../../enterprise/godmode/services/services.elements.php:72 msgid "Invalid service" msgstr "不正なサービスです" #: ../../enterprise/godmode/services/services.elements.php:99 -#: ../../enterprise/include/functions_reporting.php:2536 -#: ../../enterprise/include/functions_reporting.php:3480 -#: ../../enterprise/include/functions_reporting.php:4455 -#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1069 -#: ../../include/functions_reporting.php:9261 -#: ../../operation/agentes/pandora_networkmap.php:778 +#: ../../enterprise/include/functions_reporting.php:2537 +#: ../../enterprise/include/functions_reporting.php:3481 +#: ../../enterprise/include/functions_reporting.php:4456 +#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1070 +#: ../../include/functions_reporting.php:9508 +#: ../../operation/agentes/pandora_networkmap.php:789 msgid "Dynamic" msgstr "動的" @@ -17902,7 +18539,8 @@ msgstr "カスタムフィールドマッチを追加" #: ../../enterprise/godmode/services/services.elements.php:258 msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." msgstr "" -"フィルタに '名前' と '値' の両方が定義される必要があります。そうでなければ無視します。" +"フィルタに '名前' と '値' の両方が定義される必要があります。そうでなければ無視" +"します。" #: ../../enterprise/godmode/services/services.elements.php:263 msgid "MySQL Regular expressions case sensitive." @@ -17999,24 +18637,27 @@ msgstr "サービス要素編集" #: ../../enterprise/godmode/services/services.elements.php:883 #: ../../enterprise/godmode/services/services.elements.php:894 +#: ../../enterprise/godmode/setup/setup.php:557 +#: ../../enterprise/godmode/setup/setup.php:573 #: ../../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:885 -#: ../../enterprise/include/class/Omnishell.class.php:1083 +#: ../../enterprise/include/class/AgentRepository.class.php:911 +#: ../../enterprise/include/class/Omnishell.class.php:1085 #: ../../enterprise/include/class/LogSource.class.php:788 #: ../../enterprise/include/class/ManageBackups.class.php:473 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1059 -#: ../../include/ajax/snmp_browser.ajax.php:260 ../../include/functions_ui.php:294 -#: ../../include/class/ConfigPEN.class.php:737 -#: ../../include/class/SatelliteAgent.class.php:613 -#: ../../include/class/HelpFeedBack.class.php:359 -#: ../../include/class/Diagnostics.class.php:2087 -#: ../../include/class/CredentialStore.class.php:1185 -#: ../../include/class/ModuleTemplates.class.php:1417 +#: ../../include/ajax/snmp_browser.ajax.php:260 +#: ../../include/functions_ui.php:294 ../../include/class/ConfigPEN.class.php:737 +#: ../../include/class/SatelliteAgent.class.php:1067 +#: ../../include/class/HelpFeedBack.class.php:360 +#: ../../include/class/Diagnostics.class.php:2095 +#: ../../include/class/CredentialStore.class.php:1612 +#: ../../include/class/ModuleTemplates.class.php:1418 +#: ../../include/class/SatelliteCollection.class.php:630 #: ../../include/class/WebServerModuleDebug.class.php:359 -#: ../../include/class/AgentWizard.class.php:5834 -#: ../../operation/visual_console/view.php:806 +#: ../../include/class/AgentWizard.class.php:6009 +#: ../../operation/visual_console/view.php:919 msgid "Success" msgstr "成功" @@ -18032,238 +18673,273 @@ msgstr "要素編集" msgid "Method does not exist" msgstr "メソッドがありません" -#: ../../enterprise/godmode/setup/setup_history.php:241 +#: ../../enterprise/godmode/setup/setup_history.php:248 msgid "Configure connection target" msgstr "接続対象設定" -#: ../../enterprise/godmode/setup/setup_history.php:255 +#: ../../enterprise/godmode/setup/setup_history.php:262 msgid "Active to historical settings" msgstr "ヒストリ設定有効化" -#: ../../enterprise/godmode/setup/setup_history.php:274 +#: ../../enterprise/godmode/setup/setup_history.php:281 #, 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." +"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 日後にメインのデータベースから削除されること" -"に注意してください。" +"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒス" +"トリデータベースに送信されます。 データは %d 日後にメインのデータベースから削除" +"されることに注意してください。" -#: ../../enterprise/godmode/setup/setup_history.php:280 +#: ../../enterprise/godmode/setup/setup_history.php:287 msgid "Data days old to keep in active database" msgstr "メインのデータベースに保持するデータの日数" -#: ../../enterprise/godmode/setup/setup_history.php:298 +#: ../../enterprise/godmode/setup/setup_history.php:305 #, php-format msgid "" -"String 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." +"String 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 日後にメインのデータベースから削除されること" -"に注意してください。" +"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒス" +"トリデータベースに送信されます。 データは %d 日後にメインのデータベースから削除" +"されることに注意してください。" -#: ../../enterprise/godmode/setup/setup_history.php:305 +#: ../../enterprise/godmode/setup/setup_history.php:312 msgid "String data days old to keep in active database" msgstr "メインのデータベースに保持する文字列データの日数" -#: ../../enterprise/godmode/setup/setup_history.php:320 +#: ../../enterprise/godmode/setup/setup_history.php:327 msgid "" "Number of rows to be sent to historical database each 'delay' seconds. If you " "experience issues running pandora_db, try decreasing this value." msgstr "" -"'delay' 秒ごとにヒストリデータベースに送信される行数。 pandora_db の実行で問題が発生し" -"た場合は、この値を減らしてみてください。" +"'delay' 秒ごとにヒストリデータベースに送信される行数。 pandora_db の実行で問題" +"が発生した場合は、この値を減らしてみてください。" -#: ../../enterprise/godmode/setup/setup_history.php:324 +#: ../../enterprise/godmode/setup/setup_history.php:331 msgid "Transference block size (Step)" msgstr "転送ブロックサイズ (ステップ)" -#: ../../enterprise/godmode/setup/setup_history.php:329 +#: ../../enterprise/godmode/setup/setup_history.php:336 msgid "Delay between transferences (seconds)" msgstr "転送間の遅延 (秒)" -#: ../../enterprise/godmode/setup/setup_history.php:334 +#: ../../enterprise/godmode/setup/setup_history.php:341 msgid "Historical data settings" msgstr "ヒストリデータ設定" -#: ../../enterprise/godmode/setup/setup_history.php:336 +#: ../../enterprise/godmode/setup/setup_history.php:343 msgid "Maximum historical data age (days)" msgstr "最大ヒストリデータ保存期間 (日)" -#: ../../enterprise/godmode/setup/setup_history.php:341 +#: ../../enterprise/godmode/setup/setup_history.php:348 msgid "Maximum historical string data age (days)" msgstr "最大ヒストリ文字列データ保存期間 (日)" -#: ../../enterprise/godmode/setup/setup_history.php:346 +#: ../../enterprise/godmode/setup/setup_history.php:353 msgid "Data older than 'days' is compacted in order to improve disk utilization." -msgstr "設定した '日' より古いデータは、ディスク使用率を向上させるために圧縮されます。" +msgstr "" +"設定した '日' より古いデータは、ディスク使用率を向上させるために圧縮されます。" -#: ../../enterprise/godmode/setup/setup_history.php:351 +#: ../../enterprise/godmode/setup/setup_history.php:358 msgid "" "Automatically create partitions on specific database IDB files (tagente_datos, " "tagente_datos_string, tevento). Monthly partitions." msgstr "" -"特定のデータベースの IDB ファイル(tagente_datos, tagente_datos_string, tevento)にパー" -"ティションを自動的に作成します。 月次のパーティションです。" +"特定のデータベースの IDB ファイル(tagente_datos, tagente_datos_string, tevento)" +"にパーティションを自動的に作成します。 月次のパーティションです。" -#: ../../enterprise/godmode/setup/setup_history.php:355 +#: ../../enterprise/godmode/setup/setup_history.php:362 msgid "Automatic partition of big tables." msgstr "大きなテーブルの自動パーティション" -#: ../../enterprise/godmode/setup/setup_history.php:366 +#: ../../enterprise/godmode/setup/setup_history.php:373 msgid "Historical events settings" msgstr "ヒストリイベント設定" -#: ../../enterprise/godmode/setup/setup_history.php:377 +#: ../../enterprise/godmode/setup/setup_history.php:384 #, 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." +"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 日後にメインのデータベースから削除されることに注" -"意してください。" +"イベントは、指定された最大日数の間メインのデータベースに残り、その後、ヒストリ" +"データベースに転送されます。 イベントは %d 日後にメインのデータベースから削除さ" +"れることに注意してください。" -#: ../../enterprise/godmode/setup/setup_history.php:383 +#: ../../enterprise/godmode/setup/setup_history.php:390 msgid "Events days old to keep in active database" msgstr "メインのデータベースに保持するイベントの日数" -#: ../../enterprise/godmode/setup/setup_history.php:398 +#: ../../enterprise/godmode/setup/setup_history.php:405 msgid "Events will be purged from historical database after specified days." msgstr "イベントは、指定された日後にヒストリデータベースから削除されます。" -#: ../../enterprise/godmode/setup/setup_history.php:402 +#: ../../enterprise/godmode/setup/setup_history.php:409 msgid "Maximum historical events age (days)" msgstr "最大ヒストリイベント保持期間 (日)" -#: ../../enterprise/godmode/setup/setup_history.php:419 +#: ../../enterprise/godmode/setup/setup_history.php:426 msgid "Enable historical events" msgstr "ヒストリイベント有効化" -#: ../../enterprise/godmode/setup/setup_history.php:431 +#: ../../enterprise/godmode/setup/setup_history.php:438 +#: ../../enterprise/godmode/setup/setup_history.php:510 msgid "Customize settings" msgstr "設定カスタマイズ" -#: ../../enterprise/godmode/setup/setup_history.php:443 +#: ../../enterprise/godmode/setup/setup_history.php:444 +msgid "Historical trap settings" +msgstr "ヒストリトラップ設定" + +#: ../../enterprise/godmode/setup/setup_history.php:455 +#, php-format +msgid "" +"Traps will remain in active database a maximum of specified days, then they " +"will be transferred to historical database. Note traps will be purged from " +"active database after %d days." +msgstr "" +"トラップは、指定された最大日数の間メインのデータベースに残り、その後、ヒストリ" +"データベースに転送されます。 トラップは %d 日後にメインのデータベースから削除さ" +"れることに注意してください。" + +#: ../../enterprise/godmode/setup/setup_history.php:462 +msgid "Days old to keep in active database" +msgstr "メインのデータベースに保持するデータの日数" + +#: ../../enterprise/godmode/setup/setup_history.php:477 +msgid "Traps will be purged from historical database after specified days." +msgstr "トラップは、指定された日後にヒストリデータベースから削除されます。" + +#: ../../enterprise/godmode/setup/setup_history.php:481 +msgid "Maximum historical traps age (days)" +msgstr "最大ヒストリトラップデータ保存期間 (日)" + +#: ../../enterprise/godmode/setup/setup_history.php:498 +msgid "Enable historical traps" +msgstr "ヒストリトラップ有効化" + +#: ../../enterprise/godmode/setup/setup_history.php:521 msgid "Enable historical database" msgstr "ヒストリデータベース有効化" -#: ../../enterprise/godmode/setup/setup_history.php:467 +#: ../../enterprise/godmode/setup/setup_history.php:545 msgid "History database connection is available." msgstr "ヒストリデータベース接続が可能です。" -#: ../../enterprise/godmode/setup/setup_history.php:474 +#: ../../enterprise/godmode/setup/setup_history.php:552 #, php-format msgid "History database connection failed: %s" msgstr "ヒストリデータベース接続に失敗しました: %s" -#: ../../enterprise/godmode/setup/setup_history.php:490 +#: ../../enterprise/godmode/setup/setup_history.php:568 msgid "History database schema is installed." msgstr "ヒストリデータベーススキーマをインストールしました。" -#: ../../enterprise/godmode/setup/setup_history.php:499 +#: ../../enterprise/godmode/setup/setup_history.php:577 #, php-format msgid "Database is not installed: %s" msgstr "データベースがインストールされていません: %s" -#: ../../enterprise/godmode/setup/setup_history.php:504 +#: ../../enterprise/godmode/setup/setup_history.php:582 msgid "Install database schema" msgstr "データベーススキーマのインストール" -#: ../../enterprise/godmode/setup/setup_history.php:505 +#: ../../enterprise/godmode/setup/setup_history.php:583 msgid "This action will install the schema into the target, are you sure?" msgstr "この操作は対象にスキーマをインストールします。よろしいですか?" -#: ../../enterprise/godmode/setup/setup_history.php:527 +#: ../../enterprise/godmode/setup/setup_history.php:605 msgid "History database schema is up to date with active database." msgstr "メインのデータベースでヒストリデータベーススキーマを更新します。" -#: ../../enterprise/godmode/setup/setup_history.php:536 +#: ../../enterprise/godmode/setup/setup_history.php:614 #, php-format msgid "Database is not updated: %s" msgstr "データベースが更新されていません: %s" -#: ../../enterprise/godmode/setup/setup_history.php:551 +#: ../../enterprise/godmode/setup/setup_history.php:629 msgid "Current schema: " msgstr "現在のスキーマ: " -#: ../../enterprise/godmode/setup/setup_history.php:558 +#: ../../enterprise/godmode/setup/setup_history.php:636 msgid "Upgrade database schema" msgstr "データベーススキーマのアップグレード" -#: ../../enterprise/godmode/setup/setup_history.php:559 +#: ../../enterprise/godmode/setup/setup_history.php:637 msgid "" -"This action will schedule the installation or upgrade of database schema into the " -"target, are you sure?" +"This action will schedule the installation or upgrade of database schema into " +"the target, are you sure?" msgstr "" -"このアクションにより、データベーススキーマの対象へのインストールまたはアップグレードが" -"スケジュールされます。よろしいですか?" +"このアクションにより、データベーススキーマの対象へのインストールまたはアップグ" +"レードがスケジュールされます。よろしいですか?" -#: ../../enterprise/godmode/setup/setup_history.php:573 -#: ../../godmode/setup/performance.php:707 +#: ../../enterprise/godmode/setup/setup_history.php:651 +#: ../../godmode/setup/performance.php:712 msgid "Database maintenance status" msgstr "データベースメンテナンス状態" -#: ../../enterprise/godmode/setup/setup_history.php:599 +#: ../../enterprise/godmode/setup/setup_history.php:677 msgid "" "By enabling historical database, target connection will be tested. If needed, " -"database schema will be applied on your selected target, do you want to proceed?" +"database schema will be applied on your selected target, do you want to " +"proceed?" msgstr "" -"ヒストリデータベースを有効にすることで、対象への接続がテストされます。 必要に応じて、" -"データベーススキーマが選択した対象に適用されます。続行しますか?" +"ヒストリデータベースを有効にすることで、対象への接続がテストされます。 必要に応" +"じて、データベーススキーマが選択した対象に適用されます。続行しますか?" -#: ../../enterprise/godmode/setup/setup_history.php:600 +#: ../../enterprise/godmode/setup/setup_history.php:678 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?" +"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:602 +#: ../../enterprise/godmode/setup/setup_history.php:680 #, php-format msgid "" -"Disabling historical database, you will not keep any data older than %d days. Are you " -"sure?" +"Disabling historical database, you will not keep any data older than %d days. " +"Are you sure?" msgstr "" -"ヒストリデータベースを無効にすると、%d 日より古いデータは保持されません。 よろしいです" -"か?" +"ヒストリデータベースを無効にすると、%d 日より古いデータは保持されません。 よろ" +"しいですか?" -#: ../../enterprise/godmode/setup/setup_history.php:606 +#: ../../enterprise/godmode/setup/setup_history.php:684 #, php-format msgid "" -"Historical database allows you to keep data older than %d days. This action will " -"produce no changes. Historical database will remain disabled." +"Historical database allows you to keep data older than %d days. This action " +"will produce no changes. Historical database will remain disabled." msgstr "" -"履歴データベースを使用すると、%d 日より古いデータを保持できます。 このアクションでは変" -"更は行われません。ヒストリデータベースは無効のままになります。" +"履歴データベースを使用すると、%d 日より古いデータを保持できます。 このアクショ" +"ンでは変更は行われません。ヒストリデータベースは無効のままになります。" -#: ../../enterprise/godmode/setup/setup_history.php:611 +#: ../../enterprise/godmode/setup/setup_history.php:689 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?" +"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:614 +#: ../../enterprise/godmode/setup/setup_history.php:692 msgid "Please ensure all fields matches your needs." msgstr "すべてのフィールドがニーズに一致していることを確認してください。" -#: ../../enterprise/godmode/setup/setup_history.php:759 +#: ../../enterprise/godmode/setup/setup_history.php:837 msgid "Update scheduled." msgstr "更新が予定されています。" -#: ../../enterprise/godmode/setup/setup.php:47 ../../include/functions_config.php:403 +#: ../../enterprise/godmode/setup/setup.php:47 +#: ../../include/functions_config.php:408 msgid "Forward SNMP traps to agent (if exist)" msgstr "SNMP トラップのエージェント(存在する場合)への転送" @@ -18275,7 +18951,8 @@ msgstr "はい、ステータスを変更します" msgid "Yes without changing status" msgstr "はい、ステータスは変更しません" -#: ../../enterprise/godmode/setup/setup.php:77 ../../include/functions_config.php:407 +#: ../../enterprise/godmode/setup/setup.php:77 +#: ../../include/functions_config.php:412 msgid "Use Enterprise ACL System" msgstr "エンタープライズ ACL システムを利用する" @@ -18310,67 +18987,75 @@ msgstr "イベント設定情報" #: ../../enterprise/godmode/setup/setup.php:193 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" +" 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 ユーザがイベントを表示でき" -"るようにするためだけのものであり、イベントを操作するためのものではありません。イベント" -"の複製が有効になっている場合の操作は、メタコンソールでのみ実行する必要があります。" +" イベントを複製する場合、メタコンソールで検証または削除されたイベントは、ここで" +"は削除または検証されません。 このオプションは、ローカルの pandora ユーザがイベ" +"ントを表示できるようにするためだけのものであり、イベントを操作するためのもので" +"はありません。イベントの複製が有効になっている場合の操作は、メタコンソールでの" +"み実行する必要があります。" -#: ../../enterprise/godmode/setup/setup.php:198 ../../include/functions_config.php:464 -msgid "Inventory changes blacklist" -msgstr "インベントリブラックリスト変更" - -#: ../../enterprise/godmode/setup/setup.php:261 -msgid "Out of black list" -msgstr "ブラックリスト対象外" - -#: ../../enterprise/godmode/setup/setup.php:263 -msgid "In black list" -msgstr "ブラックリスト対象" - -#: ../../enterprise/godmode/setup/setup.php:268 -msgid "Push selected modules into blacklist" -msgstr "選択したモジュールをブラックリストへ追加" - -#: ../../enterprise/godmode/setup/setup.php:270 -msgid "Pop selected modules out of blacklist" -msgstr "選択したモジュールをブラックリストから削除" - -#: ../../enterprise/godmode/setup/setup.php:282 ../../include/functions_config.php:443 +#: ../../enterprise/godmode/setup/setup.php:198 +#: ../../include/functions_config.php:448 msgid "Activate Log Collector" msgstr "ログ収集の有効化" -#: ../../enterprise/godmode/setup/setup.php:305 +#: ../../enterprise/godmode/setup/setup.php:221 msgid "Critical threshold for occupied addresses" msgstr "占有アドレスの障害しきい値" -#: ../../enterprise/godmode/setup/setup.php:317 +#: ../../enterprise/godmode/setup/setup.php:233 msgid "Warning threshold for occupied addresses" msgstr "占有アドレスの警告しきい値" -#: ../../enterprise/godmode/setup/setup.php:329 ../../include/functions_config.php:459 +#: ../../enterprise/godmode/setup/setup.php:245 +#: ../../include/functions_config.php:464 msgid "SAP/R3 Plugin Licence" msgstr "SAP/R3 プラグインライセンス" -#: ../../enterprise/godmode/setup/setup.php:345 +#: ../../enterprise/godmode/setup/setup.php:261 msgid "Enterprise options" msgstr "Enterprise オプション" -#: ../../enterprise/godmode/setup/setup.php:505 +#: ../../enterprise/godmode/setup/setup.php:433 #, php-format msgid "" -"Password related configuration only applies when local %s authentication is selected." +"Password related configuration only applies when local %s authentication is " +"selected." msgstr "" -"パスワード関連の設定は、ローカル %s 認証が選択されている場合にのみ適用されます。" +"パスワード関連の設定は、ローカル %s 認証が選択されている場合にのみ適用されま" +"す。" -#: ../../enterprise/godmode/setup/setup.php:514 +#: ../../enterprise/godmode/setup/setup.php:442 msgid "Enterprise password policy" msgstr "Enterprise パスワードポリシー" +#: ../../enterprise/godmode/setup/setup.php:471 +msgid "Delete session users" +msgstr "ユーザセッション削除" + +#: ../../enterprise/godmode/setup/setup.php:541 +#: ../../godmode/snmpconsole/snmp_alert.php:1545 +#: ../../godmode/snmpconsole/snmp_alert.php:1560 +msgid "Confirmation" +msgstr "確認" + +#: ../../enterprise/godmode/setup/setup.php:542 +msgid "This action delete all users session, are you sure?" +msgstr "この操作は全ユーザのセッションを削除します。よろしいですか?" + +#: ../../enterprise/godmode/setup/setup.php:558 +msgid "All sessions deleted" +msgstr "全てのセッションを削除しました" + +#: ../../enterprise/godmode/setup/setup.php:565 +#: ../../enterprise/godmode/setup/setup.php:574 +msgid "Unexpected error" +msgstr "予期しないエラー" + #: ../../enterprise/godmode/setup/setup_skins.php:38 #: ../../enterprise/godmode/setup/edit_skin.php:44 msgid "Skins configuration" @@ -18425,7 +19110,8 @@ msgid "" "Token previously configured on the destination Pandora console in order to use " "delegated authentification." msgstr "" -"認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークンです。" +"認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークン" +"です。" #: ../../enterprise/godmode/setup/setup_metaconsole.php:274 msgid "Console URLxxxxxx" @@ -18448,7 +19134,7 @@ msgid "Port of ElasticSearch server" msgstr "ElasticSearch サーバのポート" #: ../../enterprise/godmode/setup/setup_log_collector.php:44 -#: ../../include/functions_config.php:1521 +#: ../../include/functions_config.php:1531 msgid "Days to purge old information" msgstr "旧情報を削除する日数" @@ -18481,20 +19167,20 @@ msgstr "PHP 関数" #: ../../enterprise/include/functions_tasklist.php:369 #: ../../enterprise/operation/reporting/custom_reporting.php:20 #: ../../godmode/tag/tag.php:281 ../../godmode/tag/edit_tag.php:239 -#: ../../include/functions_cron.php:604 ../../include/functions_cron.php:695 +#: ../../include/functions_cron.php:615 ../../include/functions_cron.php:706 #: ../../operation/search_users.php:45 msgid "Email" msgstr "Email" #: ../../enterprise/godmode/setup/setup_auth.php:172 #: ../../enterprise/godmode/setup/setup_auth.php:456 -#: ../../enterprise/godmode/setup/setup_auth.php:1251 +#: ../../enterprise/godmode/setup/setup_auth.php:1249 msgid "Profiles selected" msgstr "選択しているプロファイル" #: ../../enterprise/godmode/setup/setup_auth.php:173 #: ../../enterprise/godmode/setup/setup_auth.php:457 -#: ../../enterprise/godmode/setup/setup_auth.php:1252 +#: ../../enterprise/godmode/setup/setup_auth.php:1250 msgid "Groups selected" msgstr "選択しているグループ" @@ -18513,41 +19199,43 @@ msgstr "LDAP アトリビュート" #: ../../enterprise/godmode/setup/setup_auth.php:234 #: ../../enterprise/godmode/setup/setup_auth.php:460 #: ../../enterprise/godmode/setup/setup_auth.php:512 -#: ../../enterprise/godmode/setup/setup_auth.php:1255 -#: ../../enterprise/godmode/setup/setup_auth.php:1309 +#: ../../enterprise/godmode/setup/setup_auth.php:1253 +#: ../../enterprise/godmode/setup/setup_auth.php:1307 #: ../../godmode/setup/snmp_wizard.php:44 msgid "OP" msgstr "OP" #: ../../enterprise/godmode/setup/setup_auth.php:229 #: ../../enterprise/godmode/setup/setup_auth.php:508 -#: ../../enterprise/godmode/setup/setup_auth.php:1305 -#: ../../godmode/groups/configure_group.php:122 ../../godmode/groups/group_list.php:380 -#: ../../godmode/users/profile_list.php:323 ../../godmode/menu.php:161 +#: ../../enterprise/godmode/setup/setup_auth.php:1303 +#: ../../godmode/groups/configure_group.php:122 +#: ../../godmode/groups/group_list.php:385 +#: ../../godmode/users/profile_list.php:323 +#: ../../godmode/users/configure_user.php:317 ../../godmode/menu.php:162 msgid "Profiles" msgstr "プロファイル" #: ../../enterprise/godmode/setup/setup_auth.php:242 #: ../../enterprise/godmode/setup/setup_auth.php:519 -#: ../../enterprise/godmode/setup/setup_auth.php:1316 +#: ../../enterprise/godmode/setup/setup_auth.php:1314 msgid "Select profile" msgstr "プロファイルを選択" #: ../../enterprise/godmode/setup/setup_auth.php:287 #: ../../enterprise/godmode/setup/setup_auth.php:557 -#: ../../enterprise/godmode/setup/setup_auth.php:1359 +#: ../../enterprise/godmode/setup/setup_auth.php:1357 msgid "Add new permissions" msgstr "新規の権限を追加" #: ../../enterprise/godmode/setup/setup_auth.php:385 -#: ../../enterprise/godmode/setup/setup_auth.php:1180 +#: ../../enterprise/godmode/setup/setup_auth.php:1178 msgid "New users will be able to log in to the nodes." msgstr "新規ユーザがノードへログインできます。" #: ../../enterprise/godmode/setup/setup_auth.php:459 #: ../../enterprise/godmode/setup/setup_auth.php:511 -#: ../../enterprise/godmode/setup/setup_auth.php:1254 -#: ../../enterprise/godmode/setup/setup_auth.php:1308 +#: ../../enterprise/godmode/setup/setup_auth.php:1252 +#: ../../enterprise/godmode/setup/setup_auth.php:1306 msgid "AD Groups" msgstr "ADグループ" @@ -18561,70 +19249,72 @@ msgstr "プロファイル一覧からぷらファイルを選択する必要が msgid "You must select a group from the list of groups." msgstr "グループ一覧からグループを選択する必要があります。" -#: ../../enterprise/godmode/setup/setup_auth.php:1021 -#: ../../include/functions_config.php:676 +#: ../../enterprise/godmode/setup/setup_auth.php:1019 +#: ../../include/functions_config.php:693 msgid "MySQL host" msgstr "MySQL ホスト" -#: ../../enterprise/godmode/setup/setup_auth.php:1084 +#: ../../enterprise/godmode/setup/setup_auth.php:1082 msgid "SimpleSAML path" msgstr "SimpleSAML パス" -#: ../../enterprise/godmode/setup/setup_auth.php:1085 +#: ../../enterprise/godmode/setup/setup_auth.php:1083 msgid "Directory where your 'simplesamlphp' folder is located." msgstr "'simplesamlphp' フォルダがあるディレクトリ" -#: ../../enterprise/godmode/setup/setup_auth.php:1091 +#: ../../enterprise/godmode/setup/setup_auth.php:1089 msgid "SAML source" msgstr "SAML ソース" -#: ../../enterprise/godmode/setup/setup_auth.php:1092 +#: ../../enterprise/godmode/setup/setup_auth.php:1090 msgid "Authsource name, e.g. 'example-userpass'" msgstr "認証ソース名、例: 'example-userpass'" -#: ../../enterprise/godmode/setup/setup_auth.php:1099 +#: ../../enterprise/godmode/setup/setup_auth.php:1097 msgid "SAML user id attribute" msgstr "SAML ユーザ ID アトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1104 +#: ../../enterprise/godmode/setup/setup_auth.php:1102 msgid "SAML mail attribute" msgstr "SAML メールアトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1105 +#: ../../enterprise/godmode/setup/setup_auth.php:1103 msgid "" -"SAML field where search for the user email (while autocreate remote users is enabled)" +"SAML field where search for the user email (while autocreate remote users is " +"enabled)" msgstr "" -"ユーザのメールを検索する SAML フィールド (リモートユーザの自動作成が有効になっている場" -"合)" +"ユーザのメールを検索する SAML フィールド (リモートユーザの自動作成が有効になっ" +"ている場合)" -#: ../../enterprise/godmode/setup/setup_auth.php:1112 +#: ../../enterprise/godmode/setup/setup_auth.php:1110 msgid "SAML group name attribute" msgstr "SAML グループ名アトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1113 +#: ../../enterprise/godmode/setup/setup_auth.php:1111 msgid "" -"SAML field where search for the group name (while autocreate remote users is enabled)" +"SAML field where search for the group name (while autocreate remote users is " +"enabled)" msgstr "" -"グループ名の検索を行う SAML フィールド (リモートユーザの自動作成が有効になっている場" -"合)" +"グループ名の検索を行う SAML フィールド (リモートユーザの自動作成が有効になって" +"いる場合)" -#: ../../enterprise/godmode/setup/setup_auth.php:1120 +#: ../../enterprise/godmode/setup/setup_auth.php:1118 msgid "Simple attribute / Multivalue attribute" msgstr "シンプルアトリビュート / 複数の値のアトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1125 +#: ../../enterprise/godmode/setup/setup_auth.php:1123 msgid "SAML profiles and tag attribute" msgstr "SAML プロファイルおよびタグアトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1130 +#: ../../enterprise/godmode/setup/setup_auth.php:1128 msgid "Profile attribute" msgstr "プロファイルアトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1135 +#: ../../enterprise/godmode/setup/setup_auth.php:1133 msgid "Tag attribute" msgstr "タグアトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1140 +#: ../../enterprise/godmode/setup/setup_auth.php:1138 msgid "SAML profile and tags prefix" msgstr "SAML プロファイルおよびタグプレフィックス" @@ -18695,9 +19385,10 @@ msgstr "プロファイルによるフィルタ" #: ../../enterprise/godmode/setup/setup_acl.php:591 #: ../../godmode/users/configure_profile.php:265 -#: ../../godmode/massive/massive_delete_profiles.php:151 +#: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 -#: ../../include/functions_profile.php:213 ../../operation/users/user_edit.php:840 +#: ../../include/functions_profile.php:213 +#: ../../operation/users/user_edit.php:912 msgid "Profile name" msgstr "プロファイル名" @@ -18708,9 +19399,9 @@ msgstr "無効" #: ../../enterprise/godmode/setup/setup_acl.php:791 #: ../../enterprise/godmode/reporting/visual_console_template.php:305 -#: ../../enterprise/operation/agentes/wux_console_view.php:593 +#: ../../enterprise/operation/agentes/wux_console_view.php:568 #: ../../include/ajax/visual_console_builder.ajax.php:343 -#: ../../include/functions_visual_map.php:2841 +#: ../../include/functions_visual_map.php:2843 msgid "No data to show" msgstr "表示するデータがありません" @@ -18733,11 +19424,11 @@ msgstr "スキンを作成しました" #: ../../enterprise/godmode/setup/edit_skin.php:242 msgid "" -"Zip file with skin subdirectory. The name of the zip file only can have alphanumeric " -"characters." +"Zip file with skin subdirectory. The name of the zip file only can have " +"alphanumeric characters." msgstr "" -"skin サブディレクトリを持った zip ファイル。zip ファイル名に使える文字は、アルファベッ" -"トのみです。" +"skin サブディレクトリを持った zip ファイル。zip ファイル名に使える文字は、アル" +"ファベットのみです。" #: ../../enterprise/godmode/setup/edit_skin.php:267 msgid "Group/s" @@ -18776,17 +19467,18 @@ msgid "Could not be applied" msgstr "適用できません" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207 -#: ../../godmode/massive/massive_operations.php:325 +#: ../../godmode/massive/massive_operations.php:330 msgid "" -"In order to perform massive operations, PHP needs a correct configuration in timeout " -"parameters. Please, open your PHP configuration file (php.ini) for example: sudo " -"vi /etc/php5/apache2/php.ini;
And set your timeout parameters to a correct " -"value:
max_execution_time = 0 and max_input_time = -1" -msgstr "" -"一括操作のためには、PHPのタイムアウトパラメータを正しく設定する必要があります。php設定" -"ファイル(php.ini)を開き(例:sudo vi /etc/php5/apache2/php.ini;)タイムアウトパラ" -"メータを次のように設定してください。
max_execution_time = 0、 " +"In order to perform massive operations, PHP needs a correct configuration in " +"timeout parameters. Please, open your PHP configuration file (php.ini) for " +"example: sudo vi /etc/php5/apache2/php.ini;
And set your timeout " +"parameters to a correct value:
max_execution_time = 0 and " "max_input_time = -1" +msgstr "" +"一括操作のためには、PHPのタイムアウトパラメータを正しく設定する必要があります。" +"php設定ファイル(php.ini)を開き(例:sudo vi /etc/php5/apache2/php.ini;)タ" +"イムアウトパラメータを次のように設定してください。
max_execution_time = " +"0max_input_time = -1" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221 msgid "Create template report wizard" @@ -18804,10 +19496,10 @@ msgstr "エージェントごとのレポート作成" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 #: ../../enterprise/include/functions_cron.php:232 #: ../../enterprise/include/functions_tasklist.php:368 -#: ../../enterprise/include/functions_reporting_csv.php:2264 #: ../../enterprise/include/functions_reporting_csv.php:2268 +#: ../../enterprise/include/functions_reporting_csv.php:2272 #: ../../godmode/reporting/reporting_builder.php:908 -#: ../../include/functions_cron.php:694 ../../operation/search_reports.php:42 +#: ../../include/functions_cron.php:705 ../../operation/search_reports.php:42 #: ../../operation/search_reports.php:58 #: ../../operation/reporting/custom_reporting.php:34 msgid "Report name" @@ -18815,11 +19507,11 @@ msgstr "レポート名" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 msgid "" -"Left in blank if you want to use default name: Template name - agents (num agents) - " -"Date" +"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:288 #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236 @@ -18835,8 +19527,9 @@ msgstr "フィルタ" #: ../../godmode/reporting/create_container.php:629 #: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195 #: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309 -#: ../../include/ajax/heatmap.ajax.php:126 ../../include/ajax/heatmap.ajax.php:296 -#: ../../operation/heatmap.php:109 ../../operation/agentes/group_view.php:327 +#: ../../include/ajax/heatmap.ajax.php:127 +#: ../../include/ajax/heatmap.ajax.php:302 ../../operation/heatmap.php:113 +#: ../../operation/agentes/group_view.php:327 msgid "Tag" msgstr "タグ" @@ -18908,8 +19601,8 @@ msgstr "エージェントを次のもの以外で明確にしてください: " #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:470 msgid "" -"This will be delete all reports created in previous template applications. Do you " -"want to continue?" +"This will be delete all reports created in previous template applications. Do " +"you want to continue?" msgstr "以前のテンプレート内の全レポートを削除します。続けますか?" #: ../../enterprise/godmode/reporting/aws_view.php:53 @@ -18917,7 +19610,7 @@ msgid "Instance" msgstr "インスタンス" #: ../../enterprise/godmode/reporting/aws_view.php:54 -#: ../../include/class/Diagnostics.class.php:722 +#: ../../include/class/Diagnostics.class.php:723 msgid "CPU" msgstr "CPU" @@ -18947,7 +19640,7 @@ msgstr "出力トラフィック" #: ../../enterprise/godmode/reporting/aws_view.php:106 #: ../../enterprise/godmode/reporting/aws_view.php:139 -#: ../../enterprise/operation/menu.php:45 +#: ../../enterprise/operation/menu.php:32 msgid "AWS View" msgstr "AWS 表示" @@ -18973,16 +19666,16 @@ msgstr "クラウド監視自動検出タスク作成" #: ../../enterprise/godmode/reporting/aws_view.php:189 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." +"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 "" -"この画面には、クラウド検出 AWS タスクを使用して収集された情報が表示されます。 契約サー" -"ビスの現在のコスト、リージョンごとのインスタンス数、リソース使用量の指標など、インフラ" -"に関する最も関連性の高い情報を確認できます。 この情報を収集するには、クラウド監視自動" -"検出タスクを作成する必要があります。" +"この画面には、クラウド検出 AWS タスクを使用して収集された情報が表示されます。 " +"契約サービスの現在のコスト、リージョンごとのインスタンス数、リソース使用量の指" +"標など、インフラに関する最も関連性の高い情報を確認できます。 この情報を収集する" +"には、クラウド監視自動検出タスクを作成する必要があります。" #: ../../enterprise/godmode/reporting/aws_view.php:192 msgid "Press the create button to begin." @@ -19031,11 +19724,11 @@ msgstr "ビジュアルコンソール名" #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 msgid "" -"You can use macro _agentalias_ here. Left in blank if you want to use default name: " -"Template name - agent alias" +"You can use macro _agentalias_ here. Left in blank if you want to use default " +"name: Template name - agent alias" msgstr "" -"ここでマクロ _agentalias_ を使用できます。 デフォルトの名前を使用する場合は空白のまま" -"にします: テンプレート名 - エージェントの別名" +"ここでマクロ _agentalias_ を使用できます。 デフォルトの名前を使用する場合は空白" +"のままにします: テンプレート名 - エージェントの別名" #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:107 @@ -19047,11 +19740,11 @@ msgstr "テンプレートの編集" #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:903 msgid "" -"Case insensitive regular expression for agent alias. For example: Network.* will " -"match with the following agent alias: network_agent1, NetworK CHECKS" +"Case insensitive regular expression for agent alias. For example: Network.* " +"will match with the following agent alias: network_agent1, NetworK CHECKS" msgstr "" -"エージェントの別名の大文字と小文字を区別しない正規表現。 例: Network.* は、次のエー" -"ジェント別名と一致します: network_agent1, NetworK CHECKS" +"エージェントの別名の大文字と小文字を区別しない正規表現。 例: Network.* は、次の" +"エージェント別名と一致します: network_agent1, NetworK CHECKS" #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222 #: ../../godmode/reporting/reporting_builder.main.php:226 @@ -19068,9 +19761,10 @@ msgstr "PDFレンダリングで目次を生成する" #: ../../enterprise/godmode/reporting/graph_template_list.php:87 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:99 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:113 -#: ../../godmode/reporting/graph_builder.php:287 -#: ../../godmode/reporting/graph_container.php:77 ../../godmode/reporting/graphs.php:67 -#: ../../godmode/reporting/graphs.php:81 ../../operation/reporting/graph_viewer.php:182 +#: ../../godmode/reporting/graph_builder.php:293 +#: ../../godmode/reporting/graph_container.php:77 +#: ../../godmode/reporting/graphs.php:67 ../../godmode/reporting/graphs.php:81 +#: ../../operation/reporting/graph_viewer.php:182 #: ../../operation/reporting/graph_viewer.php:214 msgid "Graph list" msgstr "グラフ一覧" @@ -19092,9 +19786,9 @@ msgstr "グラフテンプレート管理" #: ../../enterprise/godmode/reporting/graph_template_wizard.php:148 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:388 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 -#: ../../godmode/reporting/graph_builder.php:370 +#: ../../godmode/reporting/graph_builder.php:376 #: ../../godmode/reporting/graph_container.php:122 -#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:328 +#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:341 #: ../../operation/reporting/graph_viewer.php:271 msgid "Custom graphs" msgstr "カスタムグラフ" @@ -19128,7 +19822,7 @@ msgstr "グラフテンプレートエディタ" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 #: ../../godmode/modules/manage_nc_groups.php:95 #: ../../godmode/netflow/nf_edit_form.php:118 -#: ../../godmode/events/event_edit_filter.php:210 +#: ../../godmode/events/event_edit_filter.php:232 msgid "Not updated. Blank name" msgstr "更新できませんでした。名前が空です。" @@ -19142,7 +19836,7 @@ msgid "Error updating template" msgstr "テンプレート更新エラー" #: ../../enterprise/godmode/reporting/graph_template_editor.php:208 -#: ../../godmode/setup/gis_step_2.php:371 +#: ../../godmode/setup/gis_step_2.php:372 #: ../../godmode/reporting/visual_console_builder.wizard.php:180 #: ../../godmode/events/event_responses.editor.php:139 #: ../../include/functions_visual_map_editor.php:97 @@ -19154,19 +19848,21 @@ msgid "Width" msgstr "幅" #: ../../enterprise/godmode/reporting/graph_template_editor.php:212 -#: ../../godmode/setup/gis_step_2.php:378 +#: ../../godmode/setup/gis_step_2.php:379 #: ../../godmode/reporting/visual_console_builder.wizard.php:181 #: ../../godmode/events/event_responses.editor.php:141 #: ../../include/functions_visual_map_editor.php:673 -#: ../../include/functions_reports.php:1271 ../../include/functions_reports.php:1371 +#: ../../include/functions_reports.php:1271 +#: ../../include/functions_reports.php:1371 msgid "Height" msgstr "高さ" #: ../../enterprise/godmode/reporting/graph_template_editor.php:217 #: ../../godmode/setup/performance.php:542 -#: ../../godmode/reporting/create_container.php:346 ../../include/functions.php:2699 -#: ../../include/functions.php:3367 ../../include/ajax/module.php:200 -#: ../../include/ajax/graph.ajax.php:146 ../../operation/gis_maps/render_view.php:156 +#: ../../godmode/reporting/create_container.php:346 +#: ../../include/functions.php:2745 ../../include/functions.php:3413 +#: ../../include/ajax/module.php:207 ../../include/ajax/graph.ajax.php:146 +#: ../../operation/gis_maps/render_view.php:156 msgid "1 hour" msgstr "1時間" @@ -19180,18 +19876,19 @@ msgid "3 hours" msgstr "3時間" #: ../../enterprise/godmode/reporting/graph_template_editor.php:220 -#: ../../include/ajax/module.php:201 +#: ../../include/ajax/module.php:208 msgid "6 hours" msgstr "6 時間" #: ../../enterprise/godmode/reporting/graph_template_editor.php:221 -#: ../../godmode/setup/performance.php:543 ../../include/ajax/module.php:202 +#: ../../godmode/setup/performance.php:543 ../../include/ajax/module.php:209 msgid "12 hours" msgstr "12時間" #: ../../enterprise/godmode/reporting/graph_template_editor.php:222 -#: ../../godmode/reporting/create_container.php:350 ../../include/functions.php:2702 -#: ../../include/ajax/module.php:203 ../../include/ajax/graph.ajax.php:150 +#: ../../godmode/reporting/create_container.php:350 +#: ../../include/functions.php:2748 ../../include/ajax/module.php:210 +#: ../../include/ajax/graph.ajax.php:150 msgid "1 day" msgstr "1日" @@ -19210,8 +19907,9 @@ msgid "Last week" msgstr "先週" #: ../../enterprise/godmode/reporting/graph_template_editor.php:226 -#: ../../godmode/reporting/create_container.php:354 ../../include/functions.php:2704 -#: ../../include/ajax/module.php:205 ../../include/ajax/graph.ajax.php:154 +#: ../../godmode/reporting/create_container.php:354 +#: ../../include/functions.php:2750 ../../include/ajax/module.php:212 +#: ../../include/ajax/graph.ajax.php:154 msgid "15 days" msgstr "15日" @@ -19225,45 +19923,45 @@ msgid "2 months" msgstr "2ヶ月" #: ../../enterprise/godmode/reporting/graph_template_editor.php:229 -#: ../../include/ajax/module.php:208 +#: ../../include/ajax/module.php:215 msgid "6 months" msgstr "6ヵ月" #: ../../enterprise/godmode/reporting/graph_template_editor.php:230 -#: ../../include/functions.php:2708 ../../include/ajax/module.php:209 +#: ../../include/functions.php:2754 ../../include/ajax/module.php:216 msgid "1 year" msgstr "1年" #: ../../enterprise/godmode/reporting/graph_template_editor.php:235 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1768 -#: ../../enterprise/include/functions_reporting_csv.php:487 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1788 #: ../../enterprise/include/functions_reporting_csv.php:490 -#: ../../enterprise/include/functions_reporting_csv.php:714 -#: ../../enterprise/include/functions_reporting_csv.php:877 -#: ../../enterprise/include/functions_reporting_csv.php:960 -#: ../../enterprise/include/functions_reporting_csv.php:992 -#: ../../enterprise/include/functions_reporting_csv.php:1052 -#: ../../enterprise/include/functions_reporting_csv.php:1230 -#: ../../enterprise/include/functions_reporting_csv.php:1261 -#: ../../enterprise/include/functions_reporting_csv.php:1316 -#: ../../enterprise/include/functions_reporting_csv.php:1420 -#: ../../enterprise/include/functions_reporting_csv.php:1475 -#: ../../enterprise/include/functions_reporting_csv.php:1541 -#: ../../enterprise/include/functions_reporting_csv.php:1927 -#: ../../enterprise/include/functions_reporting_csv.php:1977 -#: ../../enterprise/include/functions_reporting_csv.php:2673 -#: ../../enterprise/include/functions_reporting_csv.php:2724 -#: ../../enterprise/include/functions_reporting_csv.php:2850 +#: ../../enterprise/include/functions_reporting_csv.php:493 +#: ../../enterprise/include/functions_reporting_csv.php:717 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/functions_reporting_csv.php:964 +#: ../../enterprise/include/functions_reporting_csv.php:996 +#: ../../enterprise/include/functions_reporting_csv.php:1056 +#: ../../enterprise/include/functions_reporting_csv.php:1234 +#: ../../enterprise/include/functions_reporting_csv.php:1265 +#: ../../enterprise/include/functions_reporting_csv.php:1320 +#: ../../enterprise/include/functions_reporting_csv.php:1424 +#: ../../enterprise/include/functions_reporting_csv.php:1479 +#: ../../enterprise/include/functions_reporting_csv.php:1545 +#: ../../enterprise/include/functions_reporting_csv.php:1931 +#: ../../enterprise/include/functions_reporting_csv.php:1981 +#: ../../enterprise/include/functions_reporting_csv.php:2677 +#: ../../enterprise/include/functions_reporting_csv.php:2728 +#: ../../enterprise/include/functions_reporting_csv.php:2854 #: ../../godmode/agentes/module_manager_editor_prediction.php:179 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1373 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1412 #: ../../godmode/reporting/visual_console_builder.elements.php:107 #: ../../godmode/reporting/visual_console_builder.wizard.php:242 #: ../../godmode/reporting/graph_builder.main.php:196 #: ../../include/functions_visual_map_editor.php:788 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:639 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629 msgid "Period" msgstr "更新間隔" @@ -19274,14 +19972,14 @@ msgstr "積み上げ" #: ../../enterprise/godmode/reporting/graph_template_editor.php:246 #: ../../godmode/reporting/graph_builder.main.php:215 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:353 -#: ../../operation/reporting/graph_viewer.php:371 +#: ../../operation/reporting/graph_viewer.php:343 msgid "Stacked area" msgstr "塗り潰しの積み上げ" #: ../../enterprise/godmode/reporting/graph_template_editor.php:248 #: ../../godmode/reporting/graph_builder.main.php:217 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 -#: ../../operation/reporting/graph_viewer.php:373 +#: ../../operation/reporting/graph_viewer.php:345 msgid "Stacked line" msgstr "線の積み上げ" @@ -19291,8 +19989,9 @@ msgid "Top n" msgstr "トップ n" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 -#: ../../enterprise/include/functions_reporting_csv.php:946 -#: ../../include/functions_reports.php:789 ../../include/functions_reporting.php:3325 +#: ../../enterprise/include/functions_reporting_csv.php:950 +#: ../../include/functions_reports.php:789 +#: ../../include/functions_reporting.php:3456 msgid "Exception" msgstr "例外" @@ -19335,25 +20034,25 @@ msgid "Filter agents selector" msgstr "フィルタエージェント選択" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:196 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1745 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1350 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1765 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1389 #: ../../include/functions_reports.php:766 msgid "Last value" msgstr "最新の値" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:198 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:818 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1747 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5006 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1352 -#: ../../godmode/reporting/reporting_builder.item_editor.php:7175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1767 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5075 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1391 +#: ../../godmode/reporting/reporting_builder.item_editor.php:7358 msgid "" "Warning: period 0 reports cannot be used to show information back in time. " -"Information contained in this kind of reports will be always reporting the most " -"recent information" +"Information contained in this kind of reports will be always reporting the " +"most recent information" msgstr "" -"警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれるの" -"は、最新の情報のみとなります。" +"警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれ" +"るのは、最新の情報のみとなります。" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:222 @@ -19363,51 +20062,52 @@ msgid "If you select several agents, only the common modules will be displayed" msgstr "複数のエージェントを選択すると、共通のモジュールのみ表示されます。" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:258 -#: ../../enterprise/include/functions_reporting_csv.php:1076 -#: ../../include/functions_reporting_html.php:4902 +#: ../../enterprise/include/functions_reporting_csv.php:1080 +#: ../../include/functions_reporting_html.php:4922 msgid "Sum" msgstr "合計" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 -#: ../../include/functions_reporting.php:10143 +#: ../../include/functions_reporting.php:10390 msgid "Rate" msgstr "率" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:306 #: ../../enterprise/include/class/Omnishell.class.php:520 -#: ../../enterprise/operation/services/services.list.php:728 +#: ../../enterprise/operation/services/services.list.php:730 #: ../../godmode/snmpconsole/snmp_alert.php:1506 -#: ../../include/class/ModuleTemplates.class.php:970 +#: ../../include/class/ModuleTemplates.class.php:971 +#: ../../operation/events/events.php:2476 msgid "Delete selected" msgstr "選択範囲を削除します" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2379 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2446 msgid "Group by agent" msgstr "エージェント毎のグループ" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2378 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3147 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2429 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3150 msgid "Show in the same row" msgstr "同一行に表示" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:334 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2380 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3149 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2431 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3152 msgid "Show one module per row with all its operations" msgstr "すべての操作で行ごとに1つのモジュールを表示" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:346 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2398 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2975 -#: ../../enterprise/operation/log/log_viewer.php:500 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3026 +#: ../../enterprise/operation/log/log_viewer.php:501 #: ../../godmode/netflow/nf_item_list.php:173 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2457 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3170 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2460 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3173 #: ../../include/lib/Dashboard/Widgets/top_n.php:267 msgid "Order" msgstr "順番" @@ -19416,10 +20116,10 @@ msgstr "順番" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:318 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2401 -#: ../../enterprise/operation/log/log_viewer.php:497 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2452 +#: ../../enterprise/operation/log/log_viewer.php:498 #: ../../godmode/reporting/reporting_builder.item_editor.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2460 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2463 #: ../../include/lib/Dashboard/Widgets/top_n.php:261 msgid "Ascending" msgstr "昇順" @@ -19428,93 +20128,95 @@ msgstr "昇順" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:325 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2408 -#: ../../enterprise/operation/log/log_viewer.php:496 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2459 +#: ../../enterprise/operation/log/log_viewer.php:497 #: ../../godmode/reporting/reporting_builder.item_editor.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2467 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 #: ../../include/lib/Dashboard/Widgets/top_n.php:262 msgid "Descending" msgstr "降順" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:355 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2415 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2474 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2466 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2477 #: ../../include/lib/Dashboard/Widgets/top_n.php:263 msgid "By agent name" msgstr "エージェント名で" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:363 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2427 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2486 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2489 #: ../../include/lib/Dashboard/Widgets/top_n.php:249 msgid "Quantity (n)" msgstr "数量(n)" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:375 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2442 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2516 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2493 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2519 #: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../operation/agentes/ver_agente.php:1632 +#: ../../operation/agentes/ver_agente.php:1662 msgid "Display" msgstr "表示" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2547 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2678 -#: ../../include/functions_reporting.php:3347 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2598 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2681 +#: ../../include/functions_reporting.php:3478 msgid "Everything" msgstr "すべて" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:432 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2554 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2605 msgid ">=" msgstr ">=" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:434 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2561 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2612 msgid "<" msgstr "<" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:438 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2575 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2686 -#: ../../include/functions_reporting_html.php:3472 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2626 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2689 +#: ../../include/functions_reporting_html.php:3487 msgid "Not OK" msgstr "NG" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:446 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:461 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2698 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2638 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2701 msgid "Show graph" msgstr "グラフ表示" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:347 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2700 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2808 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2751 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2811 msgid "Show resume" msgstr "復旧を表示" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2701 -msgid "Show a resume table with max, min, average of total modules on the report bottom" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2752 +msgid "" +"Show a resume table with max, min, average of total modules on the report " +"bottom" msgstr "レポートの下に、全モジュールの最大、最小、平均とともに、復旧表を表示" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:473 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:812 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3377 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3576 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3439 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3595 msgid "Show item in landscape format (only PDF)" msgstr "項目を横向き形式で表示(PDFのみ)" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:489 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:828 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:495 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3386 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3585 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3448 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3604 msgid "Page break at the end of the item (only PDF)" msgstr "アイテムの最後の改ページ(PDFのみ)" @@ -19532,25 +20234,25 @@ msgstr "ページの向き" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105 #: ../../include/functions_visual_map_editor.php:843 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386 msgid "Vertical" msgstr "縦" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 #: ../../include/functions_visual_map_editor.php:844 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385 msgid "Horizontal" msgstr "横" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:112 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1725 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1745 #: ../../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:1327 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1366 msgid "Time lapse" msgstr "時間経過" @@ -19560,250 +20262,253 @@ msgstr "並び順:" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:349 msgid "" -"Show a resume table with max, min, average of total modules on the report bottom:" +"Show a resume table with max, min, average of total modules on the report " +"bottom:" msgstr "レポートの下に全モジュールの最大、最小、平均を含む復旧表を表示:" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:369 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2680 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2788 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2731 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2791 msgid "Show address instead module name" msgstr "モジュール名の代わりにアドレスを表示" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:370 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2789 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2732 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2792 msgid "Show the main address of agent." msgstr "エージェントのメインアドレスを表示" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:439 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2254 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2337 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2305 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2340 #: ../../include/functions_reports.php:809 msgid "SQL query" msgstr "SQL クエリ" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:463 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:402 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3041 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3226 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3092 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3229 msgid "Failover mode" msgstr "フェイルオーバーモード" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:464 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:403 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3042 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3227 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3093 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3230 msgid "" -"SLA calculation must be performed taking into account the failover modules assigned " -"to the primary module" +"SLA calculation must be performed taking into account the failover modules " +"assigned to the primary module" msgstr "" -"SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを考慮して" -"実行する必要があります" +"SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを" +"考慮して実行する必要があります" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:481 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:420 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3061 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3246 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3112 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3249 msgid "Failover type" msgstr "フェイルオーバータイプ" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:486 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3066 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3251 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3117 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3254 msgid "Failover normal" msgstr "通常のフェイルオーバー" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:498 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3078 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3263 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3129 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3266 msgid "Failover simple" msgstr "シンプルなフェイルオーバー" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:538 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2472 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2547 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2523 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2550 msgid "Graph render" msgstr "グラフレンダリング" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:544 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2553 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2529 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2556 msgid "Avg, max & min" msgstr "平均、最大 & 最小" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:545 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2479 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2554 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2530 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2557 msgid "Max only" msgstr "最大のみ" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:546 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2480 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2555 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2531 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2558 msgid "Min only" msgstr "最小のみ" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2481 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2556 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2532 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2559 msgid "Avg only" msgstr "平均のみ" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:558 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2639 -#: ../../mobile/operation/module_graph.php:436 ../../operation/agentes/stat_win.php:369 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2642 +#: ../../mobile/operation/module_graph.php:436 +#: ../../operation/agentes/stat_win.php:369 msgid "Time compare (Overlapped)" msgstr "時間比較 (重ね合わせ)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:574 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2494 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2602 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2545 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2605 msgid "Full resolution graph (TIP)" msgstr "詳細グラフ (TIP)" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:575 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2495 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2603 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2546 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2606 #: ../../operation/agentes/stat_win.php:397 -#: ../../operation/agentes/interface_traffic_graph_win.php:240 +#: ../../operation/agentes/interface_traffic_graph_win.php:242 msgid "" -"TIP mode charts do not support average - maximum - minimum series, you can only " -"enable TIP or average, maximum or minimum series" +"TIP mode charts do not support average - maximum - minimum series, you can " +"only enable TIP or average, maximum or minimum series" msgstr "" -"詳細(TIP)モードグラフは平均-最大-最小をサポートしていません。詳細または平均、最大、最" -"小を有効にできます" +"詳細(TIP)モードグラフは平均-最大-最小をサポートしていません。詳細または平均、最" +"大、最小を有効にできます" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2622 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2556 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2625 msgid "Show threshold" msgstr "しきい値表示" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:605 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2513 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2654 -#: ../../godmode/reporting/graph_builder.main.php:245 ../../include/functions.php:4116 -#: ../../include/functions.php:4124 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2564 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2657 +#: ../../godmode/reporting/graph_builder.main.php:245 +#: ../../include/functions.php:4167 ../../include/functions.php:4175 msgid "Percentil" msgstr "パーセント値" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:606 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2514 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2565 msgid "" -"If this option was checked, only adding in elements that type of modules support this " -"option." +"If this option was checked, only adding in elements that type of modules " +"support this option." msgstr "" -"このオプションをチェックすると、このオプションをサポートするモジュールタイプの要素のみ" -"追加できます。" +"このオプションをチェックすると、このオプションをサポートするモジュールタイプの" +"要素のみ追加できます。" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:620 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2917 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2846 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2920 msgid "Show Summary group" msgstr "グループ概要を表示" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:684 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2881 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3003 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2932 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3006 msgid "Event Status" msgstr "イベントの状態" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:710 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2908 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3064 -#: ../../operation/agentes/tactical.php:254 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2959 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3067 +#: ../../operation/agentes/tactical.php:257 msgid "Event graphs" msgstr "イベントグラフ" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:714 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2912 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2963 msgid "By agent" msgstr "エージェントで分類" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:724 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2922 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2973 msgid "By user validator" msgstr "ユーザで分類" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:734 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2932 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2983 msgid "By criticity" msgstr "重要度で分類" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2942 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2993 msgid "Validated vs unvalidated" msgstr "承諾済み・未承諾で分類" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:763 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1806 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1411 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1826 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1450 msgid "Data range" msgstr "データ範囲" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1787 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1392 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1807 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1431 msgid "Projection period" msgstr "予想期間" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2218 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2364 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2269 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2367 msgid "Serialized header" msgstr "ヘッダの並び" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2219 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2365 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2270 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2368 msgid "The separator character is |" msgstr "デリミタは'|'です。" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2286 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2401 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2337 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2404 msgid "Field separator" msgstr "フィールドセパレータ" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2287 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2402 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2338 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2405 msgid "Separator for different fields in the serialized text chain" msgstr "連なったテキスト文字列でフィールドを分離するためのセパレータ" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2307 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2422 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2358 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2425 msgid "Line separator" msgstr "行セパレータ" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2308 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2423 -msgid "Separator in different lines (composed by fields) of the serialized text chain" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2359 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2426 +msgid "" +"Separator in different lines (composed by fields) of the serialized text chain" msgstr "(複数フィールドからなる)複数行のテキスト文字列をまたぐセパレータ" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:845 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3361 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3413 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3423 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3432 msgid "Uncompress module" msgstr "非圧縮モジュール" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:846 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3362 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3414 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3424 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3433 msgid "Use uncompressed module data." msgstr "非圧縮モジュールデータを利用します。" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:911 #: ../../enterprise/include/functions_massive.php:54 -#: ../../godmode/agentes/module_manager.php:274 +#: ../../godmode/agentes/module_manager.php:266 #: ../../godmode/massive/massive_delete_action_alerts.php:175 #: ../../godmode/massive/massive_add_action_alerts.php:163 #: ../../godmode/massive/massive_edit_modules.php:1999 -#: ../../include/functions_visual_map.php:2682 +#: ../../include/functions_visual_map.php:2684 msgid "No modules selected" msgstr "モジュールが選択されていません。" @@ -19813,13 +20518,13 @@ msgid "Wizard SLA" msgstr "SLAウィザード" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 -#: ../../enterprise/include/functions_reporting.php:2372 +#: ../../enterprise/include/functions_reporting.php:2373 #: ../../include/functions_reports.php:704 msgid "Monthly S.L.A." msgstr "月次 S.L.A." #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223 -#: ../../enterprise/include/functions_reporting.php:3324 +#: ../../enterprise/include/functions_reporting.php:3325 #: ../../include/functions_reports.php:708 msgid "Weekly S.L.A." msgstr "週次 S.L.A." @@ -19833,7 +20538,7 @@ msgid "Availability Graph S.L.A." msgstr "S.L.A. 可用性グラフ" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 -#: ../../enterprise/include/functions_reporting.php:5567 +#: ../../enterprise/include/functions_reporting.php:5568 #: ../../include/functions_reports.php:718 msgid "Services S.L.A." msgstr "サービス SLA" @@ -19877,24 +20582,24 @@ msgid "Inverse SLA" msgstr "SLA の反転" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2976 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3171 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3027 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3174 msgid "SLA items sorted by fulfillment value" msgstr "実データによりソートしたSLAアイテム" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:455 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1819 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1424 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1839 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1463 msgid "Only display wrong SLAs" msgstr "不正な SLA のみ表示" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3094 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3279 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3145 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3282 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1419 -#: ../../include/functions_reporting_html.php:4739 -#: ../../include/functions_reporting_html.php:5010 -#: ../../include/functions_reporting_html.php:5147 +#: ../../include/functions_reporting_html.php:4759 +#: ../../include/functions_reporting_html.php:5030 +#: ../../include/functions_reporting_html.php:5186 #: ../../include/functions_netflow.php:1183 #: ../../include/lib/Dashboard/Widgets/tactical.php:299 msgid "Summary" @@ -19918,16 +20623,16 @@ msgstr "SLA 制限値が必要です" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:151 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:218 -#: ../../enterprise/include/functions_reporting.php:8016 -#: ../../enterprise/include/functions_reporting.php:8082 -#: ../../godmode/reporting/reporting_builder.php:3597 +#: ../../enterprise/include/functions_reporting.php:8017 +#: ../../enterprise/include/functions_reporting.php:8083 +#: ../../godmode/reporting/reporting_builder.php:3625 #: ../../operation/reporting/reporting_viewer.php:157 msgid "Item editor" msgstr "アイテム編集" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:162 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:205 -#: ../../godmode/reporting/reporting_builder.php:3593 +#: ../../godmode/reporting/reporting_builder.php:3621 #: ../../operation/reporting/reporting_viewer.php:148 msgid "List items" msgstr "アイテム一覧" @@ -19941,9 +20646,9 @@ msgstr "テンプレート一覧" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:391 #: ../../godmode/reporting/reporting_builder.php:596 -#: ../../godmode/reporting/reporting_builder.php:3555 -#: ../../godmode/reporting/reporting_builder.php:3669 -#: ../../godmode/reporting/reporting_builder.php:3698 +#: ../../godmode/reporting/reporting_builder.php:3583 +#: ../../godmode/reporting/reporting_builder.php:3697 +#: ../../godmode/reporting/reporting_builder.php:3726 #: ../../operation/reporting/reporting_viewer.php:233 msgid "Custom reports" msgstr "カスタムレポート" @@ -19974,7 +20679,8 @@ msgstr "JSON" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:505 #: ../../enterprise/operation/reporting/custom_reporting.php:18 -#: ../../extensions/insert_data.php:199 ../../operation/agentes/exportdata.php:379 +#: ../../extensions/insert_data.php:199 +#: ../../operation/agentes/exportdata.php:379 msgid "CSV" msgstr "CSVファイル" @@ -20017,12 +20723,12 @@ msgid "Set start and end date" msgstr "開始・終了日を設定" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:778 -#: ../../include/ajax/module.php:250 ../../operation/agentes/datos_agente.php:198 +#: ../../include/ajax/module.php:257 ../../operation/agentes/datos_agente.php:198 msgid "Timestamp from:" msgstr "開始日時:" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:796 -#: ../../include/ajax/module.php:270 ../../operation/agentes/datos_agente.php:204 +#: ../../include/ajax/module.php:277 ../../operation/agentes/datos_agente.php:204 msgid "Timestamp to:" msgstr "終了日時:" @@ -20034,11 +20740,6 @@ msgstr "SLA 期間の編集" msgid "This field only applies in case of Monthly SLA item." msgstr "このフィールドは、月次 SLA アイテムの場合にのみ適用されます。" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857 -#: ../../enterprise/include/class/Omnishell.class.php:867 -msgid "Add agents" -msgstr "エージェント追加" - #: ../../enterprise/godmode/reporting/reporting_builder.template.php:865 msgid "Undo agents" msgstr "エージェント追加取り消し" @@ -20054,7 +20755,8 @@ msgstr "生成" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 msgid "Please set agent or agent regex distinct than " -msgstr "エージェントまたはエージェントの正規表現を次とは別のものに設定してください: " +msgstr "" +"エージェントまたはエージェントの正規表現を次とは別のものに設定してください: " #: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342 msgid "It is not a regular expression " @@ -20072,19 +20774,19 @@ msgstr "グラフテンプレートアイテムエディタ" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:242 #: ../../godmode/reporting/graph_builder.graph_editor.php:215 #: ../../godmode/reporting/graph_builder.graph_editor.php:345 -#: ../../include/functions.php:3981 +#: ../../include/functions.php:4027 msgid "Weight" msgstr "ウエイト" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3515 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3590 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3746 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3817 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4251 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4396 -#: ../../enterprise/operation/log/log_viewer.php:477 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3577 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3652 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3808 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3879 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4313 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4458 +#: ../../enterprise/operation/log/log_viewer.php:478 msgid "Exact match" msgstr "完全一致" @@ -20133,510 +20835,518 @@ msgstr "作成済のビジュアルコンソールがありません。最初に msgid "Create New Template" msgstr "新しいテンプレートを作成" -#: ../../enterprise/godmode/reporting/mysql_builder.php:66 +#: ../../enterprise/godmode/reporting/mysql_builder.php:67 msgid "Custom MySQL template builder" msgstr "カスタム MySQL テンプレートビルダ" -#: ../../enterprise/godmode/reporting/mysql_builder.php:79 -#: ../../enterprise/godmode/reporting/mysql_builder.php:206 -#: ../../enterprise/operation/menu.php:160 -msgid "Custom SQL" -msgstr "カスタム SQL" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:117 +#: ../../enterprise/godmode/reporting/mysql_builder.php:118 msgid "Create custom SQL" msgstr "カスタム SQL 作成" -#: ../../enterprise/godmode/reporting/mysql_builder.php:128 -#: ../../enterprise/godmode/reporting/mysql_builder.php:146 +#: ../../enterprise/godmode/reporting/mysql_builder.php:129 +#: ../../enterprise/godmode/reporting/mysql_builder.php:147 msgid "Create new custom" msgstr "設定の新規作成" -#: ../../enterprise/godmode/reporting/mysql_builder.php:187 +#: ../../enterprise/godmode/reporting/mysql_builder.php:188 msgid "List of custom MySQL templates" msgstr "カスタム MySQL テンプレート一覧" -#: ../../enterprise/godmode/reporting/mysql_builder.php:193 +#: ../../enterprise/godmode/reporting/mysql_builder.php:194 msgid "Template builder" msgstr "テンプレートビルダ" -#: ../../enterprise/godmode/reporting/mysql_builder.php:212 +#: ../../enterprise/godmode/reporting/mysql_builder.php:213 msgid "Successfully operation" msgstr "操作が完了しました" -#: ../../enterprise/godmode/reporting/mysql_builder.php:212 +#: ../../enterprise/godmode/reporting/mysql_builder.php:213 msgid "Could not be operation" msgstr "操作を完了できませんでした" -#: ../../enterprise/godmode/reporting/mysql_builder.php:214 +#: ../../enterprise/godmode/reporting/mysql_builder.php:215 msgid "Without changes" msgstr "変更なし" -#: ../../enterprise/godmode/reporting/mysql_builder.php:214 -#: ../../operation/users/user_edit.php:195 +#: ../../enterprise/godmode/reporting/mysql_builder.php:215 +#: ../../operation/users/user_edit.php:202 msgid "No changes have been made" msgstr "変更されていません" -#: ../../enterprise/godmode/reporting/mysql_builder.php:232 -#: ../../enterprise/include/functions_reporting_csv.php:1130 -#: ../../include/functions_reporting.php:7186 +#: ../../enterprise/godmode/reporting/mysql_builder.php:234 +#: ../../enterprise/include/functions_reporting_csv.php:1134 +#: ../../include/functions_reporting.php:7428 msgid "SQL" msgstr "SQL" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1627 -#: ../../godmode/reporting/reporting_builder.php:3720 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1647 +#: ../../godmode/reporting/reporting_builder.php:3748 msgid "Successfull action" msgstr "処理に成功しました。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1628 -#: ../../godmode/servers/modificar_server.php:175 -#: ../../godmode/servers/modificar_server.php:186 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648 +#: ../../godmode/servers/modificar_server.php:183 +#: ../../godmode/servers/modificar_server.php:194 msgid "Unsuccessfull action" msgstr "処理に失敗しました。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1645 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1041 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1665 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1049 msgid "Item Editor" msgstr "アイテムエディタ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1833 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1438 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1853 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1477 msgid "Current month" msgstr "今月" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1843 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1454 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1863 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1493 msgid "Working time" msgstr "対象時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1908 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1520 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1928 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1559 msgid "Time from" msgstr "開始時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1926 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1538 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1946 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1577 msgid "Time to" msgstr "終了時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1944 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1556 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1964 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1595 msgid "Show 24x7 item" msgstr "24時間365日のアイテムを表示" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1974 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1994 msgid "Select server" msgstr "サーバ選択" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1988 -#: ../../godmode/reporting/reporting_builder.item_editor.php:201 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2008 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2027 +#: ../../godmode/reporting/reporting_builder.item_editor.php:203 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1244 msgid "Local metaconsole" msgstr "ローカルメタコンソール" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2035 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1164 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2086 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1172 #: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" -"Case insensitive regular expression for agent name. For example: Network.* will match " -"with the following agent names: network_agent1, NetworK CHECKS" +"Case insensitive regular expression for agent name. For example: Network.* " +"will match with the following agent names: network_agent1, NetworK CHECKS" msgstr "" "エージェント名に対して大文字小文字を区別しない正規表現です。例: Network.* は、" "network_agent1, NetworKCHECKS というエージェント名にマッチします。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2059 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3643 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3875 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1187 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2110 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3705 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3937 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1195 msgid "" -"Case insensitive regular expression or string for module name. For example: if you " -"use this field with \"Module exact match\" enabled then this field has to be " -"fulfilled with the literally string of the module name, if not you can use a regular " -"expression. Example: .*usage.* will match: cpu_usage, vram usage in matchine 1." +"Case insensitive regular expression or string for module name. For example: if " +"you use this field with \"Module exact match\" enabled then this field has to " +"be fulfilled with the literally string of the module name, if not you can use " +"a regular expression. Example: .*usage.* will match: cpu_usage, vram usage in " +"matchine 1." msgstr "" -"モジュール名に対して大文字小文字を区別しない正規表現または文字列です。例: \"モジュール" -"完全一致\" を有効にしてこのフィールドを使った場合は、モジュール名の文字列そのままの指" -"定です。そうでない場合は正規表現です。例えば .*usage.* は、cpu_usage、vram usage in " -"machine 1 にマッチします。" +"モジュール名に対して大文字小文字を区別しない正規表現または文字列です。例: \"モ" +"ジュール完全一致\" を有効にしてこのフィールドを使った場合は、モジュール名の文字" +"列そのままの指定です。そうでない場合は正規表現です。例えば .*usage.* は、" +"cpu_usage、vram usage in machine 1 にマッチします。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2081 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2132 msgid "Module exact match" msgstr "モジュール完全一致" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2082 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3575 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3651 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3799 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3882 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2133 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3637 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3713 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3861 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3944 msgid "Check it if you want to match module name literally" msgstr "モジュール名の文字列通りにマッチさせたい場合にチェックします" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2098 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2149 msgid "Case insensitive regular expression or string for templates name." msgstr "テンプレート名の大文字と小文字を区別しない正規表現または文字列。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2121 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2172 msgid "Case insensitive regular expression or string for actions name." msgstr "アクション名の大文字と小文字を区別しない正規表現または文字列。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2143 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2194 msgid "Hide items without data" msgstr "データのないアイテムを隠す" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2144 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2195 msgid "Check it if you want not show items without data" msgstr "データのないアイテムを表示したくない場合はチェックしてください" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2157 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2208 #: ../../godmode/reporting/create_container.php:480 #: ../../godmode/reporting/create_container.php:624 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2205 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2208 #: ../../godmode/reporting/visual_console_builder.elements.php:105 #: ../../godmode/reporting/visual_console_builder.elements.php:575 #: ../../include/functions_visual_map_editor.php:397 #: ../../include/functions_visual_map_editor.php:400 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625 -#: ../../include/functions_reports.php:561 ../../include/functions_reports.php:648 -#: ../../include/functions_reports.php:654 ../../include/functions_reporting.php:10214 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 +#: ../../include/functions_reports.php:561 +#: ../../include/functions_reports.php:648 +#: ../../include/functions_reports.php:654 +#: ../../include/functions_reporting.php:10461 msgid "Custom graph" msgstr "カスタムグラフ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2201 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2352 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2252 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2355 msgid "Max items" msgstr "最大アイテム" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2234 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2317 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2285 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2320 msgid "Custom SQL template" msgstr "カスタム SQL テンプレート" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2255 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2338 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2306 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2341 msgid "" -"The entities of the fields that contain them must be included. Also is possible use " -"macros like `_start_date_` or `_end_date_`." +"The entities of the fields that contain them must be included. Also is " +"possible use macros like `_start_date_` or `_end_date_`." msgstr "" "それらを含むフィールドのエンティティを含める必要があります。 `_start_date_` や " "`_end_date_` などのマクロを使用することもできます。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2269 -#: ../../enterprise/include/functions_reporting_csv.php:722 -#: ../../enterprise/include/functions_reporting_csv.php:2455 -#: ../../enterprise/include/functions_reporting_csv.php:2469 -#: ../../extensions/api_checker.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/functions_reporting_csv.php:2459 +#: ../../enterprise/include/functions_reporting_csv.php:2473 +#: ../../extensions/api_checker.php:304 #: ../../godmode/reporting/reporting_builder.item_editor.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2384 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2387 #: ../../godmode/events/event_responses.editor.php:156 #: ../../godmode/events/event_responses.editor.php:164 -#: ../../include/functions_reporting_html.php:1581 ../../operation/gis_maps/ajax.php:316 +#: ../../include/functions_reporting_html.php:1581 +#: ../../operation/gis_maps/ajax.php:316 msgid "URL" msgstr "URL" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2280 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2395 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2331 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2398 msgid "Protocol must be specified in URL (e.g.: \"https://\")" msgstr "URL にはプロトコルを指定する必要があります。(例: \"https://\")" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2344 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3541 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2395 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3560 msgid "Group by" msgstr "グループ化" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2459 -#: ../../enterprise/include/functions_reporting_csv.php:1076 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2533 -#: ../../include/functions_reporting_html.php:4899 -#: ../../include/functions_reporting.php:1539 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2510 +#: ../../enterprise/include/functions_reporting_csv.php:1080 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2536 +#: ../../include/functions_reporting_html.php:4919 +#: ../../include/functions_reporting.php:1540 msgid "Avg" msgstr "平均" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2601 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2712 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2652 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2715 msgid "Select fields to show" msgstr "表示するフィールドの選択" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2609 -#: ../../enterprise/include/functions_reporting_csv.php:498 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2720 -#: ../../include/functions_reporting_html.php:4041 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2660 +#: ../../enterprise/include/functions_reporting_csv.php:501 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2723 +#: ../../include/functions_reporting_html.php:4060 msgid "Total time" msgstr "合計時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2617 -#: ../../enterprise/include/functions_reporting_csv.php:502 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 -#: ../../include/functions_reporting_html.php:4047 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2668 +#: ../../enterprise/include/functions_reporting_csv.php:505 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 +#: ../../include/functions_reporting_html.php:4066 msgid "Time failed" msgstr "障害時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2625 -#: ../../enterprise/include/functions_reporting_csv.php:506 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2736 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2676 +#: ../../enterprise/include/functions_reporting_csv.php:509 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2739 msgid "Time in OK status" msgstr "正常状態の時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2633 -#: ../../enterprise/include/functions_reporting_csv.php:510 -#: ../../enterprise/include/functions_reporting.php:4969 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2744 -#: ../../include/functions_reporting_html.php:4059 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2684 +#: ../../enterprise/include/functions_reporting_csv.php:513 +#: ../../enterprise/include/functions_reporting.php:4970 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2747 +#: ../../include/functions_reporting_html.php:4078 msgid "Time in warning status" msgstr "警告状態の時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 -#: ../../enterprise/include/functions_reporting_csv.php:514 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2752 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2692 +#: ../../enterprise/include/functions_reporting_csv.php:517 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2755 msgid "Time in unknown status" msgstr "不明状態の時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2653 -#: ../../enterprise/include/functions_reporting_csv.php:518 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2764 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2704 +#: ../../enterprise/include/functions_reporting_csv.php:521 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2767 msgid "Time of not initialized module" msgstr "未初期化モジュールの時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 -#: ../../enterprise/include/functions_reporting_csv.php:522 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2776 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2716 +#: ../../enterprise/include/functions_reporting_csv.php:525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2779 msgid "Time of downtime" msgstr "計画停止時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2719 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2828 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2770 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2831 msgid "

Select fields to show

" msgstr "

表示するフィールドを選択

" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2727 -#: ../../enterprise/include/functions_reporting_csv.php:530 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2836 -#: ../../include/functions_reporting_html.php:4135 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2778 +#: ../../enterprise/include/functions_reporting_csv.php:533 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2839 +#: ../../include/functions_reporting_html.php:4154 msgid "Total checks" msgstr "全確認数" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2735 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2844 -#: ../../include/functions_reporting_html.php:4141 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2786 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2847 +#: ../../include/functions_reporting_html.php:4160 msgid "Checks failed" msgstr "障害確認数" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2743 -#: ../../enterprise/include/functions_reporting_csv.php:538 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2852 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2794 +#: ../../enterprise/include/functions_reporting_csv.php:541 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2855 msgid "Checks in OK status" msgstr "OK 状態のチェック" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2755 -#: ../../enterprise/include/functions_reporting_csv.php:542 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2876 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2806 +#: ../../enterprise/include/functions_reporting_csv.php:545 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2879 msgid "Unknown checks" msgstr "不明チェック" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2888 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2818 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2891 msgid "

Select fields to show

" msgstr "

表示するフィールドを選択

" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 -#: ../../enterprise/include/functions_reporting_csv.php:665 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2896 -#: ../../include/functions_reporting_html.php:4455 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2826 +#: ../../enterprise/include/functions_reporting_csv.php:668 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2899 +#: ../../include/functions_reporting_html.php:4475 msgid "Agent max value" msgstr "エージェント最大値" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2904 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2834 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2907 msgid "Agent min values" msgstr "エージェント最小値" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2812 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3524 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2863 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3543 msgid "Show Summary" msgstr "概要を表示" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2956 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3007 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3131 msgid "Height (dynamic graphs)" msgstr "高さ(動的グラフ)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3112 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3047 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3115 msgid "Query History Database" msgstr "ヒストリデータベース問い合わせ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3008 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3193 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3059 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3196 msgid "Priority mode" msgstr "優先モード" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3013 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3198 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3064 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3201 msgid "Priority ok mode" msgstr "正常優先モード" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3025 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3210 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3076 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3213 msgid "Priority unknown mode" msgstr "不明優先モード" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3115 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3166 msgid "Modules to match" msgstr "マッチするモジュール" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3117 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3168 msgid "Select the modules to match when create a report for agents" msgstr "エージェントのレポートを作成する時にマッチするモジュールを選択します" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3217 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3268 msgid "Modules to match (Free text)" msgstr "マッチするモジュール (任意のテキスト)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3219 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3270 msgid "Free text to filter the modules of agents when apply this template." msgstr "このテンプレートを適用する時のエージェントのモジュールフィルタテキスト" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3236 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3287 msgid "Create a graph for each agent" msgstr "それぞれのエージェントのグラフ作成" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3238 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3289 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." +"If it is checked, the regexp or name of modules match only each to each to " +"agent, instead create a big graph with all modules from all agents." msgstr "" -"チェックした場合、それぞれのエージェントでモジュール名または正規表現でマッチします。そ" -"うでなければ、全エージェントの全モジュールの大きなグラフを生成します。" +"チェックした場合、それぞれのエージェントでモジュール名または正規表現でマッチし" +"ます。そうでなければ、全エージェントの全モジュールの大きなグラフを生成します。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3265 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3318 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3316 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3321 msgid "Calculate for custom intervals" msgstr "時間間隔の計算" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3277 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3330 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3327 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3416 +msgid "Use prefix notation" +msgstr "プレフィックス表記を使用する" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3339 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3333 msgid "Time lapse intervals" msgstr "時間経過間隔" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3279 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3333 -msgid "Lapses of time in which the period is divided to make more precise calculations" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3341 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3336 +msgid "" +"Lapses of time in which the period is divided to make more precise calculations" msgstr "より正確な計算を行うために期間が分割された経過時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3324 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3374 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3386 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3377 msgid "Table only" msgstr "表のみ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3334 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3385 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3396 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3388 msgid "Graph only" msgstr "グラフのみ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3344 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3396 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3406 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3399 msgid "Graph and table" msgstr "グラフと表" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3393 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1280 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3455 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1319 msgid "Filter by network" msgstr "ネットワークによるフィルタ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3423 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1299 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3485 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1338 msgid "Show alive IPs only" msgstr "応答のある IP のみ表示" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3436 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1312 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3498 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1351 msgid "Show IPs not assigned to an agent" msgstr "エージェントに割り当てられていない IP の表示" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3462 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3524 #: ../../godmode/netflow/nf_item_list.php:282 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3905 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3924 msgid "Create item" msgstr "アイテムの作成" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3471 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3533 #: ../../extensions/agents_modules.php:448 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3912 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3931 #: ../../include/functions_visual_map_editor.php:1421 msgid "Update item" msgstr "アイテム更新" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3520 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3999 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4018 msgid "SLA Min. (value)" msgstr "SLA 最小値" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3525 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4004 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3587 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4023 msgid "SLA Max. (value)" msgstr "SLA 最大値" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3530 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4009 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3592 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4028 msgid "SLA Limit (%)" msgstr "SLA 制限 (%)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3547 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3609 msgid "Please save the SLA template for start to add items in this list." -msgstr "この一覧へのアイテム追加を開始するには、SLA テンプレートを保存してください。" +msgstr "" +"この一覧へのアイテム追加を開始するには、SLA テンプレートを保存してください。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3588 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4260 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4405 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3650 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3877 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4322 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4467 msgid "Not literally" msgstr "存在しません" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3634 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3866 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3696 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3928 msgid "" -"Case insensitive regular expression for agent name. For example: Network* will match " -"with the following agent names: network_agent1, NetworK CHECKS" +"Case insensitive regular expression for agent name. For example: Network* will " +"match with the following agent names: network_agent1, NetworK CHECKS" msgstr "" "エージェント名に対して大文字小文字を区別しない正規表現です。例: Network* は、" "network_agent1、NetworKCHECKS というエージェント名にマッチします。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3650 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3712 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3943 msgid "Literal module name forced" msgstr "リテラルモジュール名が強制されました" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3689 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3941 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3751 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4003 #: ../../godmode/reporting/create_container.php:418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1776 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4233 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4270 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4439 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4712 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4746 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4800 -#: ../../include/functions_ui.php:5848 ../../include/functions_html.php:5443 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1815 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4252 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4289 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4458 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4731 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4765 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4819 +#: ../../include/functions_ui.php:5875 ../../include/functions_html.php:5436 msgid "Select an Agent first" msgstr "最初にエージェントを選択してください。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3771 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3833 msgid "Please save the template to start adding items into the list." msgstr "リストに項目を追加するにはテンプレートを保存してください。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4286 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4348 msgid "Name and SLA limit should not be empty" msgstr "名前と SLA 制限は空にできません" #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103 -#: ../../godmode/modules/module_list.php:60 ../../godmode/groups/configure_group.php:153 -#: ../../godmode/groups/group_list.php:844 ../../godmode/setup/os.builder.php:40 +#: ../../godmode/modules/module_list.php:60 +#: ../../godmode/groups/configure_group.php:153 +#: ../../godmode/groups/group_list.php:849 ../../godmode/setup/os.builder.php:40 #: ../../godmode/reporting/visual_console_builder.elements.php:293 #: ../../include/functions_visual_map_editor.php:68 #: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/functions_visual_map.php:4272 -#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../include/functions_visual_map.php:4225 +#: ../../include/rest-api/models/VisualConsole/Item.php:2148 #: ../../include/lib/Dashboard/Widgets/module_icon.php:424 #: ../../include/lib/Dashboard/Widgets/module_status.php:415 -#: ../../operation/visual_console/view.php:341 +#: ../../operation/visual_console/view.php:343 msgid "Icon" msgstr "アイコン" @@ -20646,7 +21356,7 @@ msgid "Available" msgstr "利用可能" #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141 -#: ../../include/graphs/export_data.php:100 +#: ../../include/graphs/export_data.php:103 msgid "Selected" msgstr "選択済" @@ -20668,7 +21378,7 @@ msgstr "アイコンプレビュー" msgid "The services list is empty" msgstr "サービス一覧が空です" -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:116 msgid "Advance Options" msgstr "拡張オプション" @@ -20696,18 +21406,20 @@ msgid "Name or Description" msgstr "名前または説明" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:312 -#: ../../godmode/netflow/nf_item_list.php:228 ../../godmode/netflow/nf_item_list.php:230 +#: ../../godmode/netflow/nf_item_list.php:228 +#: ../../godmode/netflow/nf_item_list.php:230 msgid "Move to up" msgstr "上へ" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:325 -#: ../../godmode/netflow/nf_item_list.php:226 ../../godmode/netflow/nf_item_list.php:231 +#: ../../godmode/netflow/nf_item_list.php:226 +#: ../../godmode/netflow/nf_item_list.php:231 msgid "Move to down" msgstr "下へ" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 #: ../../godmode/reporting/reporting_builder.list_items.php:445 -#: ../../include/functions_graph.php:1538 +#: ../../include/functions_graph.php:1514 msgid "No items." msgstr "アイテムがありません。" @@ -20760,9 +21472,9 @@ msgstr "新規コンソールタスクの作成" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469 #: ../../enterprise/include/class/Azure.cloud.php:689 #: ../../enterprise/include/class/VMware.app.php:455 -#: ../../enterprise/include/class/Omnishell.class.php:630 -#: ../../enterprise/include/class/Omnishell.class.php:980 -#: ../../enterprise/include/class/Omnishell.class.php:1349 +#: ../../enterprise/include/class/Omnishell.class.php:632 +#: ../../enterprise/include/class/Omnishell.class.php:982 +#: ../../enterprise/include/class/Omnishell.class.php:1351 #: ../../enterprise/include/class/DB2.app.php:354 #: ../../enterprise/include/class/SAP.app.php:401 #: ../../enterprise/include/class/Aws.cloud.php:1126 @@ -20772,17 +21484,18 @@ msgstr "新規コンソールタスクの作成" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:285 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:339 -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:752 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:349 -#: ../../godmode/modules/manage_network_components_form.php:367 +#: ../../godmode/modules/manage_network_components_form.php:370 #: ../../godmode/reporting/graph_builder.main.php:308 -#: ../../godmode/wizards/HostDevices.class.php:648 -#: ../../godmode/wizards/HostDevices.class.php:747 +#: ../../godmode/wizards/HostDevices.class.php:650 +#: ../../godmode/wizards/HostDevices.class.php:749 #: ../../godmode/wizards/Wizard.main.php:416 #: ../../godmode/wizards/DiscoveryTaskList.class.php:183 -#: ../../include/functions_html.php:6247 ../../include/class/CustomNetScan.class.php:314 +#: ../../include/functions_html.php:6242 +#: ../../include/class/CustomNetScan.class.php:314 #: ../../include/class/CustomNetScan.class.php:422 #: ../../include/class/HTML.class.php:419 +#: ../../include/lib/ClusterViewer/ClusterManager.php:752 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:349 msgid "Go back" msgstr "戻る" @@ -20790,7 +21503,8 @@ msgstr "戻る" msgid "Updating console task" msgstr "コンソールタスクの更新中" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 ../../godmode/menu.php:53 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 +#: ../../godmode/menu.php:54 #: ../../godmode/wizards/DiscoveryTaskList.class.php:105 msgid "Task list" msgstr "タスク一覧" @@ -20808,7 +21522,7 @@ msgstr "次回実行" #: ../../enterprise/include/class/Azure.cloud.php:190 #: ../../enterprise/include/class/DeploymentCenter.class.php:590 #: ../../enterprise/include/class/Aws.cloud.php:158 -#: ../../enterprise/include/class/Google.cloud.php:184 ../../godmode/menu.php:84 +#: ../../enterprise/include/class/Google.cloud.php:184 ../../godmode/menu.php:85 #: ../../godmode/wizards/HostDevices.class.php:190 #: ../../godmode/servers/discovery.php:59 msgid "Discovery" @@ -20817,11 +21531,11 @@ msgstr "自動検出" #: ../../enterprise/godmode/wizards/Cloud.class.php:210 #: ../../enterprise/godmode/wizards/Applications.class.php:186 msgid "" -"All company names used here are for identification purposes only. Use of these names, " -"logos, and brands does not imply endorsement." +"All company names used here are for identification purposes only. Use of these " +"names, logos, and brands does not imply endorsement." msgstr "" -"ここで使用されているすべての会社名は、識別することのみを目的としています。 これらの名" -"前、ロゴ、およびブランドの使用の承認を意味するものではありません。" +"ここで使用されているすべての会社名は、識別することのみを目的としています。 これ" +"らの名前、ロゴ、およびブランドの使用の承認を意味するものではありません。" #: ../../enterprise/godmode/wizards/Cloud.class.php:240 #: ../../enterprise/godmode/wizards/Cloud.class.php:248 @@ -20831,11 +21545,12 @@ msgstr "%s 認証情報" #: ../../enterprise/godmode/wizards/Cloud.class.php:264 msgid "" -"If a task with the selected credentials is already running, it will be edited. To " -"create a new one, another account from the credential store must be selected." +"If a task with the selected credentials is already running, it will be edited. " +"To create a new one, another account from the credential store must be " +"selected." msgstr "" -"選択した資格情報を持つタスクがすでに実行されている場合は、それが編集されます。 新規作" -"成するには、認証情報ストアから別のアカウントを選択する必要があります。" +"選択した資格情報を持つタスクがすでに実行されている場合は、それが編集されます。 " +"新規作成するには、認証情報ストアから別のアカウントを選択する必要があります。" #: ../../enterprise/godmode/wizards/Cloud.class.php:284 msgid "Manage accounts" @@ -20887,7 +21602,7 @@ msgstr "Pandora DB HA 管理" msgid "Manage Database HA" msgstr "データベース HA 管理" -#: ../../enterprise/godmode/servers/HA_cluster.php:136 +#: ../../enterprise/godmode/servers/HA_cluster.php:141 msgid "" "Make the cluster forget failed operations from history of\n" " the resource and re-detect its current state. This can be\n" @@ -20903,92 +21618,93 @@ msgstr "" "クリーンアップされます。 ノードが指定されていない場合、すべてのノード\n" "のリソース/ stonith デバイスがクリーンアップされます。" -#: ../../enterprise/godmode/servers/HA_cluster.php:162 +#: ../../enterprise/godmode/servers/HA_cluster.php:167 msgid "Node label" msgstr "ノードラベル" -#: ../../enterprise/godmode/servers/HA_cluster.php:163 -#: ../../enterprise/include/functions_reporting_csv.php:2394 +#: ../../enterprise/godmode/servers/HA_cluster.php:168 +#: ../../enterprise/include/functions_reporting_csv.php:2398 #: ../../operation/tree.php:246 msgid "Agent status" msgstr "エージェント状態" -#: ../../enterprise/godmode/servers/HA_cluster.php:164 +#: ../../enterprise/godmode/servers/HA_cluster.php:169 msgid "DB Repl." msgstr "DB レプリケーション" -#: ../../enterprise/godmode/servers/HA_cluster.php:165 +#: ../../enterprise/godmode/servers/HA_cluster.php:170 msgid "DB Status" msgstr "DB の状態" -#: ../../enterprise/godmode/servers/HA_cluster.php:167 +#: ../../enterprise/godmode/servers/HA_cluster.php:172 #: ../../extensions/quick_shell.php:195 -#: ../../godmode/agentes/module_manager_editor_network.php:478 +#: ../../godmode/agentes/module_manager_editor_network.php:522 msgid "SSH" msgstr "SSH" -#: ../../enterprise/godmode/servers/HA_cluster.php:168 +#: ../../enterprise/godmode/servers/HA_cluster.php:173 msgid "DB Role" msgstr "DB ロール" -#: ../../enterprise/godmode/servers/HA_cluster.php:169 +#: ../../enterprise/godmode/servers/HA_cluster.php:174 msgid "Cluster Role" msgstr "クラスタロール" -#: ../../enterprise/godmode/servers/HA_cluster.php:171 +#: ../../enterprise/godmode/servers/HA_cluster.php:176 msgid "Seconds behind master" msgstr "秒のマスタからの遅延" -#: ../../enterprise/godmode/servers/HA_cluster.php:172 +#: ../../enterprise/godmode/servers/HA_cluster.php:177 msgid "Virtual IP" msgstr "仮想 IP" -#: ../../enterprise/godmode/servers/HA_cluster.php:173 +#: ../../enterprise/godmode/servers/HA_cluster.php:178 msgid "SQL version" msgstr "SQL バージョン" -#: ../../enterprise/godmode/servers/HA_cluster.php:174 +#: ../../enterprise/godmode/servers/HA_cluster.php:179 msgid "DB version" msgstr "DB バージョン" -#: ../../enterprise/godmode/servers/HA_cluster.php:176 +#: ../../enterprise/godmode/servers/HA_cluster.php:181 msgid "Pending action" msgstr "保留中アクション" -#: ../../enterprise/godmode/servers/HA_cluster.php:301 +#: ../../enterprise/godmode/servers/HA_cluster.php:306 msgid "Show/ edit node" msgstr "ノードの表示 / 編集" -#: ../../enterprise/godmode/servers/HA_cluster.php:317 +#: ../../enterprise/godmode/servers/HA_cluster.php:322 msgid "Put node into standby status" msgstr "ノードをスタンバイ状態にする" -#: ../../enterprise/godmode/servers/HA_cluster.php:332 +#: ../../enterprise/godmode/servers/HA_cluster.php:337 msgid "Force node resync" msgstr "ノードの再同期を強制" -#: ../../enterprise/godmode/servers/HA_cluster.php:359 +#: ../../enterprise/godmode/servers/HA_cluster.php:364 msgid "Put node into online status" msgstr "ノードをオンライン状態にする" -#: ../../enterprise/godmode/servers/HA_cluster.php:374 +#: ../../enterprise/godmode/servers/HA_cluster.php:379 msgid "Show cluster details" msgstr "クラスタ詳細表示" -#: ../../enterprise/godmode/servers/HA_cluster.php:392 +#: ../../enterprise/godmode/servers/HA_cluster.php:397 msgid "Remove node from this list" msgstr "一覧からノードを削除" -#: ../../enterprise/godmode/servers/HA_cluster.php:428 +#: ../../enterprise/godmode/servers/HA_cluster.php:433 msgid "Register node" msgstr "ノード登録" -#: ../../enterprise/godmode/servers/HA_cluster.php:466 +#: ../../enterprise/godmode/servers/HA_cluster.php:470 msgid "" -"Target node will be erased from this list but not removed from cluster. Do you want " -"to continue?" +"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" @@ -21004,17 +21720,18 @@ msgstr "エクスポートターゲットの削除に失敗しました。" #: ../../enterprise/godmode/servers/manage_export.php:84 msgid "" -"Successfully deleted export target. All the linked modules will be automatically " -"unattached" +"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" +msgid "" +"Can't be created export target: User and password must be filled with FTP mode" msgstr "" -"エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力する必要" -"があります" +"エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力" +"する必要があります" #: ../../enterprise/godmode/servers/manage_export.php:126 msgid "There are no defined export targets" @@ -21026,7 +21743,7 @@ msgid "Preffix" msgstr "プレフィックス" #: ../../enterprise/godmode/servers/manage_export.php:141 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1023 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1171 #: ../../enterprise/godmode/servers/manage_export_form.php:103 msgid "Transfer mode" msgstr "転送モード" @@ -21054,39 +21771,38 @@ msgstr "サブネット" msgid "No Data" msgstr "データがありません" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:213 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:212 msgid "Error: The conf file of server is not readble." msgstr "エラー: サービスの設定ファイルを読めません。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:217 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:216 msgid "Error: The conf file of server is not writable." msgstr "エラー: サービスの設定ファイルに書き込めません。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:312 -msgid "" -"Enable/disable token (this will comment out the corresponding line in the " -"configuration file)" -msgstr "" -"トークンの有効化/無効化 (これにより、設定ファイル内の対応する行がコメントアウトされま" -"す)" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:314 +msgid "Default value: " +msgstr "デフォルト値" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:339 -#: ../../include/functions_servers.php:556 ../../include/functions_servers.php:1305 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:342 +#: ../../include/functions_servers.php:556 +#: ../../include/functions_servers.php:1305 msgid "Data server" msgstr "データサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:344 -#: ../../include/functions_servers.php:569 ../../include/functions_servers.php:1308 -#: ../../include/class/AgentWizard.class.php:1296 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:348 +#: ../../include/functions_servers.php:569 +#: ../../include/functions_servers.php:1308 +#: ../../include/class/AgentWizard.class.php:1379 msgid "Network server" msgstr "ネットワークサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:349 -#: ../../include/functions_servers.php:855 ../../include/functions_servers.php:1356 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:354 +#: ../../include/functions_servers.php:855 +#: ../../include/functions_servers.php:1353 msgid "Alert server" msgstr "アラートサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:354 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:360 #: ../../enterprise/include/ajax/ipam.ajax.php:357 #: ../../enterprise/include/class/Azure.cloud.php:781 #: ../../enterprise/include/class/VMware.app.php:593 @@ -21100,928 +21816,1001 @@ msgstr "アラートサーバ" #: ../../enterprise/include/class/Oracle.app.php:455 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450 #: ../../enterprise/tools/ipam/ipam_editor.php:163 -#: ../../godmode/wizards/HostDevices.class.php:848 -#: ../../include/functions_servers.php:595 ../../include/functions_servers.php:1341 +#: ../../godmode/wizards/HostDevices.class.php:850 +#: ../../include/functions_servers.php:595 +#: ../../include/functions_servers.php:1341 #: ../../include/class/CustomNetScan.class.php:479 #: ../../general/first_task/recon_view.php:22 msgid "Discovery server" msgstr "自動検出サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:359 -#: ../../include/functions_servers.php:608 ../../include/functions_servers.php:1320 -#: ../../include/class/AgentWizard.class.php:1277 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:366 +#: ../../include/functions_servers.php:621 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:840 +msgid "Prediction server" +msgstr "予測サーバ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:372 +#: ../../include/functions_servers.php:608 +#: ../../include/functions_servers.php:1320 +#: ../../include/class/AgentWizard.class.php:1360 msgid "Plugin server" msgstr "プラグインサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:364 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:378 +#: ../../include/functions_menu.php:526 ../../operation/menu.php:131 +msgid "SNMP console" +msgstr "SNMPコンソール" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:384 #: ../../include/functions_servers.php:1311 msgid "SNMP server" msgstr "SNNP サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:369 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:840 -#: ../../include/functions_servers.php:621 -msgid "Prediction server" -msgstr "予測サーバ" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:374 -#: ../../include/functions_servers.php:634 ../../include/functions_servers.php:1326 -#: ../../include/class/AgentWizard.class.php:1287 -msgid "WMI server" -msgstr "WMI サーバ" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:379 -#: ../../include/functions_servers.php:673 ../../include/functions_servers.php:1329 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:390 +#: ../../include/functions_servers.php:673 +#: ../../include/functions_servers.php:1329 msgid "Web server" msgstr "ウェブサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:384 -#: ../../include/functions_servers.php:660 ../../include/functions_servers.php:1335 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:396 +#: ../../include/functions_servers.php:660 +#: ../../include/functions_servers.php:1335 msgid "Inventory server" msgstr "インベントリサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:389 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:402 #: ../../enterprise/godmode/servers/manage_export_form.php:79 -#: ../../include/functions_servers.php:647 ../../include/functions_servers.php:1332 +#: ../../include/functions_servers.php:647 +#: ../../include/functions_servers.php:1332 msgid "Export server" msgstr "エクスポートサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:394 -#: ../../include/functions_servers.php:686 ../../include/functions_servers.php:1338 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:408 +#: ../../include/functions_servers.php:686 +#: ../../include/functions_servers.php:1338 msgid "Event server" msgstr "イベントサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:399 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:414 msgid "ICMP server" msgstr "ICMP サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:409 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:420 #: ../../include/functions_servers.php:1347 msgid "WUX server" msgstr "WUX サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:414 -#: ../../include/functions_servers.php:816 ../../include/functions_servers.php:1359 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:426 +#: ../../include/functions_servers.php:816 +#: ../../include/functions_servers.php:1356 msgid "NCM server" msgstr "NCM サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:421 -msgid "Network timeout" -msgstr "ネットワークタイムアウト" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:427 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:706 -msgid "Plugin timeout" -msgstr "プラグインタイムアウト" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:433 -msgid "SNMP console threads" -msgstr "SNMP コンソールスレッド" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:432 +#: ../../include/functions_servers.php:634 +#: ../../include/functions_servers.php:1326 +#: ../../include/class/AgentWizard.class.php:1370 +msgid "WMI server" +msgstr "WMI サーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:438 -msgid "Network threads" -msgstr "ネットワークスレッド" +msgid "Syslog server" +msgstr "syslog サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:443 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:700 -msgid "Plugin threads" -msgstr "プラグインスレッド" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:448 -msgid "Recon threads" -msgstr "自動検出スレッド" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:453 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 msgid "Dataserver threads" msgstr "データサーバスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:458 -msgid "Web threads" -msgstr "ウェブスレッド" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:452 +msgid "Network timeout" +msgstr "ネットワークタイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:463 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:838 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:459 +msgid "Network threads" +msgstr "ネットワークスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:465 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:796 +msgid "Plugin timeout" +msgstr "プラグインタイムアウト" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:472 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:789 +msgid "Plugin threads" +msgstr "プラグインスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:478 +msgid "SNMP console threads" +msgstr "SNMP コンソールスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:484 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:955 msgid "SNMP threads" msgstr "SNMP スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:468 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:490 +msgid "Web threads" +msgstr "ウェブスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:496 +msgid "Inventory threads" +msgstr "インベントリスレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:502 msgid "ICMP threads" msgstr "ICMP スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:475 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:508 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1225 +msgid "WMI threads" +msgstr "WMI スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:514 +msgid "Syslog threads" +msgstr "syslog スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:520 +msgid "Recon threads" +msgstr "自動検出スレッド" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:528 msgid "Autocreate group" msgstr "グループの自動作成" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:480 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:534 msgid "Autocreate group force" msgstr "グループの強制自動作成" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:485 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:540 msgid "Autocreate" msgstr "自動作成" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:496 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:552 msgid "Agent configuration files directory" msgstr "エージェント設定ファイルディレクトリ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:497 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:553 msgid "Directory where agent configuration files are stored" msgstr "エージェント設定ファイル保存ディレクトリ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:508 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:566 msgid "Agent interval" msgstr "エージェント実行間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:513 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:572 msgid "Agent threads" msgstr "エージェントスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:514 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:573 msgid "Number of threads used for sending agent XML data files" msgstr "エージェント XML データ ファイルの送信に使用されるスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:519 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:579 msgid "ICMP subnets blacklist" msgstr "ICMP サブネットブラックリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:520 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:526 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:532 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:580 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:587 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:594 msgid "Separated by a comma. Example: 192.168.0.0/24,8.8.8.8/30" msgstr "カンマ区切り。例: 192.168.0.0/24,8.8.8.8/30" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:525 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:586 msgid "SNMP subnets blacklist" msgstr "SNMP サブネットブラックリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:531 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:593 msgid "WMI subnets blacklist" msgstr "WMI サブネットブラックリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:537 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:600 msgid "Path to braa binary" msgstr "braa バイナリパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:542 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:606 msgid "Credential password" msgstr "認証パスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:543 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 msgid "Password used to encrypt credential boxes" msgstr "認証情報ボックスの暗号化に使用するパスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:548 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:613 msgid "Remote configuration check interval" msgstr "リモート設定チェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:553 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:619 msgid "Daemon" msgstr "デーモン" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:554 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:620 msgid "Run in background if set to 1" msgstr "1 に設定すると、バックグラウンドで実行します" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:560 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:627 msgid "" -"Set to 1 to move dynamic auto-discovered modules (SNMP, WMI...) to separate files so " -"that they don't interfere with remote agent configuration" +"Set to 1 to move dynamic auto-discovered modules (SNMP, WMI...) to separate " +"files so that they don't interfere with remote agent configuration" msgstr "" -"動的に自動検出されたモジュール (SNMP、WMI...) を別のファイルに移動して、リモート エー" -"ジェントの設定に干渉しないようにするには、1 に設定します。" +"動的に自動検出されたモジュール (SNMP、WMI...) を別のファイルに移動して、リモー" +"ト エージェントの設定に干渉しないようにするには、1 に設定します。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:565 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:633 msgid "Exec interval" msgstr "実行間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:566 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:634 msgid "Time between exec checks" msgstr "チェック実行間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:571 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:640 msgid "Exec threads" msgstr "実行スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:572 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:641 msgid "Number of threads used for exec modules" msgstr "モジュール実行スレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:577 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 msgid "Path to fping binary" msgstr "fping バイナリのパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:578 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:648 msgid "" -"Used by the Enterprise ICMP Server. Default path is /usr/sbin/fping for installation " -"in Centos, if you are installing in another distro, install fping in /usr/bin/fping " -"and update this field with the new path" +"Used by the Enterprise ICMP Server. Default path is /usr/sbin/fping for " +"installation in Centos, if you are installing in another distro, install fping " +"in /usr/bin/fping and update this field with the new path" msgstr "" -"Enterprise ICMP サーバによって使用されます。 CentOS にインストールする場合のデフォルト" -"パスは /usr/sbin/fping です。別のディストリビューションにインストールする場合は、" -"fping を /usr/bin/fping にインストールし、このフィールドにインストール先のパスを設定し" -"ます。" +"Enterprise ICMP サーバによって使用されます。 CentOS にインストールする場合のデ" +"フォルトパスは /usr/sbin/fping です。別のディストリビューションにインストールす" +"る場合は、fping を /usr/bin/fping にインストールし、このフィールドにインストー" +"ル先のパスを設定します。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:583 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:654 msgid "Path to Pandora Fast SNMP binary" msgstr "Pandora 高速 SNMP バイナリのパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:588 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:660 msgid "Forced add" msgstr "強制追加" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:589 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:661 msgid "" -"If set to 1, manually added hosts (via add_host or host_file) will always be created, " -"whether they respond to ping or not" +"If set to 1, manually added hosts (via add_host or host_file) will always be " +"created, whether they respond to ping or not" msgstr "" -"1 に設定すると、(add_host または host_file を介して) 手動で追加されたホストは、ping に" -"応答するかどうかにかかわらず、常に作成されます。" +"1 に設定すると、(add_host または host_file を介して) 手動で追加されたホストは、" +"ping に応答するかどうかにかかわらず、常に作成されます。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:594 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:667 msgid "General GIS exec" msgstr "一般的な GIS 実行" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:595 -msgid "Path to general GIS coordinates generator. It should be an executable file" -msgstr "一般的な GIS 座標ジェネレータへのパス。 実行可能ファイルである必要があります" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668 +msgid "" +"Path to general GIS coordinates generator. It should be an executable file" +msgstr "" +"一般的な GIS 座標ジェネレータへのパス。 実行可能ファイルである必要があります" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:601 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 msgid "Group where agents will be placed (must exist in the Pandora FMS console)" msgstr "" -"エージェントが配置されるグループ (Pandora FMS コンソールに存在する必要があります)" +"エージェントが配置されるグループ (Pandora FMS コンソールに存在する必要がありま" +"す)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:606 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:680 msgid "Host file" msgstr "Host ファイル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 -msgid "File containing hosts to be scanned. The address may be followed by a hostname" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:681 +msgid "" +"File containing hosts to be scanned. The address may be followed by a hostname" msgstr "スキャンするホストを含むファイル。アドレスの後にホスト名を続けます" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:612 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:687 msgid "Latency block" msgstr "レイテンシーブロック" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:613 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:688 msgid "Number of hosts processed in a single call to nmap (latency)" msgstr "nmap の 1 回の呼び出しで処理されるホストの数 (レイテンシー)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:618 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:694 msgid "Latency interval" msgstr "レイテンシー間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:619 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:695 msgid "Time between latency checks" msgstr "レイテンシーチェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:624 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:701 msgid "Latency packets" msgstr "レイテンシーパケット" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:625 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:702 msgid "Number of ICMP packets to send per latency request" msgstr "レイテンシーチェックごとに送信する ICMP パケットの数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:630 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:708 msgid "Latency retries" msgstr "レイテンシーリトライ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:631 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:677 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:709 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:762 msgid "Number of retries for latency modules" msgstr "レイテンシーモジュールのリトライ数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:636 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:715 msgid "Latency threads" msgstr "レイテンシースレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:637 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:716 msgid "Number of threads used for latency checks." msgstr "レイテンシーチェックに使用するスレッド数。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 msgid "Latency timeout" msgstr "レイテンシータイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:643 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:723 msgid "Timeout for latency checks in seconds." msgstr "レイテンシーチェックのタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:648 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:729 msgid "Log file path" msgstr "ログファイルパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:653 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:735 msgid "Path to nmap binary" msgstr "nmap バイナリパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:658 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:740 msgid "Ping block" msgstr "Ping ブロック" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:659 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:741 msgid "Number of hosts processed in a single call to nmap (ping)" msgstr "nmap (ping) の 1 回の呼び出しで処理されるホスト数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:664 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:747 msgid "Ping interval" msgstr "Ping 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:665 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:748 msgid "Time between ping checks" msgstr "Ping チェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:670 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 msgid "Ping packets" msgstr "Ping パケット" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:671 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:755 msgid "Number of ICMP packets to send per ping request" msgstr "ping チェックごとに送信する ICMP パケット数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:676 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:761 msgid "Ping retries" msgstr "Ping リトライ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:682 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:768 msgid "Ping threads" msgstr "Ping スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:683 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:769 msgid "Number of threads used for ping checks" msgstr "ping チェックに使用するスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:688 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:775 msgid "Ping timeout" msgstr "Ping タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:689 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:776 msgid "Timeout for ping checks in seconds" msgstr "ping チェックのタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:694 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:782 msgid "Plugin interval" msgstr "プラグイン間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:695 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:783 msgid "Time between plug-in checks" msgstr "プラグインチェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:701 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:790 msgid "Number of threads used for plug-in checks" msgstr "プラグインチェックに試用するスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:707 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:797 msgid "Timeout for plug-in checks in seconds" msgstr "プラグインチェックのタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:712 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:803 +msgid "Proxy traps from" +msgstr "次からのトラッププロキシ: " + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:809 msgid "Proxy traps to" msgstr "トラッププロキシ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:713 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:810 msgid "Enable the SNMP trap proxy to the specified address" msgstr "指定したアドレスに対する SNMP トラッププロキシの有効化" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:718 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816 msgid "Proxy tentacle to" msgstr "Tentacle プロキシ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:719 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:817 msgid "Enable the Tentacle proxy to the specified address:port" msgstr "指定した アドレス:ポート番号 への Tentacle プロキシの有効化" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:724 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:823 +msgid "Proxy tentacle from" +msgstr "次からの Tentacle プロキシ: " + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:829 msgid "Recon community" msgstr "自動検出コミュニティ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:725 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:830 msgid "Comma separated list of SNMP communities to try for SNMP auto-discovery" msgstr "SNMP 自動検出を行う際の SNMP コミュニティのカンマ区切りリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:730 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:836 msgid "Recon enabled" msgstr "自動検出有効" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:731 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:837 msgid "Enable (1) or disable (0) host auto-discovery" msgstr "ホスト自動検出の有効化 (1) または無効化 (0)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:736 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:843 msgid "Recon interval" msgstr "自動検出間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:737 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:844 msgid "Time between network scans in seconds" msgstr "秒単位でのネットワークスキャン間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:742 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:850 msgid "Recon mode" msgstr "自動検出モード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:743 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:851 msgid "Comma separated list of auto-discovery modules (snmp,icmp,wmi)" msgstr "自動検出モジュール (snmp、icmp、wmi) のカンマ区切りリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:748 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:857 msgid "Recon task" msgstr "自動検出タスク" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:749 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:858 msgid "" -"Comma separated list of networks (in slash notation) to scan for host auto-discovery " -"(example: 192.168.0.0/24,192.168.1.0/24)" +"Comma separated list of networks (in slash notation) to scan for host auto-" +"discovery (example: 192.168.0.0/24,192.168.1.0/24)" msgstr "" -"ホストの自動検出でスキャンするネットワークのカンマ区切りリスト (スラッシュ表記) (例: " -"192.168.0.0/24,192.168.1.0/24)" +"ホストの自動検出でスキャンするネットワークのカンマ区切りリスト (スラッシュ表" +"記) (例: 192.168.0.0/24,192.168.1.0/24)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:864 msgid "Recon timing template" msgstr "自動検出タイミングテンプレート" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:755 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 msgid "" -"Like nmap_timing_template, but applies to Satellite Server and Recon Server network " -"scans. 3 by default" +"Like nmap_timing_template, but applies to Satellite Server and Recon Server " +"network scans. 3 by default" msgstr "" -"nmap_timing_template と同様ですが、サテライトサーバおよび自動検出サーバのネットワーク " -"スキャンに適用されます。 デフォルトは 3 です" +"nmap_timing_template と同様ですが、サテライトサーバおよび自動検出サーバのネット" +"ワーク スキャンに適用されます。 デフォルトは 3 です" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:760 -#: ../../enterprise/operation/agentes/tag_view.php:647 -#: ../../operation/agentes/estado_agente.php:898 -msgid "Remote config" -msgstr "リモート設定" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:761 -msgid "Enable (1) or disable (0) remote configuration" -msgstr "リモート設定の有効化(1)または無効化(0)" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:766 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:871 #: ../../enterprise/include/class/DeploymentCenter.class.php:811 msgid "Server IP" msgstr "サーバ IP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:767 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 msgid "Tentacle server address. Put here your Pandora FMS data server address" msgstr "" -"Tentacle サーバのアドレス。 Pandora FMS データサーバのアドレスを入力してください" +"Tentacle サーバのアドレス。 Pandora FMS データサーバのアドレスを入力してくださ" +"い" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:773 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 msgid "Name of the Satellite server (the hostname is used by default)" msgstr "サテライトサーバの名前 (デフォルトではホスト名が使用されます)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:778 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:885 msgid "Server path" msgstr "サーバパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:779 -msgid "Path where XML files are copied (only used if transfer mode is set to local)" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:886 +msgid "" +"Path where XML files are copied (only used if transfer mode is set to local)" msgstr "" -"XML ファイルがコピーされるパス (転送モードが local に設定されている場合のみ使用されま" -"す)" +"XML ファイルがコピーされるパス (転送モードが local に設定されている場合のみ使用" +"されます)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:784 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:892 msgid "Server port" msgstr "サーバポート" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:785 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:893 msgid "Tentacle server port" msgstr "Tentacle サーバポート" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:790 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:899 msgid "SSH interval" msgstr "SSH 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:791 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:900 msgid "Time between SSH checks" msgstr "SSH チェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:796 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:906 msgid "SSH threads" msgstr "SSH スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:797 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:907 msgid "Number of threads used for SSH modules" msgstr "SSH モジュールのスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:802 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:913 msgid "SSH timeout" msgstr "SSH タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:803 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:914 msgid "Timeout for SSH checks in seconds" msgstr "SSH チェックのタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:808 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:920 msgid "Keepalive" msgstr "キープアライブ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:809 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:921 msgid "" -"Interval of the main server loop in seconds. Status updates are sent to Pandora every " -"keepalive seconds" +"Interval of the main server loop in seconds. Status updates are sent to " +"Pandora every keepalive seconds" msgstr "" -"メインサーバループの間隔 (秒単位)。 ステータスの更新はキープアライブ秒ごとに Pandora " -"に送信されます" +"メインサーバループの間隔 (秒単位)。 ステータスの更新はキープアライブ秒ごとに " +"Pandora に送信されます" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:814 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:927 msgid "SNMP blacklist" msgstr "SNMP ブラックリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:815 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:928 msgid "SNMP module blacklist" msgstr "SNMP モジュールブラックリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:820 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:934 msgid "SNMP block" msgstr "SNMP ブロック" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:821 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:935 msgid "Number of hosts processed in a single call to braa (SNMPv1)" msgstr "braa (SNMPv1) の 1 回の呼び出しで処理するホスト数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:826 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:941 msgid "SNMP interval" msgstr "SNMP 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:827 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:942 msgid "Time between SNMP checks (SNMPv1)" msgstr "SNMP チェック (SNMPv1) 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:948 msgid "SNMP retries" msgstr "SNMP リトライ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:833 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:949 msgid "Number of retries for SNMP modules (SNMPv1)" msgstr "SNMP モジュール (SNMPv1) のリトライ回数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:839 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:956 msgid "Number of threads used for SNMP checks (SNMPv1)" msgstr "SNMP チェック (SNMPv1) に使用するスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:844 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:962 msgid "SNMP timeout" msgstr "SNMP タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:845 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:963 msgid "Timeout for SNMP checks in seconds (SNMPv1)" msgstr "SNMP チェック (SNMPv1) のタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:850 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:969 msgid "SNMP verify" msgstr "SNMP 検証" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:851 -msgid "Enable (1) or disable (0) the verification of SNMPv1 modules that break braa" -msgstr "braa の実行を妨げる SNMPv1 モジュールの検証を有効化 (1) または無効化 (0) します" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:857 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:970 msgid "" -"Default SNMP version to use (1 or 2c, SNMPv3 modules explicitly state their version). " -"WARNING: some modules could stop working if you change this setting" +"Enable (1) or disable (0) the verification of SNMPv1 modules that break braa" msgstr "" -"使用するデフォルトの SNMP バージョン (1 または 2c、SNMPv3 モジュールはバージョンを明示" -"的に示します)。 警告: この設定を変更すると、一部のモジュールが動作しなくなる可能性があ" -"ります" +"braa の実行を妨げる SNMPv1 モジュールの検証を有効化 (1) または無効化 (0) します" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:862 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:977 +msgid "" +"Default SNMP version to use (1 or 2c, SNMPv3 modules explicitly state their " +"version). WARNING: some modules could stop working if you change this setting" +msgstr "" +"使用するデフォルトの SNMP バージョン (1 または 2c、SNMPv3 モジュールはバージョ" +"ンを明示的に示します)。 警告: この設定を変更すると、一部のモジュールが動作しな" +"くなる可能性があります" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:983 msgid "SNMPv2c block" msgstr "SNMPv2c ブロック" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:863 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:984 msgid "Number of hosts processed in a single call to braa (SNMPv2c)" msgstr "braa (SNMPv2c) の 1 回の呼び出しで処理するホスト数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:868 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990 msgid "SNMPv2c interval" msgstr "SNMPv2c 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:869 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:991 msgid "Time between SNMP checks (SNMPv2c)" msgstr "SNMP チェック (SNMPv2c) 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:874 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:997 msgid "SNMPv2c retries" msgstr "SNMPv2c リトライ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:875 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:998 msgid "Number of retries for SNMP modules (SNMPv2c)" msgstr "SNMP モジュール (SNMPv2c) のリトライ回数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:880 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1004 msgid "SNMPv2c threads" msgstr "SNMPv2c スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:881 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1005 msgid "Number of threads used for SNMP checks (SNMPv2c)" msgstr "SNMP チェック (SNMPv2c) に使用するスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:886 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1011 msgid "SNMPv2c timeout" msgstr "SNMPv2c タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:887 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1012 msgid "Timeout for snmp checks in seconds (SNMPv2c)" msgstr "SNMP チェック (SNMPv2c) のタイムアウト (秒単位) " -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:892 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1018 msgid "SNMPv2c verify" msgstr "SNMPv2c 検証" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:893 -msgid "Enable (1) or disable (0) the verification of SNMPv2 modules that break braa" -msgstr "braa の実行を妨げる SNMPv2 モジュールの検証を有効化 (1) または無効化 (0) します" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1019 +msgid "" +"Enable (1) or disable (0) the verification of SNMPv2 modules that break braa" +msgstr "" +"braa の実行を妨げる SNMPv2 モジュールの検証を有効化 (1) または無効化 (0) します" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:898 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1025 msgid "SNMPv3 block" msgstr "SNMPv3 ブロック" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:899 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1026 msgid "Number of hosts processed in a single call to braa (SNMPv3)" msgstr "braa (SNMPv3) の 1 回の呼び出しで処理するホスト数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:904 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1032 msgid "SNMPv3 interval" msgstr "SNMPv3 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:905 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1033 msgid "Time between SNMP checks (SNMPv3)" msgstr "SNMP チェック (SNMPv3) 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:910 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1039 msgid "SNMPv3 retries" msgstr "SNMPv3 リトライ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:911 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1040 msgid "Number of retries for SNMP modules (SNMPv3)" msgstr "SNMP モジュール (SNMPv3) のリトライ回数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:916 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1046 msgid "SNMPv3 threads" msgstr "SNMPv3 スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:917 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1047 msgid "Number of threads used for SNMP checks (SNMPv3)" msgstr "SNMP チェック (SNMPv3) に使用するスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:922 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1053 msgid "SNMPv3 timeout" msgstr "SNMPv3 タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:923 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1054 msgid "Timeout for SNMP checks in seconds (SNMPv3)" msgstr "SNMP チェック (SNMPv3) のタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:928 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1060 msgid "SNMPv3 verify" msgstr "SNMPv3 検証" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:929 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1061 msgid "" -"Enable (1) or disable (0) the verification of SNMPv3 modules that break pandorafsnmp" -msgstr "braa の実行を妨げる SNMPv3 モジュールの検証を有効化 (1) または無効化 (0) します" +"Enable (1) or disable (0) the verification of SNMPv3 modules that break " +"pandorafsnmp" +msgstr "" +"braa の実行を妨げる SNMPv3 モジュールの検証を有効化 (1) または無効化 (0) します" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:934 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1067 msgid "SNMPv3 security level" msgstr "SNMPv3 セキュリティレベル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:935 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1068 msgid "Security level used for SNMPv3 messages (noauth, authnopriv or authpriv)" msgstr "" -"SNMPv3 メッセージに使用されるセキュリティ レベル (noauth、authnopriv、または authpriv)" +"SNMPv3 メッセージに使用されるセキュリティ レベル (noauth、authnopriv、または " +"authpriv)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:940 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1074 msgid "SNMPv3 security name" msgstr "SNMPv3 セキュリティ名" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:941 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1075 msgid "Security name used for SNMPv3 messages" msgstr "SNMPv3 メッセージに使用されるセキュリティ名" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:946 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1081 msgid "SNMPv3 authentication protocol" msgstr "SNMPv3 認証プロトコル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:947 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1082 msgid "Authentication protocol (md5 or sha) for authenticated SNMPv3 requests" msgstr "SNMPv3 リクエストの認証プロトコル (md5 または sha)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:952 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1088 msgid "SNMPv3 authentication password" msgstr "SNMPv3 認証パスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:953 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1089 msgid "Authentication password for authenticated SNMPv3 request" msgstr "SNMPv3 リクエストの認証パスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:958 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1095 msgid "SNMPv3 privacy protocol" msgstr "SNMPv3 暗号化プロトコル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:959 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1096 msgid "Privacy protocol (des or aes) for encrypted SNMPv3 requests" msgstr "SNMPv3 リクエストの暗号化プロトコル (des または aes)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:964 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1102 msgid "SNMPv3 privacy password" msgstr "SNMPv3 プライバシーパスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:965 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1103 msgid "Privacy password for encrypted SNMPv3 messages" msgstr "SNMPv3 メッセージの暗号化パスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:970 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1109 msgid "Startup delay" msgstr "開始遅延" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:971 -msgid "Wait startup_delay seconds before sending XML data files for the first time" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1110 +msgid "" +"Wait startup_delay seconds before sending XML data files for the first time" msgstr "初回の XML データファイル送信の前に、startup_delay 秒待機します。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:976 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1116 msgid "TCP interval" msgstr "TCP 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:977 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1117 msgid "Time between TCP checks" msgstr "TCP チェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:982 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1123 msgid "TCP threads" msgstr "TCP スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:983 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1124 msgid "Threads dedicated to TCP checks" msgstr "TCP チェックのスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:988 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1130 msgid "TCP timeout" msgstr "TCP タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:989 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1131 msgid "Timeout for TCP checks in seconds" msgstr "TCP チェックのタイムアウト(秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:994 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1137 msgid "Temporal" msgstr "一時的" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:995 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1138 msgid "Temporal directory where XML files are created" msgstr "XML ファイルが作成される一時ディレクトリ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1000 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1144 msgid "Temporal minimum size" msgstr "一時的な最小サイズ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1001 -msgid "Minimum available bytes in the temporal directory to enable the XML buffer" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1145 +msgid "" +"Minimum available bytes in the temporal directory to enable the XML buffer" msgstr "XML バッファを有効にする場合の一時ディレクトリで使用可能な最小バイト数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1006 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1151 msgid "Full path to tentacle client" msgstr "tentacle クライアントのフルパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1011 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1157 msgid "Timeout for the timeout command" msgstr "timeout コマンドのタイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1012 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1158 msgid "In seconds" msgstr "秒単位" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1017 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1164 msgid "Server opts" msgstr "サーバオプション" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1018 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1165 msgid "Parameters that are passed to Tentacle" msgstr "Tentacle に渡されるパラメータ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1024 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1172 msgid "tentacle or local" msgstr "Tentacle またはローカル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1029 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1178 msgid "Verbosity" msgstr "ログの詳細度" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1030 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1179 msgid "Verbosity level from 0 (less verbose) to 10 (more verbose)" msgstr "0 (詳細度が低い) から 10 (詳細度が高い) までの詳細度レベル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1035 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1185 msgid "VLAN cache enabled" msgstr "VLAN キャッシュ有効" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1036 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1186 msgid "Enable (1) or disable (0) the VLAN cache for host auto-discovery" msgstr "ホスト自動検出用の VLAN キャッシュを有効 (1) または無効 (0) にします" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1041 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1192 msgid "Enable XML buffer" msgstr "XML バッファの有効化" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1046 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1198 msgid "WMI authentication" msgstr "WMI 認証" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1047 -msgid "Comma separated list of username%password pairs to try for WMI authentication" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1199 +msgid "" +"Comma separated list of username%password pairs to try for WMI authentication" msgstr "WMI 認証を試行する ユーザ名%パスワード のペアのカンマ区切りリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1052 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1205 msgid "Full path to WMI client binary" msgstr "WMI クライアントバイナリのフルパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1057 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1211 msgid "WMI interval" msgstr "WMI 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1058 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1212 msgid "Time in seconds between WMI checks" msgstr "秒単位の WMI 監視間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1063 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1218 msgid "WMI NTLMv2" msgstr "WMI NTLMv2" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1064 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1219 msgid "Enable to use NTLMv2 authentication for WMI" msgstr "WMI で NTLMv2 認証を使用できるようにする" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1069 -msgid "WMI threads" -msgstr "WMI スレッド" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1070 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1226 msgid "Threads dedicated to WMI polling" msgstr "WMI ポーリングのスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1077 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1232 +msgid "IPAM task" +msgstr "IPAM タスク" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1233 +msgid "" +"Comma separated list of networks (in slash notation) to scan for IPAM. Must be " +"preceded by the ID of the IPAM task in Pandora FMS (E.g. 1,192.168.0.0/24)" +msgstr "" +"IPAM スキャンを行うネットワークのカンマ区切りリスト (スラッシュ表記) 最初に " +"Pandora FMS の IPAM タスク ID が必要です。(例: 1,192.168.0.0/24)" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1239 +msgid "Timeout bin" +msgstr "timeout バイナリ" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1240 +msgid "" +"If defined, the timeout program (usually /usr/bin/timeout) will be used to " +"call the Tentacle client" +msgstr "" +"設定されている場合、timeout プログラム (通常は /usr/bin/timeout) が Tentacle ク" +"ライアントの呼び出しに使用されます。" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1246 +msgid "IPAM interval" +msgstr "IPAM 間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1247 +msgid "Time between IPAM scans in seconds" +msgstr "秒単位での IPAM スキャン間隔" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1255 msgid "Secondary mode" msgstr "セカンダリモード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1078 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1256 msgid "" -"If secondary_mode is set to on_error, data files are copied to the secondary server " -"only if the primary server fails. If set to always, data files are always copied to " -"the secondary server" +"If secondary_mode is set to on_error, data files are copied to the secondary " +"server only if the primary server fails. If set to always, data files are " +"always copied to the secondary server" msgstr "" -"secondary_mode が on_error に設定されている場合、プライマリサーバに障害が発生した場合" -"にのみ、データファイルがセカンダリサーバにコピーされます。 always に設定すると、デー" -"タ ファイルは常にセカンダリサーバにコピーされます。" +"secondary_mode が on_error に設定されている場合、プライマリサーバに障害が発生し" +"た場合にのみ、データファイルがセカンダリサーバにコピーされます。 always に設定" +"すると、データ ファイルは常にセカンダリサーバにコピーされます。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1083 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1262 msgid "Secondary server IP" msgstr "セカンダリサーバ IP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1088 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1268 msgid "Secondary server path" msgstr "セカンダリサーバパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1093 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1274 msgid "Secondary server port" msgstr "セカンダリサーバポート" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1098 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1280 msgid "Secondary transfer mode" msgstr "セカンダリ転送モード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1103 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1286 msgid "Secondary server opts" msgstr "セカンダリサーバオプション" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1188 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1376 msgid "Delete remote conf server files" msgstr "リモート設定サーバファイル削除" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1189 -msgid "Delete this conf file implies that server will send back local config to console" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 +msgid "" +"Delete this conf file implies that server will send back local config to " +"console" msgstr "" -"この conf ファイルを削除すると、サーバがローカル設定をコンソールに送り返すことを意味し" -"ます" +"この conf ファイルを削除すると、サーバがローカル設定をコンソールに送り返すこと" +"を意味します" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1223 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1413 msgid "General server configuration" msgstr "一般サーバ設定" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1230 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1420 msgid "Secondary server configuration" msgstr "セカンダリサーバ設定" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1236 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1426 msgid "Server features" msgstr "サーバ機能" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1243 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1433 msgid "Optimization settings" msgstr "カスタム設定" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1250 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1440 msgid "Other server settings" msgstr "他のサーバ設定" @@ -22054,14 +22843,14 @@ msgstr "生成するレポート" #: ../../enterprise/include/functions_cron.php:186 #: ../../enterprise/include/functions_cron.php:236 -#: ../../enterprise/include/functions_reporting.php:8168 +#: ../../enterprise/include/functions_reporting.php:8169 #: ../../enterprise/operation/reporting/custom_reporting.php:124 msgid "Send to emails (separated by comma)" msgstr "メール送信 (カンマ区切り)" #: ../../enterprise/include/functions_cron.php:190 #: ../../enterprise/include/functions_cron.php:240 -#: ../../enterprise/include/functions_reporting.php:8176 +#: ../../enterprise/include/functions_reporting.php:8177 #: ../../enterprise/operation/reporting/custom_reporting.php:132 #: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246 #: ../../operation/messages/message_list.php:199 @@ -22071,7 +22860,7 @@ msgstr "件名" #: ../../enterprise/include/functions_cron.php:194 #: ../../enterprise/include/functions_cron.php:244 -#: ../../enterprise/include/functions_reporting.php:8194 +#: ../../enterprise/include/functions_reporting.php:8195 #: ../../enterprise/operation/reporting/custom_reporting.php:150 #: ../../operation/messages/message_edit.php:360 msgid "Message" @@ -22094,7 +22883,7 @@ msgstr "正規表現エージェントフィルタ" #: ../../enterprise/include/functions_cron.php:228 #: ../../enterprise/include/functions_tasklist.php:367 -#: ../../include/functions_cron.php:693 +#: ../../include/functions_cron.php:704 msgid "Report per agent" msgstr "エージェントごとのレポート" @@ -22118,7 +22907,7 @@ msgstr "有効なバックアップ" #: ../../enterprise/include/functions_cron.php:299 #: ../../enterprise/include/functions_tasklist.php:411 -#: ../../include/functions_cron.php:732 +#: ../../include/functions_cron.php:743 msgid "Custom script" msgstr "カスタムスクリプト" @@ -22167,8 +22956,8 @@ msgstr "年次" #: ../../enterprise/include/functions_cron.php:800 #: ../../enterprise/include/functions_cron.php:833 -#: ../../enterprise/include/functions_reporting.php:8188 -#: ../../enterprise/include/functions_reporting.php:8202 +#: ../../enterprise/include/functions_reporting.php:8189 +#: ../../enterprise/include/functions_reporting.php:8203 #: ../../enterprise/operation/reporting/custom_reporting.php:144 #: ../../enterprise/operation/reporting/custom_reporting.php:158 msgid "This is an optional field" @@ -22181,10 +22970,11 @@ msgstr "スケジュールされたレポートは、添付ファイルなしで #: ../../enterprise/include/functions_cron.php:1534 msgid "Scheduled report had an attempt to send an email with some attachments." msgstr "" -"スケジュールされたレポートは、いくつかの添付ファイル付きのメールを送信しました。" +"スケジュールされたレポートは、いくつかの添付ファイル付きのメールを送信しまし" +"た。" #: ../../enterprise/include/functions_cron.php:1776 -#: ../../include/functions_reporting.php:15362 +#: ../../include/functions_reporting.php:15644 msgid "Greetings" msgstr "挨拶" @@ -22193,24 +22983,26 @@ msgid "Attached to this email there's a CSV file of the logs" msgstr "このメールに添付されているのは、ログの CSV ファイルです。" #: ../../enterprise/include/functions_cron.php:1780 -#: ../../mobile/include/functions_web.php:84 ../../mobile/include/ui.class.php:327 -#: ../../include/functions_reporting.php:15368 +#: ../../mobile/include/functions_web.php:84 +#: ../../mobile/include/ui.class.php:327 +#: ../../include/functions_reporting.php:15650 msgid "Generated at" msgstr "更新日時:" #: ../../enterprise/include/functions_cron.php:1782 -#: ../../include/functions_reporting.php:15370 +#: ../../include/functions_reporting.php:15652 msgid "Thanks for your time." msgstr "お時間いただきありがとうございます。" #: ../../enterprise/include/functions_cron.php:1784 -#: ../../include/functions_reporting.php:15372 +#: ../../include/functions_reporting.php:15654 msgid "Best regards, Pandora FMS" msgstr "よろしくお願いします。Pandora FMS" #: ../../enterprise/include/functions_cron.php:1786 -#: ../../include/functions_reporting.php:15374 -msgid "This is an automatically generated email from Pandora FMS, please do not reply." +#: ../../include/functions_reporting.php:15656 +msgid "" +"This is an automatically generated email from Pandora FMS, please do not reply." msgstr "これは、Pandora FMS から自動生成されたメールです。返信しないでください。" #: ../../enterprise/include/functions_cron.php:1788 @@ -22233,10 +23025,11 @@ msgid "DiscoveryConsoleTasks is not running properly" msgstr "自動検出コンソールタスクが正しく動作していません" #: ../../enterprise/include/functions_tasklist.php:58 -msgid "Discovery relies on a proper setup of cron, the time-based scheduling service" +msgid "" +"Discovery relies on a proper setup of cron, the time-based scheduling service" msgstr "" -"自動検出は、時間ベースのスケジューリングサービスである cron の適切な設定に依存していま" -"す" +"自動検出は、時間ベースのスケジューリングサービスである cron の適切な設定に依存" +"しています" #: ../../enterprise/include/functions_tasklist.php:59 #: ../../include/class/ConsoleSupervisor.php:2381 @@ -22258,7 +23051,7 @@ msgid "There are no console task defined yet." msgstr "定義済のコンソールタスクがありません。" #: ../../enterprise/include/functions_tasklist.php:176 -#: ../../include/functions_cron.php:493 +#: ../../include/functions_cron.php:504 msgid "Last run" msgstr "最後の実行" @@ -22269,39 +23062,39 @@ msgstr "最後の実行" #: ../../enterprise/include/functions_tasklist.php:487 #: ../../enterprise/include/functions_tasklist.php:526 #: ../../enterprise/include/functions_tasklist.php:563 -#: ../../include/functions_cron.php:527 ../../include/functions_cron.php:565 -#: ../../include/functions_cron.php:620 ../../include/functions_cron.php:712 -#: ../../include/functions_cron.php:748 ../../include/functions_cron.php:794 -#: ../../include/functions_cron.php:836 ../../include/functions_cron.php:870 +#: ../../include/functions_cron.php:538 ../../include/functions_cron.php:576 +#: ../../include/functions_cron.php:631 ../../include/functions_cron.php:723 +#: ../../include/functions_cron.php:759 ../../include/functions_cron.php:805 +#: ../../include/functions_cron.php:847 ../../include/functions_cron.php:881 msgid "Force run" msgstr "強制実行" #: ../../enterprise/include/functions_tasklist.php:281 #: ../../enterprise/include/functions_tasklist.php:370 #: ../../enterprise/include/functions_tasklist.php:464 -#: ../../enterprise/include/functions_reporting_csv.php:1029 -#: ../../enterprise/include/functions_reporting_csv.php:1230 -#: ../../enterprise/include/functions_reporting_csv.php:1261 -#: ../../enterprise/include/functions_reporting_csv.php:1316 -#: ../../enterprise/include/functions_reporting_csv.php:1371 -#: ../../enterprise/include/functions_reporting_csv.php:1420 -#: ../../enterprise/include/functions_reporting_csv.php:1475 -#: ../../enterprise/include/functions_reporting.php:8114 -#: ../../enterprise/include/functions_reporting.php:8148 +#: ../../enterprise/include/functions_reporting_csv.php:1033 +#: ../../enterprise/include/functions_reporting_csv.php:1234 +#: ../../enterprise/include/functions_reporting_csv.php:1265 +#: ../../enterprise/include/functions_reporting_csv.php:1320 +#: ../../enterprise/include/functions_reporting_csv.php:1375 +#: ../../enterprise/include/functions_reporting_csv.php:1424 +#: ../../enterprise/include/functions_reporting_csv.php:1479 +#: ../../enterprise/include/functions_reporting.php:8115 +#: ../../enterprise/include/functions_reporting.php:8149 #: ../../enterprise/operation/reporting/custom_reporting.php:109 -#: ../../include/functions_cron.php:603 ../../include/functions_cron.php:696 -#: ../../include/functions_cron.php:820 +#: ../../include/functions_cron.php:614 ../../include/functions_cron.php:707 +#: ../../include/functions_cron.php:831 msgid "Report type" msgstr "レポートタイプ" #: ../../enterprise/include/functions_tasklist.php:341 -#: ../../include/functions_cron.php:667 +#: ../../include/functions_cron.php:678 msgid "regex" msgstr "正規表現" #: ../../enterprise/include/functions_tasklist.php:461 -#: ../../extensions/resource_exportation.php:433 ../../include/functions_cron.php:776 -#: ../../include/functions_cron.php:817 +#: ../../extensions/resource_exportation.php:433 +#: ../../include/functions_cron.php:787 ../../include/functions_cron.php:828 #: ../../include/lib/Dashboard/Widgets/reports.php:369 #: ../../include/lib/Dashboard/Widgets/reports.php:414 msgid "Report" @@ -22309,8 +23102,8 @@ msgstr "レポート" #: ../../enterprise/include/functions_tasklist.php:463 #: ../../enterprise/include/class/ManageBackups.class.php:166 -#: ../../include/functions_cron.php:778 ../../include/functions_cron.php:819 -#: ../../include/class/Diagnostics.class.php:2175 +#: ../../include/functions_cron.php:789 ../../include/functions_cron.php:830 +#: ../../include/class/Diagnostics.class.php:2183 msgid "Path" msgstr "パス" @@ -22319,13 +23112,14 @@ msgid "Task disabled" msgstr "無効化タスク" #: ../../enterprise/include/functions_tasklist.php:600 -#: ../../enterprise/include/functions_ipam.php:2082 -#: ../../enterprise/include/functions_ipam.php:2083 -#: ../../enterprise/include/functions_ipam.php:2084 +#: ../../enterprise/include/functions_ipam.php:2090 +#: ../../enterprise/include/functions_ipam.php:2091 +#: ../../enterprise/include/functions_ipam.php:2092 #: ../../enterprise/tools/ipam/ipam_list.php:701 #: ../../enterprise/tools/ipam/ipam_ajax.php:502 ../../godmode/db/db_main.php:189 -#: ../../godmode/snmpconsole/snmp_alert.php:1330 ../../include/functions_cron.php:898 -#: ../../include/functions_treeview.php:660 ../../include/functions_ui.php:549 +#: ../../godmode/snmpconsole/snmp_alert.php:1330 +#: ../../include/functions_cron.php:909 ../../include/functions_treeview.php:660 +#: ../../include/functions_ui.php:549 #: ../../operation/agentes/estado_generalagente.php:367 #: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362 #: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479 @@ -22334,12 +23128,12 @@ msgstr "未実行" #: ../../enterprise/include/functions_tasklist.php:699 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1026 -#: ../../include/functions_cron.php:973 +#: ../../include/functions_cron.php:984 msgid "Disable task" msgstr "タスク無効化" #: ../../enterprise/include/functions_tasklist.php:699 -#: ../../include/functions_cron.php:973 +#: ../../include/functions_cron.php:984 msgid "Enable task" msgstr "タスク有効化" @@ -22351,32 +23145,22 @@ msgstr "コンソールタスク" msgid "Remote commands enabled" msgstr "リモートコマンドが有効" -#: ../../enterprise/include/ajax/transactional.ajax.php:174 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:219 -msgid "The phase does not have a defined script" -msgstr "フェーズに定義済スクリプトがありません" - -#: ../../enterprise/include/ajax/transactional.ajax.php:211 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:275 -msgid "Edit Data" -msgstr "データ編集" - #: ../../enterprise/include/ajax/top_n_widget.ajax.php:79 msgid "avg" msgstr "平均" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4473 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4492 msgid "max" msgstr "最大" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4474 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4493 msgid "min" msgstr "最小" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4475 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4494 msgid "sum" msgstr "合計" @@ -22406,13 +23190,14 @@ msgstr "開始ネットワーク" #: ../../enterprise/include/ajax/ipam.ajax.php:316 msgid "" -"The networks will be created/added starting from this address in the subnetting range " -"given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). If no value was provided, " -"it uses the starting address of the supernet by default." +"The networks will be created/added starting from this address in the " +"subnetting range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). " +"If no value was provided, it uses the starting address of the supernet by " +"default." msgstr "" -"ネットワークは、マスクで指定されたサブネット範囲のアドレスから作成/追加されます。 " -"CIDR 形式(例:192.168.72.0/22)を使用します。値が指定されていない場合、デフォルトでスー" -"パーネットの開始アドレスが使用されます。" +"ネットワークは、マスクで指定されたサブネット範囲のアドレスから作成/追加されま" +"す。 CIDR 形式(例:192.168.72.0/22)を使用します。値が指定されていない場合、デ" +"フォルトでスーパーネットの開始アドレスが使用されます。" #: ../../enterprise/include/ajax/ipam.ajax.php:320 msgid "Max. number" @@ -22420,13 +23205,13 @@ msgstr "最大値" #: ../../enterprise/include/ajax/ipam.ajax.php:320 msgid "" -"Maximum number of networks to be created/added from starting address of the range " -"specified above" +"Maximum number of networks to be created/added from starting address of the " +"range specified above" msgstr "上記で指定した範囲の開始アドレスから作成/追加するネットワークの最大数" #: ../../enterprise/include/ajax/ipam.ajax.php:385 #: ../../enterprise/include/functions_ipam.php:1369 -#: ../../enterprise/include/functions_ipam.php:1989 +#: ../../enterprise/include/functions_ipam.php:1997 #: ../../enterprise/tools/ipam/ipam_list.php:97 #: ../../enterprise/tools/ipam/ipam_list.php:612 #: ../../enterprise/tools/ipam/ipam_editor.php:191 @@ -22440,7 +23225,8 @@ msgid "For example: Central Data Center" msgstr "例: 中央データセンター" #: ../../enterprise/include/ajax/ipam.ajax.php:418 -#: ../../enterprise/tools/ipam/ipam.php:171 ../../enterprise/tools/ipam/ipam.php:411 +#: ../../enterprise/tools/ipam/ipam.php:171 +#: ../../enterprise/tools/ipam/ipam.php:411 #: ../../enterprise/tools/ipam/ipam_editor.php:224 msgid "Sites" msgstr "サイト" @@ -22519,16 +23305,16 @@ msgstr "スーパーネット" #: ../../enterprise/include/ajax/ipam.ajax.php:614 #: ../../enterprise/include/ajax/ipam.ajax.php:644 -#: ../../enterprise/include/functions_ipam.php:1986 +#: ../../enterprise/include/functions_ipam.php:1994 #: ../../enterprise/tools/ipam/ipam_list.php:594 #: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 #: ../../enterprise/tools/ipam/ipam_calculator.php:185 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 #: ../../enterprise/tools/ipam/ipam_editor.php:122 -#: ../../godmode/wizards/HostDevices.class.php:916 +#: ../../godmode/wizards/HostDevices.class.php:918 #: ../../godmode/wizards/DiscoveryTaskList.class.php:599 -#: ../../include/functions_ui.php:870 ../../operation/menu.php:80 +#: ../../include/functions_ui.php:870 ../../operation/menu.php:84 msgid "Network" msgstr "ネットワーク" @@ -22577,7 +23363,8 @@ msgid "Unknown option" msgstr "不明なオプションです" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256 -#: ../../include/functions_treeview.php:783 ../../operation/agentes/agent_fields.php:44 +#: ../../include/functions_treeview.php:776 +#: ../../operation/agentes/agent_fields.php:44 #: ../../operation/agentes/estado_generalagente.php:544 msgid "Custom field" msgstr "カスタムフィールド" @@ -22599,6 +23386,7 @@ msgstr "アクション" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 +#: ../../godmode/modules/manage_inventory_modules_form.php:148 msgid "Script path" msgstr "スクリプトパス" @@ -22618,53 +23406,54 @@ msgid "Global time: " msgstr "全体時間: " #: ../../enterprise/include/ajax/log_viewer.ajax.php:55 -#: ../../enterprise/include/functions_reporting_csv.php:425 -#: ../../enterprise/include/functions_reporting_csv.php:447 -#: ../../enterprise/include/functions_reporting_csv.php:478 -#: ../../enterprise/include/functions_reporting_csv.php:701 -#: ../../enterprise/include/functions_reporting_csv.php:746 -#: ../../enterprise/include/functions_reporting_csv.php:787 -#: ../../enterprise/include/functions_reporting_csv.php:801 -#: ../../enterprise/include/functions_reporting_csv.php:815 -#: ../../enterprise/include/functions_reporting_csv.php:835 -#: ../../enterprise/include/functions_reporting_csv.php:864 -#: ../../enterprise/include/functions_reporting_csv.php:903 -#: ../../enterprise/include/functions_reporting_csv.php:947 -#: ../../enterprise/include/functions_reporting_csv.php:979 -#: ../../enterprise/include/functions_reporting_csv.php:1016 -#: ../../enterprise/include/functions_reporting_csv.php:1039 -#: ../../enterprise/include/functions_reporting_csv.php:1190 -#: ../../enterprise/include/functions_reporting_csv.php:1217 -#: ../../enterprise/include/functions_reporting_csv.php:1248 -#: ../../enterprise/include/functions_reporting_csv.php:1303 -#: ../../enterprise/include/functions_reporting_csv.php:1358 -#: ../../enterprise/include/functions_reporting_csv.php:1407 -#: ../../enterprise/include/functions_reporting_csv.php:1462 -#: ../../enterprise/include/functions_reporting_csv.php:1491 -#: ../../enterprise/include/functions_reporting_csv.php:1528 -#: ../../enterprise/include/functions_reporting_csv.php:1654 -#: ../../enterprise/include/functions_reporting_csv.php:1770 -#: ../../enterprise/include/functions_reporting_csv.php:1914 -#: ../../enterprise/include/functions_reporting_csv.php:1964 -#: ../../enterprise/include/functions_reporting_csv.php:2010 -#: ../../enterprise/include/functions_reporting_csv.php:2078 -#: ../../enterprise/include/functions_reporting_csv.php:2222 -#: ../../enterprise/include/functions_reporting_csv.php:2314 -#: ../../enterprise/include/functions_reporting_csv.php:2345 -#: ../../enterprise/include/functions_reporting_csv.php:2381 -#: ../../enterprise/include/functions_reporting_csv.php:2434 -#: ../../enterprise/include/functions_reporting_csv.php:2456 -#: ../../enterprise/include/functions_reporting_csv.php:2497 -#: ../../enterprise/include/functions_reporting_csv.php:2551 -#: ../../enterprise/include/functions_reporting_csv.php:2580 -#: ../../enterprise/include/functions_reporting_csv.php:2656 -#: ../../enterprise/include/functions_reporting_csv.php:2707 -#: ../../enterprise/include/functions_reporting_csv.php:2756 -#: ../../enterprise/include/functions_reporting_csv.php:2833 -#: ../../godmode/setup/setup_integria.php:333 ../../godmode/setup/setup_integria.php:454 +#: ../../enterprise/include/functions_reporting_csv.php:428 +#: ../../enterprise/include/functions_reporting_csv.php:450 +#: ../../enterprise/include/functions_reporting_csv.php:481 +#: ../../enterprise/include/functions_reporting_csv.php:704 +#: ../../enterprise/include/functions_reporting_csv.php:750 +#: ../../enterprise/include/functions_reporting_csv.php:791 +#: ../../enterprise/include/functions_reporting_csv.php:805 +#: ../../enterprise/include/functions_reporting_csv.php:819 +#: ../../enterprise/include/functions_reporting_csv.php:839 +#: ../../enterprise/include/functions_reporting_csv.php:868 +#: ../../enterprise/include/functions_reporting_csv.php:907 +#: ../../enterprise/include/functions_reporting_csv.php:951 +#: ../../enterprise/include/functions_reporting_csv.php:983 +#: ../../enterprise/include/functions_reporting_csv.php:1020 +#: ../../enterprise/include/functions_reporting_csv.php:1043 +#: ../../enterprise/include/functions_reporting_csv.php:1194 +#: ../../enterprise/include/functions_reporting_csv.php:1221 +#: ../../enterprise/include/functions_reporting_csv.php:1252 +#: ../../enterprise/include/functions_reporting_csv.php:1307 +#: ../../enterprise/include/functions_reporting_csv.php:1362 +#: ../../enterprise/include/functions_reporting_csv.php:1411 +#: ../../enterprise/include/functions_reporting_csv.php:1466 +#: ../../enterprise/include/functions_reporting_csv.php:1495 +#: ../../enterprise/include/functions_reporting_csv.php:1532 +#: ../../enterprise/include/functions_reporting_csv.php:1658 +#: ../../enterprise/include/functions_reporting_csv.php:1774 +#: ../../enterprise/include/functions_reporting_csv.php:1918 +#: ../../enterprise/include/functions_reporting_csv.php:1968 +#: ../../enterprise/include/functions_reporting_csv.php:2014 +#: ../../enterprise/include/functions_reporting_csv.php:2082 +#: ../../enterprise/include/functions_reporting_csv.php:2226 +#: ../../enterprise/include/functions_reporting_csv.php:2318 +#: ../../enterprise/include/functions_reporting_csv.php:2349 +#: ../../enterprise/include/functions_reporting_csv.php:2385 +#: ../../enterprise/include/functions_reporting_csv.php:2438 +#: ../../enterprise/include/functions_reporting_csv.php:2460 +#: ../../enterprise/include/functions_reporting_csv.php:2501 +#: ../../enterprise/include/functions_reporting_csv.php:2555 +#: ../../enterprise/include/functions_reporting_csv.php:2584 +#: ../../enterprise/include/functions_reporting_csv.php:2660 +#: ../../enterprise/include/functions_reporting_csv.php:2711 +#: ../../enterprise/include/functions_reporting_csv.php:2760 +#: ../../enterprise/include/functions_reporting_csv.php:2837 +#: ../../godmode/setup/setup_integria.php:333 +#: ../../godmode/setup/setup_integria.php:454 ../../include/graphs/fgraph.php:879 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 -#: ../../include/lib/Dashboard/Widget.php:555 -#: ../../operation/agentes/estado_generalagente.php:649 +#: ../../include/lib/Dashboard/Widget.php:557 +#: ../../operation/agentes/estado_generalagente.php:665 #: ../../operation/incidents/integriaims_export_csv.php:81 #: ../../operation/incidents/configure_integriaims_incident.php:213 #: ../../operation/incidents/list_integriaims_incidents.php:516 @@ -22678,8 +23467,8 @@ msgstr "正規表現キャプチャ" #: ../../enterprise/include/ajax/log_viewer.ajax.php:85 #: ../../enterprise/include/functions_reporting_pdf.php:546 #: ../../enterprise/include/functions_reporting_pdf.php:602 -#: ../../include/functions_reporting_html.php:3742 -#: ../../include/functions_reporting_html.php:3810 +#: ../../include/functions_reporting_html.php:3759 +#: ../../include/functions_reporting_html.php:3827 msgid "Average" msgstr "平均" @@ -22700,7 +23489,8 @@ msgstr "ドキュメント" #: ../../enterprise/include/process_reset_pass.php:159 #: ../../enterprise/include/process_reset_pass.php:162 #: ../../enterprise/include/reset_pass.php:146 -#: ../../enterprise/include/reset_pass.php:149 ../../include/functions_config.php:2426 +#: ../../enterprise/include/reset_pass.php:149 +#: ../../include/functions_config.php:2486 msgid "ONE TOOL TO MONITOR THEM ALL" msgstr "一つのツールですべてを監視" @@ -22709,47 +23499,6 @@ msgstr "一つのツールですべてを監視" msgid "Lines" msgstr "行" -#: ../../enterprise/include/functions_inventory.php:115 -#: ../../enterprise/include/functions_inventory.php:868 -msgid "No changes found" -msgstr "変更がありません" - -#: ../../enterprise/include/functions_inventory.php:214 -msgid "Get CSV file" -msgstr "CSV ファイルを取得" - -#: ../../enterprise/include/functions_inventory.php:301 -#: ../../enterprise/operation/agentes/tag_view.php:578 -#: ../../enterprise/operation/services/services.treeview_services.php:255 -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 -#: ../../godmode/groups/group_list.php:1034 ../../include/class/Heatmap.class.php:684 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 ../../operation/tree.php:415 -#: ../../operation/tree.php:446 ../../operation/network/network_report.php:313 -msgid "No data found" -msgstr "データがありません" - -#: ../../enterprise/include/functions_inventory.php:885 -#: ../../enterprise/include/functions_inventory.php:948 -#: ../../include/functions_reporting_html.php:1831 -msgid "Added" -msgstr "追加済み" - -#: ../../enterprise/include/functions_inventory.php:891 -#: ../../enterprise/include/functions_inventory.php:956 -#: ../../include/functions_reporting_html.php:1842 -#: ../../include/functions_filemanager.php:342 -#: ../../include/functions_filemanager.php:359 -msgid "Deleted" -msgstr "削除しました" - -#: ../../enterprise/include/functions_transactional.php:631 -msgid "Error in dependencies field" -msgstr "依存フィールドでエラーです" - -#: ../../enterprise/include/functions_transactional.php:640 -msgid "Error in enables field" -msgstr "有効化フィールドでエラーです" - #: ../../enterprise/include/auth/saml.php:119 #, php-format msgid "Pandora FMS SAML authentication error: %s" @@ -22759,8 +23508,8 @@ msgstr "Pandora FMS SAML 認証エラー: %s" msgid "Force log out" msgstr "強制ログアウト" -#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:372 -#: ../../include/auth/mysql.php:402 ../../include/auth/mysql.php:437 +#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:358 +#: ../../include/auth/mysql.php:388 ../../include/auth/mysql.php:423 msgid "Please, login into metaconsole first" msgstr "先にメタコンソールへログインしてください" @@ -22792,28 +23541,39 @@ msgid "File of collection is bigger than the limit (%s bytes)" msgstr "コレクションのファイルが制限より大きいです (%s バイト)" #: ../../enterprise/include/functions_ui.php:79 +#: ../../include/functions_ui.php:6895 msgid "Select inventory module" msgstr "インベントリモジュールの選択" +#: ../../enterprise/include/functions_ui.php:92 +#: ../../godmode/agentes/inventory_manager.php:223 +#: ../../include/functions_ui.php:6908 +msgid "Target" +msgstr "対象" + #: ../../enterprise/include/functions_ui.php:96 +#: ../../include/functions_ui.php:6912 msgid "Use custom fields" msgstr "カスタムフィールドを利用" #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "Field name" msgstr "フィールド名" #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "It's a password" msgstr "それはパスワードです" #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "Add field" msgstr "フィールド追加" #: ../../enterprise/include/functions_reporting_pdf.php:72 -#: ../../include/class/Diagnostics.class.php:2130 -#: ../../include/class/Diagnostics.class.php:2248 +#: ../../include/class/Diagnostics.class.php:2138 +#: ../../include/class/Diagnostics.class.php:2256 #, php-format msgid "Automated %s report for user defined report" msgstr "ユーザ定義レポートのための自動 %s レポート" @@ -22824,23 +23584,25 @@ msgstr "ユーザ定義レポートのための自動 %s レポート" #: ../../enterprise/include/functions_reporting_pdf.php:613 #: ../../enterprise/include/functions_reporting_pdf.php:616 #: ../../enterprise/include/functions_reporting_pdf.php:623 -#: ../../enterprise/include/functions_reporting_csv.php:1336 -#: ../../include/functions_reporting_html.php:3725 -#: ../../include/functions_reporting_html.php:3754 -#: ../../include/functions_reporting_html.php:3795 -#: ../../include/functions_reporting_html.php:3818 -#: ../../include/functions_reporting_html.php:3821 -#: ../../include/functions_reporting_html.php:3828 -#: ../../include/functions_reporting.php:6995 ../../include/functions_reporting.php:7018 -#: ../../include/functions_reporting.php:7033 ../../include/functions_reporting.php:7049 -#: ../../include/functions_reporting.php:7064 +#: ../../enterprise/include/functions_reporting_csv.php:1340 +#: ../../include/functions_reporting_html.php:3742 +#: ../../include/functions_reporting_html.php:3771 +#: ../../include/functions_reporting_html.php:3812 +#: ../../include/functions_reporting_html.php:3835 +#: ../../include/functions_reporting_html.php:3838 +#: ../../include/functions_reporting_html.php:3845 +#: ../../include/functions_reporting.php:7230 +#: ../../include/functions_reporting.php:7253 +#: ../../include/functions_reporting.php:7268 +#: ../../include/functions_reporting.php:7284 +#: ../../include/functions_reporting.php:7299 msgid "Maximun" msgstr "最大" #: ../../enterprise/include/functions_reporting_pdf.php:538 #: ../../enterprise/include/functions_reporting_pdf.php:595 -#: ../../include/functions_reporting_html.php:3733 -#: ../../include/functions_reporting_html.php:3802 +#: ../../include/functions_reporting_html.php:3750 +#: ../../include/functions_reporting_html.php:3819 msgid "Minimun" msgstr "最低" @@ -22849,98 +23611,99 @@ msgstr "最低" #: ../../enterprise/include/functions_reporting_pdf.php:601 #: ../../enterprise/include/functions_reporting_pdf.php:615 #: ../../enterprise/include/functions_reporting_pdf.php:620 -#: ../../enterprise/include/functions_reporting_csv.php:1281 -#: ../../enterprise/include/functions_reporting_csv.php:1336 -#: ../../enterprise/include/functions_reporting_csv.php:1440 -#: ../../include/functions_reporting_html.php:3794 -#: ../../include/functions_reporting_html.php:3801 -#: ../../include/functions_reporting_html.php:3809 -#: ../../include/functions_reporting_html.php:3820 -#: ../../include/functions_reporting_html.php:3825 -#: ../../include/functions_reporting.php:7013 +#: ../../enterprise/include/functions_reporting_csv.php:1285 +#: ../../enterprise/include/functions_reporting_csv.php:1340 +#: ../../enterprise/include/functions_reporting_csv.php:1444 +#: ../../include/functions_reporting_html.php:3811 +#: ../../include/functions_reporting_html.php:3818 +#: ../../include/functions_reporting_html.php:3826 +#: ../../include/functions_reporting_html.php:3837 +#: ../../include/functions_reporting_html.php:3842 +#: ../../include/functions_reporting.php:7248 msgid "Lapse" msgstr "経過" -#: ../../enterprise/include/functions_reporting_pdf.php:969 -#: ../../include/functions_reporting_html.php:2158 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:536 +#: ../../enterprise/include/functions_reporting_pdf.php:972 +#: ../../include/functions_reporting_html.php:2167 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:520 #, php-format msgid "%s in %s : NORMAL" msgstr "%s (%s): 正常" -#: ../../enterprise/include/functions_reporting_pdf.php:986 -#: ../../include/functions_reporting_html.php:2070 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:552 +#: ../../enterprise/include/functions_reporting_pdf.php:989 +#: ../../include/functions_reporting_html.php:2079 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:536 #, php-format msgid "%s in %s : CRITICAL" msgstr "%s (%s): 障害" -#: ../../enterprise/include/functions_reporting_pdf.php:1003 -#: ../../include/functions_reporting_html.php:2087 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:568 +#: ../../enterprise/include/functions_reporting_pdf.php:1006 +#: ../../include/functions_reporting_html.php:2096 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:552 #, php-format msgid "%s in %s : WARNING" msgstr "%s (%s): 警告" -#: ../../enterprise/include/functions_reporting_pdf.php:1020 -#: ../../include/functions_reporting_html.php:2104 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:584 +#: ../../enterprise/include/functions_reporting_pdf.php:1023 +#: ../../include/functions_reporting_html.php:2113 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:568 #, php-format msgid "%s in %s : UNKNOWN" msgstr "%s (%s): 不明" -#: ../../enterprise/include/functions_reporting_pdf.php:1037 -#: ../../include/functions_reporting_html.php:2140 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:600 +#: ../../enterprise/include/functions_reporting_pdf.php:1040 +#: ../../include/functions_reporting_html.php:2149 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:584 #, php-format msgid "%s in %s : Not initialize" msgstr "%s (%s): 未初期化" -#: ../../enterprise/include/functions_reporting_pdf.php:1054 -#: ../../include/functions_reporting_html.php:2123 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:617 +#: ../../enterprise/include/functions_reporting_pdf.php:1057 +#: ../../include/functions_reporting_html.php:2132 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:601 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "%s (%s): アラート発生" -#: ../../enterprise/include/functions_reporting_pdf.php:1808 -#: ../../enterprise/include/functions_reporting_csv.php:2266 +#: ../../enterprise/include/functions_reporting_pdf.php:1811 #: ../../enterprise/include/functions_reporting_csv.php:2270 -#: ../../include/functions_reporting_html.php:138 +#: ../../enterprise/include/functions_reporting_csv.php:2274 +#: ../../include/functions_reporting_html.php:139 msgid "Generated" msgstr "生成日" -#: ../../enterprise/include/functions_reporting_pdf.php:1812 -#: ../../include/functions_reporting_html.php:141 +#: ../../enterprise/include/functions_reporting_pdf.php:1815 +#: ../../include/functions_reporting_html.php:142 msgid "Report date" msgstr "レポート日" -#: ../../enterprise/include/functions_reporting_pdf.php:1831 -#: ../../include/functions_reporting_html.php:150 +#: ../../enterprise/include/functions_reporting_pdf.php:1834 +#: ../../include/functions_reporting_html.php:151 #: ../../operation/reporting/reporting_viewer.php:307 msgid "Items period before" msgstr "次の日時以前" -#: ../../enterprise/include/functions_reporting_pdf.php:1861 +#: ../../enterprise/include/functions_reporting_pdf.php:1864 msgid "Contents" msgstr "目次" -#: ../../enterprise/include/functions_reporting_pdf.php:2007 -#: ../../enterprise/include/functions_reporting_csv.php:720 -#: ../../enterprise/include/functions_reporting_csv.php:998 -#: ../../enterprise/include/functions_reporting_csv.php:1371 -#: ../../godmode/agentes/planned_downtime.list.php:302 -#: ../../include/functions_reporting_html.php:3911 ../../include/functions_snmp.php:413 -#: ../../include/functions_snmp.php:421 ../../include/rest-api/index.php:361 +#: ../../enterprise/include/functions_reporting_pdf.php:2010 +#: ../../enterprise/include/functions_reporting_csv.php:723 +#: ../../enterprise/include/functions_reporting_csv.php:1002 +#: ../../enterprise/include/functions_reporting_csv.php:1375 +#: ../../godmode/agentes/planned_downtime.list.php:339 +#: ../../include/functions_reporting_html.php:3930 +#: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 +#: ../../include/rest-api/index.php:374 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520 #: ../../operation/agentes/gis_view.php:221 msgid "To" msgstr "終了" -#: ../../enterprise/include/functions_reporting_pdf.php:2011 -#: ../../include/functions_reporting_html.php:90 -#: ../../include/functions_reporting_html.php:5690 +#: ../../enterprise/include/functions_reporting_pdf.php:2014 +#: ../../include/functions_reporting_html.php:91 +#: ../../include/functions_reporting_html.php:5729 #: ../../include/functions_treeview.php:319 #: ../../operation/agentes/interface_view.functions.php:539 msgid "Last data" @@ -22989,75 +23752,78 @@ msgstr "mysqldump の実行で問題が発生しました。" #: ../../enterprise/include/functions_backup.php:190 msgid "" -"In order to make backups it is necessary to check if the configuration is correct." -msgstr "バックアップを作成するには、設定が正しいかどうかを確認する必要があります。" +"In order to make backups it is necessary to check if the configuration is " +"correct." +msgstr "" +"バックアップを作成するには、設定が正しいかどうかを確認する必要があります。" #: ../../enterprise/include/functions_backup.php:256 msgid "No description" msgstr "説明がありません" -#: ../../enterprise/include/functions_backup.php:408 +#: ../../enterprise/include/functions_backup.php:413 msgid "Restoring a backup" msgstr "バックアップのリストア中" -#: ../../enterprise/include/functions_backup.php:410 +#: ../../enterprise/include/functions_backup.php:415 #, php-format msgid "Restoring a %s database backup must be done manually." msgstr "%s データベースバックアップの復元は手動で行う必要があります。" -#: ../../enterprise/include/functions_backup.php:412 +#: ../../enterprise/include/functions_backup.php:417 msgid "" -"It's a complex operation that needs human intervation to avoid system failures and " -"data loosing" -msgstr "システム不整合およびデータ消失を防ぐために、人よる操作が必要な複雑な作業です。" +"It's a complex operation that needs human intervation to avoid system failures " +"and data loosing" +msgstr "" +"システム不整合およびデータ消失を防ぐために、人よる操作が必要な複雑な作業です。" -#: ../../enterprise/include/functions_backup.php:414 +#: ../../enterprise/include/functions_backup.php:419 msgid "To restore the selected backup, please follow these steps" msgstr "選択したバックアップをリストアするには、これらの手順に従ってください" -#: ../../enterprise/include/functions_backup.php:420 +#: ../../enterprise/include/functions_backup.php:425 msgid "Open a root shell in your system located at " msgstr "次の場所にある root のシェルを開いてください: " -#: ../../enterprise/include/functions_backup.php:424 +#: ../../enterprise/include/functions_backup.php:429 msgid "Connect to MySQL database using the following command" msgstr "次のコマンドで MySQL データベースへ接続します" -#: ../../enterprise/include/functions_backup.php:430 +#: ../../enterprise/include/functions_backup.php:435 msgid "Create a new database" msgstr "新規データベースを作成します" -#: ../../enterprise/include/functions_backup.php:454 +#: ../../enterprise/include/functions_backup.php:459 msgid "Restore the backup" msgstr "バックアップをリストアします" -#: ../../enterprise/include/functions_backup.php:469 +#: ../../enterprise/include/functions_backup.php:474 msgid "Modify console configuration to use this new database" msgstr "新たなデータベースを使うようにコンソール設定を修正します" -#: ../../enterprise/include/functions_backup.php:470 +#: ../../enterprise/include/functions_backup.php:475 msgid "Open configuration file" msgstr "設定ファイルを開きます" -#: ../../enterprise/include/functions_backup.php:473 -#: ../../enterprise/include/functions_backup.php:483 +#: ../../enterprise/include/functions_backup.php:478 +#: ../../enterprise/include/functions_backup.php:488 msgid "Find" msgstr "以下をみつけ" -#: ../../enterprise/include/functions_backup.php:475 -#: ../../enterprise/include/functions_backup.php:485 +#: ../../enterprise/include/functions_backup.php:480 +#: ../../enterprise/include/functions_backup.php:490 msgid "and replace with" msgstr "次の通り書き換えます" -#: ../../enterprise/include/functions_backup.php:480 +#: ../../enterprise/include/functions_backup.php:485 msgid "Modify servers configuration to use this new database" msgstr "新たなデータベースを使うようにサーバ設定を修正します" -#: ../../enterprise/include/functions_backup.php:481 +#: ../../enterprise/include/functions_backup.php:486 msgid "Find servers configuration file and replace the following lines" msgstr "サーバ設定ファイルを見つけ、次の行を書き換えます" -#: ../../enterprise/include/functions_backup.php:490 +#: ../../enterprise/include/functions_backup.php:495 msgid "Restart the servers and login again into the console" msgstr "サーバを再起動し、コンソールからログインしなおします" @@ -23097,63 +23863,64 @@ msgstr "メタコンソールの定義がありません。" #: ../../include/functions_visual_map_editor.php:250 #: ../../include/rest-api/models/VisualConsole/Items/Icon.php:175 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:522 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:524 #: ../../include/functions_filemanager.php:641 msgid "Image" msgstr "画像" -#: ../../enterprise/include/functions_reporting_csv.php:420 +#: ../../enterprise/include/functions_reporting_csv.php:423 msgid "Event report agent" msgstr "イベントレポートエージェント" -#: ../../enterprise/include/functions_reporting_csv.php:422 +#: ../../enterprise/include/functions_reporting_csv.php:425 msgid "Event report group" msgstr "イベントレポートグループ" -#: ../../enterprise/include/functions_reporting_csv.php:446 +#: ../../enterprise/include/functions_reporting_csv.php:449 msgid "Event report module" msgstr "イベントレポートモジュール" -#: ../../enterprise/include/functions_reporting_csv.php:477 -#: ../../enterprise/include/functions_reporting.php:1228 -#: ../../include/functions_reports.php:830 ../../include/functions_reporting.php:8460 -#: ../../include/functions_reporting.php:8852 +#: ../../enterprise/include/functions_reporting_csv.php:480 +#: ../../enterprise/include/functions_reporting.php:1229 +#: ../../include/functions_reports.php:830 +#: ../../include/functions_reporting.php:8707 +#: ../../include/functions_reporting.php:9099 msgid "Availability" msgstr "可用性" -#: ../../enterprise/include/functions_reporting_csv.php:525 -#: ../../enterprise/include/functions_reporting_csv.php:1475 +#: ../../enterprise/include/functions_reporting_csv.php:528 +#: ../../enterprise/include/functions_reporting_csv.php:1479 msgid "% OK" msgstr "正常%" -#: ../../enterprise/include/functions_reporting_csv.php:534 -#: ../../include/functions_reporting_html.php:617 +#: ../../enterprise/include/functions_reporting_csv.php:537 +#: ../../include/functions_reporting_html.php:618 msgid "Checks Failed" msgstr "障害確認数" -#: ../../enterprise/include/functions_reporting_csv.php:666 +#: ../../enterprise/include/functions_reporting_csv.php:669 msgid "Maximum value" msgstr "最大値" -#: ../../enterprise/include/functions_reporting_csv.php:670 -#: ../../include/functions_reporting_html.php:4457 +#: ../../enterprise/include/functions_reporting_csv.php:673 +#: ../../include/functions_reporting_html.php:4477 msgid "Agent min value" msgstr "エージェント最小値" -#: ../../enterprise/include/functions_reporting_csv.php:671 +#: ../../enterprise/include/functions_reporting_csv.php:674 msgid "Minimum value" msgstr "最小値" -#: ../../enterprise/include/functions_reporting_csv.php:674 +#: ../../enterprise/include/functions_reporting_csv.php:677 msgid "Average value" msgstr "平均値" -#: ../../enterprise/include/functions_reporting_csv.php:700 +#: ../../enterprise/include/functions_reporting_csv.php:703 #: ../../include/functions_reports.php:879 msgid "Agents inventory" msgstr "エージェントインベントリ" -#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/operation/agentes/tag_view.php:601 #: ../../include/functions_treeview.php:668 #: ../../operation/agentes/estado_agente.php:745 @@ -23162,1005 +23929,1025 @@ msgstr "エージェントインベントリ" msgid "Remote" msgstr "リモート" -#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/functions_reporting_csv.php:725 msgid "Sec. group" msgstr "セカンダリグループ" -#: ../../enterprise/include/functions_reporting_csv.php:722 +#: ../../enterprise/include/functions_reporting_csv.php:725 msgid "Custom Field" msgstr "カスタムフィールド" -#: ../../enterprise/include/functions_reporting_csv.php:745 +#: ../../enterprise/include/functions_reporting_csv.php:749 #: ../../include/functions_reports.php:886 msgid "Modules inventory" msgstr "モジュールインベントリ" -#: ../../enterprise/include/functions_reporting_csv.php:759 +#: ../../enterprise/include/functions_reporting_csv.php:763 msgid "Agent groups" msgstr "エージェントグループ" -#: ../../enterprise/include/functions_reporting_csv.php:759 +#: ../../enterprise/include/functions_reporting_csv.php:763 #: ../../include/functions_reporting_html.php:1720 msgid "Agent secondary groups" msgstr "エージェントセカンダリグループ" -#: ../../enterprise/include/functions_reporting_csv.php:786 -#: ../../include/functions_reporting.php:2794 +#: ../../enterprise/include/functions_reporting_csv.php:790 +#: ../../include/functions_reporting.php:2925 msgid "Inventory Changes" msgstr "インベントリ変更" -#: ../../enterprise/include/functions_reporting_csv.php:814 +#: ../../enterprise/include/functions_reporting_csv.php:818 #: ../../include/functions_reports.php:725 msgid "Prediction date" msgstr "予測日" -#: ../../enterprise/include/functions_reporting_csv.php:834 -#: ../../include/functions_reporting.php:6468 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../include/functions_reporting.php:6696 msgid "Projection Graph" msgstr "予想グラフ" -#: ../../enterprise/include/functions_reporting_csv.php:863 +#: ../../enterprise/include/functions_reporting_csv.php:867 msgid "Serialized data " msgstr "連続データ " -#: ../../enterprise/include/functions_reporting_csv.php:902 +#: ../../enterprise/include/functions_reporting_csv.php:906 msgid "Last Value " msgstr "最新の値 " -#: ../../enterprise/include/functions_reporting_csv.php:978 -#: ../../include/functions_reporting.php:1543 +#: ../../enterprise/include/functions_reporting_csv.php:982 +#: ../../include/functions_reporting.php:1544 #: ../../operation/snmpconsole/snmp_statistics.php:169 -#: ../../operation/snmpconsole/snmp_statistics.php:237 +#: ../../operation/snmpconsole/snmp_statistics.php:242 #, php-format msgid "Top %d" msgstr "トップ %d" -#: ../../enterprise/include/functions_reporting_csv.php:1015 -#: ../../include/functions_reporting.php:3874 +#: ../../enterprise/include/functions_reporting_csv.php:1019 +#: ../../include/functions_reporting.php:4082 msgid "Group Report" msgstr "グループレポート" -#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:263 -#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1042 -#: ../../mobile/operation/groups.php:147 ../../include/functions_reporting_html.php:5770 -#: ../../include/class/Diagnostics.class.php:549 -#: ../../include/functions_reporting.php:11803 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:651 ../../operation/tree.php:454 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1047 +#: ../../mobile/operation/groups.php:147 +#: ../../include/functions_reporting_html.php:5809 +#: ../../include/class/Diagnostics.class.php:550 +#: ../../include/functions_reporting.php:12118 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:651 +#: ../../operation/tree.php:454 msgid "Total agents" msgstr "エージェント数" -#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1033 msgid "Uknown agents" msgstr "不明エージェント" -#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:264 -#: ../../godmode/groups/group_list.php:1043 +#: ../../godmode/groups/group_list.php:1048 #: ../../godmode/module_library/module_library_view.php:159 -#: ../../include/class/Diagnostics.class.php:553 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:652 ../../operation/tree.php:455 +#: ../../include/class/Diagnostics.class.php:554 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:652 +#: ../../operation/tree.php:455 msgid "Total modules" msgstr "全モジュール" -#: ../../enterprise/include/functions_reporting_csv.php:1029 -#: ../../include/functions_reporting.php:11646 +#: ../../enterprise/include/functions_reporting_csv.php:1033 +#: ../../include/functions_reporting.php:11961 msgid "Defined alerts" msgstr "定義済みアラート" -#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:268 #: ../../enterprise/operation/services/services.treeview_services.php:269 #: ../../enterprise/operation/services/services.treeview_services.php:270 -#: ../../godmode/groups/group_list.php:1047 ../../godmode/groups/group_list.php:1048 -#: ../../godmode/groups/group_list.php:1049 ../../include/functions_graph.php:2636 -#: ../../include/functions_reporting.php:11664 -#: ../../include/functions_reporting.php:11687 +#: ../../godmode/groups/group_list.php:1052 +#: ../../godmode/groups/group_list.php:1053 +#: ../../godmode/groups/group_list.php:1054 +#: ../../include/functions_graph.php:2609 +#: ../../include/functions_reporting.php:11979 +#: ../../include/functions_reporting.php:12002 #: ../../include/lib/Dashboard/Widgets/tree_view.php:656 #: ../../include/lib/Dashboard/Widgets/tree_view.php:657 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 ../../operation/tree.php:459 -#: ../../operation/tree.php:460 ../../operation/tree.php:461 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 +#: ../../operation/tree.php:459 ../../operation/tree.php:460 +#: ../../operation/tree.php:461 msgid "Fired alerts" msgstr "発生したアラート" -#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_csv.php:1033 msgid "Last 8 hours events" msgstr "直近 8時間のイベント" -#: ../../enterprise/include/functions_reporting_csv.php:1032 -#: ../../include/functions_reports.php:777 ../../include/functions_reports.php:783 +#: ../../enterprise/include/functions_reporting_csv.php:1036 +#: ../../include/functions_reports.php:777 +#: ../../include/functions_reports.php:783 msgid "Group report" msgstr "グループレポート" -#: ../../enterprise/include/functions_reporting_csv.php:1161 +#: ../../enterprise/include/functions_reporting_csv.php:1165 msgid "Illegal query or any other error" msgstr "不正なクエリまたはその他エラー" -#: ../../enterprise/include/functions_reporting_csv.php:1183 +#: ../../enterprise/include/functions_reporting_csv.php:1187 #: ../../include/functions_reports.php:661 msgid "SQL vertical bar graph" msgstr "SQL 縦棒グラフ" -#: ../../enterprise/include/functions_reporting_csv.php:1185 +#: ../../enterprise/include/functions_reporting_csv.php:1189 #: ../../include/functions_reports.php:669 msgid "SQL horizontal bar graph" msgstr "SQL 横棒グラフ" -#: ../../enterprise/include/functions_reporting_csv.php:1187 +#: ../../enterprise/include/functions_reporting_csv.php:1191 #: ../../include/functions_reports.php:665 msgid "SQL pie graph" msgstr "SQL 円グラフ" -#: ../../enterprise/include/functions_reporting_csv.php:1216 -#: ../../enterprise/include/functions_reporting_csv.php:1234 -#: ../../enterprise/include/functions_reporting_csv.php:1236 -#: ../../include/functions_reports.php:754 ../../include/functions_reporting.php:6774 -#: ../../include/functions_reporting.php:10130 +#: ../../enterprise/include/functions_reporting_csv.php:1220 +#: ../../enterprise/include/functions_reporting_csv.php:1238 +#: ../../enterprise/include/functions_reporting_csv.php:1240 +#: ../../include/functions_reports.php:754 +#: ../../include/functions_reporting.php:7002 +#: ../../include/functions_reporting.php:10377 msgid "Summatory" msgstr "合計" -#: ../../enterprise/include/functions_reporting_csv.php:1266 -#: ../../enterprise/include/functions_reporting_csv.php:1268 -#: ../../enterprise/include/functions_reporting_csv.php:1274 -#: ../../enterprise/include/functions_reporting_csv.php:1276 +#: ../../enterprise/include/functions_reporting_csv.php:1270 +#: ../../enterprise/include/functions_reporting_csv.php:1272 +#: ../../enterprise/include/functions_reporting_csv.php:1278 +#: ../../enterprise/include/functions_reporting_csv.php:1280 msgid "Minimum Value" msgstr "最小値" -#: ../../enterprise/include/functions_reporting_csv.php:1281 -#: ../../include/functions_reporting.php:10134 +#: ../../enterprise/include/functions_reporting_csv.php:1285 +#: ../../include/functions_reporting.php:10381 msgid "Minimum" msgstr "最小" -#: ../../enterprise/include/functions_reporting_csv.php:1321 -#: ../../enterprise/include/functions_reporting_csv.php:1323 -#: ../../enterprise/include/functions_reporting_csv.php:1329 -#: ../../enterprise/include/functions_reporting_csv.php:1331 +#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1327 +#: ../../enterprise/include/functions_reporting_csv.php:1333 +#: ../../enterprise/include/functions_reporting_csv.php:1335 msgid "Maximun Value" msgstr "最大値" -#: ../../enterprise/include/functions_reporting_csv.php:1357 -#: ../../enterprise/include/functions_reporting_csv.php:1371 +#: ../../enterprise/include/functions_reporting_csv.php:1361 #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../enterprise/include/functions_reporting_csv.php:1386 -#: ../../include/functions_reporting_html.php:3914 -#: ../../include/functions_reports.php:762 ../../include/functions_reporting.php:9590 +#: ../../enterprise/include/functions_reporting_csv.php:1379 +#: ../../enterprise/include/functions_reporting_csv.php:1390 +#: ../../include/functions_reporting_html.php:3933 +#: ../../include/functions_reports.php:762 +#: ../../include/functions_reporting.php:9837 msgid "Increment" msgstr "増分" -#: ../../enterprise/include/functions_reporting_csv.php:1371 -#: ../../include/functions_reporting_html.php:3912 +#: ../../enterprise/include/functions_reporting_csv.php:1375 +#: ../../include/functions_reporting_html.php:3931 msgid "From data" msgstr "開始データ" -#: ../../enterprise/include/functions_reporting_csv.php:1371 -#: ../../include/functions_reporting_html.php:3913 +#: ../../enterprise/include/functions_reporting_csv.php:1375 +#: ../../include/functions_reporting_html.php:3932 msgid "To data" msgstr "終了データ" -#: ../../enterprise/include/functions_reporting_csv.php:1377 -#: ../../enterprise/include/functions_reporting_csv.php:1388 -#: ../../include/functions_reporting_html.php:3941 +#: ../../enterprise/include/functions_reporting_csv.php:1381 +#: ../../enterprise/include/functions_reporting_csv.php:1392 +#: ../../include/functions_reporting_html.php:3960 msgid "Negative increase: " msgstr "マイナス増加: " -#: ../../enterprise/include/functions_reporting_csv.php:1379 -#: ../../enterprise/include/functions_reporting_csv.php:1390 -#: ../../include/functions_reporting_html.php:3943 +#: ../../enterprise/include/functions_reporting_csv.php:1383 +#: ../../enterprise/include/functions_reporting_csv.php:1394 +#: ../../include/functions_reporting_html.php:3962 msgid "Positive increase: " msgstr "プラス増加: " -#: ../../enterprise/include/functions_reporting_csv.php:1381 -#: ../../enterprise/include/functions_reporting_csv.php:1392 -#: ../../include/functions_reporting_html.php:3945 +#: ../../enterprise/include/functions_reporting_csv.php:1385 +#: ../../enterprise/include/functions_reporting_csv.php:1396 +#: ../../include/functions_reporting_html.php:3964 msgid "Neutral increase: " msgstr "中立的な増加: " -#: ../../enterprise/include/functions_reporting_csv.php:1406 -#: ../../enterprise/include/functions_reporting_csv.php:1425 -#: ../../enterprise/include/functions_reporting_csv.php:1427 -#: ../../enterprise/include/functions_reporting_csv.php:1433 -#: ../../enterprise/include/functions_reporting_csv.php:1435 -#: ../../include/functions_reporting.php:6779 +#: ../../enterprise/include/functions_reporting_csv.php:1410 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1431 +#: ../../enterprise/include/functions_reporting_csv.php:1437 +#: ../../enterprise/include/functions_reporting_csv.php:1439 +#: ../../include/functions_reporting.php:7007 msgid "AVG. Value" msgstr "平均値" -#: ../../enterprise/include/functions_reporting_csv.php:1440 +#: ../../enterprise/include/functions_reporting_csv.php:1444 msgid "AVG" msgstr "平均" -#: ../../enterprise/include/functions_reporting_csv.php:1461 -#: ../../enterprise/include/functions_reporting_csv.php:1479 -#: ../../enterprise/include/functions_reporting_csv.php:1481 -#: ../../include/functions_reporting.php:6110 +#: ../../enterprise/include/functions_reporting_csv.php:1465 +#: ../../enterprise/include/functions_reporting_csv.php:1483 +#: ../../enterprise/include/functions_reporting_csv.php:1485 +#: ../../include/functions_reporting.php:6338 msgid "Monitor Report" msgstr "モニタレポート" -#: ../../enterprise/include/functions_reporting_csv.php:1475 +#: ../../enterprise/include/functions_reporting_csv.php:1479 msgid "% Wrong" msgstr "異常%" -#: ../../enterprise/include/functions_reporting_csv.php:1490 +#: ../../enterprise/include/functions_reporting_csv.php:1494 msgid "Simple Graph" msgstr "単一グラフ" -#: ../../enterprise/include/functions_reporting_csv.php:1550 -#: ../../enterprise/include/functions_reporting_csv.php:1596 -#: ../../enterprise/include/functions_reporting_csv.php:1669 -#: ../../enterprise/include/functions_reporting_csv.php:1788 -#: ../../enterprise/include/functions_reporting_csv.php:2096 +#: ../../enterprise/include/functions_reporting_csv.php:1554 +#: ../../enterprise/include/functions_reporting_csv.php:1600 +#: ../../enterprise/include/functions_reporting_csv.php:1673 +#: ../../enterprise/include/functions_reporting_csv.php:1792 +#: ../../enterprise/include/functions_reporting_csv.php:2100 msgid "SLA Max" msgstr "最大 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1551 -#: ../../enterprise/include/functions_reporting_csv.php:1597 -#: ../../enterprise/include/functions_reporting_csv.php:1670 -#: ../../enterprise/include/functions_reporting_csv.php:1789 -#: ../../enterprise/include/functions_reporting_csv.php:2097 +#: ../../enterprise/include/functions_reporting_csv.php:1555 +#: ../../enterprise/include/functions_reporting_csv.php:1601 +#: ../../enterprise/include/functions_reporting_csv.php:1674 +#: ../../enterprise/include/functions_reporting_csv.php:1793 +#: ../../enterprise/include/functions_reporting_csv.php:2101 msgid "SLA Min" msgstr "最小 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1552 -#: ../../enterprise/include/functions_reporting_csv.php:1598 -#: ../../enterprise/include/functions_reporting_csv.php:1671 -#: ../../enterprise/include/functions_reporting_csv.php:1790 -#: ../../enterprise/include/functions_reporting_csv.php:2098 -#: ../../enterprise/include/functions_reporting.php:1856 -#: ../../enterprise/include/functions_reporting.php:2895 -#: ../../enterprise/include/functions_reporting.php:3882 -#: ../../enterprise/include/functions_reporting.php:6132 -#: ../../include/functions_reporting_html.php:549 +#: ../../enterprise/include/functions_reporting_csv.php:1556 +#: ../../enterprise/include/functions_reporting_csv.php:1602 +#: ../../enterprise/include/functions_reporting_csv.php:1675 +#: ../../enterprise/include/functions_reporting_csv.php:1794 +#: ../../enterprise/include/functions_reporting_csv.php:2102 +#: ../../enterprise/include/functions_reporting.php:1857 +#: ../../enterprise/include/functions_reporting.php:2896 +#: ../../enterprise/include/functions_reporting.php:3883 +#: ../../enterprise/include/functions_reporting.php:6133 +#: ../../include/functions_reporting_html.php:550 msgid "SLA Limit" msgstr "SLA 制限" -#: ../../enterprise/include/functions_reporting_csv.php:1553 -#: ../../enterprise/include/functions_reporting_csv.php:1599 +#: ../../enterprise/include/functions_reporting_csv.php:1557 +#: ../../enterprise/include/functions_reporting_csv.php:1603 msgid "Time Total " msgstr "合計時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1554 -#: ../../enterprise/include/functions_reporting_csv.php:1600 +#: ../../enterprise/include/functions_reporting_csv.php:1558 +#: ../../enterprise/include/functions_reporting_csv.php:1604 msgid "Time OK " msgstr "正常時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1555 -#: ../../enterprise/include/functions_reporting_csv.php:1601 +#: ../../enterprise/include/functions_reporting_csv.php:1559 +#: ../../enterprise/include/functions_reporting_csv.php:1605 msgid "Time Error " msgstr "障害時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1556 -#: ../../enterprise/include/functions_reporting_csv.php:1602 +#: ../../enterprise/include/functions_reporting_csv.php:1560 +#: ../../enterprise/include/functions_reporting_csv.php:1606 msgid "Time Unknown " msgstr "不明時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1557 -#: ../../enterprise/include/functions_reporting_csv.php:1603 +#: ../../enterprise/include/functions_reporting_csv.php:1561 +#: ../../enterprise/include/functions_reporting_csv.php:1607 msgid "Time Not Init " msgstr "未初期化時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1558 -#: ../../enterprise/include/functions_reporting_csv.php:1604 +#: ../../enterprise/include/functions_reporting_csv.php:1562 +#: ../../enterprise/include/functions_reporting_csv.php:1608 msgid "Time Downtime " msgstr "計画停止時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1559 -#: ../../enterprise/include/functions_reporting_csv.php:1605 +#: ../../enterprise/include/functions_reporting_csv.php:1563 +#: ../../enterprise/include/functions_reporting_csv.php:1609 msgid "Checks Total " msgstr "合計確認数 " -#: ../../enterprise/include/functions_reporting_csv.php:1560 -#: ../../enterprise/include/functions_reporting_csv.php:1606 +#: ../../enterprise/include/functions_reporting_csv.php:1564 +#: ../../enterprise/include/functions_reporting_csv.php:1610 msgid "Checks OK " msgstr "正常確認数 " -#: ../../enterprise/include/functions_reporting_csv.php:1561 -#: ../../enterprise/include/functions_reporting_csv.php:1607 +#: ../../enterprise/include/functions_reporting_csv.php:1565 +#: ../../enterprise/include/functions_reporting_csv.php:1611 msgid "Checks Error " msgstr "障害確認数 " -#: ../../enterprise/include/functions_reporting_csv.php:1562 -#: ../../enterprise/include/functions_reporting_csv.php:1608 +#: ../../enterprise/include/functions_reporting_csv.php:1566 +#: ../../enterprise/include/functions_reporting_csv.php:1612 msgid "Checks Unknown " msgstr "不明確認数 " -#: ../../enterprise/include/functions_reporting_csv.php:1563 -#: ../../enterprise/include/functions_reporting_csv.php:1609 +#: ../../enterprise/include/functions_reporting_csv.php:1567 +#: ../../enterprise/include/functions_reporting_csv.php:1613 msgid "Checks Not Init " msgstr "未初期化確認数 " -#: ../../enterprise/include/functions_reporting_csv.php:1564 -#: ../../enterprise/include/functions_reporting_csv.php:1610 +#: ../../enterprise/include/functions_reporting_csv.php:1568 +#: ../../enterprise/include/functions_reporting_csv.php:1614 msgid "SLA " msgstr "SLA " -#: ../../enterprise/include/functions_reporting_csv.php:1565 -#: ../../enterprise/include/functions_reporting_csv.php:1611 +#: ../../enterprise/include/functions_reporting_csv.php:1569 +#: ../../enterprise/include/functions_reporting_csv.php:1615 msgid "Status " msgstr "状態 " -#: ../../enterprise/include/functions_reporting_csv.php:1587 -#: ../../enterprise/include/functions_reporting_csv.php:1633 -#: ../../enterprise/include/functions_reporting_csv.php:1951 -#: ../../enterprise/include/functions_reporting.php:1876 -#: ../../enterprise/include/functions_reporting.php:1917 -#: ../../enterprise/include/functions_reporting.php:2920 -#: ../../enterprise/include/functions_reporting.php:2979 -#: ../../enterprise/include/functions_reporting.php:3908 -#: ../../enterprise/include/functions_reporting.php:3967 -#: ../../enterprise/include/functions_reporting.php:6156 -#: ../../include/functions_reporting_html.php:666 -#: ../../include/functions_config.php:1286 ../../include/functions_config.php:3197 +#: ../../enterprise/include/functions_reporting_csv.php:1591 +#: ../../enterprise/include/functions_reporting_csv.php:1637 +#: ../../enterprise/include/functions_reporting_csv.php:1955 +#: ../../enterprise/include/functions_reporting.php:1877 +#: ../../enterprise/include/functions_reporting.php:1918 +#: ../../enterprise/include/functions_reporting.php:2921 +#: ../../enterprise/include/functions_reporting.php:2980 +#: ../../enterprise/include/functions_reporting.php:3909 +#: ../../enterprise/include/functions_reporting.php:3968 +#: ../../enterprise/include/functions_reporting.php:6157 +#: ../../include/functions_reporting_html.php:667 +#: ../../include/functions_config.php:1287 +#: ../../include/functions_config.php:3273 msgid "Fail" msgstr "失敗" -#: ../../enterprise/include/functions_reporting_csv.php:1657 -#: ../../enterprise/include/functions_reporting_csv.php:1773 -#: ../../enterprise/include/functions_reporting_csv.php:2013 -#: ../../enterprise/include/functions_reporting_csv.php:2081 +#: ../../enterprise/include/functions_reporting_csv.php:1661 +#: ../../enterprise/include/functions_reporting_csv.php:1777 +#: ../../enterprise/include/functions_reporting_csv.php:2017 +#: ../../enterprise/include/functions_reporting_csv.php:2085 msgid "Subtitle" msgstr "サブタイトル" -#: ../../enterprise/include/functions_reporting_csv.php:1672 -#: ../../enterprise/include/functions_reporting_csv.php:1804 -#: ../../enterprise/include/functions_reporting_csv.php:2112 -msgid "Time Total Month" -msgstr "月間合計時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1673 -#: ../../enterprise/include/functions_reporting_csv.php:1805 -#: ../../enterprise/include/functions_reporting_csv.php:2113 -msgid "Time OK Month" -msgstr "月間正常時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1674 -#: ../../enterprise/include/functions_reporting_csv.php:1806 -#: ../../enterprise/include/functions_reporting_csv.php:2114 -msgid "Time Error Month" -msgstr "月間障害時間" - -#: ../../enterprise/include/functions_reporting_csv.php:1675 -#: ../../enterprise/include/functions_reporting_csv.php:1807 -#: ../../enterprise/include/functions_reporting_csv.php:2115 -msgid "Time Unknown Month" -msgstr "月間不明時間" - #: ../../enterprise/include/functions_reporting_csv.php:1676 #: ../../enterprise/include/functions_reporting_csv.php:1808 #: ../../enterprise/include/functions_reporting_csv.php:2116 -msgid "Time Downtime Month" -msgstr "月間計画停止時間" +msgid "Time Total Month" +msgstr "月間合計時間" #: ../../enterprise/include/functions_reporting_csv.php:1677 #: ../../enterprise/include/functions_reporting_csv.php:1809 #: ../../enterprise/include/functions_reporting_csv.php:2117 -msgid "Time Not Init Month" -msgstr "月間未初期化時間" +msgid "Time OK Month" +msgstr "月間正常時間" #: ../../enterprise/include/functions_reporting_csv.php:1678 #: ../../enterprise/include/functions_reporting_csv.php:1810 #: ../../enterprise/include/functions_reporting_csv.php:2118 -msgid "Checks Total Month" -msgstr "月間合計確認数" +msgid "Time Error Month" +msgstr "月間障害時間" #: ../../enterprise/include/functions_reporting_csv.php:1679 #: ../../enterprise/include/functions_reporting_csv.php:1811 #: ../../enterprise/include/functions_reporting_csv.php:2119 -msgid "Checks OK Month" -msgstr "月間正常確認数" +msgid "Time Unknown Month" +msgstr "月間不明時間" #: ../../enterprise/include/functions_reporting_csv.php:1680 #: ../../enterprise/include/functions_reporting_csv.php:1812 #: ../../enterprise/include/functions_reporting_csv.php:2120 -msgid "Checks Error Month" -msgstr "月間障害確認数" +msgid "Time Downtime Month" +msgstr "月間計画停止時間" #: ../../enterprise/include/functions_reporting_csv.php:1681 #: ../../enterprise/include/functions_reporting_csv.php:1813 #: ../../enterprise/include/functions_reporting_csv.php:2121 -msgid "Checks Unknown Month" -msgstr "月間不明確認数" +msgid "Time Not Init Month" +msgstr "月間未初期化時間" #: ../../enterprise/include/functions_reporting_csv.php:1682 #: ../../enterprise/include/functions_reporting_csv.php:1814 #: ../../enterprise/include/functions_reporting_csv.php:2122 -msgid "Checks Not Init Month" -msgstr "月間未初期化確認数" +msgid "Checks Total Month" +msgstr "月間合計確認数" #: ../../enterprise/include/functions_reporting_csv.php:1683 #: ../../enterprise/include/functions_reporting_csv.php:1815 #: ../../enterprise/include/functions_reporting_csv.php:2123 -msgid "SLA Month" -msgstr "月間 SLA" +msgid "Checks OK Month" +msgstr "月間正常確認数" #: ../../enterprise/include/functions_reporting_csv.php:1684 #: ../../enterprise/include/functions_reporting_csv.php:1816 #: ../../enterprise/include/functions_reporting_csv.php:2124 +msgid "Checks Error Month" +msgstr "月間障害確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1685 +#: ../../enterprise/include/functions_reporting_csv.php:1817 +#: ../../enterprise/include/functions_reporting_csv.php:2125 +msgid "Checks Unknown Month" +msgstr "月間不明確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1686 +#: ../../enterprise/include/functions_reporting_csv.php:1818 +#: ../../enterprise/include/functions_reporting_csv.php:2126 +msgid "Checks Not Init Month" +msgstr "月間未初期化確認数" + +#: ../../enterprise/include/functions_reporting_csv.php:1687 +#: ../../enterprise/include/functions_reporting_csv.php:1819 +#: ../../enterprise/include/functions_reporting_csv.php:2127 +msgid "SLA Month" +msgstr "月間 SLA" + +#: ../../enterprise/include/functions_reporting_csv.php:1688 +#: ../../enterprise/include/functions_reporting_csv.php:1820 +#: ../../enterprise/include/functions_reporting_csv.php:2128 msgid "Status Month" msgstr "月間状態" -#: ../../enterprise/include/functions_reporting_csv.php:1706 -#: ../../enterprise/include/functions_reporting.php:2024 +#: ../../enterprise/include/functions_reporting_csv.php:1710 +#: ../../enterprise/include/functions_reporting.php:2025 msgid "Day" msgstr "日" -#: ../../enterprise/include/functions_reporting_csv.php:1707 -#: ../../enterprise/include/functions_reporting_csv.php:1862 +#: ../../enterprise/include/functions_reporting_csv.php:1711 +#: ../../enterprise/include/functions_reporting_csv.php:1866 msgid "Time Total Day" msgstr "日ごとの合計時間" -#: ../../enterprise/include/functions_reporting_csv.php:1708 -#: ../../enterprise/include/functions_reporting_csv.php:1863 +#: ../../enterprise/include/functions_reporting_csv.php:1712 +#: ../../enterprise/include/functions_reporting_csv.php:1867 msgid "Time OK Day" msgstr "日ごとの正常時間" -#: ../../enterprise/include/functions_reporting_csv.php:1709 -#: ../../enterprise/include/functions_reporting_csv.php:1864 +#: ../../enterprise/include/functions_reporting_csv.php:1713 +#: ../../enterprise/include/functions_reporting_csv.php:1868 msgid "Time Error Day" msgstr "日ごとの障害時間" -#: ../../enterprise/include/functions_reporting_csv.php:1710 -#: ../../enterprise/include/functions_reporting_csv.php:1865 +#: ../../enterprise/include/functions_reporting_csv.php:1714 +#: ../../enterprise/include/functions_reporting_csv.php:1869 msgid "Time Unknown Day" msgstr "日ごとの不明時間" -#: ../../enterprise/include/functions_reporting_csv.php:1711 -#: ../../enterprise/include/functions_reporting_csv.php:1866 +#: ../../enterprise/include/functions_reporting_csv.php:1715 +#: ../../enterprise/include/functions_reporting_csv.php:1870 msgid "Time Not Init Day" msgstr "日ごとの未初期化時間" -#: ../../enterprise/include/functions_reporting_csv.php:1712 -#: ../../enterprise/include/functions_reporting_csv.php:1867 +#: ../../enterprise/include/functions_reporting_csv.php:1716 +#: ../../enterprise/include/functions_reporting_csv.php:1871 msgid "Time Downtime Day" msgstr "日ごとの計画停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:1713 -#: ../../enterprise/include/functions_reporting_csv.php:1868 +#: ../../enterprise/include/functions_reporting_csv.php:1717 +#: ../../enterprise/include/functions_reporting_csv.php:1872 msgid "Time Out Day" msgstr "日ごとの停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:1714 -#: ../../enterprise/include/functions_reporting_csv.php:1869 +#: ../../enterprise/include/functions_reporting_csv.php:1718 +#: ../../enterprise/include/functions_reporting_csv.php:1873 msgid "Checks Total Day" msgstr "日ごとの合計確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1715 -#: ../../enterprise/include/functions_reporting_csv.php:1870 +#: ../../enterprise/include/functions_reporting_csv.php:1719 +#: ../../enterprise/include/functions_reporting_csv.php:1874 msgid "Checks OK Day" msgstr "日ごとの正常確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1716 -#: ../../enterprise/include/functions_reporting_csv.php:1871 +#: ../../enterprise/include/functions_reporting_csv.php:1720 +#: ../../enterprise/include/functions_reporting_csv.php:1875 msgid "Checks Error Day" msgstr "日ごとの障害確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1717 -#: ../../enterprise/include/functions_reporting_csv.php:1872 +#: ../../enterprise/include/functions_reporting_csv.php:1721 +#: ../../enterprise/include/functions_reporting_csv.php:1876 msgid "Checks Unknown Day" msgstr "日ごとの不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1718 -#: ../../enterprise/include/functions_reporting_csv.php:1873 +#: ../../enterprise/include/functions_reporting_csv.php:1722 +#: ../../enterprise/include/functions_reporting_csv.php:1877 msgid "Checks Not Init Day" msgstr "日ごとの不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1719 -#: ../../enterprise/include/functions_reporting_csv.php:1874 +#: ../../enterprise/include/functions_reporting_csv.php:1723 +#: ../../enterprise/include/functions_reporting_csv.php:1878 msgid "SLA Day" msgstr "日ごとの SLAd" -#: ../../enterprise/include/functions_reporting_csv.php:1720 -#: ../../enterprise/include/functions_reporting_csv.php:1875 +#: ../../enterprise/include/functions_reporting_csv.php:1724 +#: ../../enterprise/include/functions_reporting_csv.php:1879 msgid "SLA Fixed Day" msgstr "日ごとの修正 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1721 -#: ../../enterprise/include/functions_reporting_csv.php:1876 +#: ../../enterprise/include/functions_reporting_csv.php:1725 +#: ../../enterprise/include/functions_reporting_csv.php:1880 msgid "Date From Day" msgstr "開始日" -#: ../../enterprise/include/functions_reporting_csv.php:1722 -#: ../../enterprise/include/functions_reporting_csv.php:1877 +#: ../../enterprise/include/functions_reporting_csv.php:1726 +#: ../../enterprise/include/functions_reporting_csv.php:1881 msgid "Date To Day" msgstr "終了日" -#: ../../enterprise/include/functions_reporting_csv.php:1723 -#: ../../enterprise/include/functions_reporting_csv.php:1878 +#: ../../enterprise/include/functions_reporting_csv.php:1727 +#: ../../enterprise/include/functions_reporting_csv.php:1882 msgid "Status Day" msgstr "日ごとの状態" -#: ../../enterprise/include/functions_reporting_csv.php:1783 -#: ../../enterprise/include/functions_reporting_csv.php:2091 -#: ../../include/functions_html.php:2286 +#: ../../enterprise/include/functions_reporting_csv.php:1787 +#: ../../enterprise/include/functions_reporting_csv.php:2095 +#: ../../include/functions_html.php:2279 msgid "Month" msgstr "月" -#: ../../enterprise/include/functions_reporting_csv.php:1784 -#: ../../enterprise/include/functions_reporting_csv.php:2092 +#: ../../enterprise/include/functions_reporting_csv.php:1788 +#: ../../enterprise/include/functions_reporting_csv.php:2096 msgid "Month Number" msgstr "月の数" -#: ../../enterprise/include/functions_reporting_csv.php:1785 -#: ../../enterprise/include/functions_reporting_csv.php:2093 +#: ../../enterprise/include/functions_reporting_csv.php:1789 +#: ../../enterprise/include/functions_reporting_csv.php:2097 msgid "Year" msgstr "年" -#: ../../enterprise/include/functions_reporting_csv.php:1835 +#: ../../enterprise/include/functions_reporting_csv.php:1839 msgid "Time Total week" msgstr "週間合計時間" -#: ../../enterprise/include/functions_reporting_csv.php:1836 +#: ../../enterprise/include/functions_reporting_csv.php:1840 msgid "Time OK week" msgstr "週間正常時間" -#: ../../enterprise/include/functions_reporting_csv.php:1837 +#: ../../enterprise/include/functions_reporting_csv.php:1841 msgid "Time Error week" msgstr "週間障害時間" -#: ../../enterprise/include/functions_reporting_csv.php:1838 +#: ../../enterprise/include/functions_reporting_csv.php:1842 msgid "Time Unknown week" msgstr "週間不明時間" -#: ../../enterprise/include/functions_reporting_csv.php:1839 +#: ../../enterprise/include/functions_reporting_csv.php:1843 msgid "Time Downtime week" msgstr "週間計画停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:1840 +#: ../../enterprise/include/functions_reporting_csv.php:1844 msgid "Time Not Init week" msgstr "週間未初期化時間" -#: ../../enterprise/include/functions_reporting_csv.php:1841 +#: ../../enterprise/include/functions_reporting_csv.php:1845 msgid "Checks Total week" msgstr "週間合計確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1842 +#: ../../enterprise/include/functions_reporting_csv.php:1846 msgid "Checks OK week" msgstr "週間正常確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1843 +#: ../../enterprise/include/functions_reporting_csv.php:1847 msgid "Checks Error week" msgstr "週間障害確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1844 +#: ../../enterprise/include/functions_reporting_csv.php:1848 msgid "Checks Unknown week" msgstr "週間不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1845 +#: ../../enterprise/include/functions_reporting_csv.php:1849 msgid "Status week" msgstr "週間状態" -#: ../../enterprise/include/functions_reporting_csv.php:1861 +#: ../../enterprise/include/functions_reporting_csv.php:1865 msgid "Day Week" msgstr "週" -#: ../../enterprise/include/functions_reporting_csv.php:1913 +#: ../../enterprise/include/functions_reporting_csv.php:1917 msgid "S.L.A. Services" msgstr "SLA サービス" -#: ../../enterprise/include/functions_reporting_csv.php:1931 +#: ../../enterprise/include/functions_reporting_csv.php:1935 msgid "Lost sercice " msgstr "失われたサービス " -#: ../../enterprise/include/functions_reporting_csv.php:1932 +#: ../../enterprise/include/functions_reporting_csv.php:1936 msgid "Service " msgstr "サービス " -#: ../../enterprise/include/functions_reporting_csv.php:1933 +#: ../../enterprise/include/functions_reporting_csv.php:1937 msgid "Limit " msgstr "制限 " -#: ../../enterprise/include/functions_reporting_csv.php:1934 +#: ../../enterprise/include/functions_reporting_csv.php:1938 msgid "SLA Compilance " msgstr "SLA コンプライアンス " -#: ../../enterprise/include/functions_reporting_csv.php:1935 +#: ../../enterprise/include/functions_reporting_csv.php:1939 msgid "Unknown " msgstr "不明 " -#: ../../enterprise/include/functions_reporting_csv.php:1936 +#: ../../enterprise/include/functions_reporting_csv.php:1940 msgid "Ok " msgstr "Ok " -#: ../../enterprise/include/functions_reporting_csv.php:1937 +#: ../../enterprise/include/functions_reporting_csv.php:1941 msgid "Fail " msgstr "失敗 " -#: ../../enterprise/include/functions_reporting_csv.php:1938 +#: ../../enterprise/include/functions_reporting_csv.php:1942 msgid "Result " msgstr "結果 " -#: ../../enterprise/include/functions_reporting_csv.php:1963 +#: ../../enterprise/include/functions_reporting_csv.php:1967 msgid "IPAM Networks" msgstr "IPAM ネットワーク" -#: ../../enterprise/include/functions_reporting_csv.php:1980 -#: ../../enterprise/include/functions_reporting.php:2317 -#: ../../godmode/events/custom_events.php:96 ../../include/functions_events.php:244 -#: ../../operation/events/events.php:2434 +#: ../../enterprise/include/functions_reporting_csv.php:1984 +#: ../../enterprise/include/functions_reporting.php:2318 +#: ../../godmode/events/custom_events.php:96 +#: ../../include/functions_events.php:244 ../../operation/events/events.php:2588 msgid "Agent ID" msgstr "エージェント ID" -#: ../../enterprise/include/functions_reporting_csv.php:1981 -#: ../../enterprise/include/functions_reporting.php:2318 -#: ../../enterprise/include/functions_ipam.php:2046 +#: ../../enterprise/include/functions_reporting_csv.php:1985 +#: ../../enterprise/include/functions_reporting.php:2319 +#: ../../enterprise/include/functions_ipam.php:2054 #: ../../enterprise/tools/ipam/ipam_network.php:404 #: ../../enterprise/tools/ipam/ipam_network.php:673 #: ../../enterprise/tools/ipam/ipam_ajax.php:293 #: ../../enterprise/tools/ipam/ipam_ajax.php:479 #: ../../enterprise/tools/ipam/ipam_massive.php:83 -#: ../../godmode/users/configure_user.php:1050 ../../mobile/operation/events.php:849 -#: ../../include/functions_reporting_html.php:5889 ../../include/functions.php:3053 -#: ../../include/ajax/events.php:1722 ../../include/class/AuditLog.class.php:112 -#: ../../operation/users/user_edit.php:609 +#: ../../godmode/users/configure_user.php:1261 +#: ../../mobile/operation/events.php:849 +#: ../../include/functions_reporting_html.php:5928 +#: ../../include/functions.php:3099 ../../include/ajax/events.php:1690 +#: ../../include/class/AuditLog.class.php:111 +#: ../../operation/users/user_edit.php:681 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 #: ../../general/logon_ok.php:253 msgid "Comments" msgstr "コメント" -#: ../../enterprise/include/functions_reporting_csv.php:1982 -#: ../../enterprise/include/functions_reporting.php:2319 -#: ../../enterprise/include/functions_ipam.php:2044 +#: ../../enterprise/include/functions_reporting_csv.php:1986 +#: ../../enterprise/include/functions_reporting.php:2320 +#: ../../enterprise/include/functions_ipam.php:2052 #: ../../enterprise/tools/ipam/ipam_network.php:415 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1393 msgid "Alive" msgstr "稼働" -#: ../../enterprise/include/functions_reporting_csv.php:2023 +#: ../../enterprise/include/functions_reporting_csv.php:2027 msgid "SLA max" msgstr "最大 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:2024 +#: ../../enterprise/include/functions_reporting_csv.php:2028 msgid "SLA min" msgstr "最小 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:2025 +#: ../../enterprise/include/functions_reporting_csv.php:2029 msgid "SLA limit" msgstr "SLA 制限" -#: ../../enterprise/include/functions_reporting_csv.php:2026 -#: ../../enterprise/include/functions_reporting.php:4967 -#: ../../include/functions_reporting_html.php:583 +#: ../../enterprise/include/functions_reporting_csv.php:2030 +#: ../../enterprise/include/functions_reporting.php:4968 +#: ../../include/functions_reporting_html.php:584 msgid "Time Total" msgstr "合計時間" -#: ../../enterprise/include/functions_reporting_csv.php:2027 -#: ../../enterprise/include/functions_reporting.php:4970 -#: ../../include/functions_reporting_html.php:585 -#: ../../include/functions_reporting_html.php:4053 +#: ../../enterprise/include/functions_reporting_csv.php:2031 +#: ../../enterprise/include/functions_reporting.php:4971 +#: ../../include/functions_reporting_html.php:586 +#: ../../include/functions_reporting_html.php:4072 msgid "Time OK" msgstr "正常時間" -#: ../../enterprise/include/functions_reporting_csv.php:2028 +#: ../../enterprise/include/functions_reporting_csv.php:2032 msgid "Time Error" msgstr "障害時間" -#: ../../enterprise/include/functions_reporting_csv.php:2029 -#: ../../enterprise/include/functions_reporting.php:4971 -#: ../../include/functions_reporting_html.php:586 -#: ../../include/functions_reporting_html.php:4065 +#: ../../enterprise/include/functions_reporting_csv.php:2033 +#: ../../enterprise/include/functions_reporting.php:4972 +#: ../../include/functions_reporting_html.php:587 +#: ../../include/functions_reporting_html.php:4084 msgid "Time Unknown" msgstr "不明時間" -#: ../../enterprise/include/functions_reporting_csv.php:2030 -#: ../../enterprise/include/functions_reporting.php:4972 -#: ../../include/functions_reporting_html.php:587 +#: ../../enterprise/include/functions_reporting_csv.php:2034 +#: ../../enterprise/include/functions_reporting.php:4973 +#: ../../include/functions_reporting_html.php:588 msgid "Time Not Init" msgstr "未初期化時間" -#: ../../enterprise/include/functions_reporting_csv.php:2031 -#: ../../include/functions_reporting_html.php:4077 +#: ../../enterprise/include/functions_reporting_csv.php:2035 +#: ../../include/functions_reporting_html.php:4096 msgid "Time Downtime" msgstr "計画停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:2032 -#: ../../enterprise/include/functions_reporting.php:5062 -#: ../../include/functions_reporting_html.php:616 +#: ../../enterprise/include/functions_reporting_csv.php:2036 +#: ../../enterprise/include/functions_reporting.php:5063 +#: ../../include/functions_reporting_html.php:617 msgid "Checks Total" msgstr "合計確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2033 -#: ../../enterprise/include/functions_reporting.php:5065 -#: ../../include/functions_reporting_html.php:618 -#: ../../include/functions_reporting_html.php:4147 +#: ../../enterprise/include/functions_reporting_csv.php:2037 +#: ../../enterprise/include/functions_reporting.php:5066 +#: ../../include/functions_reporting_html.php:619 +#: ../../include/functions_reporting_html.php:4166 msgid "Checks OK" msgstr "正常確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2034 +#: ../../enterprise/include/functions_reporting_csv.php:2038 msgid "Checks Error" msgstr "エラー数" -#: ../../enterprise/include/functions_reporting_csv.php:2035 -#: ../../enterprise/include/functions_reporting.php:5066 -#: ../../include/functions_reporting_html.php:619 +#: ../../enterprise/include/functions_reporting_csv.php:2039 +#: ../../enterprise/include/functions_reporting.php:5067 +#: ../../include/functions_reporting_html.php:620 msgid "Checks Unknown" msgstr "不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2036 -#: ../../enterprise/include/functions_reporting.php:5067 +#: ../../enterprise/include/functions_reporting_csv.php:2040 +#: ../../enterprise/include/functions_reporting.php:5068 msgid "Checks Not Init" msgstr "未初期化数" -#: ../../enterprise/include/functions_reporting_csv.php:2037 +#: ../../enterprise/include/functions_reporting_csv.php:2041 #: ../../enterprise/operation/services/services.service.php:128 #: ../../enterprise/operation/services/services.list.php:508 -#: ../../include/functions_reports.php:698 ../../include/functions_reports.php:703 -#: ../../include/functions_reports.php:707 ../../include/functions_reports.php:711 +#: ../../include/functions_reports.php:698 +#: ../../include/functions_reports.php:703 +#: ../../include/functions_reports.php:707 +#: ../../include/functions_reports.php:711 #: ../../include/functions_reports.php:717 msgid "SLA" msgstr "SLA" -#: ../../enterprise/include/functions_reporting_csv.php:2038 +#: ../../enterprise/include/functions_reporting_csv.php:2042 msgid "SLA Fixed" msgstr "修正 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:2143 +#: ../../enterprise/include/functions_reporting_csv.php:2147 msgid "Time Total day" msgstr "日ごとの合計時間" -#: ../../enterprise/include/functions_reporting_csv.php:2144 +#: ../../enterprise/include/functions_reporting_csv.php:2148 msgid "Time OK day" msgstr "日ごとの正常時間" -#: ../../enterprise/include/functions_reporting_csv.php:2145 +#: ../../enterprise/include/functions_reporting_csv.php:2149 msgid "Time Error day" msgstr "日ごとの障害時間" -#: ../../enterprise/include/functions_reporting_csv.php:2146 +#: ../../enterprise/include/functions_reporting_csv.php:2150 msgid "Time Unknown day" msgstr "日ごとの不明時間" -#: ../../enterprise/include/functions_reporting_csv.php:2147 +#: ../../enterprise/include/functions_reporting_csv.php:2151 msgid "Time Downtime day" msgstr "日ごとの計画停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:2148 +#: ../../enterprise/include/functions_reporting_csv.php:2152 msgid "Time Not Init day" msgstr "日ごとの未初期化時間" -#: ../../enterprise/include/functions_reporting_csv.php:2149 +#: ../../enterprise/include/functions_reporting_csv.php:2153 msgid "Checks Total day" msgstr "日ごとの合計確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2150 +#: ../../enterprise/include/functions_reporting_csv.php:2154 msgid "Checks OK day" msgstr "日ごとの正常確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2151 +#: ../../enterprise/include/functions_reporting_csv.php:2155 msgid "Checks Error day" msgstr "日ごとのエラー確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2152 +#: ../../enterprise/include/functions_reporting_csv.php:2156 msgid "Checks Unknown day" msgstr "日ごとの不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2153 +#: ../../enterprise/include/functions_reporting_csv.php:2157 msgid "Status day" msgstr "日ごとの状態" -#: ../../enterprise/include/functions_reporting_csv.php:2169 +#: ../../enterprise/include/functions_reporting_csv.php:2173 #: ../../enterprise/include/functions_events.php:163 msgid "Hours" msgstr "時間" -#: ../../enterprise/include/functions_reporting_csv.php:2170 +#: ../../enterprise/include/functions_reporting_csv.php:2174 msgid "Time Total hours" msgstr "1時間ごとの合計時間" -#: ../../enterprise/include/functions_reporting_csv.php:2171 +#: ../../enterprise/include/functions_reporting_csv.php:2175 msgid "Time OK hours" msgstr "1時間ごとの正常時間" -#: ../../enterprise/include/functions_reporting_csv.php:2172 +#: ../../enterprise/include/functions_reporting_csv.php:2176 msgid "Time Error hours" msgstr "1時間ごとの障害時間" -#: ../../enterprise/include/functions_reporting_csv.php:2173 +#: ../../enterprise/include/functions_reporting_csv.php:2177 msgid "Time Unknown hours" msgstr "1時間ごとの不明時間" -#: ../../enterprise/include/functions_reporting_csv.php:2174 +#: ../../enterprise/include/functions_reporting_csv.php:2178 msgid "Time Not Init hours" msgstr "1時間ごとの未初期化時間" -#: ../../enterprise/include/functions_reporting_csv.php:2175 +#: ../../enterprise/include/functions_reporting_csv.php:2179 msgid "Time Downtime hours" msgstr "1時間ごとの計画停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:2176 +#: ../../enterprise/include/functions_reporting_csv.php:2180 msgid "Time Out hours" msgstr "1時間ごとの停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:2177 +#: ../../enterprise/include/functions_reporting_csv.php:2181 msgid "Checks Total hours" msgstr "1時間ごとの確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2178 +#: ../../enterprise/include/functions_reporting_csv.php:2182 msgid "Checks OK hours" msgstr "1時間ごとの正常確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2179 +#: ../../enterprise/include/functions_reporting_csv.php:2183 msgid "Checks Error hours" msgstr "1時間ごとの障害確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2180 +#: ../../enterprise/include/functions_reporting_csv.php:2184 msgid "Checks Unknown hours" msgstr "1時間ごとの不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2181 +#: ../../enterprise/include/functions_reporting_csv.php:2185 msgid "Checks Not Init hours" msgstr "1時間ごとの未初期化確認数" -#: ../../enterprise/include/functions_reporting_csv.php:2182 +#: ../../enterprise/include/functions_reporting_csv.php:2186 msgid "SLA hours" msgstr "1時間ごとの SLA" -#: ../../enterprise/include/functions_reporting_csv.php:2183 +#: ../../enterprise/include/functions_reporting_csv.php:2187 msgid "SLA Fixed hours" msgstr "1時間ごとの修正 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:2184 +#: ../../enterprise/include/functions_reporting_csv.php:2188 msgid "Date From hours" msgstr "開始時間" -#: ../../enterprise/include/functions_reporting_csv.php:2185 +#: ../../enterprise/include/functions_reporting_csv.php:2189 msgid "Date To hours" msgstr "終了時間" -#: ../../enterprise/include/functions_reporting_csv.php:2186 +#: ../../enterprise/include/functions_reporting_csv.php:2190 msgid "Status hours" msgstr "1時間ごとの状態" -#: ../../enterprise/include/functions_reporting_csv.php:2313 +#: ../../enterprise/include/functions_reporting_csv.php:2317 msgid "Simple Baseline Graph" msgstr "シンプルベースライングラフ" -#: ../../enterprise/include/functions_reporting_csv.php:2344 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567 +#: ../../enterprise/include/functions_reporting_csv.php:2348 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:557 msgid "Custom Graph" msgstr "カスタムグラフ" -#: ../../enterprise/include/functions_reporting_csv.php:2489 -#: ../../include/functions_reporting.php:5818 +#: ../../enterprise/include/functions_reporting_csv.php:2493 +#: ../../include/functions_reporting.php:6046 msgid "Alert Report Module" msgstr "アラートレポートモジュール" -#: ../../enterprise/include/functions_reporting_csv.php:2491 -#: ../../include/functions_reporting.php:5651 +#: ../../enterprise/include/functions_reporting_csv.php:2495 +#: ../../include/functions_reporting.php:5879 msgid "Alert Report Agent" msgstr "アラートレポートエージェント" -#: ../../enterprise/include/functions_reporting_csv.php:2493 -#: ../../include/functions_reporting.php:5471 +#: ../../enterprise/include/functions_reporting_csv.php:2497 +#: ../../include/functions_reporting.php:5699 msgid "Alert Report Group" msgstr "アラートレポートグループ" -#: ../../enterprise/include/functions_reporting_csv.php:2511 +#: ../../enterprise/include/functions_reporting_csv.php:2515 msgid "Actions Triggered" msgstr "実行されたアクション" -#: ../../enterprise/include/functions_reporting_csv.php:2511 +#: ../../enterprise/include/functions_reporting_csv.php:2515 msgid "Template Triggered" msgstr "実行されたテンプレート" -#: ../../enterprise/include/functions_reporting_csv.php:2548 +#: ../../enterprise/include/functions_reporting_csv.php:2552 msgid "Event Report Log" msgstr "イベントレポートログ" -#: ../../enterprise/include/functions_reporting_csv.php:2577 -#: ../../include/functions_reports.php:939 ../../include/functions_reports.php:940 -#: ../../include/functions_reporting.php:4728 +#: ../../enterprise/include/functions_reporting_csv.php:2581 +#: ../../include/functions_reports.php:939 +#: ../../include/functions_reports.php:940 +#: ../../include/functions_reporting.php:5004 msgid "Permissions report" msgstr "権限レポート" -#: ../../enterprise/include/functions_reporting_csv.php:2595 -#: ../../enterprise/include/functions_reporting_csv.php:2605 -#: ../../godmode/users/user_list.php:479 ../../godmode/users/configure_user.php:876 -#: ../../godmode/users/configure_user.php:892 -#: ../../include/functions_reporting_html.php:5179 -#: ../../include/functions_reporting_html.php:6351 -#: ../../include/functions_reporting_html.php:6374 ../../operation/search_users.php:43 -#: ../../operation/users/user_edit.php:261 ../../operation/snmpconsole/snmp_view.php:876 +#: ../../enterprise/include/functions_reporting_csv.php:2599 +#: ../../enterprise/include/functions_reporting_csv.php:2609 +#: ../../godmode/users/user_list.php:539 +#: ../../godmode/users/configure_user.php:1045 +#: ../../godmode/users/configure_user.php:1103 +#: ../../include/functions_reporting_html.php:5218 +#: ../../include/functions_reporting_html.php:6386 +#: ../../include/functions_reporting_html.php:6409 +#: ../../include/class/SnmpConsole.class.php:341 +#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:268 msgid "User ID" msgstr "ユーザ ID" -#: ../../enterprise/include/functions_reporting_csv.php:2595 -#: ../../enterprise/include/functions_reporting_csv.php:2605 -#: ../../include/functions_reporting_html.php:6352 -#: ../../include/functions_reporting_html.php:6375 +#: ../../enterprise/include/functions_reporting_csv.php:2599 +#: ../../enterprise/include/functions_reporting_csv.php:2609 +#: ../../include/functions_reporting_html.php:6387 +#: ../../include/functions_reporting_html.php:6410 msgid "Full name" msgstr "フルネーム" -#: ../../enterprise/include/functions_reporting_csv.php:2595 -#: ../../enterprise/include/functions_reporting_csv.php:2605 -#: ../../include/functions_reporting_html.php:6353 -#: ../../include/functions_reporting_html.php:6376 +#: ../../enterprise/include/functions_reporting_csv.php:2599 +#: ../../enterprise/include/functions_reporting_csv.php:2609 +#: ../../include/functions_reporting_html.php:6388 +#: ../../include/functions_reporting_html.php:6411 msgid "Permissions" msgstr "権限" -#: ../../enterprise/include/functions_reporting_csv.php:2651 +#: ../../enterprise/include/functions_reporting_csv.php:2655 msgid "Netflow data chart" msgstr "Netflow データグラフ" -#: ../../enterprise/include/functions_reporting_csv.php:2653 +#: ../../enterprise/include/functions_reporting_csv.php:2657 #: ../../include/functions_reports.php:914 msgid "Netflow area chart" msgstr "Netflow 塗り潰しグラフ" -#: ../../enterprise/include/functions_reporting_csv.php:2706 +#: ../../enterprise/include/functions_reporting_csv.php:2710 msgid "Netflow summary" msgstr "Netflow 概要" -#: ../../enterprise/include/functions_reporting_csv.php:2726 +#: ../../enterprise/include/functions_reporting_csv.php:2730 #: ../../include/functions_netflow.php:416 msgid "Total flows" msgstr "全フロー数" -#: ../../enterprise/include/functions_reporting_csv.php:2726 +#: ../../enterprise/include/functions_reporting_csv.php:2730 #: ../../include/functions_netflow.php:421 msgid "Total bytes" msgstr "全バイト数" -#: ../../enterprise/include/functions_reporting_csv.php:2726 +#: ../../enterprise/include/functions_reporting_csv.php:2730 #: ../../include/functions_netflow.php:426 msgid "Total packets" msgstr "全パケット数" -#: ../../enterprise/include/functions_reporting_csv.php:2726 +#: ../../enterprise/include/functions_reporting_csv.php:2730 msgid "Avg. bits/sec" msgstr "平均ビット/秒" -#: ../../enterprise/include/functions_reporting_csv.php:2726 +#: ../../enterprise/include/functions_reporting_csv.php:2730 msgid "Avg. packets/sec" msgstr "平均パケット/秒" -#: ../../enterprise/include/functions_reporting_csv.php:2726 +#: ../../enterprise/include/functions_reporting_csv.php:2730 msgid "Avg. bytes/packet" msgstr "平均バイト/パケット" -#: ../../enterprise/include/functions_reporting_csv.php:2727 +#: ../../enterprise/include/functions_reporting_csv.php:2731 msgid "Dst. IP" msgstr "宛先 IP" -#: ../../enterprise/include/functions_reporting_csv.php:2753 +#: ../../enterprise/include/functions_reporting_csv.php:2757 msgid "Agent/module status" msgstr "エージェント/モジュール状態" -#: ../../enterprise/include/functions_reporting_csv.php:2788 -#: ../../include/functions_reporting_html.php:2260 +#: ../../enterprise/include/functions_reporting_csv.php:2792 +#: ../../include/functions_reporting_html.php:2269 msgid "Last time" msgstr "最新日時" -#: ../../enterprise/include/functions_reporting_csv.php:2832 -#: ../../include/functions_reports.php:926 ../../include/functions_reporting.php:6265 +#: ../../enterprise/include/functions_reporting_csv.php:2836 +#: ../../include/functions_reports.php:926 +#: ../../include/functions_reporting.php:6493 msgid "Netflow top-N connections" msgstr "Netflow トップ N 接続" -#: ../../enterprise/include/functions_reporting_csv.php:2854 +#: ../../enterprise/include/functions_reporting_csv.php:2858 #: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:5888 ../../include/functions.php:3053 -#: ../../include/functions_netflow.php:347 ../../include/class/AuditLog.class.php:111 -#: ../../operation/snmpconsole/snmp_statistics.php:182 ../../general/logon_ok.php:252 +#: ../../include/functions_reporting_html.php:5927 +#: ../../include/functions.php:3099 ../../include/functions_netflow.php:347 +#: ../../include/class/AuditLog.class.php:110 +#: ../../operation/snmpconsole/snmp_statistics.php:182 +#: ../../general/logon_ok.php:252 msgid "Source IP" msgstr "ソースIP" -#: ../../enterprise/include/functions_reporting_csv.php:2854 +#: ../../enterprise/include/functions_reporting_csv.php:2858 #: ../../include/functions_netflow.php:348 msgid "Destination IP" msgstr "宛先 IP" -#: ../../enterprise/include/functions_reporting_csv.php:2854 -#: ../../include/functions_config.php:989 ../../include/functions_config.php:3109 +#: ../../enterprise/include/functions_reporting_csv.php:2858 +#: ../../include/functions_config.php:990 ../../include/functions_config.php:3185 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:206 -#: ../../operation/network/network_report.php:236 +#: ../../operation/network/network_report.php:238 msgid "Bytes" msgstr "バイト" -#: ../../enterprise/include/functions_reporting_csv.php:2854 +#: ../../enterprise/include/functions_reporting_csv.php:2858 #: ../../include/functions_netflow.php:350 msgid "% Traffic" msgstr "% トラフィック" -#: ../../enterprise/include/functions_reporting_csv.php:2854 +#: ../../enterprise/include/functions_reporting_csv.php:2858 msgid "Average Throughput (bits/sec)" msgstr "平均スループット (bits/sec)" @@ -24172,19 +24959,19 @@ msgstr "$" msgid "Current deployments" msgstr "現在のデプロイ" -#: ../../enterprise/include/functions_aws.php:525 +#: ../../enterprise/include/functions_aws.php:527 msgid "Cost analysis" msgstr "コスト分析" -#: ../../enterprise/include/functions_aws.php:528 +#: ../../enterprise/include/functions_aws.php:530 msgid "Current cost estimation" msgstr "現在のコスト見積" -#: ../../enterprise/include/functions_aws.php:530 +#: ../../enterprise/include/functions_aws.php:532 msgid "Previous period cost" msgstr "前期間のコスト" -#: ../../enterprise/include/functions_aws.php:589 +#: ../../enterprise/include/functions_aws.php:591 msgid "Reservation status" msgstr "予約状況" @@ -24206,7 +24993,7 @@ msgid "Demote" msgstr "降格" #: ../../enterprise/include/functions_HA_cluster.php:64 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1944 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1946 msgid "Cleanup" msgstr "クリーンアップ" @@ -24231,7 +25018,7 @@ msgid "Register new node" msgstr "新規ノードの登録" #: ../../enterprise/include/functions_HA_cluster.php:496 -#: ../../include/class/NetworkMap.class.php:2957 +#: ../../include/class/NetworkMap.class.php:3090 msgid "Update node" msgstr "ノード更新" @@ -24242,7 +25029,7 @@ msgid "Cloud message" msgstr "クラウドメッセージ" #: ../../enterprise/include/class/Azure.cloud.php:153 -#: ../../include/class/CredentialStore.class.php:947 +#: ../../include/class/CredentialStore.class.php:985 msgid "Azure" msgstr "Azure" @@ -24266,7 +25053,7 @@ msgid "Microsoft Compute" msgstr "Microsoft コンピュート" #: ../../enterprise/include/class/Azure.cloud.php:355 -#: ../../enterprise/include/class/Aws.cloud.php:1492 +#: ../../enterprise/include/class/Aws.cloud.php:1493 #: ../../enterprise/include/class/Google.cloud.php:349 #, php-format msgid "%s not found or not executable" @@ -24294,7 +25081,7 @@ msgstr "不正アクセス" #: ../../enterprise/include/class/Google.cloud.php:759 #: ../../enterprise/include/class/Oracle.app.php:444 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439 -#: ../../godmode/wizards/HostDevices.class.php:838 +#: ../../godmode/wizards/HostDevices.class.php:840 #: ../../godmode/wizards/DiscoveryTaskList.class.php:590 #: ../../include/class/CustomNetScan.class.php:446 msgid "Task name" @@ -24348,39 +25135,40 @@ msgid "Network performance summary" msgstr "ネットワークパフォーマンス概要" #: ../../enterprise/include/class/Azure.cloud.php:990 -#: ../../enterprise/include/class/VMware.app.php:1014 -#: ../../enterprise/include/class/DB2.app.php:868 -#: ../../enterprise/include/class/Aws.S3.php:658 -#: ../../enterprise/include/class/SAP.app.php:924 -#: ../../enterprise/include/class/Aws.cloud.php:1590 -#: ../../enterprise/include/class/MySQL.app.php:944 +#: ../../enterprise/include/class/VMware.app.php:1016 +#: ../../enterprise/include/class/DB2.app.php:869 +#: ../../enterprise/include/class/Aws.S3.php:659 +#: ../../enterprise/include/class/SAP.app.php:925 +#: ../../enterprise/include/class/Aws.cloud.php:1591 +#: ../../enterprise/include/class/MySQL.app.php:945 #: ../../enterprise/include/class/Google.cloud.php:952 -#: ../../enterprise/include/class/Oracle.app.php:977 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:821 -#: ../../godmode/wizards/HostDevices.class.php:1589 -#: ../../include/class/CustomNetScan.class.php:758 +#: ../../enterprise/include/class/Oracle.app.php:978 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:822 +#: ../../godmode/wizards/HostDevices.class.php:1613 +#: ../../include/class/CustomNetScan.class.php:759 msgid "Task configured." msgstr "タスクを設定しました。" #: ../../enterprise/include/class/Azure.cloud.php:994 -#: ../../enterprise/include/class/VMware.app.php:1018 -#: ../../enterprise/include/class/DB2.app.php:872 -#: ../../enterprise/include/class/SAP.app.php:928 -#: ../../enterprise/include/class/MySQL.app.php:948 +#: ../../enterprise/include/class/VMware.app.php:1020 +#: ../../enterprise/include/class/DB2.app.php:873 +#: ../../enterprise/include/class/SAP.app.php:929 +#: ../../enterprise/include/class/MySQL.app.php:949 #: ../../enterprise/include/class/Google.cloud.php:956 -#: ../../enterprise/include/class/Oracle.app.php:981 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:825 -#: ../../godmode/wizards/HostDevices.class.php:1593 -#: ../../include/class/CustomNetScan.class.php:762 +#: ../../enterprise/include/class/Oracle.app.php:982 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:826 +#: ../../godmode/wizards/HostDevices.class.php:1617 +#: ../../include/class/CustomNetScan.class.php:763 msgid "Wizard failed. Cannot configure task." msgstr "ウィザードに失敗しました。タスクを設定できません。" #: ../../enterprise/include/class/VMware.app.php:230 msgid "" -"This VMware configuration has been already defined. Please edit it or create a new " -"one." +"This VMware configuration has been already defined. Please edit it or create a " +"new one." msgstr "" -"この VMware 設定はすでに定義されています。 編集するか、新しいものを作成してください。" +"この VMware 設定はすでに定義されています。 編集するか、新しいものを作成してくだ" +"さい。" #: ../../enterprise/include/class/VMware.app.php:264 #: ../../enterprise/include/class/DB2.app.php:197 @@ -24456,10 +25244,10 @@ msgstr "アプリケーション" #: ../../enterprise/include/class/MySQL.app.php:591 #: ../../enterprise/include/class/Oracle.app.php:576 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1236 #: ../../godmode/setup/setup_integria.php:636 -#: ../../godmode/wizards/HostDevices.class.php:772 +#: ../../godmode/wizards/HostDevices.class.php:774 #: ../../include/class/CustomNetScan.class.php:553 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1236 msgid "Update and continue" msgstr "更新して次へ" @@ -24467,11 +25255,11 @@ msgstr "更新して次へ" #: ../../enterprise/include/class/Aws.S3.php:554 #: ../../enterprise/include/class/Aws.cloud.php:500 msgid "" -"This kind of task uses multipurpose plugins in order to generate monitoring data, " -"configure your desired tentacle target." +"This kind of task uses multipurpose plugins in order to generate monitoring " +"data, configure your desired tentacle target." msgstr "" -"この種のタスクでは、多目的プラグインを使用して監視データを生成し、目的の tentacle を設" -"定します。" +"この種のタスクでは、多目的プラグインを使用して監視データを生成し、目的の " +"tentacle を設定します。" #: ../../enterprise/include/class/VMware.app.php:594 #: ../../enterprise/include/class/DB2.app.php:449 @@ -24481,14 +25269,14 @@ msgstr "" #: ../../enterprise/include/class/MySQL.app.php:454 #: ../../enterprise/include/class/Oracle.app.php:456 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 -#: ../../godmode/wizards/HostDevices.class.php:849 +#: ../../godmode/wizards/HostDevices.class.php:851 #: ../../include/class/CustomNetScan.class.php:480 msgid "" -"You must select a Discovery Server to run the Task, otherwise the Recon Task will " -"never run" +"You must select a Discovery Server to run the Task, otherwise the Recon Task " +"will never run" msgstr "" -"タスクを実行するには自動検出サーバを選択する必要があります。選択しないと自動検出タスク" -"は実行されません。" +"タスクを実行するには自動検出サーバを選択する必要があります。選択しないと自動検" +"出タスクは実行されません。" #: ../../enterprise/include/class/VMware.app.php:656 msgid "Datacenter user" @@ -24502,13 +25290,13 @@ msgstr "データセンターユーザ" #: ../../enterprise/include/class/MySQL.app.php:559 #: ../../enterprise/include/class/Oracle.app.php:544 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 -#: ../../godmode/wizards/HostDevices.class.php:799 +#: ../../godmode/wizards/HostDevices.class.php:801 #: ../../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:675 -#: ../../enterprise/include/class/VMware.app.php:887 +#: ../../enterprise/include/class/VMware.app.php:888 #: ../../enterprise/include/class/DB2.app.php:544 #: ../../enterprise/include/class/Aws.S3.php:514 #: ../../enterprise/include/class/SAP.app.php:521 @@ -24516,8 +25304,8 @@ msgstr "手動は、オンデマンドでのみの実行を意味します。" #: ../../enterprise/include/class/MySQL.app.php:566 #: ../../enterprise/include/class/Oracle.app.php:551 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 -#: ../../godmode/wizards/HostDevices.class.php:806 -#: ../../include/functions_reporting_html.php:2489 +#: ../../godmode/wizards/HostDevices.class.php:808 +#: ../../include/functions_reporting_html.php:2500 #: ../../include/class/CustomNetScan.class.php:528 msgid "Defined" msgstr "定義済み" @@ -24545,9 +25333,11 @@ msgstr "データセンター名" #: ../../enterprise/include/class/VMware.app.php:719 msgid "" -"This name must match with the name wich appears when you log in you VMware manager" +"This name must match with the name wich appears when you log in you VMware " +"manager" msgstr "" -"この名前は、VMware Manager にログインしたときに表示される名前と一致する必要があります" +"この名前は、VMware Manager にログインしたときに表示される名前と一致する必要があ" +"ります" #: ../../enterprise/include/class/VMware.app.php:749 msgid "Encrypt passwords" @@ -24564,55 +25354,55 @@ msgstr "パスワード暗号化" msgid "This group will be used also to classify discovered agents" msgstr "このグループは、検出されたエージェントの分類にも使用されます" -#: ../../enterprise/include/class/VMware.app.php:870 +#: ../../enterprise/include/class/VMware.app.php:871 msgid "Max threads" msgstr "最大スレッド" -#: ../../enterprise/include/class/VMware.app.php:879 +#: ../../enterprise/include/class/VMware.app.php:880 msgid "Re-scan interval" msgstr "再スキャン間隔" -#: ../../enterprise/include/class/VMware.app.php:880 +#: ../../enterprise/include/class/VMware.app.php:881 msgid "Enables re-scan entities process every interval defined." msgstr "定義された間隔ごとに再スキャンエンティティが処理できるようにします。" -#: ../../enterprise/include/class/VMware.app.php:913 +#: ../../enterprise/include/class/VMware.app.php:914 msgid "Retry send" msgstr "送信リトライ" -#: ../../enterprise/include/class/VMware.app.php:923 +#: ../../enterprise/include/class/VMware.app.php:924 msgid "Event mode" msgstr "イベントモード" -#: ../../enterprise/include/class/VMware.app.php:923 +#: ../../enterprise/include/class/VMware.app.php:924 msgid "Only for VCenter." msgstr "VCenter のみ。" -#: ../../enterprise/include/class/VMware.app.php:933 +#: ../../enterprise/include/class/VMware.app.php:934 msgid "Virtual network monitoring" msgstr "仮想ネットワーク監視" -#: ../../enterprise/include/class/VMware.app.php:964 +#: ../../enterprise/include/class/VMware.app.php:965 msgid "Extra settings" msgstr "追加設定" -#: ../../enterprise/include/class/VMware.app.php:965 +#: ../../enterprise/include/class/VMware.app.php:966 msgid "This RAW block will be directly added to config file." msgstr "この RAW ブロックは、設定ファイルに直接追加されます。" -#: ../../enterprise/include/class/VMware.app.php:1259 +#: ../../enterprise/include/class/VMware.app.php:1261 msgid "Include datastores" msgstr "データストアを含める" -#: ../../enterprise/include/class/VMware.app.php:1269 +#: ../../enterprise/include/class/VMware.app.php:1271 msgid "Include datacenters" msgstr "データセンタを含める" -#: ../../enterprise/include/class/VMware.app.php:1279 +#: ../../enterprise/include/class/VMware.app.php:1281 msgid "Include esxs" msgstr "esx を含める" -#: ../../enterprise/include/class/VMware.app.php:1289 +#: ../../enterprise/include/class/VMware.app.php:1291 msgid "Include vms" msgstr "vm を含める" @@ -24621,12 +25411,12 @@ msgid "IP address is required" msgstr "IP アドレスが必要です" #: ../../enterprise/include/class/DeploymentCenter.class.php:245 -#: ../../enterprise/include/class/AgentRepository.class.php:439 +#: ../../enterprise/include/class/AgentRepository.class.php:454 msgid "Target OS is required" msgstr "対象 OS が必要です" #: ../../enterprise/include/class/DeploymentCenter.class.php:247 -#: ../../enterprise/include/class/AgentRepository.class.php:441 +#: ../../enterprise/include/class/AgentRepository.class.php:456 msgid "Target architecture is required" msgstr "対象アーキテクチャが必要です" @@ -24651,7 +25441,7 @@ msgid "Target successfully updated" msgstr "対象を更新しました" #: ../../enterprise/include/class/DeploymentCenter.class.php:335 -#: ../../enterprise/include/class/AgentRepository.class.php:631 +#: ../../enterprise/include/class/AgentRepository.class.php:646 msgid "Target successfully deleted" msgstr "対象を削除しました" @@ -24678,7 +25468,8 @@ msgstr "CSV ファイルが必要です" #: ../../enterprise/include/class/DeploymentCenter.class.php:480 #, php-format -msgid "Credential identifier %s does not exist, please, add it to your repository %s " +msgid "" +"Credential identifier %s does not exist, please, add it to your repository %s " msgstr "認証情報識別子 %s が存在しません。リポジトリ %s に追加してください " #: ../../enterprise/include/class/DeploymentCenter.class.php:488 @@ -24689,10 +25480,11 @@ msgstr "OS%s が既存のものと一致しません。OSリスト %s に追加 #: ../../enterprise/include/class/DeploymentCenter.class.php:496 #, php-format msgid "" -"Sofware agent version with id %s does not exist, please, add it to your repository %s " +"Sofware agent version with id %s does not exist, please, add it to your " +"repository %s " msgstr "" -"ID %s のソフトウェアエージェントバージョンが存在しません。リポジトリ %s に追加してくだ" -"さい " +"ID %s のソフトウェアエージェントバージョンが存在しません。リポジトリ %s に追加" +"してください " #: ../../enterprise/include/class/DeploymentCenter.class.php:518 msgid "No target could be added. " @@ -24722,7 +25514,8 @@ msgstr "対象でソフトウェアを使用できるようにするには、%s #: ../../enterprise/include/class/DeploymentCenter.class.php:656 #, php-format msgid "There are no software agents in your repository yet, please add some %s." -msgstr "リポジトリにはまだソフトウェアエージェントがありません。%s へ追加してください。" +msgstr "" +"リポジトリにはまだソフトウェアエージェントがありません。%s へ追加してください。" #: ../../enterprise/include/class/DeploymentCenter.class.php:675 #: ../../enterprise/include/class/DeploymentCenter.class.php:1751 @@ -24741,9 +25534,9 @@ msgstr "対象をロード" #: ../../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:364 -#: ../../enterprise/include/class/AgentRepository.class.php:671 -#: ../../enterprise/include/class/AgentRepository.class.php:724 +#: ../../enterprise/include/class/AgentRepository.class.php:368 +#: ../../enterprise/include/class/AgentRepository.class.php:686 +#: ../../enterprise/include/class/AgentRepository.class.php:739 msgid "Architecture" msgstr "アーキテクチャ" @@ -24782,7 +25575,7 @@ msgid "Deploy agent to targets" msgstr "対象にエージェントをデプロイ" #: ../../enterprise/include/class/DeploymentCenter.class.php:956 -#: ../../enterprise/include/class/AgentRepository.class.php:272 +#: ../../enterprise/include/class/AgentRepository.class.php:276 msgid "Deploying" msgstr "デプロイ中" @@ -24819,7 +25612,8 @@ 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 で進捗状況を見ることができます" +msgstr "" +"スキャンがスケジュールされているネットワーク。%s で進捗状況を見ることができます" #: ../../enterprise/include/class/DeploymentCenter.class.php:1135 #: ../../enterprise/include/class/DeploymentCenter.class.php:1138 @@ -24827,16 +25621,16 @@ msgstr "スキャンがスケジュールされているネットワーク。%s #: ../../enterprise/include/class/DeploymentCenter.class.php:1268 #: ../../enterprise/include/class/SAP.app.php:604 #: ../../enterprise/include/class/SAP.app.php:607 -#: ../../godmode/wizards/HostDevices.class.php:1434 -#: ../../godmode/wizards/HostDevices.class.php:1437 +#: ../../godmode/wizards/HostDevices.class.php:1455 +#: ../../godmode/wizards/HostDevices.class.php:1458 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:605 -#: ../../godmode/agentes/module_manager_editor_network.php:474 -#: ../../godmode/wizards/HostDevices.class.php:1435 +#: ../../godmode/agentes/module_manager_editor_network.php:518 +#: ../../godmode/wizards/HostDevices.class.php:1456 msgid "Manage credentials" msgstr "認証情報管理" @@ -24849,7 +25643,7 @@ msgid "Scan from" msgstr "次からスキャン:" #: ../../enterprise/include/class/DeploymentCenter.class.php:1178 -#: ../../godmode/wizards/HostDevices.class.php:1447 +#: ../../godmode/wizards/HostDevices.class.php:1468 msgid "Credentials to try with" msgstr "利用認証情報" @@ -24899,7 +25693,7 @@ msgid "Import targets from CSV" msgstr "CSV から対象をインポート" #: ../../enterprise/include/class/DeploymentCenter.class.php:1752 -#: ../../godmode/modules/manage_network_components_form_wizard.php:637 +#: ../../godmode/modules/manage_network_components_form_wizard.php:643 msgid "Scan" msgstr "スキャン" @@ -24940,26 +25734,26 @@ msgid "Successfully scheduled" msgstr "スケジュール設定しました" #: ../../enterprise/include/class/DatabaseHA.class.php:205 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2039 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3262 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2041 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3264 #: ../../enterprise/tools/ipam/ipam_network.php:403 #: ../../enterprise/tools/ipam/ipam_ajax.php:419 #: ../../enterprise/tools/ipam/ipam_massive.php:103 #: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/groups/group_list.php:908 -#: ../../godmode/agentes/module_manager_editor_common.php:1061 -#: ../../godmode/agentes/module_manager_editor_common.php:1071 +#: ../../godmode/groups/group_list.php:913 +#: ../../godmode/agentes/module_manager_editor_common.php:1075 +#: ../../godmode/agentes/module_manager_editor_common.php:1085 #: ../../godmode/massive/massive_edit_agents.php:1137 #: ../../godmode/alerts/configure_alert_template.php:900 #: ../../include/functions_visual_map_editor.php:825 -#: ../../include/functions_reporting_html.php:3561 +#: ../../include/functions_reporting_html.php:3578 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 msgid "Enabled" msgstr "有効" #: ../../enterprise/include/class/DatabaseHA.class.php:214 #: ../../enterprise/include/class/Omnishell.class.php:363 -#: ../../enterprise/include/class/Omnishell.class.php:1087 +#: ../../enterprise/include/class/Omnishell.class.php:1089 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1847 msgid "Pending" msgstr "保留中" @@ -24970,17 +25764,17 @@ msgstr "未初期化" #: ../../enterprise/include/class/DatabaseHA.class.php:476 #: ../../enterprise/include/class/DatabaseHA.class.php:575 -#: ../../enterprise/include/class/DatabaseHA.class.php:1251 +#: ../../enterprise/include/class/DatabaseHA.class.php:1250 msgid "This is not a cluster node" msgstr "これはクラスタノードではありません" #: ../../enterprise/include/class/DatabaseHA.class.php:480 -#: ../../enterprise/include/class/DatabaseHA.class.php:1255 +#: ../../enterprise/include/class/DatabaseHA.class.php:1254 msgid "Failed to retrieve master position" msgstr "マスターポジションの取得に失敗しました" #: ../../enterprise/include/class/DatabaseHA.class.php:494 -#: ../../enterprise/include/class/DatabaseHA.class.php:1268 +#: ../../enterprise/include/class/DatabaseHA.class.php:1267 msgid "Failed to retrieve slave information" msgstr "スレーブ情報の取得に失敗しました" @@ -25003,7 +25797,7 @@ msgid "Failed to update" msgstr "更新に失敗しました" #: ../../enterprise/include/class/DatabaseHA.class.php:823 -#: ../../enterprise/include/class/DatabaseHA.class.php:1006 +#: ../../enterprise/include/class/DatabaseHA.class.php:1005 msgid "DB Replication user" msgstr "DB レプリケーションユーザ" @@ -25012,7 +25806,7 @@ msgid "User configured for Master to Slaves replication" msgstr "マスター・スレーブレプリケーション設定用ユーザ" #: ../../enterprise/include/class/DatabaseHA.class.php:834 -#: ../../enterprise/include/class/DatabaseHA.class.php:1015 +#: ../../enterprise/include/class/DatabaseHA.class.php:1014 msgid "DB Replication user password" msgstr "DB レプリケーションユーザパスワード" @@ -25020,116 +25814,121 @@ msgstr "DB レプリケーションユーザパスワード" msgid "User password" msgstr "ユーザパスワード" -#: ../../enterprise/include/class/DatabaseHA.class.php:845 +#: ../../enterprise/include/class/DatabaseHA.class.php:844 msgid "Resync data dir" msgstr "再同期データディレクトリ" -#: ../../enterprise/include/class/DatabaseHA.class.php:846 +#: ../../enterprise/include/class/DatabaseHA.class.php:845 msgid "Directory where mysql files are stored (must be common to all nodes)" msgstr "" -"mysql ファイルが保存されているディレクトリ (すべてのノードに共通である必要があります)" +"mysql ファイルが保存されているディレクトリ (すべてのノードに共通である必要があ" +"ります)" -#: ../../enterprise/include/class/DatabaseHA.class.php:856 +#: ../../enterprise/include/class/DatabaseHA.class.php:855 msgid "Resync tmp directory" msgstr "再同期テンポラリディレクトリ" -#: ../../enterprise/include/class/DatabaseHA.class.php:857 +#: ../../enterprise/include/class/DatabaseHA.class.php:856 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:867 +#: ../../enterprise/include/class/DatabaseHA.class.php:866 msgid "Resync MySQL user" msgstr "再同期 MySQL ユーザ" -#: ../../enterprise/include/class/DatabaseHA.class.php:868 +#: ../../enterprise/include/class/DatabaseHA.class.php:867 msgid "" "User of the system that owns the MySQL files, necessary for the adjustment of " "permissions (by default mysql)" msgstr "" -"MySQL ファイルを所有するシステムのユーザ。権限の調整に必要です。(デフォルトでは mysql)" +"MySQL ファイルを所有するシステムのユーザ。権限の調整に必要です。(デフォルトで" +"は mysql)" -#: ../../enterprise/include/class/DatabaseHA.class.php:878 +#: ../../enterprise/include/class/DatabaseHA.class.php:877 msgid "Resync MySQL group" msgstr "再同期 MySQL グループ" -#: ../../enterprise/include/class/DatabaseHA.class.php:879 +#: ../../enterprise/include/class/DatabaseHA.class.php:878 msgid "" -"System group that owns the MySQL files, needed for permissions setting (default mysql)" +"System group that owns the MySQL files, needed for permissions setting " +"(default mysql)" msgstr "" -"MySQLファイルを所有するシステムグループ。権限設定に必要です。(デフォルトは mysql)" +"MySQLファイルを所有するシステムグループ。権限設定に必要です。(デフォルトは " +"mysql)" -#: ../../enterprise/include/class/DatabaseHA.class.php:940 +#: ../../enterprise/include/class/DatabaseHA.class.php:939 msgid "IP or FQDN" msgstr "IP または FQDN" -#: ../../enterprise/include/class/DatabaseHA.class.php:941 +#: ../../enterprise/include/class/DatabaseHA.class.php:940 msgid "" -"This action only registers an already configured node. This action does not configure " -"any resource." +"This action only registers an already configured node. This action does not " +"configure any resource." msgstr "" -"このアクションは、すでに設定されているノードのみを登録します。 このアクションでは、リ" -"ソースは設定されません。" +"このアクションは、すでに設定されているノードのみを登録します。 このアクションで" +"は、リソースは設定されません。" -#: ../../enterprise/include/class/DatabaseHA.class.php:951 +#: ../../enterprise/include/class/DatabaseHA.class.php:950 msgid "Cluster node label (pcs)" msgstr "クラスタノードラベル (pcs)" -#: ../../enterprise/include/class/DatabaseHA.class.php:967 +#: ../../enterprise/include/class/DatabaseHA.class.php:966 msgid "SSH user" msgstr "SSH ユーザ" -#: ../../enterprise/include/class/DatabaseHA.class.php:975 +#: ../../enterprise/include/class/DatabaseHA.class.php:974 msgid "SSH port" msgstr "SSH ポート" -#: ../../enterprise/include/class/DatabaseHA.class.php:983 +#: ../../enterprise/include/class/DatabaseHA.class.php:982 msgid "SSH key" msgstr "SSH 鍵" -#: ../../enterprise/include/class/DatabaseHA.class.php:991 +#: ../../enterprise/include/class/DatabaseHA.class.php:990 msgid "SSH public key" msgstr "SSH 公開鍵" -#: ../../enterprise/include/class/DatabaseHA.class.php:1043 +#: ../../enterprise/include/class/DatabaseHA.class.php:1042 msgid "Missed parameters" msgstr "不足パラメータ" -#: ../../enterprise/include/class/DatabaseHA.class.php:1090 +#: ../../enterprise/include/class/DatabaseHA.class.php:1089 msgid "You must specify a host" msgstr "ホストを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1092 +#: ../../enterprise/include/class/DatabaseHA.class.php:1091 msgid "DB port must be a positive integer" msgstr "DB ポートは正の整数である必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1094 +#: ../../enterprise/include/class/DatabaseHA.class.php:1093 msgid "SSH port must be a positive integer" msgstr "SSH ポートは正の整数である必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1096 +#: ../../enterprise/include/class/DatabaseHA.class.php:1095 msgid "You must specify a SSH user" msgstr "SSH ユーザを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1098 +#: ../../enterprise/include/class/DatabaseHA.class.php:1097 msgid "You must specify a replication DB user" msgstr "レプリケーション DB ユーザを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1100 +#: ../../enterprise/include/class/DatabaseHA.class.php:1099 msgid "You must specify a replication DB pass" msgstr "レプリケーション DB パスワードを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1102 +#: ../../enterprise/include/class/DatabaseHA.class.php:1101 msgid "You must specify a public key path" msgstr "公開鍵のパスを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1104 +#: ../../enterprise/include/class/DatabaseHA.class.php:1103 msgid "You must specify a private path" msgstr "秘密鍵のパスを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1154 +#: ../../enterprise/include/class/DatabaseHA.class.php:1153 msgid "Successfully " msgstr "成功 " @@ -25189,7 +25988,8 @@ msgstr "テンプレートを更新しました" #: ../../enterprise/include/lib/Metaconsole/Node.php:1453 #: ../../include/class/CalendarManager.class.php:570 #: ../../include/class/CalendarManager.class.php:946 -#: ../../include/functions_reporting.php:5082 ../../include/functions_reporting.php:5110 +#: ../../include/functions_reporting.php:5358 +#: ../../include/functions_reporting.php:5386 #, php-format msgid "Error: %s" msgstr "エラー: %s" @@ -25246,7 +26046,7 @@ msgid "Firmware file missing" msgstr "ファームウエアファイルがありません" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2089 -#: ../../enterprise/include/class/AgentRepository.class.php:467 +#: ../../enterprise/include/class/AgentRepository.class.php:482 msgid "Cannot create target dir [" msgstr "対象ディレクトリを作成できません [" @@ -25264,8 +26064,8 @@ msgid "" "Upload only official binary files from your device provide in raw format (not " "compressed)" msgstr "" -"デバイスの公式のバイナリファイルをそのままの形式(圧縮等をしない)でアップロードしてくだ" -"さい" +"デバイスの公式のバイナリファイルをそのままの形式(圧縮等をしない)でアップロード" +"してください" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2201 #: ../../godmode/modules/manage_network_templates.php:83 @@ -25308,18 +26108,19 @@ msgid "Firmware successfully deleted" msgstr "ファームウエアを削除しました" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2475 -msgid "Not executed yet, no content to display, define your own in following textarea." +msgid "" +"Not executed yet, no content to display, define your own in following textarea." msgstr "" -"まだ実行されていません。表示するコンテンツはありません。次のテキストエリアで定義してく" -"ださい。" +"まだ実行されていません。表示するコンテンツはありません。次のテキストエリアで定" +"義してください。" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2484 msgid "" -"Following content is already queued to be executed! You must wait until execution is " -"finished before being able to modify this." +"Following content is already queued to be executed! You must wait until " +"execution is finished before being able to modify this." msgstr "" -"以下のコンテンツはすでに実行待ちになっています。これを変更するには、実行が終了するまで" -"待つ必要があります。" +"以下のコンテンツはすでに実行待ちになっています。これを変更するには、実行が終了" +"するまで待つ必要があります。" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2576 msgid "Check progress" @@ -25367,16 +26168,17 @@ msgstr "不正な ID 指定です" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2815 msgid "" -"Is highly recommendable to execute this kind of operation from agent details to " -"preview the script content" +"Is highly recommendable to execute this kind of operation from agent details " +"to preview the script content" msgstr "" -"エージェントの詳細からこの種の操作を実行して、スクリプトの内容をプレビューすることを強" -"くお勧めします" +"エージェントの詳細からこの種の操作を実行して、スクリプトの内容をプレビューする" +"ことを強くお勧めします" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2824 msgid "This operation is not ready yet! Keep up to date with latest updates" msgstr "" -"この操作はまだ準備ができていません! 最新のアップデートで最新の状態に保ってください" +"この操作はまだ準備ができていません! 最新のアップデートで最新の状態に保ってくだ" +"さい" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2833 msgid "Invalid action" @@ -25386,68 +26188,72 @@ msgstr "不正なアクション" msgid "Failed to schedule action." msgstr "スケジュールアクションに失敗しました" -#: ../../enterprise/include/class/AgentRepository.class.php:346 +#: ../../enterprise/include/class/AgentRepository.class.php:350 msgid "Time in seconds before deployment is cancelled." msgstr "デプロイがキャンセルされるまでの秒単位の時間。" -#: ../../enterprise/include/class/AgentRepository.class.php:385 +#: ../../enterprise/include/class/AgentRepository.class.php:389 msgid "Transfer timeout" msgstr "転送タイムアウト" -#: ../../enterprise/include/class/AgentRepository.class.php:393 +#: ../../enterprise/include/class/AgentRepository.class.php:397 msgid "Installation file" msgstr "インストールファイル" -#: ../../enterprise/include/class/AgentRepository.class.php:433 +#: ../../enterprise/include/class/AgentRepository.class.php:448 msgid "Agent version is required" msgstr "エージェントバージョンが必要です" -#: ../../enterprise/include/class/AgentRepository.class.php:450 +#: ../../enterprise/include/class/AgentRepository.class.php:465 msgid "This version already exists" msgstr "このバージョンはすでに存在します" -#: ../../enterprise/include/class/AgentRepository.class.php:484 +#: ../../enterprise/include/class/AgentRepository.class.php:499 #, php-format msgid "Invalid installation file for %s" msgstr "%s 向けに不正なインストールファイルです" -#: ../../enterprise/include/class/AgentRepository.class.php:527 +#: ../../enterprise/include/class/AgentRepository.class.php:542 msgid "Installation files not modified" msgstr "インストールファイルが編集されていません" -#: ../../enterprise/include/class/AgentRepository.class.php:549 +#: ../../enterprise/include/class/AgentRepository.class.php:564 msgid "Installation files updated" msgstr "インストールファイルをアップロードしました" -#: ../../enterprise/include/class/AgentRepository.class.php:556 +#: ../../enterprise/include/class/AgentRepository.class.php:571 msgid "You must provide installation files to create a new entry." msgstr "新規エントリを作成するにはインストールファイルを提供する必要があります。" -#: ../../enterprise/include/class/AgentRepository.class.php:577 +#: ../../enterprise/include/class/AgentRepository.class.php:592 msgid "This agent has been already defined." msgstr "このエージェントはすでに定義済です。" -#: ../../enterprise/include/class/AgentRepository.class.php:593 +#: ../../enterprise/include/class/AgentRepository.class.php:608 msgid "Agent successfully registered and uploaded" msgstr "エージェントを登録しアップロードしました" -#: ../../enterprise/include/class/AgentRepository.class.php:673 +#: ../../enterprise/include/class/AgentRepository.class.php:688 msgid "Uploaded by" msgstr "アップロード:" -#: ../../enterprise/include/class/AgentRepository.class.php:674 +#: ../../enterprise/include/class/AgentRepository.class.php:689 msgid "Upload date" msgstr "アップロード日時" -#: ../../enterprise/include/class/AgentRepository.class.php:756 +#: ../../enterprise/include/class/AgentRepository.class.php:771 msgid "Add new software" msgstr "新規ソフトウエアの追加" -#: ../../enterprise/include/class/AgentRepository.class.php:943 +#: ../../enterprise/include/class/AgentRepository.class.php:828 +msgid "File is too large to upload. Check the configuration in php.ini." +msgstr "アプロードするファイルが大きすぎます。php.ini の設定を確認してください。" + +#: ../../enterprise/include/class/AgentRepository.class.php:969 msgid "Add new Software agent" msgstr "新規ソフトウエアエージェントの追加" -#: ../../enterprise/include/class/AgentRepository.class.php:946 +#: ../../enterprise/include/class/AgentRepository.class.php:972 msgid "Update Software agent" msgstr "ソフトウエアエージェントの更新" @@ -25470,13 +26276,13 @@ msgid "Command not found." msgstr "コマンドが見つかりません。" #: ../../enterprise/include/class/Omnishell.class.php:319 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:718 -#: ../../include/class/HelpFeedBack.class.php:99 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:720 +#: ../../include/class/HelpFeedBack.class.php:100 msgid "Page not found" msgstr "ページが見つかりません" #: ../../enterprise/include/class/Omnishell.class.php:349 -#: ../../enterprise/include/class/Omnishell.class.php:610 +#: ../../enterprise/include/class/Omnishell.class.php:612 msgid "You must install php-yaml in order to use this feature." msgstr "この機能を利用するには php-yaml をインストールする必要があります。" @@ -25496,96 +26302,80 @@ msgstr "コマンド作成" msgid "Selected command definitions will be erased" msgstr "選択したコマンド定義は削除されます" -#: ../../enterprise/include/class/Omnishell.class.php:688 +#: ../../enterprise/include/class/Omnishell.class.php:690 msgid "Time out" msgstr "タイムアウト" -#: ../../enterprise/include/class/Omnishell.class.php:697 +#: ../../enterprise/include/class/Omnishell.class.php:699 msgid "Retries " msgstr "リトライ " -#: ../../enterprise/include/class/Omnishell.class.php:708 +#: ../../enterprise/include/class/Omnishell.class.php:710 msgid "Preconditions " msgstr "前提条件 " -#: ../../enterprise/include/class/Omnishell.class.php:709 +#: ../../enterprise/include/class/Omnishell.class.php:711 msgid "All commands defined line per line must success to execute main commands" msgstr "" -"メインコマンドを実行するには、1行ごとに定義されたすべてのコマンドが成功する必要があり" -"ます" +"メインコマンドを実行するには、1行ごとに定義されたすべてのコマンドが成功する必要" +"があります" -#: ../../enterprise/include/class/Omnishell.class.php:721 +#: ../../enterprise/include/class/Omnishell.class.php:723 msgid "Execute commands " msgstr "コマンド実行 " -#: ../../enterprise/include/class/Omnishell.class.php:722 +#: ../../enterprise/include/class/Omnishell.class.php:724 msgid "Define as many lines as commands you want to execute" msgstr "実行するコマンドの数だけ行を定義します" -#: ../../enterprise/include/class/Omnishell.class.php:734 +#: ../../enterprise/include/class/Omnishell.class.php:736 msgid "Postconditions " msgstr "前提条件 " -#: ../../enterprise/include/class/Omnishell.class.php:735 -msgid "All commands defined line per line must success to consider command success" +#: ../../enterprise/include/class/Omnishell.class.php:737 +msgid "" +"All commands defined line per line must success to consider command success" msgstr "" -"コマンドが成功するためには、1行ごとに定義されたすべてのコマンドが成功する必要がありま" -"す" +"コマンドが成功するためには、1行ごとに定義されたすべてのコマンドが成功する必要が" +"あります" -#: ../../enterprise/include/class/Omnishell.class.php:835 -#: ../../godmode/agentes/planned_downtime.editor.php:1103 -msgid "Available agents" -msgstr "エージェント" - -#: ../../enterprise/include/class/Omnishell.class.php:880 -msgid "Remove agents" -msgstr "エージェント削除" - -#: ../../enterprise/include/class/Omnishell.class.php:915 -#: ../../enterprise/operation/services/massive/services.create.php:1244 -#: ../../enterprise/operation/services/massive/service.delete.elements.php:255 -#: ../../enterprise/operation/services/massive/service.create.elements.php:601 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:364 -msgid "Selected agents" -msgstr "選択したエージェント" - -#: ../../enterprise/include/class/Omnishell.class.php:1157 +#: ../../enterprise/include/class/Omnishell.class.php:1159 msgid "Selected command definition will be erased" msgstr "選択したコマンド定義は削除されます" -#: ../../enterprise/include/class/Omnishell.class.php:1243 +#: ../../enterprise/include/class/Omnishell.class.php:1245 msgid "Command viewer" msgstr "コマンドビューワ" -#: ../../enterprise/include/class/Omnishell.class.php:1251 +#: ../../enterprise/include/class/Omnishell.class.php:1253 msgid "Detailed view" msgstr "詳細表示" -#: ../../enterprise/include/class/Omnishell.class.php:1392 +#: ../../enterprise/include/class/Omnishell.class.php:1394 msgid "Not an array of ids" msgstr "ID の配列ではありません" -#: ../../enterprise/include/class/Omnishell.class.php:1450 +#: ../../enterprise/include/class/Omnishell.class.php:1452 msgid "There are no targets for this remote command" msgstr "このリモートコマンドの対象がありません" -#: ../../enterprise/include/class/Omnishell.class.php:1457 +#: ../../enterprise/include/class/Omnishell.class.php:1459 msgid "Command does not exist" msgstr "コマンドが存在しません" -#: ../../enterprise/include/class/Omnishell.class.php:1556 +#: ../../enterprise/include/class/Omnishell.class.php:1558 msgid "timed out" msgstr "タイムアウトしました" -#: ../../enterprise/include/class/Omnishell.class.php:1559 +#: ../../enterprise/include/class/Omnishell.class.php:1561 msgid "failed" msgstr "失敗" -#: ../../enterprise/include/class/Omnishell.class.php:1575 +#: ../../enterprise/include/class/Omnishell.class.php:1577 msgid "Waiting results..." msgstr "結果待ち..." -#: ../../enterprise/include/class/Omnishell.class.php:1594 +#: ../../enterprise/include/class/Omnishell.class.php:1596 msgid "RCMD does not exist" msgstr "RCMD が存在しません" @@ -25598,12 +26388,12 @@ msgid "id cannot be empty" msgstr "ID は空にできません" #: ../../enterprise/include/class/LogSource.class.php:567 -#: ../../include/class/CredentialStore.class.php:747 +#: ../../include/class/CredentialStore.class.php:785 msgid "Not allowed" msgstr "許可されません" #: ../../enterprise/include/class/LogSource.class.php:611 -#: ../../include/class/CredentialStore.class.php:786 +#: ../../include/class/CredentialStore.class.php:824 msgid "How to configure encryption." msgstr "暗号化の設定方法。" @@ -25627,8 +26417,10 @@ 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 設定はすでに定義済です。 編集するか、新しいものを作成してください。" +"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." @@ -25648,9 +26440,11 @@ 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." +"SERVER:PORT/DATABASE, comma separated or line by line, as many targets as you " +"need." msgstr "" -"SERVER:PORT/DATABASE で、カンマ区切りまたは行ごとに必要な数のターゲッを設定します。" +"SERVER:PORT/DATABASE で、カンマ区切りまたは行ごとに必要な数のターゲッを設定しま" +"す。" #: ../../enterprise/include/class/DB2.app.php:487 #: ../../enterprise/include/class/Oracle.app.php:494 @@ -25658,82 +26452,83 @@ msgstr "" 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:641 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:635 +#: ../../enterprise/include/class/DB2.app.php:635 +#: ../../enterprise/include/class/MySQL.app.php:657 +#: ../../enterprise/include/class/Oracle.app.php:642 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636 msgid "Target agent" msgstr "対象エージェント" -#: ../../enterprise/include/class/DB2.app.php:635 -#: ../../enterprise/include/class/Oracle.app.php:642 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636 +#: ../../enterprise/include/class/DB2.app.php:636 +#: ../../enterprise/include/class/Oracle.app.php:643 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:637 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." +"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:661 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:655 -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:662 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656 -msgid "" -"Defines a custom prefix to be concatenated before module names generated by this task." -msgstr "" -"このタスクによって生成されるモジュール名の前に連結されるカスタムプレフィックスを定義し" -"ます。" +msgid "Custom module prefix" +msgstr "カスタムモジュールプレフィックス" -#: ../../enterprise/include/class/DB2.app.php:673 +#: ../../enterprise/include/class/DB2.app.php:656 +#: ../../enterprise/include/class/MySQL.app.php:678 +#: ../../enterprise/include/class/Oracle.app.php:663 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:657 +msgid "" +"Defines a custom prefix to be concatenated before module names generated by " +"this task." +msgstr "" +"このタスクによって生成されるモジュール名の前に連結されるカスタムプレフィックス" +"を定義します。" + +#: ../../enterprise/include/class/DB2.app.php:674 msgid "Get database summary" msgstr "データベース概要の取得" -#: ../../enterprise/include/class/DB2.app.php:689 +#: ../../enterprise/include/class/DB2.app.php:690 msgid "Check transactional log utilization" msgstr "トランザクションログ使用率の確認" -#: ../../enterprise/include/class/DB2.app.php:705 +#: ../../enterprise/include/class/DB2.app.php:706 msgid "Get number of connections" msgstr "接続数の取得" -#: ../../enterprise/include/class/DB2.app.php:721 +#: ../../enterprise/include/class/DB2.app.php:722 msgid "Check DB size" msgstr "DB サイズ確認" -#: ../../enterprise/include/class/DB2.app.php:737 -#: ../../enterprise/include/class/MySQL.app.php:821 -#: ../../enterprise/include/class/Oracle.app.php:760 +#: ../../enterprise/include/class/DB2.app.php:738 +#: ../../enterprise/include/class/MySQL.app.php:822 +#: ../../enterprise/include/class/Oracle.app.php:761 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:776 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:722 +#: ../../enterprise/include/class/DB2.app.php:754 +#: ../../enterprise/include/class/MySQL.app.php:838 +#: ../../enterprise/include/class/Oracle.app.php:777 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:723 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:930 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:774 -msgid "Custom queries" -msgstr "カスタムクエリ" - #: ../../enterprise/include/class/DB2.app.php:822 #: ../../enterprise/include/class/MySQL.app.php:890 #: ../../enterprise/include/class/Oracle.app.php:931 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775 +msgid "Custom queries" +msgstr "カスタムクエリ" + +#: ../../enterprise/include/class/DB2.app.php:823 +#: ../../enterprise/include/class/MySQL.app.php:891 +#: ../../enterprise/include/class/Oracle.app.php:932 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:776 msgid "Define here your custom queries." msgstr "ここにカスタムクエリを定義します。" @@ -25779,11 +26574,11 @@ msgstr "バケットがありません。" msgid "Select Buckets to be monitored" msgstr "監視するバケットを選択" -#: ../../enterprise/include/class/Aws.S3.php:633 +#: ../../enterprise/include/class/Aws.S3.php:634 msgid "Monitor bucket size" msgstr "監視バケットサイズ" -#: ../../enterprise/include/class/Aws.S3.php:643 +#: ../../enterprise/include/class/Aws.S3.php:644 msgid "Monitor bucket total items" msgstr "監視バケット全アイテム" @@ -25797,11 +26592,12 @@ msgstr "エージェント別名, IPアドレス, OS ID, 間隔, グループID, #: ../../enterprise/include/class/CSVImportAgents.class.php:127 msgid "" -"Warning, this CSV importer will not perform any discovery, it will only create empty " -"agents with the name, IP, OS type, description and group provided in the CSV." +"Warning, this CSV importer will not perform any discovery, it will only create " +"empty agents with the name, IP, OS type, description and group provided in the " +"CSV." msgstr "" -"警告: この CSV インポートではいかなる検出も行いません。CSVで提供された名前、IP、OSタイ" -"プ、説明、グループを使って、空のエージェントを作成するだけです。" +"警告: この CSV インポートではいかなる検出も行いません。CSVで提供された名前、" +"IP、OSタイプ、説明、グループを使って、空のエージェントを作成するだけです。" #: ../../enterprise/include/class/CSVImportAgents.class.php:179 msgid "Alias as name" @@ -25865,12 +26661,13 @@ msgstr "グラフ間隔" #: ../../enterprise/include/class/SAPView.class.php:626 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" +"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 表示では、自動検出サーバが通常再試行するように設定されている最も重要なモジュールを" -"確認できます。自動検出 SAP R3 タスクがまだ設定されていません。次にアクセスしてくださ" -"い:" +"SAP 表示では、自動検出サーバが通常再試行するように設定されている最も重要なモ" +"ジュールを確認できます。自動検出 SAP R3 タスクがまだ設定されていません。次にア" +"クセスしてください:" #: ../../enterprise/include/class/SAPView.class.php:626 msgid "to start monitoring your SAP infrastructure." @@ -25882,8 +26679,10 @@ 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 設定はすでに定義済です。 編集するか、新しいものを作成してください。" +"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." @@ -25927,98 +26726,98 @@ msgstr "SAP 認証情報" msgid "Optional" msgstr "オプション" -#: ../../enterprise/include/class/SAP.app.php:727 -#: ../../include/functions_agents.php:4000 +#: ../../enterprise/include/class/SAP.app.php:728 +#: ../../include/functions_agents.php:4021 msgid "SAP Login OK" msgstr "SAP ログイン OK" -#: ../../enterprise/include/class/SAP.app.php:728 -#: ../../include/functions_agents.php:4001 +#: ../../enterprise/include/class/SAP.app.php:729 +#: ../../include/functions_agents.php:4022 msgid "SAP Dumps" msgstr "SAP ダンプ" -#: ../../enterprise/include/class/SAP.app.php:729 -#: ../../include/functions_agents.php:4002 +#: ../../enterprise/include/class/SAP.app.php:730 +#: ../../include/functions_agents.php:4023 msgid "SAP lock entry list" msgstr "SAP ロックエントリー一覧" -#: ../../enterprise/include/class/SAP.app.php:730 -#: ../../include/functions_agents.php:4003 +#: ../../enterprise/include/class/SAP.app.php:731 +#: ../../include/functions_agents.php:4024 msgid "SAP canceled Jobs" msgstr "SAP キャンセルジョブ" -#: ../../enterprise/include/class/SAP.app.php:731 -#: ../../include/functions_agents.php:4004 +#: ../../enterprise/include/class/SAP.app.php:732 +#: ../../include/functions_agents.php:4025 msgid "SAP Batch inputs erroneous" msgstr "SAPバッチ入力に誤りがあります" -#: ../../enterprise/include/class/SAP.app.php:732 -#: ../../include/functions_agents.php:4005 +#: ../../enterprise/include/class/SAP.app.php:733 +#: ../../include/functions_agents.php:4026 msgid "SAP IDOC erroneous" msgstr "SAP IDOC に誤りがあります" -#: ../../enterprise/include/class/SAP.app.php:733 -#: ../../include/functions_agents.php:4006 +#: ../../enterprise/include/class/SAP.app.php:734 +#: ../../include/functions_agents.php:4027 msgid "SAP IDOC OK" msgstr "SAP IDOC OK" -#: ../../enterprise/include/class/SAP.app.php:734 -#: ../../include/functions_agents.php:4007 +#: ../../enterprise/include/class/SAP.app.php:735 +#: ../../include/functions_agents.php:4028 msgid "SAP WP without active restart" msgstr "アクティブな再起動なしの SAP WP" -#: ../../enterprise/include/class/SAP.app.php:735 -#: ../../include/functions_agents.php:4008 +#: ../../enterprise/include/class/SAP.app.php:736 +#: ../../include/functions_agents.php:4029 msgid "SAP WP stopped" msgstr "SAP WP が停止しました" -#: ../../enterprise/include/class/SAP.app.php:736 -#: ../../include/functions_agents.php:4009 +#: ../../enterprise/include/class/SAP.app.php:737 +#: ../../include/functions_agents.php:4030 msgid "Average time of SAPGUI response" msgstr "SAPGUI 応答の平均時間" -#: ../../enterprise/include/class/SAP.app.php:737 -#: ../../include/functions_agents.php:4011 +#: ../../enterprise/include/class/SAP.app.php:738 +#: ../../include/functions_agents.php:4032 msgid "Dialog Logged users" msgstr "ダイアログログユーザ" -#: ../../enterprise/include/class/SAP.app.php:738 -#: ../../include/functions_agents.php:4012 +#: ../../enterprise/include/class/SAP.app.php:739 +#: ../../include/functions_agents.php:4033 msgid "TRFC in error" msgstr "エラー TRFC" -#: ../../enterprise/include/class/SAP.app.php:739 -#: ../../include/functions_agents.php:4013 +#: ../../enterprise/include/class/SAP.app.php:740 +#: ../../include/functions_agents.php:4034 msgid "QRFC in error SMQ2" msgstr "SMQ2 エラーの QRFC" -#: ../../enterprise/include/class/SAP.app.php:740 -#: ../../include/functions_agents.php:4014 +#: ../../enterprise/include/class/SAP.app.php:741 +#: ../../include/functions_agents.php:4035 msgid "Number of Update WPs in error" msgstr "エラーアップデート WP 数" -#: ../../enterprise/include/class/SAP.app.php:764 +#: ../../enterprise/include/class/SAP.app.php:765 #, php-format msgid "" -"Module 180 must be customized before being used, please use advanced options to " -"define the module following the documentation:
%s" +"Module 180 must be customized before being used, please use advanced options " +"to define the module following the documentation:
%s" msgstr "" -"モジュール 180 は、使用する前にカスタマイズする必要があります。詳細オプションを使用し" -"て、ドキュメントに従ってモジュールを定義してください。
%s" +"モジュール 180 は、使用する前にカスタマイズする必要があります。詳細オプションを" +"使用して、ドキュメントに従ってモジュールを定義してください。
%s" -#: ../../enterprise/include/class/SAP.app.php:785 +#: ../../enterprise/include/class/SAP.app.php:786 msgid "Available modules" msgstr "存在するモジュール" -#: ../../enterprise/include/class/SAP.app.php:821 +#: ../../enterprise/include/class/SAP.app.php:822 msgid "Add monitors" msgstr "監視追加" -#: ../../enterprise/include/class/SAP.app.php:834 +#: ../../enterprise/include/class/SAP.app.php:835 msgid "Remove monitors" msgstr "監視削除" -#: ../../enterprise/include/class/SAP.app.php:845 +#: ../../enterprise/include/class/SAP.app.php:846 #: ../../enterprise/operation/services/massive/services.create.php:1259 #: ../../enterprise/operation/services/massive/service.delete.elements.php:270 #: ../../enterprise/operation/services/massive/service.create.elements.php:616 @@ -26026,28 +26825,28 @@ msgstr "監視削除" msgid "Selected modules" msgstr "選択したモジュール" -#: ../../enterprise/include/class/SAP.app.php:885 +#: ../../enterprise/include/class/SAP.app.php:886 msgid "Define your custom SAP modules." msgstr "カスタム SAP モジュールを定義してください。" -#: ../../enterprise/include/class/SAP.app.php:884 +#: ../../enterprise/include/class/SAP.app.php:885 msgid "Advanced module configuration" msgstr "高度なモジュール設定" -#: ../../enterprise/include/class/SAP.app.php:894 +#: ../../enterprise/include/class/SAP.app.php:895 msgid "Custom module definitions" msgstr "カスタムモジュール定義" -#: ../../enterprise/include/class/SAP.app.php:895 +#: ../../enterprise/include/class/SAP.app.php:896 msgid "" -"Each line is a module definition using following format: module name ; module_type ; " -"SAP check definition." +"Each line is a module definition using following format: module name ; " +"module_type ; SAP check definition." msgstr "" -"各行は次のフォーマットでのモジュール定義です: モジュール名 ; モジュールタイプ ; SAP" -"チェック定義" +"各行は次のフォーマットでのモジュール定義です: モジュール名 ; モジュールタイ" +"プ ; SAPチェック定義" #: ../../enterprise/include/class/Aws.cloud.php:118 -#: ../../include/class/CredentialStore.class.php:946 +#: ../../include/class/CredentialStore.class.php:984 msgid "Aws" msgstr "AWS" @@ -26076,7 +26875,7 @@ msgid "S3 Buckets" msgstr "S3 バケット" #: ../../enterprise/include/class/Aws.cloud.php:471 -#: ../../godmode/wizards/HostDevices.class.php:696 +#: ../../godmode/wizards/HostDevices.class.php:698 msgid "NetScan" msgstr "ネットスキャン" @@ -26114,11 +26913,11 @@ msgstr "少なくとも一つの RDS インスタンスを選択する必要が #: ../../enterprise/include/class/Aws.cloud.php:987 msgid "" -"You cannot monitor RDS instances from different types. Please define several tasks " -"for several types." +"You cannot monitor RDS instances from different types. Please define several " +"tasks for several types." msgstr "" -"異なるタイプの RDS インスタンスを監視することはできません。それぞれのタイプに対してそ" -"れぞれのタスクを定義してください。" +"異なるタイプの RDS インスタンスを監視することはできません。それぞれのタイプに対" +"してそれぞれのタスクを定義してください。" #: ../../enterprise/include/class/Aws.cloud.php:994 msgid "Discovery.Cloud.AWS.RDS" @@ -26148,21 +26947,22 @@ msgstr "グローバル DB パスワード" msgid "Select RDS instances" msgstr "RDS インスタンスの選択" -#: ../../enterprise/include/class/Aws.cloud.php:1652 +#: ../../enterprise/include/class/Aws.cloud.php:1653 msgid "Invalid group" msgstr "不正なグループ" -#: ../../enterprise/include/class/Aws.cloud.php:1710 +#: ../../enterprise/include/class/Aws.cloud.php:1711 msgid "Cannot update the recon database" msgstr "自動検出データベースを更新できません" -#: ../../enterprise/include/class/Aws.cloud.php:1732 +#: ../../enterprise/include/class/Aws.cloud.php:1733 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." +"This MySQL configuration has been already defined. Please edit it or create a " +"new one." msgstr "この MySQL 設定は既に定義済です。編集または新規作成してください。" #: ../../enterprise/include/class/MySQL.app.php:216 @@ -26193,60 +26993,60 @@ msgstr "寒波区切りで、必要な数の対象。" msgid "MySQL server Port" msgstr "MySQL サーバポート" -#: ../../enterprise/include/class/MySQL.app.php:657 +#: ../../enterprise/include/class/MySQL.app.php:658 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." +"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 を使用す" -"るために空白のままにします。" +"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を" +"定義した場合は、ここで名前のカンマ区切り一覧を定義するか、サーバの IP アドレ" +"ス/ FQDN を使用するために空白のままにします。" -#: ../../enterprise/include/class/MySQL.app.php:698 +#: ../../enterprise/include/class/MySQL.app.php:699 msgid "Scan databases" msgstr "データベーススキャン" -#: ../../enterprise/include/class/MySQL.app.php:714 +#: ../../enterprise/include/class/MySQL.app.php:715 msgid "Create agent per database" msgstr "データベースごとにエージェントを作成" -#: ../../enterprise/include/class/MySQL.app.php:735 +#: ../../enterprise/include/class/MySQL.app.php:736 msgid "Custom database agent prefix" msgstr "カスタムデータベースエージェントプレフィックス" -#: ../../enterprise/include/class/MySQL.app.php:736 +#: ../../enterprise/include/class/MySQL.app.php:737 msgid "" -"Defines a custom prefix to be concatenated before database agent names generated by " -"this task." +"Defines a custom prefix to be concatenated before database agent names " +"generated by this task." msgstr "" -"このタスクによって生成されるデータベースエージェント名の前に連結されるカスタムプレ" -"フィックスを定義します。" +"このタスクによって生成されるデータベースエージェント名の前に連結されるカスタム" +"プレフィックスを定義します。" -#: ../../enterprise/include/class/MySQL.app.php:757 -#: ../../enterprise/include/class/Oracle.app.php:680 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:674 +#: ../../enterprise/include/class/MySQL.app.php:758 +#: ../../enterprise/include/class/Oracle.app.php:681 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:675 msgid "Check engine uptime" msgstr "エンジンの起動時間確認" -#: ../../enterprise/include/class/MySQL.app.php:773 -#: ../../enterprise/include/class/Oracle.app.php:696 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:690 +#: ../../enterprise/include/class/MySQL.app.php:774 +#: ../../enterprise/include/class/Oracle.app.php:697 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:691 msgid "Retrieve query statistics" msgstr "クエリ統計の取得" -#: ../../enterprise/include/class/MySQL.app.php:789 -#: ../../enterprise/include/class/Oracle.app.php:712 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:706 +#: ../../enterprise/include/class/MySQL.app.php:790 +#: ../../enterprise/include/class/Oracle.app.php:713 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:707 msgid "Analyze connections" msgstr "接続分析" -#: ../../enterprise/include/class/MySQL.app.php:805 +#: ../../enterprise/include/class/MySQL.app.php:806 msgid "Retrieve InnoDB statistics" msgstr "InnoDB 統計の取得" #: ../../enterprise/include/class/Google.cloud.php:147 -#: ../../include/class/CredentialStore.class.php:949 +#: ../../include/class/CredentialStore.class.php:987 msgid "Google" msgstr "Google" @@ -26268,9 +27068,10 @@ msgstr "CPU パフォーマンス概要" #: ../../enterprise/include/class/Oracle.app.php:172 msgid "" -"This Oracle configuration has been already defined. Please edit it or create a new " -"one." -msgstr "この Oracle 設定はすでに定義済です。 編集するか、新しいものを作成してください。" +"This Oracle configuration has been already defined. Please edit it or create a " +"new one." +msgstr "" +"この Oracle 設定はすでに定義済です。 編集するか、新しいものを作成してください。" #: ../../enterprise/include/class/Oracle.app.php:214 msgid "You must provide a valid Oracle server IP or FQDN." @@ -26289,24 +27090,25 @@ msgid "Oracle target strings" msgstr "Oracle 対象文字列" #: ../../enterprise/include/class/Oracle.app.php:494 -msgid "SERVER:PORT/SID, comma separated or line by line, as many targets as you need." +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:728 +#: ../../enterprise/include/class/Oracle.app.php:729 msgid "Calculate fragmentation ratio" msgstr "断片化率の計算" -#: ../../enterprise/include/class/Oracle.app.php:744 +#: ../../enterprise/include/class/Oracle.app.php:745 msgid "Monitor tablespaces" msgstr "テーブルスペース監視" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171 msgid "" -"This Microsoft SQL Server configuration has been already defined. Please edit it or " -"create a new one." +"This Microsoft SQL Server configuration has been already defined. Please edit " +"it or create a new one." msgstr "" -"この Microsoft SQL Server 設定はすでに定義済です。 編集するか、新しいものを作成してく" -"ださい。" +"この Microsoft SQL Server 設定はすでに定義済です。 編集するか、新しいものを作成" +"してください。" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213 msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." @@ -26322,514 +27124,533 @@ msgstr "対象の Microsoft SQL Server" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 msgid "" -"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you need." -msgstr "SERVER:PORT\\INSTANCE で、カンマ区切りまたは行ごとに必要な数の対象を指定。" +"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:473 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:532 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:591 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:534 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:593 msgid "Alert not found." msgstr "アラートが見つかりません。" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:480 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:481 msgid "Invalid json data" msgstr "不正な json データ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:575 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:577 msgid "Rules updated." msgstr "ルールを更新しました。" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:578 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:580 msgid "JSON decoding error. Please call support." msgstr "JSON デコードエラー: サポートに問い合わせてください。" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:630 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:632 msgid "There was a problem creating Action. You must select an action" msgstr "アクション作成で問題が発生しました。アクションを選択する必要があります。" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:898 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:900 msgid "Pass" msgstr "Pass" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:899 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:901 msgid "Drop" msgstr "Drop" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:927 msgid "Module alert" msgstr "モジュールアラート" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:945 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2021 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:947 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2023 msgid "Load from template" msgstr "テンプレートから読み込む" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:962 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2241 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:964 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2243 #: ../../godmode/alerts/configure_alert_template.php:625 #: ../../godmode/alerts/alert_view.php:258 msgid "Use special days list" msgstr "特別日一覧を利用する" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:979 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:981 #: ../../godmode/alerts/configure_alert_template.php:661 msgid "Schedule" msgstr "スケジュール" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:982 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:984 #: ../../godmode/alerts/configure_alert_template.php:665 msgid "No alert has been scheduled yet" msgstr "アラートがスケジューリングされていません" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1004 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1006 msgid "Execute alert" msgstr "アラート実行" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1007 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3501 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1009 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3503 msgid "from" msgstr "開始" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1027 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3519 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1029 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3521 msgid "times in" msgstr "時間範囲" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1037 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1039 msgid "threshold" msgstr "しきい値" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1047 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1049 msgid "Rule evaluation mode" msgstr "ルール評価モード" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1047 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1049 msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." msgstr "" -"Pass - すべてのアラートが評価されます。 Drop - 1つのアラートが一致すると停止します。" +"Pass - すべてのアラートが評価されます。 Drop - 1つのアラートが一致すると停止し" +"ます。" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1064 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1066 msgid "Grouped by" msgstr "グループ化:" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1203 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1205 msgid "" -"The templates shown are only for correlative alerts, event alert (legacy) will be " -"deprecated in the future" +"The templates shown are only for correlative alerts, event alert (legacy) will " +"be deprecated in the future" msgstr "" -"表示されているテンプレートは相関アラート専用であり、イベントアラート(レガシー)は将来非" -"推奨になります" +"表示されているテンプレートは相関アラート専用であり、イベントアラート(レガシー)" +"は将来非推奨になります" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1213 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1215 msgid "Available items" msgstr "存在するアイテム" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1214 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1216 msgid "Block" msgstr "ブロック" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1262 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1084 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1264 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1085 msgid "Log content" msgstr "ログの内容" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1267 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1087 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1269 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1088 msgid "Log source" msgstr "ログソース" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1272 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1090 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1274 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1091 msgid "Log agent" msgstr "ログエージェント" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1330 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1096 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1332 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1097 msgid "Event content" msgstr "イベントの内容" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1335 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1093 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1337 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1094 msgid "Event user comment" msgstr "イベントユーザコメント" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1340 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1099 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1342 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1100 msgid "Event agent" msgstr "イベントエージェント" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1345 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1102 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1347 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1103 msgid "Event module" msgstr "イベントモジュール" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1350 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1105 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1352 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1106 msgid "Event module alerts" msgstr "イベントモジュールアラート" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1355 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1108 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1357 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1109 msgid "Event group" msgstr "イベントグループ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1361 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1363 msgid "Event group (recursive)" msgstr "イベントグループ(再帰)" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1367 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1114 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1369 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1115 msgid "Event severity" msgstr "イベント重要度" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1372 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1117 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1374 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1118 msgid "Event tag" msgstr "イベントタグ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1377 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1120 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1379 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1121 msgid "Event user" msgstr "イベントユーザ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1407 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1409 msgid "Operators" msgstr "演算子" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1412 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1456 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1433 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1414 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1458 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1434 msgid "greater than" msgstr "より大きい" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1417 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1460 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1437 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1445 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1419 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1462 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1438 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1446 msgid "less than" msgstr "より小さい" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1422 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1464 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1441 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1424 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1466 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1442 msgid "greater or equal than" msgstr "より大きいか等しい" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1427 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1468 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1429 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1470 msgid "less or equal than" msgstr "次より小さいか等しい: " -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1432 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1472 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1449 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1434 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1474 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1450 msgid "is equal" msgstr "同じ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1437 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1476 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1453 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1439 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1478 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1454 msgid "is different" msgstr "異なる" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1442 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1480 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1457 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1444 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1482 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1458 msgid "is like (regex)" msgstr "一致 (正規表現)" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1447 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1484 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1461 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1449 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1486 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1462 msgid "is not like (regex)" msgstr "不一致 (正規表現)" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1517 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1519 msgid "Modifiers" msgstr "修飾子" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1522 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1524 msgid "within an interval (seconds)" msgstr "間隔内 (秒)" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1527 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1529 msgid "repeated at least" msgstr "繰り返された最低数" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1567 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1569 msgid "Matches on both true" msgstr "両方が真の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1573 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1575 msgid "Matches when any is false" msgstr "いずれかが偽の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1579 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1581 msgid "Matches on any true" msgstr "いずれかが真の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1585 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1587 msgid "Matches when both are false" msgstr "両方が偽の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1591 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1593 msgid "Matches when only one is true" msgstr "一つだけ真の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1597 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1599 msgid "Matches when both are either true or false" msgstr "両方が真または偽の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1633 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1635 msgid "Rule definition" msgstr "ルール定義" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1922 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1924 msgid "Remove rule" msgstr "ルール削除" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1933 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1935 msgid "Remove item" msgstr "アイテム削除" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1954 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1956 #: ../../operation/agentes/estado_monitores.php:602 msgid "Reset" msgstr "リセット" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2048 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2050 #: ../../godmode/alerts/configure_alert_template.php:897 msgid "Alert recovery" msgstr "復旧アラート" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2076 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2733 -#: ../../godmode/alerts/alert_commands.php:101 -#: ../../godmode/alerts/alert_commands.php:106 -#: ../../godmode/alerts/alert_commands.php:122 -#: ../../godmode/alerts/alert_commands.php:128 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2078 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2735 +#: ../../godmode/alerts/alert_commands.php:102 +#: ../../godmode/alerts/alert_commands.php:107 +#: ../../godmode/alerts/alert_commands.php:123 +#: ../../godmode/alerts/alert_commands.php:129 #: ../../godmode/alerts/configure_alert_template.php:928 -#: ../../godmode/alerts/alert_view.php:484 ../../godmode/alerts/alert_view.php:603 +#: ../../godmode/alerts/alert_view.php:484 +#: ../../godmode/alerts/alert_view.php:603 #, php-format msgid "Field %s" msgstr "フィールド %s" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2088 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2090 +msgid "Agent and module event recovery macros are not available in this section" +msgstr "" +"ここでは、エージェントとモジュールのイベントリカバリマクロは利用できません" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2090 #, php-format msgid "Recovery Field %s" msgstr "復旧フィールド %s" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2155 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2157 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2159 msgid "Triggering Condition" msgstr "発報条件" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2250 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2252 #: ../../godmode/alerts/alert_view.php:266 msgid "Number of alerts" msgstr "アラート数" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2338 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2601 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2340 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2603 #: ../../godmode/alerts/configure_alert_action.php:305 #: ../../godmode/alerts/alert_view.php:403 msgid "Firing" msgstr "障害通知" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2453 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2455 msgid "There are no defined actions for this alert" msgstr "このアラートには定義済のアクションがありません" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2524 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3498 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2526 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3500 msgid "Number of alerts match" msgstr "アラートマッチ数" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2602 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2604 #: ../../godmode/alerts/alert_view.php:404 msgid "Recovering" msgstr "リカバリ中" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2619 -msgid "Select the desired action and mode to view the Triggering fields for this action" -msgstr "目的のアクションとモードを選択して、このアクションの発報フィールドを表示します" +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2621 +msgid "" +"Select the desired action and mode to view the Triggering fields for this " +"action" +msgstr "" +"目的のアクションとモードを選択して、このアクションの発報フィールドを表示します" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2636 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2638 #: ../../godmode/alerts/alert_view.php:395 msgid "Select the action" msgstr "アクションを選択" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2694 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2696 #: ../../godmode/alerts/configure_alert_template.php:918 -#: ../../godmode/alerts/alert_view.php:435 ../../godmode/alerts/alert_view.php:569 +#: ../../godmode/alerts/alert_view.php:435 +#: ../../godmode/alerts/alert_view.php:569 msgid "Firing fields" msgstr "発報フィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2696 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2698 #: ../../godmode/alerts/alert_view.php:437 -msgid "Fields passed to the command executed by this action when the alert is fired" +msgid "" +"Fields passed to the command executed by this action when the alert is fired" msgstr "" -"アラートが発報されたときに、このアクションによって実行されるコマンドに渡されるフィール" -"ド" +"アラートが発報されたときに、このアクションによって実行されるコマンドに渡される" +"フィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2700 -#: ../../godmode/agentes/fields_manager.php:119 ../../godmode/alerts/alert_view.php:441 -#: ../../godmode/alerts/alert_view.php:564 ../../operation/agentes/custom_fields.php:65 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2702 +#: ../../godmode/agentes/fields_manager.php:122 +#: ../../godmode/alerts/alert_view.php:441 +#: ../../godmode/alerts/alert_view.php:564 +#: ../../operation/agentes/custom_fields.php:65 msgid "Field" msgstr "フィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2702 -#: ../../godmode/alerts/alert_view.php:443 ../../godmode/alerts/alert_view.php:566 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2704 +#: ../../godmode/alerts/alert_view.php:443 +#: ../../godmode/alerts/alert_view.php:566 msgid "Fields configured on the command associated to the action" msgstr "アクションに関連付けられたコマンドで設定されたフィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2705 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2707 msgid "Alerts fields" msgstr "アラートフィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2707 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2709 msgid "Triggering fields configured in Alerts" msgstr "アラートで設定された発報フィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2710 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2712 #: ../../godmode/alerts/alert_view.php:451 msgid "Action fields" msgstr "アクションフィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2712 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2714 #: ../../godmode/alerts/alert_view.php:453 msgid "Triggering fields configured in action" msgstr "アクションで設定したトリガーフィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2715 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2717 #: ../../godmode/alerts/alert_view.php:457 msgid "Executed on firing" msgstr "発報時の実行" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2717 -#: ../../godmode/alerts/alert_view.php:459 ../../godmode/alerts/alert_view.php:571 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2719 +#: ../../godmode/alerts/alert_view.php:459 +#: ../../godmode/alerts/alert_view.php:571 msgid "Fields used on execution when the alert is fired" msgstr "アラートが発報したときに実行に使われるフィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2766 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2768 msgid "Correlated alerts" msgstr "関連付け" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2790 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2792 msgid "Alert succesfully deleted" msgstr "アラートを削除しました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2799 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2801 msgid "Alerts validated" msgstr "アラートを承諾しました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2804 msgid "Failed to process validation" msgstr "承諾処理に失敗しました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2949 msgid "Matched" msgstr "マッチしました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2948 -#: ../../godmode/alerts/alert_list.list.php:147 ../../mobile/operation/alerts.php:66 -#: ../../include/functions_reporting_html.php:2490 -#: ../../include/functions_reporting_html.php:3344 -#: ../../include/functions_reporting_html.php:3345 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2950 +#: ../../godmode/alerts/alert_list.list.php:147 +#: ../../mobile/operation/alerts.php:66 +#: ../../include/functions_reporting_html.php:2501 +#: ../../include/functions_reporting_html.php:3357 +#: ../../include/functions_reporting_html.php:3358 +#: ../../include/class/SnmpConsole.class.php:532 #: ../../operation/agentes/alerts_status.functions.php:97 -#: ../../operation/snmpconsole/snmp_view.php:229 -#: ../../operation/snmpconsole/snmp_view.php:1254 msgid "Fired" msgstr "通知済" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2970 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2972 #: ../../enterprise/include/class/CommandCenter.class.php:329 msgid "Sort elements" msgstr "要素の並べ替え" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3015 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3401 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3017 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3403 msgid "No associated actions" msgstr "関連アクションがありません" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3049 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3065 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3051 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3067 msgid "Add Actions" msgstr "アクション追加" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3120 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3122 msgid "There are no defined correlated alerts" msgstr "定義済の相関アラートがありません" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3256 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3258 msgid "Are you sure you want to disable the alert" msgstr "アラートを無効化してよろしいですか" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3263 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3265 msgid "Are you sure you want to enable the alert" msgstr "アラートを有効化してよろしいですか" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3270 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3272 msgid "Disabled Alert" msgstr "無効化アラート" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3311 -#: ../../godmode/alerts/alert_list.list.php:154 ../../mobile/operation/alerts.php:74 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3313 +#: ../../godmode/alerts/alert_list.list.php:154 +#: ../../mobile/operation/alerts.php:74 #: ../../operation/agentes/alerts_status.functions.php:103 msgid "Standby off" msgstr "非スタンバイ状態" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3312 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3314 msgid "Are you sure you want to standby the alert" msgstr "アラートをスタンバイにしてよろしいですか" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3317 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3319 #: ../../enterprise/operation/agentes/policy_view.php:292 -#: ../../godmode/alerts/alert_list.list.php:153 ../../mobile/operation/alerts.php:73 -#: ../../include/functions_ui.php:1155 +#: ../../godmode/alerts/alert_list.list.php:153 +#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1155 #: ../../operation/agentes/alerts_status.functions.php:102 msgid "Standby on" msgstr "スタンバイ状態" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3319 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3321 msgid "Are you sure you want to activate the alert" msgstr "アラートを有効化してよろしいですか" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3327 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3329 msgid "Standby Alert" msgstr "スタンバイアラート" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3399 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3401 msgid "Delete Actions" msgstr "アクション削除" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3578 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3580 msgid "Successfully added action" msgstr "アクションを追加しました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3616 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3618 msgid "Successfully delete action" msgstr "アクションを削除しました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4029 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4031 msgid "Choosetime" msgstr "時間選択" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4236 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4238 msgid "Drop Here" msgstr "ここにドロップしてください" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4294 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4296 #: ../../godmode/alerts/configure_alert_template.php:1495 msgid "Simple" msgstr "シンプル" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4295 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4297 #: ../../godmode/alerts/configure_alert_template.php:1496 msgid "Detailed" msgstr "詳細" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4350 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4352 #: ../../godmode/alerts/configure_alert_template.php:1551 msgid "Drag out to remove" msgstr "削除にはドラッグアウトします" @@ -26848,13 +27669,13 @@ msgid "Metaconsole" msgstr "メタコンソール" #: ../../enterprise/include/class/CommandCenter.class.php:265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:982 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:994 msgid "" -"Memory limit is recomended to be unlimited in metaconsole, please set to -1 in php." -"ini." +"Memory limit is recomended to be unlimited in metaconsole, please set to -1 in " +"php.ini." msgstr "" -"メタコンソールではメモリ制限を無制限にすることをお勧めします。php.ini で -1 に設定して" -"ください。" +"メタコンソールではメモリ制限を無制限にすることをお勧めします。php.ini で -1 に" +"設定してください。" #: ../../enterprise/include/class/CommandCenter.class.php:312 msgid "Nodes priority order" @@ -26893,7 +27714,7 @@ msgid "Please restore your backups" msgstr "バックアップをリストアしてください" #: ../../enterprise/include/class/CommandCenter.class.php:452 -#: ../../include/functions_ui.php:6625 +#: ../../include/functions_ui.php:6667 msgid "Query" msgstr "クエリ" @@ -26903,7 +27724,8 @@ msgid "Table" msgstr "表" #: ../../enterprise/include/class/CommandCenter.class.php:454 -#: ../../include/class/Heatmap.class.php:743 ../../general/reporting_console_node.php:65 +#: ../../include/class/Heatmap.class.php:881 +#: ../../general/reporting_console_node.php:65 msgid "Info" msgstr "情報" @@ -26918,11 +27740,12 @@ msgstr "処理詳細" #: ../../enterprise/include/class/CommandCenter.class.php:458 msgid "" -"System is not unified yet, something is wrong, please troubleshoot the errors and " -"retry the merge process. Your data have not been modified." +"System is not unified yet, something is wrong, please troubleshoot the errors " +"and retry the merge process. Your data have not been modified." msgstr "" -"システムはまだ統合されていません。何らかの問題があります。エラーのトラブルシューティン" -"グを行い、マージ処理を再試行してください。 データは変更されていません。" +"システムはまだ統合されていません。何らかの問題があります。エラーのトラブル" +"シューティングを行い、マージ処理を再試行してください。 データは変更されていませ" +"ん。" #: ../../enterprise/include/class/CommandCenter.class.php:459 msgid "Errors while merging" @@ -26934,7 +27757,8 @@ msgstr "処理が正しく完了しました" #: ../../enterprise/include/class/CommandCenter.class.php:461 #: ../../enterprise/include/functions_login.php:145 -#: ../../include/class/Diagnostics.class.php:1818 +#: ../../include/functions_menu.php:799 +#: ../../include/class/Diagnostics.class.php:1826 msgid "Successfully" msgstr "正常に終了" @@ -26988,11 +27812,11 @@ msgstr "優先ノードの更新ができませんでした" #: ../../enterprise/include/class/CommandCenter.class.php:565 msgid "" -"By unifying databases all information across your infrastructure will be merged to " -"gain integrity" +"By unifying databases all information across your infrastructure will be " +"merged to gain integrity" msgstr "" -"データベースを統合することにより、インフラストラクチャ全体のすべての情報がマージされ、" -"整合性が得られます" +"データベースを統合することにより、インフラストラクチャ全体のすべての情報がマー" +"ジされ、整合性が得られます" #: ../../enterprise/include/class/CommandCenter.class.php:578 #: ../../enterprise/include/class/CommandCenter.class.php:588 @@ -27013,12 +27837,13 @@ msgstr "処理を開始するには OK ボタンを押します" #: ../../enterprise/include/class/CommandCenter.class.php:599 msgid "" -"There are backups from a previous merging process, are you sure you want to overwrite " -"those backups? Press OK button to ignore this message and start the process." +"There are backups from a previous merging process, are you sure you want to " +"overwrite those backups? Press OK button to ignore this message and start the " +"process." msgstr "" -"以前のマージプ処理からのバックアップがありますが、それらのバックアップを上書きしてもよ" -"ろしいですか? このメッセージを無視してプロセスを開始するには、OK ボタンを押してくださ" -"い。" +"以前のマージプ処理からのバックアップがありますが、それらのバックアップを上書き" +"してもよろしいですか? このメッセージを無視してプロセスを開始するには、OK ボタ" +"ンを押してください。" #: ../../enterprise/include/class/CommandCenter.class.php:647 msgid "System is merging events..." @@ -27080,19 +27905,21 @@ msgid "%s database backup manager" msgstr "%s データベースバックアップ管理" #: ../../enterprise/include/class/ManageBackups.class.php:117 -#: ../../include/class/AuditLog.class.php:145 +#: ../../include/class/AuditLog.class.php:144 msgid "Admin Tools" msgstr "管理ツール" #: ../../enterprise/include/class/ManageBackups.class.php:121 -#: ../../enterprise/operation/menu.php:200 +#: ../../enterprise/operation/menu.php:170 msgid "DB Backup Manager" msgstr "DB バックアップ管理" #: ../../enterprise/include/class/ManageBackups.class.php:129 #, php-format -msgid "To schedule a periodic (or one-time) backup task you can do it through %s." -msgstr "定期的(または1回限り)バックアップタスクのスケジューリングは、%s から行えます。" +msgid "" +"To schedule a periodic (or one-time) backup task you can do it through %s." +msgstr "" +"定期的(または1回限り)バックアップタスクのスケジューリングは、%s から行えます。" #: ../../enterprise/include/class/ManageBackups.class.php:164 #: ../../extensions/files_repo/files_repo_list.php:57 @@ -27102,7 +27929,7 @@ msgstr "定期的(または1回限り)バックアップタスクのスケジュ #: ../../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:1991 +#: ../../include/rest-api/models/VisualConsole/Item.php:1992 #: ../../include/functions_filemanager.php:606 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250 @@ -27142,49 +27969,51 @@ msgid "Missed id parameter." msgstr "ID パラメータがありません。" #: ../../enterprise/include/class/ManageBackups.class.php:424 -#: ../../include/class/AuditLog.class.php:376 +#: ../../include/class/AuditLog.class.php:374 msgid "There is no additional information to display" msgstr "表示する追加情報がありません:" #: ../../enterprise/include/class/ManageBackups.class.php:437 msgid "" -"Are you sure you want to delete this database backup file? Once deleted you will not " -"be able to recover it." +"Are you sure you want to delete this database backup file? Once deleted you " +"will not be able to recover it." msgstr "" -"このデータベースバックアップファイルを削除してもよろしいですか? 削除すると元に戻すこ" -"とはできません。" +"このデータベースバックアップファイルを削除してもよろしいですか? 削除すると元に" +"戻すことはできません。" #: ../../enterprise/include/class/ManageBackups.class.php:439 msgid "Do you like perform a database restoration?" msgstr "データベースの復元を実行しますか?" -#: ../../enterprise/include/functions_enterprise.php:464 +#: ../../enterprise/include/functions_enterprise.php:471 msgid "Tree view by tags" msgstr "タグごとのツリー表示" -#: ../../enterprise/include/functions_enterprise.php:494 +#: ../../enterprise/include/functions_enterprise.php:501 msgid "" -"If the interval of days until events data purge is shorter than the events data " -"history storage interval, data will be lost. It is recommended that the storage " -"frequency is higher than the purge frequency." +"If the interval of days until events data purge is shorter than the events " +"data history storage interval, data will be lost. It is recommended that the " +"storage frequency is higher than the purge frequency." msgstr "" -"イベントデータの削除までの日数がヒストリイベントデータの保存間隔よりも短い場合データは" -"失われます。 保存頻度は削除頻度よりも大きくすることをお勧めします。" +"イベントデータの削除までの日数がヒストリイベントデータの保存間隔よりも短い場合" +"データは失われます。 保存頻度は削除頻度よりも大きくすることをお勧めします。" -#: ../../enterprise/include/functions_enterprise.php:496 -msgid "Problems with event days purge and event days that pass data to history DB." +#: ../../enterprise/include/functions_enterprise.php:503 +msgid "" +"Problems with event days purge and event days that pass data to history DB." msgstr "イベントの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" -#: ../../enterprise/include/functions_enterprise.php:507 +#: ../../enterprise/include/functions_enterprise.php:514 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" +"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:509 +#: ../../enterprise/include/functions_enterprise.php:516 msgid "Problems with days purge and days that pass data to history DB" msgstr "データの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" @@ -27200,218 +28029,221 @@ msgstr "テンプレート一覧" msgid "Templates Wizard" msgstr "テンプレートウィザード" -#: ../../enterprise/include/functions_reporting.php:1233 +#: ../../enterprise/include/functions_reporting.php:1234 msgid "Availability item created from wizard." msgstr "ウィザードから作成された可用性アイテム" -#: ../../enterprise/include/functions_reporting.php:1855 -#: ../../enterprise/include/functions_reporting.php:2894 -#: ../../enterprise/include/functions_reporting.php:3881 -#: ../../include/functions_reporting_html.php:548 +#: ../../enterprise/include/functions_reporting.php:1856 +#: ../../enterprise/include/functions_reporting.php:2895 +#: ../../enterprise/include/functions_reporting.php:3882 +#: ../../include/functions_reporting_html.php:549 msgid "Max/Min Values" msgstr "最大/最小値" -#: ../../enterprise/include/functions_reporting.php:1857 -#: ../../enterprise/include/functions_reporting.php:2025 -#: ../../enterprise/include/functions_reporting.php:2896 -#: ../../enterprise/include/functions_reporting.php:3883 -#: ../../enterprise/include/functions_reporting.php:6133 -#: ../../include/functions_reporting_html.php:550 +#: ../../enterprise/include/functions_reporting.php:1858 +#: ../../enterprise/include/functions_reporting.php:2026 +#: ../../enterprise/include/functions_reporting.php:2897 +#: ../../enterprise/include/functions_reporting.php:3884 +#: ../../enterprise/include/functions_reporting.php:6134 +#: ../../include/functions_reporting_html.php:551 msgid "SLA Compliance" msgstr "SLA準拠" -#: ../../enterprise/include/functions_reporting.php:1897 -#: ../../enterprise/include/functions_reporting.php:2950 -#: ../../enterprise/include/functions_reporting.php:3201 -#: ../../enterprise/include/functions_reporting.php:3938 -#: ../../enterprise/include/functions_reporting.php:4202 -#: ../../enterprise/include/functions_reporting.php:4853 -#: ../../include/functions_reporting_html.php:873 -#: ../../include/functions_reporting_html.php:4775 +#: ../../enterprise/include/functions_reporting.php:1898 +#: ../../enterprise/include/functions_reporting.php:2951 +#: ../../enterprise/include/functions_reporting.php:3202 +#: ../../enterprise/include/functions_reporting.php:3939 +#: ../../enterprise/include/functions_reporting.php:4203 +#: ../../enterprise/include/functions_reporting.php:4854 +#: ../../include/functions_reporting_html.php:874 +#: ../../include/functions_reporting_html.php:4795 msgid "Not Init" msgstr "未初期化" -#: ../../enterprise/include/functions_reporting.php:1904 -#: ../../enterprise/include/functions_reporting.php:2960 -#: ../../enterprise/include/functions_reporting.php:3948 +#: ../../enterprise/include/functions_reporting.php:1905 +#: ../../enterprise/include/functions_reporting.php:2961 +#: ../../enterprise/include/functions_reporting.php:3949 msgid "Planned Downtimes" msgstr "計画停止" -#: ../../enterprise/include/functions_reporting.php:1911 +#: ../../enterprise/include/functions_reporting.php:1912 msgid "Ignore time" msgstr "除外時間" -#: ../../enterprise/include/functions_reporting.php:1931 +#: ../../enterprise/include/functions_reporting.php:1932 msgid "SLA Compliance per days" msgstr "日ごとの SLA 準拠" -#: ../../enterprise/include/functions_reporting.php:2022 +#: ../../enterprise/include/functions_reporting.php:2023 msgid "Summary of SLA Failures" msgstr "条件を満たさない SLA の概要" -#: ../../enterprise/include/functions_reporting.php:2042 #: ../../enterprise/include/functions_reporting.php:2043 +#: ../../enterprise/include/functions_reporting.php:2044 msgid "Out of SLA limits" msgstr "SLA 制限外" -#: ../../enterprise/include/functions_reporting.php:2048 #: ../../enterprise/include/functions_reporting.php:2049 +#: ../../enterprise/include/functions_reporting.php:2050 msgid "IN of SLA limits" msgstr "SLA 制限内" -#: ../../enterprise/include/functions_reporting.php:2132 +#: ../../enterprise/include/functions_reporting.php:2133 #: ../../include/functions_reports.php:933 msgid "Log report" msgstr "ログレポート" -#: ../../enterprise/include/functions_reporting.php:2145 +#: ../../enterprise/include/functions_reporting.php:2146 #: ../../include/functions_reports.php:932 msgid "Log" msgstr "ログ" -#: ../../enterprise/include/functions_reporting.php:2494 -#: ../../enterprise/include/functions_reporting.php:3438 -#: ../../enterprise/include/functions_reporting.php:4413 -#: ../../include/functions_reporting.php:1005 ../../include/functions_reporting.php:8894 +#: ../../enterprise/include/functions_reporting.php:2495 +#: ../../enterprise/include/functions_reporting.php:3439 +#: ../../enterprise/include/functions_reporting.php:4414 +#: ../../include/functions_reporting.php:1006 +#: ../../include/functions_reporting.php:9141 msgid "There are no SLAs defined" msgstr "SLA が定義されていません。" -#: ../../enterprise/include/functions_reporting.php:2547 -#: ../../enterprise/include/functions_reporting.php:3491 -#: ../../enterprise/include/functions_reporting.php:4466 -#: ../../include/functions_reporting.php:1080 ../../include/functions_reporting.php:9272 +#: ../../enterprise/include/functions_reporting.php:2548 +#: ../../enterprise/include/functions_reporting.php:3492 +#: ../../enterprise/include/functions_reporting.php:4467 +#: ../../include/functions_reporting.php:1081 +#: ../../include/functions_reporting.php:9519 msgid "Inverse" msgstr "反転" -#: ../../enterprise/include/functions_reporting.php:2970 -#: ../../enterprise/include/functions_reporting.php:3211 -#: ../../enterprise/include/functions_reporting.php:3958 +#: ../../enterprise/include/functions_reporting.php:2971 +#: ../../enterprise/include/functions_reporting.php:3212 +#: ../../enterprise/include/functions_reporting.php:3959 msgid "Planned Downtime" msgstr "計画停止" -#: ../../enterprise/include/functions_reporting.php:3000 +#: ../../enterprise/include/functions_reporting.php:3001 msgid "T. Total" msgstr "合計時間" -#: ../../enterprise/include/functions_reporting.php:3001 -#: ../../enterprise/include/functions_reporting.php:3985 +#: ../../enterprise/include/functions_reporting.php:3002 +#: ../../enterprise/include/functions_reporting.php:3986 msgid "T. OK" msgstr "正常時間" -#: ../../enterprise/include/functions_reporting.php:3002 -#: ../../enterprise/include/functions_reporting.php:3986 +#: ../../enterprise/include/functions_reporting.php:3003 +#: ../../enterprise/include/functions_reporting.php:3987 msgid "T. Error" msgstr "障害時間" -#: ../../enterprise/include/functions_reporting.php:3003 -#: ../../enterprise/include/functions_reporting.php:3987 +#: ../../enterprise/include/functions_reporting.php:3004 +#: ../../enterprise/include/functions_reporting.php:3988 msgid "T. Unknown" msgstr "不明時間" -#: ../../enterprise/include/functions_reporting.php:3004 -#: ../../enterprise/include/functions_reporting.php:3988 +#: ../../enterprise/include/functions_reporting.php:3005 +#: ../../enterprise/include/functions_reporting.php:3989 msgid "T. Not_init" msgstr "未初期化時間" -#: ../../enterprise/include/functions_reporting.php:3005 -#: ../../enterprise/include/functions_reporting.php:3989 +#: ../../enterprise/include/functions_reporting.php:3006 +#: ../../enterprise/include/functions_reporting.php:3990 msgid "T. Downtime" msgstr "計画停止時間" -#: ../../enterprise/include/functions_reporting.php:3006 -#: ../../enterprise/include/functions_reporting.php:3990 +#: ../../enterprise/include/functions_reporting.php:3007 +#: ../../enterprise/include/functions_reporting.php:3991 msgid "SLA %" msgstr "SLA %" -#: ../../enterprise/include/functions_reporting.php:3196 -#: ../../enterprise/include/functions_reporting.php:4197 -#: ../../enterprise/include/functions_reporting.php:6198 +#: ../../enterprise/include/functions_reporting.php:3197 +#: ../../enterprise/include/functions_reporting.php:4198 +#: ../../enterprise/include/functions_reporting.php:6199 #: ../../enterprise/include/functions_services.php:1453 -#: ../../include/functions_reporting_html.php:868 -#: ../../include/functions_reporting_html.php:4770 +#: ../../include/functions_reporting_html.php:869 +#: ../../include/functions_reporting_html.php:4790 msgid "Unknow" msgstr "不明" -#: ../../enterprise/include/functions_reporting.php:3206 -#: ../../enterprise/include/functions_reporting.php:4207 -#: ../../enterprise/include/functions_reporting.php:6203 -#: ../../include/functions_reporting_html.php:878 -#: ../../include/functions_reporting_html.php:4780 +#: ../../enterprise/include/functions_reporting.php:3207 +#: ../../enterprise/include/functions_reporting.php:4208 +#: ../../enterprise/include/functions_reporting.php:6204 +#: ../../include/functions_reporting_html.php:879 +#: ../../include/functions_reporting_html.php:4800 msgid "Downtimes" msgstr "停止時間" -#: ../../enterprise/include/functions_reporting.php:4212 +#: ../../enterprise/include/functions_reporting.php:4213 msgid "Ignore Planned Downtime" msgstr "計画停止を無視" -#: ../../enterprise/include/functions_reporting.php:4302 +#: ../../enterprise/include/functions_reporting.php:4303 #: ../../include/functions_reports.php:712 msgid "Hourly S.L.A." msgstr "1時間ごとの S.L.A." -#: ../../enterprise/include/functions_reporting.php:4905 +#: ../../enterprise/include/functions_reporting.php:4906 msgid "Max/Min Critical" msgstr "障害の最大/最小" -#: ../../enterprise/include/functions_reporting.php:4906 +#: ../../enterprise/include/functions_reporting.php:4907 msgid "Max/Min Warning" msgstr "警告の最大/最小" -#: ../../enterprise/include/functions_reporting.php:4907 +#: ../../enterprise/include/functions_reporting.php:4908 msgid "Total checks ok/total" msgstr "合計チェック ok/合計" -#: ../../enterprise/include/functions_reporting.php:4908 +#: ../../enterprise/include/functions_reporting.php:4909 msgid "% time ok" msgstr "% 時間 ok" -#: ../../enterprise/include/functions_reporting.php:4926 -#: ../../include/functions_reporting_html.php:637 -#: ../../include/functions_reporting_html.php:676 -#: ../../include/functions_reporting_html.php:747 -#: ../../include/functions_reporting_html.php:825 -#: ../../include/functions_reporting_html.php:4229 -#: ../../include/functions_reporting_html.php:4376 +#: ../../enterprise/include/functions_reporting.php:4927 +#: ../../include/functions_reporting_html.php:638 +#: ../../include/functions_reporting_html.php:677 +#: ../../include/functions_reporting_html.php:748 +#: ../../include/functions_reporting_html.php:826 +#: ../../include/functions_reporting_html.php:4248 +#: ../../include/functions_reporting_html.php:4395 msgid "24 x 7" msgstr "24時間365日" -#: ../../enterprise/include/functions_reporting.php:4966 -#: ../../include/functions_reporting_html.php:582 +#: ../../enterprise/include/functions_reporting.php:4967 +#: ../../include/functions_reporting_html.php:583 msgid "Global Time" msgstr "グローバル時間" -#: ../../enterprise/include/functions_reporting.php:4968 +#: ../../enterprise/include/functions_reporting.php:4969 msgid "Time Critical" msgstr "障害時間" -#: ../../enterprise/include/functions_reporting.php:5061 -#: ../../include/functions_reporting_html.php:615 +#: ../../enterprise/include/functions_reporting.php:5062 +#: ../../include/functions_reporting_html.php:616 msgid "Checks Time" msgstr "確認数" -#: ../../enterprise/include/functions_reporting.php:5063 +#: ../../enterprise/include/functions_reporting.php:5064 msgid "Checks Critical" msgstr "障害チェック" -#: ../../enterprise/include/functions_reporting.php:5064 -#: ../../include/functions_reporting_html.php:4153 +#: ../../enterprise/include/functions_reporting.php:5065 +#: ../../include/functions_reporting_html.php:4172 msgid "Checks Warning" msgstr "警告チェック" -#: ../../enterprise/include/functions_reporting.php:5147 -#: ../../include/functions_reporting_html.php:805 -#: ../../include/functions_reporting_html.php:4418 -#: ../../include/functions_reporting_html.php:4968 -#: ../../include/functions_reporting_html.php:4971 -#: ../../include/functions_reporting.php:1650 ../../include/functions_reporting.php:3500 +#: ../../enterprise/include/functions_reporting.php:5148 +#: ../../include/functions_reporting_html.php:806 +#: ../../include/functions_reporting_html.php:4438 +#: ../../include/functions_reporting_html.php:4988 +#: ../../include/functions_reporting_html.php:4991 +#: ../../include/functions_reporting.php:1651 +#: ../../include/functions_reporting.php:3631 msgid "There are no Agent/Modules defined" msgstr "定義済のエージェント/モジュールがありません" -#: ../../enterprise/include/functions_reporting.php:5583 +#: ../../enterprise/include/functions_reporting.php:5584 msgid "There are no SLAs defined." msgstr "定義済のSLAがありません。" -#: ../../enterprise/include/functions_reporting.php:5798 +#: ../../enterprise/include/functions_reporting.php:5799 #: ../../enterprise/include/functions_services.php:1368 #: ../../enterprise/include/functions_services.php:1370 #: ../../enterprise/include/functions_services.php:1404 @@ -27422,133 +28254,135 @@ msgstr "定義済のSLAがありません。" msgid "Nonexistent" msgstr "なし" -#: ../../enterprise/include/functions_reporting.php:6208 +#: ../../enterprise/include/functions_reporting.php:6209 msgid "Scheduled shutdow" msgstr "計画停止" -#: ../../enterprise/include/functions_reporting.php:6574 -#: ../../enterprise/include/functions_reporting.php:7464 +#: ../../enterprise/include/functions_reporting.php:6575 +#: ../../enterprise/include/functions_reporting.php:7465 #, php-format msgid "Graph agents(%s) - %s" msgstr "エージェントグラフ(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7372 +#: ../../enterprise/include/functions_reporting.php:7373 #, php-format msgid "Graph agent(%s) - %s" msgstr "エージェントグラフ(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7819 +#: ../../enterprise/include/functions_reporting.php:7820 msgid "There is not data for the selected conditions" msgstr "選択した状態のデータがありません" -#: ../../enterprise/include/functions_reporting.php:8011 -#: ../../enterprise/include/functions_reporting.php:8077 +#: ../../enterprise/include/functions_reporting.php:8012 +#: ../../enterprise/include/functions_reporting.php:8078 msgid "Template editor" msgstr "テンプレート編集" -#: ../../enterprise/include/functions_reporting.php:8140 +#: ../../enterprise/include/functions_reporting.php:8141 #: ../../enterprise/operation/reporting/custom_reporting.php:101 msgid "ID Report" msgstr "レポートID" -#: ../../enterprise/include/functions_reporting.php:8208 +#: ../../enterprise/include/functions_reporting.php:8209 #: ../../enterprise/operation/reporting/custom_reporting.php:90 #: ../../enterprise/operation/reporting/custom_reporting.php:164 msgid "Send by email" msgstr "Eメールで送信" -#: ../../enterprise/include/functions_reporting.php:8296 +#: ../../enterprise/include/functions_reporting.php:8297 #: ../../enterprise/operation/reporting/custom_reporting.php:200 msgid "Send by email " msgstr "Eメールで送信 " -#: ../../enterprise/include/functions_reporting.php:8337 +#: ../../enterprise/include/functions_reporting.php:8338 #: ../../include/functions_reports.php:643 msgid "Simple baseline graph" msgstr "シンプルベースライングラフ" -#: ../../enterprise/include/functions_reporting.php:8507 +#: ../../enterprise/include/functions_reporting.php:8508 msgid "Configuration changes" msgstr "設定変更" -#: ../../enterprise/include/functions_reporting.php:8524 +#: ../../enterprise/include/functions_reporting.php:8525 msgid "No NCM capabilities detected" msgstr "NCM 機能がありません" -#: ../../enterprise/include/functions_enterprise_api.php:1119 +#: ../../enterprise/include/functions_enterprise_api.php:1117 msgid "Is not metaconsole" msgstr "メタコンソールではありません" -#: ../../enterprise/include/functions_enterprise_api.php:2580 +#: ../../enterprise/include/functions_enterprise_api.php:2578 msgid "Error getting alert actions." msgstr "アラートアクション取得エラー" -#: ../../enterprise/include/functions_enterprise_api.php:3553 -#: ../../enterprise/include/functions_enterprise_api.php:3607 +#: ../../enterprise/include/functions_enterprise_api.php:3551 +#: ../../enterprise/include/functions_enterprise_api.php:3605 #, php-format msgid "%d agents added to apply queue." msgstr "適用キューへ %d エージェントを追加しました" -#: ../../enterprise/include/functions_enterprise_api.php:3576 +#: ../../enterprise/include/functions_enterprise_api.php:3574 #: ../../enterprise/include/functions_policies.php:4860 #, php-format msgid "Successfully applied to node %s." msgstr "ノード %s へ適用しました。" -#: ../../enterprise/include/functions_enterprise_api.php:3578 +#: ../../enterprise/include/functions_enterprise_api.php:3576 #: ../../enterprise/include/functions_policies.php:4862 #, php-format msgid "Successfully applied to nodes: %s." msgstr "ノードへ適用しました: %s" -#: ../../enterprise/include/functions_enterprise_api.php:3617 +#: ../../enterprise/include/functions_enterprise_api.php:3615 #, php-format msgid "Id policy %d already pending to apply." msgstr "ポリシー ID %d はすでに適用保留中です。" -#: ../../enterprise/include/functions_enterprise_api.php:3619 +#: ../../enterprise/include/functions_enterprise_api.php:3617 #, 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:4039 -#: ../../enterprise/include/functions_enterprise_api.php:4066 +#: ../../enterprise/include/functions_enterprise_api.php:4037 +#: ../../enterprise/include/functions_enterprise_api.php:4064 msgid "" -"Error adding web analysis module to policy. Id_module_type is not correct for web " -"analysis modules." +"Error adding web analysis module to policy. Id_module_type is not correct for " +"web analysis modules." msgstr "" -"ポリシーへのウェブ分析モジュールの追加中にエラーが発生しました。 Id_module_type が、" -"ウェブ分析モジュールに対して正しくありません。" +"ポリシーへのウェブ分析モジュールの追加中にエラーが発生しました。 " +"Id_module_type が、ウェブ分析モジュールに対して正しくありません。" -#: ../../enterprise/include/functions_enterprise_api.php:4048 +#: ../../enterprise/include/functions_enterprise_api.php:4046 msgid "" "Network Module could not be added to policy. Id_module_type is not correct for " "network modules." msgstr "" -"ネットワークモジュールをポリシーに追加できませんでした。 Id_module_type がネットワーク" -"モジュールに対して正しくありません。" +"ネットワークモジュールをポリシーに追加できませんでした。 Id_module_type がネッ" +"トワークモジュールに対して正しくありません。" -#: ../../enterprise/include/functions_enterprise_api.php:4057 +#: ../../enterprise/include/functions_enterprise_api.php:4055 msgid "" -"Error adding web module to policy. Id_module_type is not correct for web modules." +"Error adding web module to policy. Id_module_type is not correct for web " +"modules." msgstr "" -"ポリシーへのウェブモジュール追加エラー。Id_module_type がウェブモジュールに対して正し" -"くありません。" +"ポリシーへのウェブモジュール追加エラー。Id_module_type がウェブモジュールに対し" +"て正しくありません。" -#: ../../enterprise/include/functions_enterprise_api.php:4078 +#: ../../enterprise/include/functions_enterprise_api.php:4076 msgid "Error adding module to policy configuration_data is not a valid base64." -msgstr "ポリシーへのモジュール追加エラー。設定データが正しい base64 ではありません。" +msgstr "" +"ポリシーへのモジュール追加エラー。設定データが正しい base64 ではありません。" -#: ../../enterprise/include/functions_enterprise_api.php:6079 +#: ../../enterprise/include/functions_enterprise_api.php:6077 msgid "The agent could not be added to the policy." msgstr "エージェントをポリシーに追加できませんでした。" -#: ../../enterprise/include/functions_enterprise_api.php:6296 +#: ../../enterprise/include/functions_enterprise_api.php:6294 #, php-format msgid "Failed Updated remote config files %d" msgstr "リモート設定ファイル %d の更新に失敗しました。" -#: ../../enterprise/include/functions_enterprise_api.php:6306 +#: ../../enterprise/include/functions_enterprise_api.php:6304 #, php-format msgid "Updated remote config files: %d => %d" msgstr "リモート設定ファイルを更新しました: %d -> %d" @@ -27722,119 +28556,133 @@ msgstr "ログイン成功" msgid "User pass successfully updated" msgstr "パスワードを更新しました" -#: ../../enterprise/include/functions_login.php:252 +#: ../../enterprise/include/functions_login.php:216 +#: ../../include/auth/mysql.php:741 +msgid "The password provided is not valid. Please, set another one." +msgstr "パスワードが正しくありません。別のものを設定してください。" + +#: ../../enterprise/include/functions_login.php:232 msgid "Password must be different from the " msgstr "パスワードは、次と異なっている必要があります: " -#: ../../enterprise/include/functions_login.php:252 +#: ../../enterprise/include/functions_login.php:232 msgid " previous changes." msgstr " 回前までの変更" -#: ../../enterprise/include/functions_login.php:265 +#: ../../enterprise/include/functions_login.php:245 msgid "Password must be different" msgstr "パスワードは違うものでなければいけません" -#: ../../enterprise/include/functions_login.php:276 +#: ../../enterprise/include/functions_login.php:256 +#: ../../enterprise/include/functions_login.php:306 msgid "Password too short" msgstr "パスワードが短すぎます" -#: ../../enterprise/include/functions_login.php:288 +#: ../../enterprise/include/functions_login.php:268 +#: ../../enterprise/include/functions_login.php:313 msgid "Password must contain numbers" msgstr "パスワードには数字を含めなければいけません" -#: ../../enterprise/include/functions_login.php:301 +#: ../../enterprise/include/functions_login.php:281 +#: ../../enterprise/include/functions_login.php:321 msgid "Password must contain symbols" msgstr "パスワードには記号を含めなければいけません" -#: ../../enterprise/include/functions_login.php:324 +#: ../../enterprise/include/functions_login.php:339 msgid "Invalid old password" msgstr "旧パスワードが不正です" -#: ../../enterprise/include/functions_login.php:361 +#: ../../enterprise/include/functions_login.php:376 msgid "Password confirm does not match" msgstr "パスワード確認が一致しません" -#: ../../enterprise/include/functions_login.php:368 +#: ../../enterprise/include/functions_login.php:383 msgid "Password empty" msgstr "パスワードが空です" -#: ../../enterprise/include/functions_login.php:485 -#: ../../godmode/users/configure_user.php:1853 -#: ../../godmode/users/configure_user.php:1923 -#: ../../godmode/users/configure_user.php:1995 +#: ../../enterprise/include/functions_login.php:502 +#: ../../godmode/users/configure_user.php:2129 +#: ../../godmode/users/configure_user.php:2199 +#: ../../godmode/users/configure_user.php:2271 #: ../../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:1088 -#: ../../operation/users/user_edit.php:1154 ../../operation/users/user_edit.php:1225 -#: ../../general/register.php:154 ../../general/logon_failed.php:18 +#: ../../include/ajax/double_auth.ajax.php:512 +#: ../../operation/users/user_edit.php:1160 +#: ../../operation/users/user_edit.php:1226 +#: ../../operation/users/user_edit.php:1297 ../../general/register.php:154 +#: ../../general/logon_failed.php:18 msgid "Authentication error" msgstr "認証エラー" -#: ../../enterprise/include/functions_login.php:492 -#: ../../godmode/users/configure_user.php:1860 -#: ../../godmode/users/configure_user.php:1930 +#: ../../enterprise/include/functions_login.php:509 +#: ../../godmode/users/configure_user.php:2136 +#: ../../godmode/users/configure_user.php:2206 #: ../../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:1095 -#: ../../operation/users/user_edit.php:1161 ../../general/register.php:161 +#: ../../include/ajax/double_auth.ajax.php:520 +#: ../../operation/users/user_edit.php:1167 +#: ../../operation/users/user_edit.php:1233 ../../general/register.php:161 msgid "There was an error loading the data" msgstr "データのロードでエラーが発生しました" -#: ../../enterprise/include/functions_login.php:501 -#: ../../godmode/users/configure_user.php:1938 -#: ../../godmode/users/configure_user.php:2016 ../../operation/users/user_edit.php:1169 -#: ../../operation/users/user_edit.php:1245 ../../general/register.php:170 -msgid "Double autentication activation" +#: ../../enterprise/include/functions_login.php:518 +#: ../../godmode/users/configure_user.php:2214 +#: ../../godmode/users/configure_user.php:2292 +#: ../../operation/users/user_edit.php:1241 +#: ../../operation/users/user_edit.php:1317 ../../general/register.php:170 +msgid "Double authentication activation" msgstr "二段階認証の有効化" #: ../../enterprise/include/lib/Agent.php:99 msgid " error, invalid agent." msgstr " エラー、不正なエージェント。" -#: ../../enterprise/include/lib/Agent.php:677 +#: ../../enterprise/include/lib/Agent.php:679 #, php-format msgid "Log module \"%s\" does not exist" msgstr "ログモジュール \"%s\" が存在しません" -#: ../../enterprise/include/lib/Agent.php:699 +#: ../../enterprise/include/lib/Agent.php:701 #, php-format msgid "Plugin \"%s\" does not exist" msgstr "プラグイン \"%s\" が存在しません" -#: ../../enterprise/include/lib/Agent.php:831 +#: ../../enterprise/include/lib/Agent.php:833 #, php-format msgid "Log module \"%s\" does not exist, %s skipped" msgstr "ログモジュール \"%s\" が存在しません。%s はスキップされました。" -#: ../../enterprise/include/lib/Agent.php:866 +#: ../../enterprise/include/lib/Agent.php:868 #, php-format msgid "Plugin \"%s\" does not exist, %s skipped" msgstr "プラグイン \"%s\" は存在しません。%s はスキップされました。" -#: ../../enterprise/include/lib/Agent.php:937 +#: ../../enterprise/include/lib/Agent.php:939 #, php-format msgid "Log module %s already defined" msgstr "ログモジュール %s はすでに定義済です" -#: ../../enterprise/include/lib/Agent.php:954 +#: ../../enterprise/include/lib/Agent.php:956 #, php-format msgid "Invalid module type %s" msgstr "不正なモジュールタイプ %s" -#: ../../enterprise/include/lib/Agent.php:984 +#: ../../enterprise/include/lib/Agent.php:986 #, php-format msgid "Plugin %s already defined" msgstr "プラグイン %s はすでに定義済です" -#: ../../enterprise/include/lib/Agent.php:998 +#: ../../enterprise/include/lib/Agent.php:1000 msgid "Invalid plugin definition" msgstr "不正なプラグイン定義" #: ../../enterprise/include/lib/NetworkManager.php:82 -#: ../../godmode/setup/setup_ehorus.php:111 ../../godmode/setup/setup_integria.php:566 -#: ../../operation/users/user_edit.php:738 ../../operation/users/user_edit.php:784 +#: ../../godmode/setup/setup_ehorus.php:111 +#: ../../godmode/setup/setup_integria.php:566 +#: ../../operation/users/user_edit.php:810 +#: ../../operation/users/user_edit.php:856 msgid "Test" msgstr "テスト" @@ -27851,7 +28699,7 @@ msgid "Send firmware" msgstr "ファームウエア送信" #: ../../enterprise/include/lib/NetworkManager.php:88 -#: ../../godmode/setup/setup_general.php:408 +#: ../../godmode/setup/setup_general.php:489 msgid "On demand" msgstr "オンデマンド" @@ -27887,68 +28735,68 @@ msgstr "オンデマンドスクリプトの実行中" msgid "Montly" msgstr "月次" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:838 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:852 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:839 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:853 msgid "There was a problem creating Action" msgstr "アクション作成で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:889 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:902 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:890 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:903 msgid "There was a problem updating Action" msgstr "アクションの更新で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:938 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:952 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:939 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:953 msgid "There was a problem deleting Action" msgstr "アクション削除で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:993 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:994 msgid "There was a problem standby alert" msgstr "スタンバイアラートで問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1002 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1003 msgid "There was a problem standby off alert" msgstr "アラートのスタンバイ解除で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1045 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1046 msgid "There was a problem enabled alert" msgstr "アラート有効化で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1055 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1056 msgid "There was a problem disabled alert" msgstr "アラート無効化で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1111 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1112 msgid "Event group Recursive" msgstr "イベントグループ再帰" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1126 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1127 #: ../../include/functions_reporting_html.php:1051 #: ../../include/functions_reporting_html.php:1317 -#: ../../include/functions_reporting_html.php:2537 -#: ../../operation/snmpconsole/snmp_view.php:865 +#: ../../include/functions_reporting_html.php:2548 +#: ../../include/class/SnmpConsole.class.php:339 msgid "Count" msgstr "回数" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1129 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1130 msgid "Time window" msgstr "時刻ウィンドウ" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1663 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1664 msgid "Failed to cleanup old rules." msgstr "古いルールのクリーンアップに失敗しました。" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1671 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1672 #, php-format msgid "Failed SQL: %s" msgstr "失敗した SQL: %s" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1676 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1677 #, php-format msgid "Failed to apply rule: %s." msgstr "ルール適用に失敗しました: %s" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1824 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1825 msgid "any" msgstr "すべて" @@ -27973,121 +28821,13 @@ msgstr "現在選択されているテンプレートが、設定されている #, php-format msgid "No %s script available for this agent, check template %s" msgstr "" -"このエージェントで使用できる %s スクリプトはありません。テンプレート %s を確認してくだ" -"さい" +"このエージェントで使用できる %s スクリプトはありません。テンプレート %s を確認" +"してください" #: ../../enterprise/include/lib/NetworkManager/Template.php:192 msgid "Error linking script: " 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:568 -msgid "Not set" -msgstr "未設定" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:578 -msgid "Active-Active" -msgstr "アクティブ-アクティブ" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterManager.php:580 -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:779 -msgid "Cluster name" -msgstr "クラスタ名" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:780 -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:794 -msgid "Cluster type" -msgstr "クラスタタイプ" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:795 -msgid "" -"AA is a cluster where all members are working. In AP cluster only master member is " -"working" -msgstr "" -"アクティブ-アクティブは、すべてのメンバが稼働しているクラスタです。 アクティブ-スタン" -"バイクラスタでは、マスターのみが稼働しています" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:803 -msgid "Active - Active" -msgstr "アクティブ - アクティブ" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:804 -msgid "Active - Pasive" -msgstr "アクティブ - スタンバイ" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:824 -msgid "Target cluster agent will be stored under this group" -msgstr "対象のクラスタエージェントはこのグループに保存されます" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:841 -msgid "You must select a Prediction Server to perform all cluster status calculations" -msgstr "すべてのクラスタ状態計算を実行するには、予測サーバを選択する必要があります" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1037 -msgid "critical if" -msgstr "次の場合に障害" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1046 -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1069 -#, php-format -msgid "% of balanced modules are down (equal or greater)." -msgstr "% (またはそれ以上)のバランスモジュールがダウンしています。" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1085 -msgid "Please, set thresholds for all active-passive modules" -msgstr "全アクティブ - スタンバイモジュールのしきい値を設定してください" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1096 -msgid "Please, set thresholds for all active-active modules" -msgstr "全アクティブ - アクティブモジュールのしきい値を設定してください" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1201 -msgid "Please, check all active-passive modules critical for this cluster" -msgstr "このクラスタに重要な全アクティブ-スタンバイモジュールをチェックしてください" - -#: ../../enterprise/include/lib/ClusterViewer/ClusterWizard.php:1203 -msgid "" -"If a critical balanced module is going to critical status, then cluster will be " -"critical." -msgstr "クリティカルバランスモジュールが障害状態なる場合、クラスタは障害になります。" - #: ../../enterprise/include/lib/Service.php:152 msgid "Service module does not match pointed one" msgstr "サービスモジュールが指定のものと一致しません" @@ -28127,24 +28867,25 @@ msgstr "サービスの子を完全に取得できませんでした: %s
" #: ../../enterprise/include/lib/Service.php:313 msgid "" -" Cannot switch from SMART to MANUAL if there are dynamic elements attached to the " -"service. Please erase dynamic elements before change to MANUAL" +" Cannot switch from SMART to MANUAL if there are dynamic elements attached to " +"the service. Please erase dynamic elements before change to MANUAL" msgstr "" -" サービスに動的要素がある場合、スマートから手動に切り替えることはできません。 手動に変" -"更する前に、動的要素を消去してください" +" サービスに動的要素がある場合、スマートから手動に切り替えることはできません。 " +"手動に変更する前に、動的要素を消去してください" #: ../../enterprise/include/lib/Service.php:397 #: ../../enterprise/include/lib/Service.php:740 #: ../../enterprise/include/lib/Service.php:921 #: ../../enterprise/include/lib/Metaconsole/Node.php:1353 -#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:402 +#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:534 #: ../../enterprise/include/lib/ServiceElement.php:390 #: ../../enterprise/include/lib/ServiceElement.php:921 #: ../../enterprise/include/lib/ServiceElement.php:963 #: ../../enterprise/include/lib/ServiceElement.php:1005 #: ../../enterprise/include/lib/ServiceElement.php:1111 -#: ../../enterprise/include/lib/ServiceElement.php:1153 ../../include/lib/Agent.php:349 -#: ../../include/lib/Module.php:1172 ../../include/lib/Entity.php:303 +#: ../../enterprise/include/lib/ServiceElement.php:1153 +#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1176 +#: ../../include/lib/Entity.php:303 #, php-format msgid "Cannot connect to node %d" msgstr "ノード %d へ接続できません" @@ -28249,10 +28990,11 @@ msgstr "ノードが見つかりません" #: ../../enterprise/include/lib/Metaconsole/Node.php:396 #, php-format -msgid "There are %d queries pending to be applied, click in the eye to see results" +msgid "" +"There are %d queries pending to be applied, click in the eye to see results" msgstr "" -"適用が保留されている %d クエリがあります。目のアイコンをクリックして結果を確認してくだ" -"さい" +"適用が保留されている %d クエリがあります。目のアイコンをクリックして結果を確認" +"してください" #: ../../enterprise/include/lib/Metaconsole/Node.php:405 msgid "Database synchronization state and pending tasks" @@ -28265,28 +29007,31 @@ msgstr "操作とテーブル" #: ../../enterprise/include/lib/Metaconsole/Node.php:655 #, php-format msgid "" -"Failed synchronizing %s, please check node PHP configuration issues and collection " -"max sizes" +"Failed synchronizing %s, please check node PHP configuration issues and " +"collection max sizes" msgstr "" -"%s の同期に失敗しました。ノードの PHP 設定の問題とコレクションの最大サイズを確認してく" -"ださい" +"%s の同期に失敗しました。ノードの PHP 設定の問題とコレクションの最大サイズを確" +"認してください" #: ../../enterprise/include/lib/Metaconsole/Node.php:1173 msgid "" "The elimination of this node will lead to the suppression of its agents from " "metaconsole and all the configuration assigned to them. " msgstr "" -"このノードを削除すると、メタコンソールからのエージェントと、それらに割り当てられている" -"すべての設定が抑制されます。" +"このノードを削除すると、メタコンソールからのエージェントと、それらに割り当てら" +"れているすべての設定が抑制されます。" #: ../../enterprise/include/lib/Metaconsole/Node.php:1177 msgid "The rules for this node may stop working. " msgstr "このノードのルールが機能しなくなる可能性があります。" #: ../../enterprise/include/lib/Metaconsole/Node.php:1181 -msgid "The deleted node will lose its license, and you must license it manually again. " +msgid "" +"The deleted node will lose its license, and you must license it manually " +"again. " msgstr "" -"削除されたノードはライセンスを失います。手動で再度ライセンスを取得する必要があります。" +"削除されたノードはライセンスを失います。手動で再度ライセンスを取得する必要があ" +"ります。" #: ../../enterprise/include/lib/Metaconsole/Node.php:1685 #, php-format @@ -28294,12 +29039,12 @@ msgid "Failed to overwrite node data: %s" msgstr "ノードデータの上書きに失敗しました: %s" #: ../../enterprise/include/lib/Metaconsole/Node.php:1703 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3008 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3037 msgid "Final step" msgstr "最終ステップ" #: ../../enterprise/include/lib/Metaconsole/Node.php:1704 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3009 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3038 msgid "Database merged" msgstr "データベースをマージしました" @@ -28308,313 +29053,319 @@ msgid "Activating node" msgstr "ノードをアクティベート中" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:396 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:443 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:752 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:879 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1150 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1244 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1596 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1893 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2262 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3186 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3467 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3621 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3696 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3995 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4211 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:398 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:445 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:758 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:891 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1161 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1255 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1609 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1918 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2291 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3215 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3500 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3658 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3733 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4020 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4236 msgid "Connect node" msgstr "ノード接続" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:659 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:665 msgid "Create table tmerge_error" msgstr "テーブル tmerge_error を作成" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:685 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:691 msgid "Create table tmerge_steps" msgstr "テーブル tmerge_steps 作成" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:710 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:716 msgid "Create table tmerge_queries" msgstr "テーブル tmerge_queries 作成" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:851 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:861 #, php-format msgid "%s console" msgstr "%s コンソール" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:856 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:866 msgid "Check cron task" msgstr "cron タスクチェック" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:857 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:867 msgid "Please login into this node before using this feature" msgstr "この機能を使う前にこのノードへログインしてください" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:939 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:951 msgid "memory_limit current value" msgstr "memory_limit 現在値" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:946 -msgid "Check current packages, all nodes and metaconsole, are not in the same version" -msgstr "" -"全ノードとメタコンソールの現在のパッケージを確認してください。同じバージョンではありま" -"せん。" - #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:958 -msgid "Check Minor release, All nodes and metaconsole, do not have the same mr" +msgid "" +"Check current packages, all nodes and metaconsole, are not in the same version" msgstr "" -"全ノードとメタコンソールのマイナーリリースを確認してください。同一 MR ではありません。" +"全ノードとメタコンソールの現在のパッケージを確認してください。同じバージョンで" +"はありません。" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:970 +msgid "Check Minor release, All nodes and metaconsole, do not have the same mr" +msgstr "" +"全ノードとメタコンソールのマイナーリリースを確認してください。同一 MR ではあり" +"ません。" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:982 msgid "Max size collection, all nodes and metaconsole, are not equal" msgstr "全ノードとメタコンソールで最大コレクションサイズが同じではありません" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:995 -#, php-format -msgid "Post max size, nodes cannot be smaller than the size of the metaconsole %s" -msgstr "" -"最大サイズ設定、ノードはメタコンソール %s のサイズより小さくすることはできません" - -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1010 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1007 #, php-format msgid "" -"Upload max file size, nodes cannot be smaller than the size of the metaconsole %s" +"Post max size, nodes cannot be smaller than the size of the metaconsole %s" msgstr "" -"最大ファイルサイズをアップロードします。ノードはメタコンソール %s のサイズより小さくす" -"ることはできません" +"最大サイズ設定、ノードはメタコンソール %s のサイズより小さくすることはできませ" +"ん" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1072 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1088 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1022 +#, php-format +msgid "" +"Upload max file size, nodes cannot be smaller than the size of the metaconsole " +"%s" +msgstr "" +"最大ファイルサイズをアップロードします。ノードはメタコンソール %s のサイズより" +"小さくすることはできません" + +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1084 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1100 msgid "Problems with the backup directory" msgstr "バックアップディレクトリに問題があります" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1073 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1085 msgid "Cannot create \"merge_backups\" folder in attachment directory" msgstr "添付ファイルディレクトリに \"merge_backups\" フォルダを作成できません" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1089 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1101 msgid "The \"merge_backpus\" directory does not have the correct permissions" msgstr "\"merge_backpus\" ディレクトリが正しいパーミッションではありません" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1099 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1111 msgid "Extension ZIP" msgstr "拡張 ZIP" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1100 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1112 msgid "The ZIP extension is not loaded, please install this dependency" -msgstr "ZIP 拡張機能がロードされていません。この依存ファイルをインストールしてください" +msgstr "" +"ZIP 拡張機能がロードされていません。この依存ファイルをインストールしてください" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1201 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1212 msgid "Inserts backups, disable foreings keys, exceptions in tmerge_queries" msgstr "バックアップの挿入、外部キーの無効化、tmerge_queries で例外発生" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1227 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1238 msgid "Resets foreing keys and exceptions and ends the merge preparation process" msgstr "外部キーと例外をリセットし、マージ準備処理を終了します" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1274 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1285 msgid "Enable exceptions in tmerge_queries" msgstr "tmerge_queries で例外を有効化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1298 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1309 msgid "Enable foreing keys in tmerge_queries" msgstr "tmerge_queries で外部キーを有効化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1577 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1862 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1590 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1887 msgid "Preparation of all nodes for the table merge process" msgstr "テーブルマージ処理のためのすべてのノードの準備" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1653 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1666 msgid "This table does not have the id" msgstr "このテーブルには id がありません" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1654 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1667 msgid "Prepare merge request" msgstr "マージリクエストの準備" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1980 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2005 msgid "Inserts truncate, autoincrement and inserts in tmerge_queries" msgstr "tmerge_queries の切り捨て、自動インクリメント、挿入" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2150 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2179 msgid "Inserts updates in tmerge_queries" msgstr "tmerge_queries へのインサート更新" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2187 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2216 msgid "Merging collections files" msgstr "コレクションファイルのマージ中" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2243 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2389 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2560 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3173 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2272 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2418 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2589 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3202 #, php-format msgid "Api call: %s" msgstr "API 呼出: %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2301 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2302 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2330 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2331 msgid "Problems while backing up collections from: " msgstr "次のコレクションのバックアップで問題が発生しました: " -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2319 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2323 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2348 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2352 #, php-format msgid "Problems downloading collections from %s" msgstr "%s からのコレクションのダウンロードで問題が発生しました" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2335 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2339 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2364 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2368 #, php-format msgid "Problems unzipping collection file from %s" msgstr "%s からのコレクションファイルの unzip で問題が発生しました" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2618 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2647 msgid "Start phase merge" msgstr "フェーズマージを開始" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2630 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2659 msgid "Create backups" msgstr "バックアップの作成" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2698 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2699 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2727 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2728 msgid "Problems creating the backup conf agents" msgstr "エージェント設定バックアップの作成で問題が発生しました" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2709 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2947 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3317 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2738 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2976 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3346 msgid "Class agent" msgstr "クラスエージェント" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2733 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2745 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2762 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2774 msgid "Disable_foreing" msgstr "強制を無効" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2757 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2786 msgid "Truncate table" msgstr "テーブルの切り捨て" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2775 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2804 msgid "Autoincrement" msgstr "自動インクリメント" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2787 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2816 msgid "Inserts" msgstr "挿入" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2805 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2834 msgid "Disabling constraints" msgstr "制約の無効化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2823 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2852 msgid "Updates" msgstr "アップデート" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2846 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2875 msgid "Restoring constraints" msgstr "制約の復元" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2864 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2893 msgid "Enable exceptions" msgstr "例外の有効化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2882 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2911 msgid "Enable foreings keys" msgstr "外部キーの有効化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2899 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2900 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2928 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2929 msgid "Update conf agent policies" msgstr "エージェント設定ポリシーの更新" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2936 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2937 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2965 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2966 msgid "Error updating agent conf" msgstr "エージェント設定更新エラー" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2958 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2987 msgid "Synchronizing collections" msgstr "コレクションの同期中" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2970 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2971 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2999 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3000 msgid "Error synchronizing collections" msgstr "コレクションの同期エラー" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3067 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3096 msgid "Problems unzipping collections at: " msgstr "次のコレクションの unzip で問題が発生しました: " -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3068 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3097 #, php-format msgid "File is not a valid zip file \"%s\"" msgstr "ファイルが正しい zip ファイルではありません \"%s\"" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3226 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3255 msgid "Restoring database backup" msgstr "データベースバックアップのリストア中" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3252 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4476 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3281 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4501 msgid "Problems creating the backup" msgstr "バックアップ作成で問題が発生しました" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3265 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3294 msgid "Restore backups conf agents" msgstr "エージェント設定バックアップのリストア" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3302 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3331 msgid "Problems restoring the backup conf agents" msgstr "エージェント設定バックアップのリストアで問題が発生しました" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3304 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3333 #, php-format msgid "Agent \"%s\" with md5 file \"%s\"" msgstr "エージェント \"%s\" と md5 ファイル \"%s\"" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3330 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3359 msgid "Restore collections" msgstr "コレクションのリストア" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3345 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3346 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3374 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3375 msgid "Error Synch collections" msgstr "コレクション同期エラー" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3563 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3803 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3596 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3828 msgid "Insert info steps" msgstr "情報挿入ステップ" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3728 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3745 msgid "Node not ready" msgstr "ノードが準備できていません" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3729 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3746 msgid "Pending to be unified" msgstr "統合待ち" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3962 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3967 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4019 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4024 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3987 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3992 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4044 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4049 msgid "Initialize" msgstr "初期化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4158 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4183 msgid "Backup" msgstr "バックアップ" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4188 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4213 msgid "Applying" msgstr "適用中" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4407 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4432 msgid "Error updating events" msgstr "イベント更新エラー" @@ -28701,7 +29452,7 @@ msgid "Failed to update, already exists: \"%d\"" msgstr "更新に失敗しました。すでに存在します: \"%d\"" #: ../../enterprise/include/lib/Policy/Module.php:201 -#: ../../enterprise/include/lib/Policy.php:1196 ../../include/lib/Module.php:805 +#: ../../enterprise/include/lib/Policy.php:1207 ../../include/lib/Module.php:809 #, php-format msgid "Module already exists: \"%s\"" msgstr "モジュールがすでに存在します: \"%s\"" @@ -28711,7 +29462,7 @@ msgstr "モジュールがすでに存在します: \"%s\"" msgid "Failed to update: \"%s\"" msgstr "更新に失敗しました: \"%s\"" -#: ../../enterprise/include/lib/Policy/Queue.php:378 +#: ../../enterprise/include/lib/Policy/Queue.php:390 #, php-format msgid "Already queued in %s" msgstr "%s にすでにキューイングされています" @@ -28736,47 +29487,50 @@ msgstr " ルールデコードエラー: %s" msgid " error: Failed to delete element: %s" msgstr " エラー: 要素の削除に失敗しました: %s" -#: ../../enterprise/include/lib/Policy.php:281 +#: ../../enterprise/include/lib/Policy.php:282 #, php-format msgid "Invalid operation %s" msgstr "不正な操作 %s" -#: ../../enterprise/include/lib/Policy.php:1171 +#: ../../enterprise/include/lib/Policy.php:1182 #, php-format msgid "Policy already defined: \"%s\"" msgstr "ポリシーはすでに定義済です: \"%s\"" #: ../../enterprise/include/functions_events.php:40 #: ../../godmode/events/event_filter.php:139 -#: ../../godmode/events/event_edit_filter.php:355 +#: ../../godmode/events/event_edit_filter.php:377 #: ../../include/lib/Dashboard/Widgets/events_list.php:389 -#: ../../operation/events/events.php:1609 ../../operation/events/events.php:2183 +#: ../../operation/events/events.php:1688 ../../operation/events/events.php:2325 msgid "Event status" msgstr "状態" #: ../../enterprise/include/functions_events.php:101 -#: ../../godmode/events/event_edit_filter.php:419 ../../operation/events/events.php:1835 +#: ../../godmode/events/event_edit_filter.php:450 +#: ../../operation/events/events.php:1964 msgid "User ack." msgstr "承諾したユーザ" #: ../../enterprise/include/functions_events.php:111 -#: ../../godmode/events/event_edit_filter.php:454 +#: ../../godmode/events/event_edit_filter.php:505 msgid "Date from" msgstr "開始日" #: ../../enterprise/include/functions_events.php:121 -#: ../../godmode/events/event_edit_filter.php:457 +#: ../../godmode/events/event_edit_filter.php:508 msgid "Date to" msgstr "終了日" #: ../../enterprise/include/functions_events.php:131 -#: ../../godmode/events/event_edit_filter.php:443 ../../mobile/operation/events.php:816 -#: ../../include/functions_events.php:4645 ../../operation/events/events.php:1640 +#: ../../godmode/events/event_edit_filter.php:494 +#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4766 +#: ../../operation/events/events.php:1720 msgid "Repeated" msgstr "複数回発生イベント" #: ../../enterprise/include/functions_events.php:141 -#: ../../godmode/events/event_edit_filter.php:603 ../../operation/events/events.php:1858 +#: ../../godmode/events/event_edit_filter.php:654 +#: ../../operation/events/events.php:2000 msgid "Alert events" msgstr "アラートイベント" @@ -28785,13 +29539,14 @@ msgid "Id source events" msgstr "ソースイベントID" #: ../../enterprise/include/functions_events.php:162 -#: ../../godmode/events/event_edit_filter.php:409 ../../mobile/operation/events.php:997 -#: ../../include/functions_snmp.php:401 ../../include/class/AuditLog.class.php:187 +#: ../../godmode/events/event_edit_filter.php:440 +#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 +#: ../../include/class/SnmpConsole.class.php:467 +#: ../../include/class/AuditLog.class.php:186 #: ../../include/lib/Dashboard/Widgets/events_list.php:347 #: ../../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:616 ../../operation/events/events.php:1622 -#: ../../operation/events/events.php:2213 +#: ../../operation/events/events.php:1701 ../../operation/events/events.php:2355 msgid "Max. hours old" msgstr "最大表示範囲(時間)" @@ -28801,14 +29556,14 @@ msgid "More than 5 tags" msgstr "5つ以上のタグ" #: ../../enterprise/include/functions_events.php:184 -#: ../../godmode/events/event_edit_filter.php:498 ../../operation/events/events.php:2054 -#: ../../operation/events/events.php:2057 +#: ../../godmode/events/event_edit_filter.php:549 +#: ../../operation/events/events.php:2196 ../../operation/events/events.php:2199 msgid "Events with following tags" msgstr "次のタグを含むイベント" #: ../../enterprise/include/functions_events.php:206 -#: ../../godmode/events/event_edit_filter.php:551 ../../operation/events/events.php:2055 -#: ../../operation/events/events.php:2058 +#: ../../godmode/events/event_edit_filter.php:602 +#: ../../operation/events/events.php:2197 ../../operation/events/events.php:2200 msgid "Events without following tags" msgstr "次のタグを含まないイベント" @@ -28822,47 +29577,50 @@ msgstr "有効なフィルタ" msgid "Active filters" msgstr "有効なフィルタ" -#: ../../enterprise/include/functions_metaconsole.php:2838 +#: ../../enterprise/include/functions_metaconsole.php:2864 msgid "Agent alerts action does not exist in target node" msgstr "エージェントアラートアクションが対象ノードに存在しません" -#: ../../enterprise/include/functions_metaconsole.php:2845 +#: ../../enterprise/include/functions_metaconsole.php:2871 msgid "Agent alerts template does not exist in target node" msgstr "エージェントアラートテンプレートが対象ノードに存在しません" -#: ../../enterprise/include/functions_metaconsole.php:2852 +#: ../../enterprise/include/functions_metaconsole.php:2878 msgid "Agent inventory does not exist in target node" msgstr "エージェントインベントリが対象ノードに存在しません" -#: ../../enterprise/include/functions_metaconsole.php:2859 +#: ../../enterprise/include/functions_metaconsole.php:2885 msgid "Exists agent conf please remove configuration file from target node." -msgstr "エージェント設定が存在します。対象ノードから設定ファイルを削除してください。" +msgstr "" +"エージェント設定が存在します。対象ノードから設定ファイルを削除してください。" -#: ../../enterprise/include/functions_metaconsole.php:2866 +#: ../../enterprise/include/functions_metaconsole.php:2892 msgid "Agent collections does not exist in target node" msgstr "エージェントコレクションが対象ノードに存在しません" -#: ../../enterprise/include/functions_metaconsole.php:2873 +#: ../../enterprise/include/functions_metaconsole.php:2899 msgid "Agent plugins does not exist in target node" msgstr "エージェントプラグインが対象ノードに存在しません" -#: ../../enterprise/include/functions_metaconsole.php:2880 -msgid "Agent policies definitions does not match with defined ones in target node" -msgstr "エージェントポリシーの定義が、対象ノードで定義されているものと一致しません" +#: ../../enterprise/include/functions_metaconsole.php:2906 +msgid "" +"Agent policies definitions does not match with defined ones in target node" +msgstr "" +"エージェントポリシーの定義が、対象ノードで定義されているものと一致しません" -#: ../../enterprise/include/functions_metaconsole.php:2887 +#: ../../enterprise/include/functions_metaconsole.php:2913 msgid "Agent group does not exist in target node" msgstr "エージェントグループが対象ノードに存在しません" -#: ../../enterprise/include/functions_metaconsole.php:2894 +#: ../../enterprise/include/functions_metaconsole.php:2920 msgid "Agent already exists in target node" msgstr "エージェントが対象ノードにすでに存在します" -#: ../../enterprise/include/functions_metaconsole.php:2918 +#: ../../enterprise/include/functions_metaconsole.php:2944 msgid "The agent: has not been added due to problems in the insertion" msgstr "エージェント: 挿入に問題があるため、追加されていません" -#: ../../enterprise/include/functions_metaconsole.php:2923 +#: ../../enterprise/include/functions_metaconsole.php:2949 msgid "The agent: has already been added to the migration queue" msgstr "エージェント: すでに移行キューに追加されています" @@ -28875,7 +29633,8 @@ msgid "Subscription" msgstr "サブスクリプション" #: ../../enterprise/include/functions_license.php:120 -#: ../../include/class/Diagnostics.class.php:1156 +#: ../../include/functions_menu.php:837 +#: ../../include/class/Diagnostics.class.php:1159 msgid "Support expires" msgstr "サポート切れ" @@ -28896,23 +29655,36 @@ msgid "Next available IP" msgstr "次の空き IP" #: ../../enterprise/include/functions_ipam.php:1341 -#: ../../enterprise/tools/ipam/ipam_ajax.php:483 ../../include/ajax/events.php:1712 +#: ../../enterprise/tools/ipam/ipam_ajax.php:483 +#: ../../include/ajax/events.php:1680 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378 msgid "Details" msgstr "詳細" +#: ../../enterprise/include/functions_ipam.php:1386 +#: ../../enterprise/operation/services/services.list.php:639 +#: ../../godmode/agentes/inventory_manager.php:258 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:586 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:676 +#: ../../include/ajax/module.php:1065 ../../include/functions_ui.php:1162 +#: ../../operation/visual_console/view.php:406 +#: ../../operation/agentes/group_view.php:221 +#: ../../operation/agentes/group_view.php:283 +msgid "Force" +msgstr "強制する" + #: ../../enterprise/include/functions_ipam.php:1559 +#: ../../include/class/SnmpConsole.class.php:189 #: ../../operation/snmpconsole/snmp_statistics.php:78 -#: ../../operation/snmpconsole/snmp_view.php:99 #: ../../operation/incidents/incident_statistics.php:21 msgid "Statistics" msgstr "統計" #: ../../enterprise/include/functions_ipam.php:1561 -#: ../../enterprise/include/functions_ipam.php:1995 -#: ../../enterprise/tools/ipam/ipam_excel.php:136 -#: ../../enterprise/tools/ipam/ipam_excel.php:202 +#: ../../enterprise/include/functions_ipam.php:2003 +#: ../../enterprise/tools/ipam/ipam_excel.php:142 +#: ../../enterprise/tools/ipam/ipam_excel.php:210 msgid "Total IPs" msgstr "全IP" @@ -28921,7 +29693,7 @@ msgid "Occupied" msgstr "占有済" #: ../../enterprise/include/functions_ipam.php:1573 -#: ../../enterprise/include/functions_ipam.php:2048 +#: ../../enterprise/include/functions_ipam.php:2056 #: ../../enterprise/tools/ipam/ipam_network.php:401 #: ../../enterprise/tools/ipam/ipam_ajax.php:406 #: ../../enterprise/tools/ipam/ipam_massive.php:103 @@ -28933,8 +29705,8 @@ msgid "Not managed" msgstr "管理対象外" #: ../../enterprise/include/functions_ipam.php:1579 -#: ../../enterprise/include/functions_ipam.php:1734 -#: ../../enterprise/include/functions_ipam.php:2049 +#: ../../enterprise/include/functions_ipam.php:1742 +#: ../../enterprise/include/functions_ipam.php:2057 #: ../../enterprise/tools/ipam/ipam_network.php:402 #: ../../enterprise/tools/ipam/ipam_ajax.php:432 #: ../../enterprise/tools/ipam/ipam_massive.php:103 @@ -28949,197 +29721,197 @@ msgstr "未予約" msgid "Occupancy statistics" msgstr "占有率統計" -#: ../../enterprise/include/functions_ipam.php:1646 +#: ../../enterprise/include/functions_ipam.php:1654 msgid "DESC" msgstr "降順" -#: ../../enterprise/include/functions_ipam.php:1647 +#: ../../enterprise/include/functions_ipam.php:1655 msgid "ASC" msgstr "昇順" -#: ../../enterprise/include/functions_ipam.php:1648 -#: ../../enterprise/include/functions_ipam.php:1649 -#: ../../enterprise/include/functions_ipam.php:2043 +#: ../../enterprise/include/functions_ipam.php:1656 +#: ../../enterprise/include/functions_ipam.php:1657 +#: ../../enterprise/include/functions_ipam.php:2051 #: ../../enterprise/tools/ipam/ipam_network.php:397 #: ../../enterprise/tools/ipam/ipam_ajax.php:364 -#: ../../include/class/Diagnostics.class.php:734 -#: ../../include/class/Diagnostics.class.php:752 +#: ../../include/class/Diagnostics.class.php:735 +#: ../../include/class/Diagnostics.class.php:753 msgid "Hostname" msgstr "ホスト名" -#: ../../enterprise/include/functions_ipam.php:1648 +#: ../../enterprise/include/functions_ipam.php:1656 msgid "A -> Z" msgstr "A -> Z" -#: ../../enterprise/include/functions_ipam.php:1649 +#: ../../enterprise/include/functions_ipam.php:1657 msgid "Z -> A" msgstr "Z -> A" -#: ../../enterprise/include/functions_ipam.php:1650 -#: ../../enterprise/include/functions_ipam.php:1651 +#: ../../enterprise/include/functions_ipam.php:1658 +#: ../../enterprise/include/functions_ipam.php:1659 msgid "Last check" msgstr "最新の確認" -#: ../../enterprise/include/functions_ipam.php:1650 +#: ../../enterprise/include/functions_ipam.php:1658 msgid "Newer -> Older" msgstr "新しい -> 古い" -#: ../../enterprise/include/functions_ipam.php:1651 +#: ../../enterprise/include/functions_ipam.php:1659 msgid "Older -> Newer" msgstr "古い -> 新しい" -#: ../../enterprise/include/functions_ipam.php:1678 +#: ../../enterprise/include/functions_ipam.php:1686 msgid "Exact address match" msgstr "アドレスの完全一致" -#: ../../enterprise/include/functions_ipam.php:1682 +#: ../../enterprise/include/functions_ipam.php:1690 msgid "S.O" msgstr "OS" -#: ../../enterprise/include/functions_ipam.php:1695 +#: ../../enterprise/include/functions_ipam.php:1703 msgid "Big" msgstr "大" -#: ../../enterprise/include/functions_ipam.php:1696 +#: ../../enterprise/include/functions_ipam.php:1704 msgid "Tiny" msgstr "小" -#: ../../enterprise/include/functions_ipam.php:1697 +#: ../../enterprise/include/functions_ipam.php:1705 msgid "Icons style" msgstr "アイコンスタイル" -#: ../../enterprise/include/functions_ipam.php:1714 +#: ../../enterprise/include/functions_ipam.php:1722 msgid "Show not alive hosts" msgstr "非稼働ホスト表示" -#: ../../enterprise/include/functions_ipam.php:1722 +#: ../../enterprise/include/functions_ipam.php:1730 msgid "Show only managed addresses" msgstr "管理対象アドレスのみ表示" -#: ../../enterprise/include/functions_ipam.php:1730 +#: ../../enterprise/include/functions_ipam.php:1738 msgid "Reserved addresses" msgstr "予約済アドレス" -#: ../../enterprise/include/functions_ipam.php:1735 +#: ../../enterprise/include/functions_ipam.php:1743 msgid "Unreserved" msgstr "未予約" -#: ../../enterprise/include/functions_ipam.php:1745 +#: ../../enterprise/include/functions_ipam.php:1753 msgid "Last Contact" msgstr "最終接続" -#: ../../enterprise/include/functions_ipam.php:1788 +#: ../../enterprise/include/functions_ipam.php:1796 msgid "Filter options" msgstr "フィルターオプション" -#: ../../enterprise/include/functions_ipam.php:1985 +#: ../../enterprise/include/functions_ipam.php:1993 msgid "id Network" msgstr "ネットワーク ID" -#: ../../enterprise/include/functions_ipam.php:1990 +#: ../../enterprise/include/functions_ipam.php:1998 msgid "ID recon task" msgstr "自動検出タスク ID" -#: ../../enterprise/include/functions_ipam.php:1991 +#: ../../enterprise/include/functions_ipam.php:1999 msgid "Scan Interval" msgstr "スキャン間隔" -#: ../../enterprise/include/functions_ipam.php:1992 +#: ../../enterprise/include/functions_ipam.php:2000 msgid "Users Operator" msgstr "管理ユーザ" -#: ../../enterprise/include/functions_ipam.php:1993 +#: ../../enterprise/include/functions_ipam.php:2001 msgid "Total Ips" msgstr "全 IP" -#: ../../enterprise/include/functions_ipam.php:1994 +#: ../../enterprise/include/functions_ipam.php:2002 msgid "Last Update" msgstr "最終更新" -#: ../../enterprise/include/functions_ipam.php:1996 -#: ../../enterprise/tools/ipam/ipam_excel.php:137 -#: ../../enterprise/tools/ipam/ipam_excel.php:203 +#: ../../enterprise/include/functions_ipam.php:2004 +#: ../../enterprise/tools/ipam/ipam_excel.php:143 +#: ../../enterprise/tools/ipam/ipam_excel.php:211 msgid "Alive IPs" msgstr "応答 IP" -#: ../../enterprise/include/functions_ipam.php:1997 -#: ../../enterprise/tools/ipam/ipam_excel.php:138 -#: ../../enterprise/tools/ipam/ipam_excel.php:204 +#: ../../enterprise/include/functions_ipam.php:2005 +#: ../../enterprise/tools/ipam/ipam_excel.php:144 +#: ../../enterprise/tools/ipam/ipam_excel.php:212 msgid "Occupied %" msgstr "占有 %" -#: ../../enterprise/include/functions_ipam.php:1998 -#: ../../enterprise/tools/ipam/ipam_excel.php:139 -#: ../../enterprise/tools/ipam/ipam_excel.php:205 +#: ../../enterprise/include/functions_ipam.php:2006 +#: ../../enterprise/tools/ipam/ipam_excel.php:145 +#: ../../enterprise/tools/ipam/ipam_excel.php:213 msgid "Available %" msgstr "残り %" -#: ../../enterprise/include/functions_ipam.php:1999 -#: ../../enterprise/tools/ipam/ipam_excel.php:140 -#: ../../enterprise/tools/ipam/ipam_excel.php:206 +#: ../../enterprise/include/functions_ipam.php:2007 +#: ../../enterprise/tools/ipam/ipam_excel.php:146 +#: ../../enterprise/tools/ipam/ipam_excel.php:214 msgid "Managed IPs" msgstr "管理 IP" -#: ../../enterprise/include/functions_ipam.php:2000 -#: ../../enterprise/tools/ipam/ipam_excel.php:141 -#: ../../enterprise/tools/ipam/ipam_excel.php:207 +#: ../../enterprise/include/functions_ipam.php:2008 +#: ../../enterprise/tools/ipam/ipam_excel.php:147 +#: ../../enterprise/tools/ipam/ipam_excel.php:215 msgid "Managed %" msgstr "管理 %" -#: ../../enterprise/include/functions_ipam.php:2001 -#: ../../enterprise/tools/ipam/ipam_excel.php:142 -#: ../../enterprise/tools/ipam/ipam_excel.php:208 +#: ../../enterprise/include/functions_ipam.php:2009 +#: ../../enterprise/tools/ipam/ipam_excel.php:148 +#: ../../enterprise/tools/ipam/ipam_excel.php:216 msgid "Unmanaged %" msgstr "非管理 %" -#: ../../enterprise/include/functions_ipam.php:2002 -#: ../../enterprise/tools/ipam/ipam_excel.php:143 -#: ../../enterprise/tools/ipam/ipam_excel.php:209 +#: ../../enterprise/include/functions_ipam.php:2010 +#: ../../enterprise/tools/ipam/ipam_excel.php:149 +#: ../../enterprise/tools/ipam/ipam_excel.php:217 msgid "Reserved IPs" msgstr "予約済 IP" -#: ../../enterprise/include/functions_ipam.php:2003 -#: ../../enterprise/tools/ipam/ipam_excel.php:144 -#: ../../enterprise/tools/ipam/ipam_excel.php:210 +#: ../../enterprise/include/functions_ipam.php:2011 +#: ../../enterprise/tools/ipam/ipam_excel.php:150 +#: ../../enterprise/tools/ipam/ipam_excel.php:218 msgid "Reserved %" msgstr "予約済 %" -#: ../../enterprise/include/functions_ipam.php:2004 -#: ../../enterprise/tools/ipam/ipam_excel.php:145 -#: ../../enterprise/tools/ipam/ipam_excel.php:211 +#: ../../enterprise/include/functions_ipam.php:2012 +#: ../../enterprise/tools/ipam/ipam_excel.php:151 +#: ../../enterprise/tools/ipam/ipam_excel.php:219 msgid "Not reserved %" msgstr "未予約 %" -#: ../../enterprise/include/functions_ipam.php:2047 +#: ../../enterprise/include/functions_ipam.php:2055 msgid "OS Name" msgstr "OS 名" -#: ../../enterprise/include/functions_ipam.php:2050 +#: ../../enterprise/include/functions_ipam.php:2058 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366 msgid "Created at" msgstr "作成日時" -#: ../../enterprise/include/functions_ipam.php:2051 +#: ../../enterprise/include/functions_ipam.php:2059 msgid "Last updated" msgstr "最終更新" -#: ../../enterprise/include/functions_ipam.php:2052 +#: ../../enterprise/include/functions_ipam.php:2060 msgid "Last modified" msgstr "最終更新" -#: ../../enterprise/include/functions_ipam.php:2053 +#: ../../enterprise/include/functions_ipam.php:2061 msgid "Dhcp Leased" msgstr "DHCP リース済" -#: ../../enterprise/include/functions_ipam.php:2054 +#: ../../enterprise/include/functions_ipam.php:2062 msgid "Dhcp Leased Mode" msgstr "DHCP リースモード" -#: ../../enterprise/include/functions_ipam.php:2055 +#: ../../enterprise/include/functions_ipam.php:2063 msgid "Dhcp Leased Expiration" msgstr "DHCP リース期限切れ" -#: ../../enterprise/include/functions_ipam.php:2056 +#: ../../enterprise/include/functions_ipam.php:2064 msgid "Mac address" msgstr "MAC アドレス" @@ -29195,7 +29967,7 @@ msgid "Module pending to link" msgstr "リンク待ちモジュール" #: ../../enterprise/include/functions_policies.php:3532 -#: ../../godmode/agentes/module_manager_editor.php:548 +#: ../../godmode/agentes/module_manager_editor.php:550 msgid "Module will be linked in the next application" msgstr "モジュールは次回適用時にリンクされます。" @@ -29204,26 +29976,26 @@ msgid "Module pending to unlink" msgstr "リンク解除待ちモジュール" #: ../../enterprise/include/functions_policies.php:3542 -#: ../../godmode/agentes/module_manager_editor.php:562 +#: ../../godmode/agentes/module_manager_editor.php:564 msgid "Module will be unlinked in the next application" msgstr "モジュールは次回適用時にリンク解除されます。" #: ../../enterprise/include/functions_policies.php:3738 -#: ../../godmode/agentes/configurar_agente.php:542 -#: ../../godmode/agentes/configurar_agente.php:763 +#: ../../godmode/agentes/configurar_agente.php:563 +#: ../../godmode/agentes/configurar_agente.php:784 #: ../../godmode/setup/snmp_wizard.php:31 msgid "SNMP Wizard" msgstr "SNMPウィザード" #: ../../enterprise/include/functions_policies.php:3741 -#: ../../godmode/agentes/configurar_agente.php:552 -#: ../../godmode/agentes/configurar_agente.php:769 +#: ../../godmode/agentes/configurar_agente.php:573 +#: ../../godmode/agentes/configurar_agente.php:790 msgid "SNMP Interfaces wizard" msgstr "SNMP インタフェースウィザード" #: ../../enterprise/include/functions_policies.php:3744 -#: ../../godmode/agentes/configurar_agente.php:562 -#: ../../godmode/agentes/configurar_agente.php:775 +#: ../../godmode/agentes/configurar_agente.php:583 +#: ../../godmode/agentes/configurar_agente.php:796 msgid "WMI Wizard" msgstr "WMIウィザード" @@ -29242,8 +30014,8 @@ msgid "" "This extension makes registration of policies enterprise.
You can get more " "policies in our Public Resource Library" msgstr "" -"この拡張は、Enterprise ポリシーを登録します。
追加のポリシーは我々のリ" -"ソースライブラリから入手できます。" +"この拡張は、Enterprise ポリシーを登録します。
追加のポリシーは我々のリソースライブラリから入手できます。" #: ../../enterprise/include/functions_policies.php:4468 #: ../../extensions/resource_registration.php:1133 @@ -29253,11 +30025,11 @@ msgstr "グループフィルター: " #: ../../enterprise/include/functions_policies.php:4493 #: ../../extensions/resource_registration.php:1150 msgid "" -"Error uploading resource. Check if the selected file is a valid resource template in ." -"ptr format" +"Error uploading resource. Check if the selected file is a valid resource " +"template in .ptr format" msgstr "" -"リソースのアップロード中にエラーが発生しました。 選択したファイルが .ptr 形式の有効な" -"リソーステンプレートであるかどうかを確認してください" +"リソースのアップロード中にエラーが発生しました。 選択したファイルが .ptr 形式の" +"有効なリソーステンプレートであるかどうかを確認してください" #: ../../enterprise/include/functions_policies.php:4519 msgid "Policy does not exist" @@ -29290,19 +30062,19 @@ msgid "Empty OS" msgstr "OS が空です" #: ../../enterprise/include/functions_local_components.php:354 -#: ../../include/functions_alerts.php:1124 +#: ../../include/functions_alerts.php:1109 #: ../../include/functions_network_components.php:590 msgid "Copy of" msgstr "複製" -#: ../../enterprise/include/functions_ux_console.php:507 -#: ../../enterprise/operation/agentes/tag_view.php:873 -#: ../../enterprise/operation/agentes/tag_view.php:883 +#: ../../enterprise/include/functions_ux_console.php:517 +#: ../../enterprise/operation/agentes/tag_view.php:901 +#: ../../enterprise/operation/agentes/tag_view.php:911 #: ../../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:352 -#: ../../include/functions_ui.php:6295 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:337 +#: ../../include/functions_ui.php:6322 msgid "Snapshot view" msgstr "スナップショット表示" @@ -29314,40 +30086,17 @@ msgstr "モジュールのインベントリデータ取得に失敗しました #: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 #: ../../godmode/reporting/visual_console_builder.wizard.php:538 #: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799 -#: ../../mobile/operation/module_graph.php:477 ../../mobile/operation/events.php:1150 -#: ../../mobile/operation/tactical.php:239 +#: ../../mobile/operation/module_graph.php:477 +#: ../../mobile/operation/events.php:1150 ../../mobile/operation/tactical.php:239 msgid "Loading..." msgstr "読み込み中..." -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 -#: ../../enterprise/operation/agentes/manage_transmap.php:56 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:332 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:417 -msgid "Transactions List" -msgstr "トランザクション一覧" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 -#: ../../enterprise/operation/agentes/manage_transmap.php:96 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:139 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:441 -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:70 -#: ../../include/functions_events.php:2462 +#: ../../include/functions_events.php:2546 msgid "V." msgstr "V." @@ -29375,7 +30124,8 @@ msgstr "アラートテーブル切り替え" #: ../../enterprise/operation/agentes/policy_view.php:257 #: ../../godmode/alerts/alert_list.list.php:151 -#: ../../include/ajax/alert_list.ajax.php:286 ../../include/ajax/alert_list.ajax.php:311 +#: ../../include/ajax/alert_list.ajax.php:286 +#: ../../include/ajax/alert_list.ajax.php:311 #: ../../operation/agentes/alerts_status.functions.php:124 msgid "Standby" msgstr "スタンバイ" @@ -29385,19 +30135,21 @@ msgid "Show Alert" msgstr "アラート表示" #: ../../enterprise/operation/agentes/policy_view.php:345 -#: ../../godmode/alerts/alert_list.list.php:573 ../../godmode/alerts/alert_view.php:105 -#: ../../mobile/operation/alerts.php:324 ../../include/functions_ui.php:1253 +#: ../../godmode/alerts/alert_list.list.php:573 +#: ../../godmode/alerts/alert_view.php:105 ../../mobile/operation/alerts.php:324 +#: ../../include/functions_ui.php:1253 #: ../../include/class/AgentsAlerts.class.php:937 msgid "time(s)" msgstr "回" #: ../../enterprise/operation/agentes/policy_view.php:351 -#: ../../godmode/alerts/alert_list.list.php:579 ../../godmode/alerts/alert_view.php:111 -#: ../../mobile/operation/alerts.php:330 ../../include/functions_agents.php:2944 +#: ../../godmode/alerts/alert_list.list.php:579 +#: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:330 +#: ../../include/functions_agents.php:2944 #: ../../include/functions_agents.php:2955 ../../include/functions_ui.php:1259 #: ../../include/class/AgentsAlerts.class.php:943 -#: ../../include/functions_reporting.php:12561 -#: ../../operation/snmpconsole/snmp_view.php:1020 +#: ../../include/class/SnmpConsole.class.php:877 +#: ../../include/functions_reporting.php:12876 msgid "Alert not fired" msgstr "未通知アラート" @@ -29431,117 +30183,54 @@ msgid "(Adopted) (Unlinked)" msgstr "(適用) (未リンク)" #: ../../enterprise/operation/agentes/policy_view.php:457 -#: ../../godmode/agentes/module_manager.php:1111 +#: ../../godmode/agentes/module_manager.php:1147 msgid "Non initialized module" msgstr "未初期化モジュール" #: ../../enterprise/operation/agentes/policy_view.php:485 #: ../../enterprise/operation/agentes/policy_view.php:490 #: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/operation/agentes/transactional_map.php:210 -#: ../../enterprise/operation/agentes/tag_view.php:989 -#: ../../enterprise/operation/agentes/tag_view.php:995 -#: ../../enterprise/operation/agentes/tag_view.php:1005 -#: ../../enterprise/operation/agentes/tag_view.php:1011 -#: ../../enterprise/operation/agentes/tag_view.php:1021 -#: ../../enterprise/operation/agentes/tag_view.php:1027 +#: ../../enterprise/operation/agentes/tag_view.php:1017 +#: ../../enterprise/operation/agentes/tag_view.php:1023 +#: ../../enterprise/operation/agentes/tag_view.php:1033 +#: ../../enterprise/operation/agentes/tag_view.php:1039 +#: ../../enterprise/operation/agentes/tag_view.php:1049 +#: ../../enterprise/operation/agentes/tag_view.php:1055 #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 #: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 -#: ../../include/functions_modules.php:2889 ../../include/functions_modules.php:2893 +#: ../../include/functions_modules.php:2889 +#: ../../include/functions_modules.php:2893 #: ../../include/functions_modules.php:2897 -#: ../../operation/agentes/status_monitor.php:1662 -#: ../../operation/agentes/status_monitor.php:1668 -#: ../../operation/agentes/status_monitor.php:1678 -#: ../../operation/agentes/status_monitor.php:1684 -#: ../../operation/agentes/status_monitor.php:1694 -#: ../../operation/agentes/status_monitor.php:1700 -#: ../../operation/agentes/pandora_networkmap.view.php:1780 -#: ../../operation/agentes/pandora_networkmap.view.php:1785 -#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/agentes/status_monitor.php:1695 +#: ../../operation/agentes/status_monitor.php:1701 +#: ../../operation/agentes/status_monitor.php:1711 +#: ../../operation/agentes/status_monitor.php:1717 +#: ../../operation/agentes/status_monitor.php:1727 +#: ../../operation/agentes/status_monitor.php:1733 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149 #: ../../operation/search_modules.php:157 msgid "Last status" msgstr "最新の状態" -#: ../../enterprise/operation/agentes/transactional_map.php:61 -msgid "List of transactions" -msgstr "トランザクション一覧" - -#: ../../enterprise/operation/agentes/transactional_map.php:74 -#: ../../enterprise/operation/agentes/manage_transmap.php:176 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:173 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:353 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:475 -msgid "Transactional Map" -msgstr "トランザクションマップ" - -#: ../../enterprise/operation/agentes/transactional_map.php:149 -msgid "Name can't be empty" -msgstr "名前は空にできません" - -#: ../../enterprise/operation/agentes/transactional_map.php:206 -msgid "Transaction name" -msgstr "トランザクション名" - -#: ../../enterprise/operation/agentes/transactional_map.php:209 -msgid "Running status" -msgstr "実行状態" - -#: ../../enterprise/operation/agentes/transactional_map.php:211 -msgid "Time spent" -msgstr "経過時間" - -#: ../../enterprise/operation/agentes/transactional_map.php:212 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:611 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367 -msgid "Updated at" -msgstr "更新日時" - -#: ../../enterprise/operation/agentes/transactional_map.php:254 -msgid "Stopped" -msgstr "停止" - -#: ../../enterprise/operation/agentes/transactional_map.php:260 -msgid "Starting" -msgstr "開始中" - -#: ../../enterprise/operation/agentes/transactional_map.php:260 -msgid "Stopping" -msgstr "停止中" - -#: ../../enterprise/operation/agentes/transactional_map.php:439 -msgid "Edit phases" -msgstr "フェーズ編集" - -#: ../../enterprise/operation/agentes/transactional_map.php:461 -msgid "Go to `Status` module" -msgstr "モジュールの状態へ行く" - -#: ../../enterprise/operation/agentes/transactional_map.php:492 -msgid "Error in phases section" -msgstr "フェーズセクションエラー" - -#: ../../enterprise/operation/agentes/transactional_map.php:512 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:340 -msgid "Create Transaction" -msgstr "トランザクション作成" - #: ../../enterprise/operation/agentes/tag_view.php:41 -#: ../../enterprise/operation/menu.php:191 +#: ../../enterprise/operation/menu.php:161 msgid "Tag view" msgstr "タグ表示" #: ../../enterprise/operation/agentes/tag_view.php:54 #: ../../extensions/agents_modules.php:478 ../../extensions/module_groups.php:264 #: ../../extensions/realtime_graphs.php:71 -#: ../../include/class/AgentsAlerts.class.php:742 ../../operation/heatmap.php:137 +#: ../../include/class/AgentsAlerts.class.php:742 ../../operation/heatmap.php:141 #: ../../operation/agentes/alerts_status.php:203 #: ../../operation/agentes/estado_agente.php:228 #: ../../operation/agentes/interface_view.php:76 #: ../../operation/agentes/status_monitor.php:108 -#: ../../operation/agentes/group_view.php:102 ../../operation/agentes/tactical.php:82 -#: ../../operation/menu.php:39 +#: ../../operation/agentes/group_view.php:102 +#: ../../operation/agentes/tactical.php:83 ../../operation/menu.php:39 msgid "Views" msgstr "表示" @@ -29604,7 +30293,7 @@ msgstr "ウェブサーバモジュール" #: ../../godmode/agentes/status_monitor_custom_fields.php:89 #: ../../godmode/agentes/status_monitor_custom_fields.php:146 #: ../../operation/agentes/status_monitor.php:646 -#: ../../operation/agentes/status_monitor.php:1323 +#: ../../operation/agentes/status_monitor.php:1336 msgid "Server type" msgstr "サーバの種類" @@ -29616,6 +30305,7 @@ msgstr "有効のもののみ" #: ../../enterprise/operation/agentes/tag_view.php:306 #: ../../godmode/agentes/modificar_agente.php:336 +#: ../../include/class/SatelliteAgent.class.php:153 #: ../../operation/agentes/status_monitor.php:653 msgid "Only disabled" msgstr "無効のもののみ" @@ -29639,136 +30329,125 @@ msgstr "データのタイプ" msgid "Agent custom fields" msgstr "エージェントカスタムフィールド" +#: ../../enterprise/operation/agentes/tag_view.php:578 +#: ../../enterprise/operation/services/services.treeview_services.php:255 +#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 +#: ../../godmode/groups/group_list.php:1039 +#: ../../include/functions_inventory.php:301 +#: ../../include/class/Heatmap.class.php:820 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 +#: ../../operation/tree.php:415 ../../operation/tree.php:446 +#: ../../operation/network/network_report.php:317 +msgid "No data found" +msgstr "データがありません" + +#: ../../enterprise/operation/agentes/tag_view.php:647 +#: ../../operation/agentes/estado_agente.php:894 +msgid "Remote config" +msgstr "リモート設定" + #: ../../enterprise/operation/agentes/tag_view.php:682 #: ../../enterprise/operation/services/services.service.php:130 #: ../../enterprise/operation/services/services.list.php:509 #: ../../extensions/realtime_graphs.php:161 #: ../../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:2908 +#: ../../include/functions_visual_map_editor.php:58 +#: ../../include/ajax/module.php:996 +#: ../../include/class/NetworkMap.class.php:3041 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 -#: ../../include/functions_events.php:4198 -#: ../../operation/agentes/status_monitor.php:1346 ../../operation/search_modules.php:37 +#: ../../include/functions_events.php:4311 +#: ../../operation/agentes/status_monitor.php:1359 +#: ../../operation/search_modules.php:37 msgid "Graph" msgstr "グラフ" #: ../../enterprise/operation/agentes/tag_view.php:683 #: ../../godmode/agentes/status_monitor_custom_fields.php:109 #: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/agentes/module_manager.php:871 -#: ../../operation/agentes/status_monitor.php:1351 +#: ../../godmode/agentes/module_manager.php:907 +#: ../../operation/agentes/status_monitor.php:1364 msgid "Warn" msgstr "警告" -#: ../../enterprise/operation/agentes/tag_view.php:935 +#: ../../enterprise/operation/agentes/tag_view.php:963 #: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 -#: ../../include/functions_modules.php:2874 ../../include/functions_modules.php:4114 -#: ../../include/functions_events.php:70 ../../operation/agentes/status_monitor.php:1572 -#: ../../operation/search_modules.php:108 ../../operation/events/events.php:656 +#: ../../include/functions_modules.php:2874 +#: ../../include/functions_modules.php:4211 ../../include/functions_events.php:70 +#: ../../operation/agentes/status_monitor.php:1585 +#: ../../operation/search_modules.php:108 ../../operation/events/events.php:716 msgid "NOT INIT" msgstr "未初期化" -#: ../../enterprise/operation/agentes/tag_view.php:1075 -#: ../../include/functions_reporting.php:12683 -#: ../../include/functions_reporting.php:12692 +#: ../../enterprise/operation/agentes/tag_view.php:1103 +#: ../../include/functions_reporting.php:12998 +#: ../../include/functions_reporting.php:13007 #, php-format msgid "%d Total modules" msgstr "全モジュール数 %d" -#: ../../enterprise/operation/agentes/tag_view.php:1076 -#: ../../include/functions_reporting.php:12684 +#: ../../enterprise/operation/agentes/tag_view.php:1104 +#: ../../include/functions_reporting.php:12999 #, php-format msgid "%d Modules in normal status" msgstr "%d モジュールが正常状態" -#: ../../enterprise/operation/agentes/tag_view.php:1077 -#: ../../include/functions_reporting.php:12685 +#: ../../enterprise/operation/agentes/tag_view.php:1105 +#: ../../include/functions_reporting.php:13000 #, php-format msgid "%d Modules in critical status" msgstr "%d モジュールが障害状態" -#: ../../enterprise/operation/agentes/tag_view.php:1078 -#: ../../include/functions_reporting.php:12686 +#: ../../enterprise/operation/agentes/tag_view.php:1106 +#: ../../include/functions_reporting.php:13001 #, php-format msgid "%d Modules in warning status" msgstr "%d モジュールが警告状態" -#: ../../enterprise/operation/agentes/tag_view.php:1079 -#: ../../include/functions_reporting.php:12687 +#: ../../enterprise/operation/agentes/tag_view.php:1107 +#: ../../include/functions_reporting.php:13002 #, php-format msgid "%d Modules in unknown status" msgstr "%d モジュールが不明状態" -#: ../../enterprise/operation/agentes/tag_view.php:1080 -#: ../../include/functions_reporting.php:12688 +#: ../../enterprise/operation/agentes/tag_view.php:1108 +#: ../../include/functions_reporting.php:13003 #, php-format msgid "%d Modules in not init status" msgstr "%d モジュールが未初期化状態" -#: ../../enterprise/operation/agentes/manage_transmap.php:84 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:127 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:429 -msgid "Edit main data" -msgstr "メインデータ編集" - -#: ../../enterprise/operation/agentes/manage_transmap.php:109 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:152 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:454 -msgid "View Transaction" -msgstr "トランザクション表示" - -#: ../../enterprise/operation/agentes/manage_transmap.php:153 -msgid "Return to windowed mode" -msgstr "ウインドウモードへ戻る" - -#: ../../enterprise/operation/agentes/manage_transmap.php:182 -msgid "Transaction not found" -msgstr "トランザクションが見つかりません" - -#: ../../enterprise/operation/agentes/manage_transmap.php:185 -msgid "Master lock file not found (No data to show)" -msgstr "マスターロックファイルが見つかりません (表示するデータがありません)" - -#: ../../enterprise/operation/agentes/manage_transmap.php:188 -msgid "Transaction is stopped" -msgstr "トランザクションが停止しました" - -#: ../../enterprise/operation/agentes/manage_transmap.php:191 -msgid "Error, please check the transaction phases" -msgstr "エラー、トランザクションフェーズをチェックしてください" - #: ../../enterprise/operation/agentes/ver_agente.php:72 -#: ../../operation/agentes/ver_agente.php:1017 +#: ../../operation/agentes/ver_agente.php:1035 msgid "Main IP" msgstr "代表 IP" #: ../../enterprise/operation/agentes/ver_agente.php:78 -#: ../../include/functions_events.php:4125 ../../operation/agentes/ver_agente.php:1029 +#: ../../include/functions_events.php:4238 +#: ../../operation/agentes/ver_agente.php:1047 msgid "Last remote contact" msgstr "最終リモート接続" #: ../../enterprise/operation/agentes/ver_agente.php:122 -#: ../../operation/agentes/ver_agente.php:1074 +#: ../../operation/agentes/ver_agente.php:1092 msgid "Monitors down" msgstr "停止中のモニタ項目" #: ../../enterprise/operation/agentes/ver_agente.php:164 #: ../../mobile/operation/groups.php:174 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:600 -#: ../../operation/agentes/ver_agente.php:1115 +#: ../../operation/agentes/ver_agente.php:1133 msgid "Alerts fired" msgstr "発生中アラート" -#: ../../enterprise/operation/agentes/ver_agente.php:258 +#: ../../enterprise/operation/agentes/ver_agente.php:235 msgid "URL Route Analyzer" msgstr "URL ルートアナライザー" -#: ../../enterprise/operation/agentes/ver_agente.php:274 +#: ../../enterprise/operation/agentes/ver_agente.php:251 msgid "UX Console" msgstr "UX コンソール" -#: ../../enterprise/operation/agentes/ver_agente.php:290 +#: ../../enterprise/operation/agentes/ver_agente.php:267 msgid "WUX Console" msgstr "WUX コンソール" @@ -29776,51 +30455,6 @@ msgstr "WUX コンソール" msgid "No collection assigned to this agent" msgstr "このエージェントに割り当てられたコレクションがありません" -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:63 -msgid "Please, reset the transaction" -msgstr "トランザクションをリセットしてください" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:102 -msgid "Successfully data updated" -msgstr "データを更新しました" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:103 -msgid "Could not be data updated" -msgstr "データを更新できませんでした" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:160 -msgid "Create Phase" -msgstr "フェーズ作成" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:185 -msgid "Index" -msgstr "目次" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:188 -msgid "Dependencies" -msgstr "依存関係" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:189 -msgid "Enables" -msgstr "有効" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:254 -msgid "Not valid dependencies field" -msgstr "正しい依存フィールドではありません" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 -msgid "Not valid enables field" -msgstr "正しい有効フィールドではありません" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:367 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:493 -msgid "Loop interval" -msgstr "ループ間隔" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:462 -msgid "Transactional Map - Edit Transaction" -msgstr "トランザクションマップ - トランザクション編集" - #: ../../enterprise/operation/agentes/url_route_analyzer.php:39 msgid "No agent selected" msgstr "エージェント選択なし" @@ -29829,15 +30463,6 @@ msgstr "エージェント選択なし" msgid "Route not found" msgstr "ルートが見つかりません" -#: ../../enterprise/operation/agentes/agent_inventory.php:73 -msgid "This agent has not modules inventory" -msgstr "このエージェントにはインベントリモジュールがありません" - -#: ../../enterprise/operation/agentes/agent_inventory.php:193 -#: ../../enterprise/operation/agentes/agent_inventory.php:194 -msgid "Diff view" -msgstr "差分表示" - #: ../../enterprise/operation/agentes/ux_console_view.php:43 msgid "No ux transaction selected." msgstr "UX トランザクションが選択されていません。" @@ -29847,12 +30472,12 @@ msgid "No ux transactions found." msgstr "UX トランザクションが見つかりません。" #: ../../enterprise/operation/agentes/ux_console_view.php:133 -#: ../../enterprise/operation/agentes/wux_console_view.php:261 +#: ../../enterprise/operation/agentes/wux_console_view.php:246 msgid "Transaction" msgstr "トランザクション" #: ../../enterprise/operation/agentes/ux_console_view.php:142 -#: ../../enterprise/operation/agentes/wux_console_view.php:286 +#: ../../enterprise/operation/agentes/wux_console_view.php:271 msgid "Show transaction" msgstr "トランザクション表示" @@ -29861,12 +30486,12 @@ msgid "Execution results for transaction " msgstr "トランザクションの実行結果 " #: ../../enterprise/operation/agentes/ux_console_view.php:266 -#: ../../enterprise/operation/agentes/wux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:317 msgid "Global results" msgstr "全体の結果" -#: ../../enterprise/operation/agentes/ux_console_view.php:332 -#: ../../enterprise/operation/agentes/wux_console_view.php:570 +#: ../../enterprise/operation/agentes/ux_console_view.php:339 +#: ../../enterprise/operation/agentes/wux_console_view.php:545 msgid "Transaction history" msgstr "トランザクション履歴" @@ -29880,108 +30505,118 @@ msgstr "WUX トランザクションが選択されていません。" msgid "Phase modules not found" msgstr "フェーズモジュールがありません" -#: ../../enterprise/operation/agentes/wux_console_view.php:224 +#: ../../enterprise/operation/agentes/wux_console_view.php:209 msgid "Selected transaction has no stats" msgstr "選択したトランザクションには状態がありません" -#: ../../enterprise/operation/agentes/wux_console_view.php:242 +#: ../../enterprise/operation/agentes/wux_console_view.php:227 msgid "No WUX transactions found." msgstr "WUX トランザクションが見つかりません。" -#: ../../enterprise/operation/agentes/wux_console_view.php:357 +#: ../../enterprise/operation/agentes/wux_console_view.php:342 msgid "Failed: " msgstr "失敗: " -#: ../../enterprise/operation/agentes/wux_console_view.php:357 -#: ../../enterprise/operation/agentes/wux_console_view.php:378 -#: ../../godmode/setup/performance.php:188 ../../godmode/setup/performance.php:243 -#: ../../general/logon_ok.php:193 +#: ../../enterprise/operation/agentes/wux_console_view.php:342 +#: ../../enterprise/operation/agentes/wux_console_view.php:363 +#: ../../godmode/setup/performance.php:188 +#: ../../godmode/setup/performance.php:243 ../../general/logon_ok.php:193 msgid "ago" msgstr "前" -#: ../../enterprise/operation/agentes/wux_console_view.php:369 -#: ../../enterprise/operation/agentes/wux_console_view.php:373 +#: ../../enterprise/operation/agentes/wux_console_view.php:354 +#: ../../enterprise/operation/agentes/wux_console_view.php:358 #: ../../include/functions_alerts.php:681 msgid "Unknown status" msgstr "不明状態" -#: ../../enterprise/operation/agentes/wux_console_view.php:378 +#: ../../enterprise/operation/agentes/wux_console_view.php:363 msgid "Success: " msgstr "成功: " -#: ../../enterprise/operation/agentes/wux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:369 msgid "Total transaction time: " msgstr "全トランザクション時間: " -#: ../../enterprise/operation/agentes/wux_console_view.php:398 +#: ../../enterprise/operation/agentes/wux_console_view.php:383 #, php-format msgid "Execution results for transaction %s" msgstr "トランザクション %s の実行結果" -#: ../../enterprise/operation/agentes/wux_console_view.php:527 +#: ../../enterprise/operation/agentes/wux_console_view.php:503 msgid "View all stats" msgstr "全状態表示" -#: ../../enterprise/operation/agentes/wux_console_view.php:595 -#: ../../operation/snmpconsole/snmp_view.php:1061 -#: ../../operation/snmpconsole/snmp_view.php:1062 ../../operation/menu.php:241 -#: ../../operation/menu.php:243 ../../operation/events/events.php:500 -#: ../../operation/events/events.php:765 +#: ../../enterprise/operation/agentes/wux_console_view.php:570 +#: ../../include/class/SnmpConsole.class.php:924 +#: ../../include/class/SnmpConsole.class.php:925 ../../operation/menu.php:254 +#: ../../operation/menu.php:256 ../../operation/events/events.php:560 +#: ../../operation/events/events.php:825 msgid "Show more" msgstr "詳細を表示する" -#: ../../enterprise/operation/agentes/wux_console_view.php:611 +#: ../../enterprise/operation/agentes/wux_console_view.php:586 msgid "Invalid transaction." msgstr "不正なトランザクション。" #: ../../enterprise/operation/log/elasticsearch_interface.php:39 -#: ../../enterprise/operation/log/log_viewer.php:391 -#: ../../enterprise/operation/menu.php:211 +#: ../../enterprise/operation/log/log_viewer.php:392 +#: ../../enterprise/operation/menu.php:181 msgid "Elasticsearch Interface" msgstr "Elasticsearch インタフェース" #: ../../enterprise/operation/log/elasticsearch_interface.php:49 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" +"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 "" "これは、WEBコンソールから直接 Elasticsearch を操作するための画面です。\n" -"何をしているのか良くわからない場合、Elasticsearch を壊す可能性があることに注意してくだ" -"さい。\n" -"この画面は、Elasticsearch の知識を持つユーザのみが使用することを目的としています。" +"何をしているのか良くわからない場合、Elasticsearch を壊す可能性があることに注意" +"してください。\n" +"この画面は、Elasticsearch の知識を持つユーザのみが使用することを目的としていま" +"す。" -#: ../../enterprise/operation/log/log_viewer.php:405 -#: ../../enterprise/operation/log/log_viewer.php:424 -#: ../../enterprise/operation/log/log_viewer.php:435 +#: ../../enterprise/operation/log/log_viewer.php:406 +#: ../../enterprise/operation/log/log_viewer.php:425 +#: ../../enterprise/operation/log/log_viewer.php:436 msgid "Log sources" msgstr "ログソース" -#: ../../enterprise/operation/log/log_viewer.php:478 +#: ../../enterprise/operation/log/log_viewer.php:459 +#: ../../godmode/modules/manage_inventory_modules.php:72 +#: ../../godmode/modules/manage_inventory_modules_form.php:48 +#: ../../godmode/netflow/nf_edit.php:47 +#: ../../operation/netflow/nf_live_view.php:141 +msgid "Not supported in Windows systems" +msgstr "Windows システムでは対応していません" + +#: ../../enterprise/operation/log/log_viewer.php:479 msgid "All words" msgstr "全単語" -#: ../../enterprise/operation/log/log_viewer.php:479 +#: ../../enterprise/operation/log/log_viewer.php:480 msgid "Any word" msgstr "任意の単語" -#: ../../enterprise/operation/log/log_viewer.php:482 +#: ../../enterprise/operation/log/log_viewer.php:483 msgid "Search mode" msgstr "検索モード" -#: ../../enterprise/operation/log/log_viewer.php:529 +#: ../../enterprise/operation/log/log_viewer.php:530 msgid "Full context" msgstr "全文章" -#: ../../enterprise/operation/log/log_viewer.php:552 +#: ../../enterprise/operation/log/log_viewer.php:553 #: ../../operation/network/network_report.php:102 #: ../../operation/network/network_usage_map.php:75 #: ../../operation/netflow/nf_live_view.php:271 msgid "Start date" msgstr "開始日時" -#: ../../enterprise/operation/log/log_viewer.php:579 +#: ../../enterprise/operation/log/log_viewer.php:580 #: ../../operation/agentes/exportdata.php:347 #: ../../operation/network/network_report.php:126 #: ../../operation/network/network_usage_map.php:99 @@ -29989,128 +30624,102 @@ msgstr "開始日時" msgid "End date" msgstr "終了日時" -#: ../../enterprise/operation/log/log_viewer.php:667 #: ../../enterprise/operation/log/log_viewer.php:668 +#: ../../enterprise/operation/log/log_viewer.php:669 msgid "Edit sources" msgstr "ソース編集" -#: ../../enterprise/operation/log/log_viewer.php:711 +#: ../../enterprise/operation/log/log_viewer.php:712 msgid "Show log entries" msgstr "ログエントリ表示" -#: ../../enterprise/operation/log/log_viewer.php:712 +#: ../../enterprise/operation/log/log_viewer.php:713 msgid "Graph log results" msgstr "ログ結果グラフ表示" -#: ../../enterprise/operation/log/log_viewer.php:714 +#: ../../enterprise/operation/log/log_viewer.php:715 msgid "Display mode" msgstr "表示モード" -#: ../../enterprise/operation/log/log_viewer.php:727 +#: ../../enterprise/operation/log/log_viewer.php:728 msgid "Use capture model" msgstr "キャプチャモデルの利用" -#: ../../enterprise/operation/log/log_viewer.php:757 +#: ../../enterprise/operation/log/log_viewer.php:758 msgid "Create new model" msgstr "新規モデル作成" -#: ../../enterprise/operation/log/log_viewer.php:761 +#: ../../enterprise/operation/log/log_viewer.php:762 #: ../../godmode/reporting/graph_builder.main.php:220 msgid "Horizontal bars" msgstr "水平バー" -#: ../../enterprise/operation/log/log_viewer.php:762 +#: ../../enterprise/operation/log/log_viewer.php:763 #: ../../godmode/reporting/graph_builder.main.php:221 msgid "Vertical bars" msgstr "垂直バー" -#: ../../enterprise/operation/log/log_viewer.php:764 +#: ../../enterprise/operation/log/log_viewer.php:765 msgid "Graph type" msgstr "グラフタイプ" -#: ../../enterprise/operation/log/log_viewer.php:779 +#: ../../enterprise/operation/log/log_viewer.php:780 msgid "Advanced options " msgstr "高度なオプション " -#: ../../enterprise/operation/log/log_viewer.php:899 +#: ../../enterprise/operation/log/log_viewer.php:900 msgid "" -"The maximum limit of rows has been exceeded. Please enter an email to send the csv " -"file" -msgstr "行の上限を超えました。 CSV ファイルを送信するメールアドレスを入力してください" +"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:901 +#: ../../enterprise/operation/log/log_viewer.php:902 msgid "e-mail address" msgstr "メールアドレス" -#: ../../enterprise/operation/log/log_viewer.php:904 +#: ../../enterprise/operation/log/log_viewer.php:905 msgid "" -"WARNING: If your email size exceeds your mail attachment size limit, the file will be " -"saved in the local attachment folder." +"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:1022 +#: ../../enterprise/operation/log/log_viewer.php:1023 msgid "The start date cannot be greater than the end date" msgstr "開始日は終了日より後にできません" -#: ../../enterprise/operation/log/log_viewer.php:1450 +#: ../../enterprise/operation/log/log_viewer.php:1451 msgid "Add new capture model" msgstr "新たなキャプチャモデル追加" -#: ../../enterprise/operation/log/log_viewer.php:1453 +#: ../../enterprise/operation/log/log_viewer.php:1454 msgid "Edit capture model" msgstr "キャプチャモデル編集" -#: ../../enterprise/operation/log/log_viewer.php:1536 +#: ../../enterprise/operation/log/log_viewer.php:1537 msgid "Error create new model" msgstr "新規モデル作成エラー" -#: ../../enterprise/operation/log/log_viewer.php:1563 +#: ../../enterprise/operation/log/log_viewer.php:1564 msgid "Error delete model" msgstr "モデル削除エラー" -#: ../../enterprise/operation/log/log_viewer.php:1609 +#: ../../enterprise/operation/log/log_viewer.php:1610 msgid "Error update model" msgstr "モデル更新エラー" -#: ../../enterprise/operation/menu.php:32 +#: ../../enterprise/operation/menu.php:19 ../../operation/menu.php:155 msgid "Cluster View" msgstr "クラスタ表示" -#: ../../enterprise/operation/menu.php:61 ../../operation/agentes/ver_agente.php:1683 -#: ../../operation/agentes/ver_agente.php:1882 +#: ../../enterprise/operation/menu.php:48 +#: ../../operation/agentes/ver_agente.php:1713 +#: ../../operation/agentes/ver_agente.php:1912 msgid "SAP view" msgstr "SAP 表示" -#: ../../enterprise/operation/menu.php:143 -msgid "Transactional map" -msgstr "トランザクションマップ" - -#: ../../enterprise/operation/inventory/inventory.php:203 -#: ../../include/chart_generator.php:125 ../../operation/agentes/stat_win.php:51 -#: ../../operation/agentes/stat_win.php:176 ../../operation/agentes/realtime_win.php:51 -#: ../../operation/agentes/interface_traffic_graph_win.php:54 -msgid "There was a problem connecting with the node" -msgstr "ノード接続で問題が発生しました" - -#: ../../enterprise/operation/inventory/inventory.php:289 -msgid "You must select at least one filter." -msgstr "少なくとも一つのフィルタを選択する必要があります。" - -#: ../../enterprise/operation/inventory/inventory.php:434 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2190 -msgid "Last" -msgstr "最新" - -#: ../../enterprise/operation/inventory/inventory.php:438 -msgid "Order by agent" -msgstr "エージェントで並べ替え" - -#: ../../enterprise/operation/inventory/inventory.php:482 -msgid "Export this list to CSV" -msgstr "この一覧を CSV へエクスポートする" - #: ../../enterprise/operation/services/services.service.php:63 #: ../../enterprise/operation/services/services.service_map.php:78 #: ../../include/lib/Dashboard/Widgets/service_map.php:192 @@ -30245,11 +30854,11 @@ msgstr "選択中を追加" #: ../../enterprise/operation/services/massive/services.create.php:1168 msgid "" -"Weights configured are common for every item added to the service, if you want to " -"customize them, please edit the service." +"Weights configured are common for every item added to the service, if you want " +"to customize them, please edit the service." msgstr "" -"設定されたウエイトは、サービスに追加されるすべてのアイテムに共通です。それらをカスタマ" -"イズする場合は、サービスを編集してください。" +"設定されたウエイトは、サービスに追加されるすべてのアイテムに共通です。それらを" +"カスタマイズする場合は、サービスを編集してください。" #: ../../enterprise/operation/services/massive/services.create.php:1172 #: ../../enterprise/operation/services/massive/service.create.elements.php:528 @@ -30261,7 +30870,7 @@ msgstr "サービス要素概要" #: ../../enterprise/operation/services/massive/service.create.elements.php:531 #: ../../enterprise/operation/services/massive/service.edit.elements.php:294 #: ../../include/functions_visual_map_editor.php:1148 -#: ../../include/rest-api/models/VisualConsole/Item.php:2522 +#: ../../include/rest-api/models/VisualConsole/Item.php:2528 msgid "Critical weight" msgstr "障害ウエイト" @@ -30269,7 +30878,7 @@ msgstr "障害ウエイト" #: ../../enterprise/operation/services/massive/service.create.elements.php:544 #: ../../enterprise/operation/services/massive/service.edit.elements.php:307 #: ../../include/functions_visual_map_editor.php:1174 -#: ../../include/rest-api/models/VisualConsole/Item.php:2536 +#: ../../include/rest-api/models/VisualConsole/Item.php:2542 msgid "Warning weight" msgstr "警告ウエイト" @@ -30366,7 +30975,7 @@ msgstr "サービス要素の追加に失敗しました: " #: ../../enterprise/operation/services/massive/service.create.elements.php:247 #: ../../enterprise/operation/services/massive/service.create.elements.php:638 -#: ../../include/functions_notifications.php:928 +#: ../../include/functions_notifications.php:927 msgid "Add elements" msgstr "要素追加" @@ -30386,11 +30995,11 @@ msgstr "スマートサービスウエイトは自動的に計算されます。 #: ../../enterprise/operation/services/massive/service.create.elements.php:523 #: ../../enterprise/operation/services/massive/service.edit.elements.php:286 msgid "" -"Weights configured are common for every item added to the service, if you want to " -"customize them, please edit each element at service element editor." +"Weights configured are common for every item added to the service, if you want " +"to customize them, please edit each element at service element editor." msgstr "" -"設定されたウエイトは、サービスに追加されたすべてのアイテムに共通です。それらをカスタマ" -"イズする場合は、サービス要素エディタで各要素を編集してください。" +"設定されたウエイトは、サービスに追加されたすべてのアイテムに共通です。それらを" +"カスタマイズする場合は、サービス要素エディタで各要素を編集してください。" #: ../../enterprise/operation/services/massive/service.edit.elements.php:134 msgid "Failed to process updating elements in services: " @@ -30420,8 +31029,7 @@ msgstr "サンバースト表示" #: ../../enterprise/operation/services/services.service_map.php:139 #: ../../extensions/agents_modules.php:947 ../../extensions/module_groups.php:391 #: ../../godmode/snmpconsole/snmp_alert.php:1518 -#: ../../include/functions_reporting_html.php:2183 -#: ../../operation/snmpconsole/snmp_view.php:1272 +#: ../../include/functions_reporting_html.php:2192 msgid "Legend" msgstr "凡例" @@ -30452,18 +31060,18 @@ msgid "No services defined." msgstr "サービスが定義されていません" #: ../../enterprise/operation/services/services.treeview_services.php:189 -#: ../../enterprise/operation/services/services.list.php:719 +#: ../../enterprise/operation/services/services.list.php:721 #: ../../enterprise/operation/services/services.table_services.php:450 msgid "Create Service" msgstr "サービスの作成" #: ../../enterprise/operation/services/services.treeview_services.php:256 -#: ../../godmode/groups/group_list.php:1035 +#: ../../godmode/groups/group_list.php:1040 msgid "Found groups" msgstr "見つかったグループ" #: ../../enterprise/operation/services/services.treeview_services.php:350 -#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2055 +#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2088 #: ../../operation/agentes/estado_monitores.php:421 msgid "Module: " msgstr "モジュール: " @@ -30508,13 +31116,13 @@ msgid "Status graph" msgstr "状態グラフ" #: ../../enterprise/operation/services/services.list.php:625 -#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:279 -#: ../../operation/agentes/pandora_networkmap.php:800 +#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:283 +#: ../../operation/agentes/pandora_networkmap.php:810 msgid "Config" msgstr "設定" #: ../../enterprise/operation/services/services.table_services.php:45 -#: ../../godmode/groups/group_list.php:355 +#: ../../godmode/groups/group_list.php:360 msgid "Table view" msgstr "表形式表示" @@ -30523,7 +31131,8 @@ msgstr "表形式表示" msgid "Operation view" msgstr "操作画面" -#: ../../enterprise/tools/ipam/ipam.php:78 ../../enterprise/tools/ipam/ipam.php:356 +#: ../../enterprise/tools/ipam/ipam.php:78 +#: ../../enterprise/tools/ipam/ipam.php:356 msgid "Subnetworks calculator" msgstr "サブネット計算" @@ -30547,11 +31156,13 @@ msgstr "ネットワーク位置" msgid "Vlan statistics" msgstr "VLAN 統計" -#: ../../enterprise/tools/ipam/ipam.php:216 ../../enterprise/tools/ipam/ipam.php:381 +#: ../../enterprise/tools/ipam/ipam.php:216 +#: ../../enterprise/tools/ipam/ipam.php:381 msgid "Supernet config" msgstr "スーパーネット設定" -#: ../../enterprise/tools/ipam/ipam.php:237 ../../enterprise/tools/ipam/ipam.php:396 +#: ../../enterprise/tools/ipam/ipam.php:237 +#: ../../enterprise/tools/ipam/ipam.php:396 msgid "Supernet statistics" msgstr "スーパーネット統計" @@ -30605,7 +31216,7 @@ msgstr "スーパーネットツリー表示" msgid "Operation View" msgstr "操作画面" -#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:396 +#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:399 #: ../../godmode/setup/file_manager.php:56 msgid "Admin tools" msgstr "管理ツール" @@ -30758,7 +31369,8 @@ msgstr "スーパーネットへ追加されるネットワークがありませ #: ../../enterprise/tools/ipam/ipam_supernet_config.php:450 msgid "supernet name could not be added, please select supernet" -msgstr "スーパーネット名を追加できませんでした。スーパーネットを選択してください。" +msgstr "" +"スーパーネット名を追加できませんでした。スーパーネットを選択してください。" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:479 msgid "Could not be deleted, please select supernet and network" @@ -30784,7 +31396,7 @@ msgid "No items selected" msgstr "テーマが選択されていません" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:564 -#: ../../enterprise/tools/ipam/ipam_excel.php:134 +#: ../../enterprise/tools/ipam/ipam_excel.php:140 #: ../../enterprise/tools/ipam/ipam_calculator.php:84 msgid "Mask" msgstr "マスク" @@ -30873,7 +31485,7 @@ msgstr "スーパーネット削除" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1377 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:871 #: ../../include/functions_visual_map_editor.php:793 -#: ../../include/rest-api/models/VisualConsole/Items/Group.php:562 +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564 msgid "Show statistics" msgstr "統計表示" @@ -30932,7 +31544,7 @@ msgstr "ネットワーク削除" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410 #: ../../operation/agentes/interface_view.functions.php:93 #: ../../operation/agentes/interface_view.functions.php:131 -#: ../../operation/agentes/ver_agente.php:1410 +#: ../../operation/agentes/ver_agente.php:1428 msgid "Interfaces" msgstr "インタフェース" @@ -30958,8 +31570,10 @@ msgstr "VLAN 検索のためのアドレスを入力してください" #: ../../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:712 +#: ../../godmode/agentes/module_manager_editor_network.php:192 +#: ../../include/class/CredentialStore.class.php:1118 +#: ../../include/class/CredentialStore.class.php:1391 +#: ../../include/class/AgentWizard.class.php:795 msgid "SNMP community" msgstr "SNMPコミュニティ" @@ -30968,7 +31582,7 @@ msgid "privacy pass" msgstr "暗号化パスワード" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374 -#: ../../godmode/wizards/HostDevices.class.php:1248 +#: ../../godmode/wizards/HostDevices.class.php:1270 msgid "Context" msgstr "コンテキスト" @@ -31011,7 +31625,7 @@ msgid "Network name already exists in supernet %s (%s)" msgstr "スーパーネット %s (%s) にネットワーク名がすでに存在します" #: ../../enterprise/tools/ipam/ipam_action.php:445 -#: ../../operation/agentes/pandora_networkmap.view.php:1613 +#: ../../operation/agentes/pandora_networkmap.view.php:1656 msgid "Could not be updated." msgstr "更新できませんでした。" @@ -31022,7 +31636,7 @@ msgid "Successfully updated." msgstr "更新しました。" #: ../../enterprise/tools/ipam/ipam_action.php:456 -#: ../../include/functions_reporting.php:2867 +#: ../../include/functions_reporting.php:2998 msgid "No changes found." msgstr "変更が見つかりません。" @@ -31034,7 +31648,7 @@ msgstr "作成できませんでした。名前が空です。" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 #: ../../godmode/modules/manage_nc_groups.php:119 #: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:108 -#: ../../godmode/events/event_edit_filter.php:221 +#: ../../godmode/events/event_edit_filter.php:243 msgid "Not updated. Error updating data" msgstr "データの更新に失敗しました。" @@ -31059,7 +31673,7 @@ msgstr "場所がありません" msgid "There are no defined network locations" msgstr "定義済のネットワークの場所がありません" -#: ../../enterprise/tools/ipam/ipam_excel.php:135 +#: ../../enterprise/tools/ipam/ipam_excel.php:141 msgid "Subneting Mask" msgstr "サブネットマスク" @@ -31104,7 +31718,7 @@ msgid "leased expiration" msgstr "リース期限切れ" #: ../../enterprise/tools/ipam/ipam_ajax.php:473 -#: ../../include/class/NetworkMap.class.php:2910 +#: ../../include/class/NetworkMap.class.php:3043 msgid "MAC" msgstr "MAC" @@ -31120,13 +31734,13 @@ msgstr "トラッキング" msgid "Ping" msgstr "Ping" -#: ../../enterprise/tools/ipam/ipam_ajax.php:540 ../../include/ajax/events.php:1365 +#: ../../enterprise/tools/ipam/ipam_ajax.php:540 #, php-format msgid "Executing command: %s" msgstr "コマンド実行中: %s" -#: ../../enterprise/tools/ipam/ipam_ajax.php:551 ../../include/ajax/events.php:1382 -#: ../../include/ajax/events.php:1409 +#: ../../enterprise/tools/ipam/ipam_ajax.php:551 +#: ../../include/functions_events.php:5743 msgid "Execute again" msgstr "再実行" @@ -31363,11 +31977,12 @@ msgstr "パッケージをアップロードしました。" #: ../../update_manager_client/views/offline.php:68 #, php-format msgid "" -"Please keep in mind that this package is going to override your actual %s files and " -"that it's recommended to conduct a backup before continuing the updating process." +"Please keep in mind that this package is going to override your actual %s " +"files and that it's recommended to conduct a backup before continuing the " +"updating process." msgstr "" -"このパッケージは実際の %s ファイルを上書きするため、更新処理を続行する前にバックアップ" -"を取ることをお勧めします。" +"このパッケージは実際の %s ファイルを上書きするため、更新処理を続行する前にバッ" +"クアップを取ることをお勧めします。" #: ../../update_manager_client/views/offline.php:69 msgid "Click on the file below to begin." @@ -31415,28 +32030,29 @@ msgstr "パッケージを受け付けられません。これらのパッケー #: ../../update_manager_client/views/offline.php:81 #, php-format msgid "" -"This update does not correspond with next version of %s. Are you sure you want to " -"install it?" +"This update does not correspond with next version of %s. Are you sure you want " +"to install it?" msgstr "" -"この更新は、%s の次のバージョンに対応していません。 インストールしてもよろしいですか?" +"この更新は、%s の次のバージョンに対応していません。 インストールしてもよろしい" +"ですか?" #: ../../update_manager_client/views/offline.php:82 msgid "" -"This server update does not correspond with current console version. Are you sure you " -"want to install it?" +"This server update does not correspond with current console version. Are you " +"sure you want to install it?" msgstr "" -"このサーバアップデートは、現在のコンソールバージョンに対応していません。 インストール" -"してもよろしいですか?" +"このサーバアップデートは、現在のコンソールバージョンに対応していません。 インス" +"トールしてもよろしいですか?" #: ../../update_manager_client/views/offline.php:83 msgid "" "File name does not match required format: package_NUMBER.oum or " -"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use numbers with " -"decimals." +"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use " +"numbers with decimals." msgstr "" "ファイル名が所定の形式と一致しません: package_数字.oum または " -"pandorafms_server[_enterprise]-7.0NG.数字_x86[_64].tar.gz で、数字は小数を含むことがあ" -"ります。" +"pandorafms_server[_enterprise]-7.0NG.数字_x86[_64].tar.gz で、数字は小数を含む" +"ことがあります。" #: ../../update_manager_client/views/offline.php:84 msgid "Files included in this package" @@ -31453,21 +32069,22 @@ msgstr "パッケージの署名を確認" #: ../../update_manager_client/views/offline.php:87 #, php-format msgid "" -"Copy into the textarea the signature validation token you can retrieve from %s and " -"press OK to verify the package, press ignore to avoid signature verification" +"Copy into the textarea the signature validation token you can retrieve from %s " +"and press OK to verify the package, press ignore to avoid signature " +"verification" msgstr "" -"%s から取得できる署名検証トークンをテキスト領域にコピーし、OK を押してパッケージを確認" -"します。'無視する' を押すと署名の確認を回避します。" +"%s から取得できる署名検証トークンをテキスト領域にコピーし、OK を押してパッケー" +"ジを確認します。'無視する' を押すと署名の確認を回避します。" #: ../../update_manager_client/views/offline.php:88 msgid "" -"This server update does not correspond with current console version and is not going " -"to be installed unless patches are allowed. Please enable patches in update manager " -"settings." +"This server update does not correspond with current console version and is not " +"going to be installed unless patches are allowed. Please enable patches in " +"update manager settings." msgstr "" -"ここのサーバーアップデートは現在のコンソールバージョンに対応しておらず、パッチ適用が許" -"可されていない限りインストールされません。 アップデートマネージャの設定でパッチを有効" -"にしてください。" +"ここのサーバーアップデートは現在のコンソールバージョンに対応しておらず、パッチ" +"適用が許可されていない限りインストールされません。 アップデートマネージャの設定" +"でパッチを有効にしてください。" #: ../../update_manager_client/views/offline.php:89 #, php-format @@ -31476,8 +32093,9 @@ msgid "" "installed unless patches are allowed. Please enable patches in update manager " "settings." msgstr "" -"このアップデートは %s の次のバージョンに対応しておらず、パッチ適用が許可されていない限" -"りインストールされません。 アップデートマネージャの設定でパッチを有効にしてください。" +"このアップデートは %s の次のバージョンに対応しておらず、パッチ適用が許可されて" +"いない限りインストールされません。 アップデートマネージャの設定でパッチを有効に" +"してください。" #: ../../update_manager_client/views/register.php:47 msgid "Register to Warp Update" @@ -31492,17 +32110,17 @@ msgstr "この %s コンソールを最新のアップデートで最新の状 #, php-format msgid "" "When you subscribe to the Warp update service for %s, you accept that we\n" -" register your %s instance as an identifier on a database owned by %s. " -"This data will solely be used to\n" -" provide you with information about %s and will not be conceded to third " -"parties. You can unregister from\n" +" register your %s instance as an identifier on a database owned by " +"%s. This data will solely be used to\n" +" provide you with information about %s and will not be conceded to " +"third parties. You can unregister from\n" " said database at any time from the Warp update options." msgstr "" "%s ワープアップデートサーバを購読すると、\n" -" %s インスタンスを %s が所有するデータベースの識別子として登録します。 この" -"データは、\n" -" %s に関する情報提供のために利用され、第三者に提供されることはありません。 " -"登録は\n" +" %s インスタンスを %s が所有するデータベースの識別子として登録しま" +"す。 このデータは、\n" +" %s に関する情報提供のために利用され、第三者に提供されることはありま" +"せん。 登録は\n" " ワープアップデートオプションからいつでも解除できます。" #: ../../update_manager_client/views/register.php:74 @@ -31510,7 +32128,7 @@ msgid "Visit our privacy policy for more information" msgstr "詳細についてはプライバシーポリシーをご覧ください" #: ../../update_manager_client/views/register.php:78 -#: ../../include/class/Diagnostics.class.php:1910 +#: ../../include/class/Diagnostics.class.php:1918 msgid "Your email" msgstr "あなたのメールアドレス" @@ -31592,7 +32210,8 @@ msgstr "アップロードしたファイルの保存に失敗しました。" #: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646 #, php-format msgid "Invalid extension. The package needs to be in `%s` or `%s` format." -msgstr "拡張子が無効です。 パッケージは `%s` または `%s` 形式である必要があります。" +msgstr "" +"拡張子が無効です。 パッケージは `%s` または `%s` 形式である必要があります。" #: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655 msgid "Failed uploading file." @@ -31680,7 +32299,8 @@ msgstr "Matrix イベント" #: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244 msgid "WebService engine has not been started, please check documentation." -msgstr "ウェブサービスエンジンが起動していません。ドキュメントを確認してください。" +msgstr "" +"ウェブサービスエンジンが起動していません。ドキュメントを確認してください。" #: ../../extensions/quick_shell.php:152 msgid "Retry" @@ -31701,7 +32321,8 @@ msgstr "SSH または Telnet を利用してください。" #: ../../extensions/quick_shell.php:266 msgid "WebService engine is not working properly, please check documentation." msgstr "" -"ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してください。" +"ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してくださ" +"い。" #: ../../extensions/quick_shell.php:425 #, php-format @@ -31792,7 +32413,8 @@ msgstr "レポート '%s' でエラーです。指定の名前はすでに使わ #, php-format msgid "Warning create '%s' report, the name exist, the report have a name %s." msgstr "" -"レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は %s です。" +"レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は " +"%s です。" #: ../../extensions/resource_registration.php:113 msgid "Error the report haven't name." @@ -31841,9 +32463,11 @@ msgstr "ビジュアルマップ '%s' の作成に失敗しました。名前が #: ../../extensions/resource_registration.php:540 #, php-format -msgid "Warning create '%s' visual map, the name exist, the report have a name %s." +msgid "" +"Warning create '%s' visual map, the name exist, the report have a name %s." msgstr "" -"ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s です。" +"ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s " +"です。" #: ../../extensions/resource_registration.php:552 #, php-format @@ -31894,8 +32518,10 @@ msgstr "リソース登録" #: ../../extensions/resource_registration.php:1114 #, php-format -msgid "This node is configured with centralized mode. Go to %s to create a policy." -msgstr "このノードは集中モードで設定されています。 %s に移動してポリシーを作成します。" +msgid "" +"This node is configured with centralized mode. Go to %s to create a policy." +msgstr "" +"このノードは集中モードで設定されています。 %s に移動してポリシーを作成します。" #: ../../extensions/resource_registration.php:1123 msgid "This extension makes registering resource templates easier." @@ -31908,78 +32534,92 @@ msgstr "ここに、.ptr フォーマットでリソーステンプレートを #: ../../extensions/resource_registration.php:1123 #, php-format msgid "" -"Please refer to our documentation for more information on how to obtain and use %s " -"resources." +"Please refer to our documentation for more information on how to obtain and " +"use %s resources." msgstr "" -"%s リソースを取得して使用する方法の詳細については、ドキュメントを参照してください。" +"%s リソースを取得して使用する方法の詳細については、ドキュメントを参照してくださ" +"い。" #: ../../extensions/resource_registration.php:1123 msgid "" -"You can get more resurces in our Public Resource Library" +"You can get more resurces in our Public Resource Library" msgstr "" -"公開リソースライブラリから追加の" -"リソースを入手できます。" +"公開リソースライブラリか" +"ら追加のリソースを入手できます。" -#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248 +#: ../../extensions/api_checker.php:190 ../../extensions/api_checker.php:332 msgid "API checker" msgstr "API チェッカ" -#: ../../extensions/api_checker.php:128 +#: ../../extensions/api_checker.php:207 #, php-format msgid "%s Console URL" msgstr "%s コンソールURL" -#: ../../extensions/api_checker.php:133 +#: ../../extensions/api_checker.php:212 +#: ../../godmode/users/configure_user.php:1049 +#: ../../godmode/users/configure_user.php:1075 +#: ../../operation/users/user_edit.php:271 +#: ../../operation/users/user_edit.php:310 +msgid "API Token" +msgstr "API トークン" + +#: ../../extensions/api_checker.php:212 +msgid "Use API Token instead API Pass, User and Password." +msgstr "" +"API パスワード、ユーザ、パスワードの代わりに、API トークンを使ってください。" + +#: ../../extensions/api_checker.php:217 msgid "API Pass" msgstr "API パス" -#: ../../extensions/api_checker.php:151 +#: ../../extensions/api_checker.php:235 msgid "Action (get or set)" msgstr "アクション (get または set)" -#: ../../extensions/api_checker.php:166 +#: ../../extensions/api_checker.php:250 msgid "ID 2" msgstr "ID 2" -#: ../../extensions/api_checker.php:171 +#: ../../extensions/api_checker.php:255 msgid "Return Type" msgstr "Return Type" -#: ../../extensions/api_checker.php:181 +#: ../../extensions/api_checker.php:265 msgid "Other Mode" msgstr "Other Mode" -#: ../../extensions/api_checker.php:189 +#: ../../extensions/api_checker.php:273 msgid "Raw URL" msgstr "詳細 URL" -#: ../../extensions/api_checker.php:200 +#: ../../extensions/api_checker.php:284 msgid "Call parameters" msgstr "呼び出しパラメータ" -#: ../../extensions/api_checker.php:200 +#: ../../extensions/api_checker.php:284 msgid "Action: get Operation: module_last_value id: 63" msgstr "アクション: get操作: module_last_value id:63" -#: ../../extensions/api_checker.php:207 +#: ../../extensions/api_checker.php:291 msgid "Custom URL" msgstr "カスタムURL" -#: ../../extensions/api_checker.php:213 +#: ../../extensions/api_checker.php:297 msgid "Call" msgstr "呼び出し" -#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239 +#: ../../extensions/api_checker.php:306 ../../extensions/api_checker.php:323 msgid "Show URL" msgstr "URL を表示" -#: ../../extensions/api_checker.php:235 +#: ../../extensions/api_checker.php:319 msgid "Hide URL" msgstr "URL を隠す" #: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 -#: ../../godmode/menu.php:453 +#: ../../godmode/menu.php:456 msgid "DB Schema check" msgstr "DBスキーマチェック" @@ -31988,8 +32628,9 @@ msgid "" "This extension checks the DB is correct. Because sometimes the old DB from a " "migration has not some fields in the tables or the data is changed." msgstr "" -"この拡張は、DB が正しいかどうか確認します。たまに、古いDBからのマイグレーションでテー" -"ブルのフィールドが不足していたりデータが変更されていなかったりするためです。" +"この拡張は、DB が正しいかどうか確認します。たまに、古いDBからのマイグレーション" +"でテーブルのフィールドが不足していたりデータが変更されていなかったりするためで" +"す。" #: ../../extensions/db_status.php:46 msgid "At the moment the checks is for MySQL/MariaDB." @@ -32066,7 +32707,8 @@ msgstr "リソースのエクスポート" #: ../../extensions/resource_exportation.php:423 msgid "This extension makes exportation of resource template more easy." -msgstr "この拡張機能により、リソーステンプレートのエクスポートがより簡単になります。" +msgstr "" +"この拡張機能により、リソーステンプレートのエクスポートがより簡単になります。" #: ../../extensions/resource_exportation.php:423 msgid "You can export resource templates in .ptr format." @@ -32089,8 +32731,8 @@ msgid "" "Problem uploading. Please check this PHP runtime variable values:
  "
 "post_max_size (currently "
 msgstr ""
-"アップロードに問題があります。 次の PHP ランタイム変数値を確認してください: 
 "
-"post_max_size(現在 "
+"アップロードに問題があります。 次の PHP ランタイム変数値を確認してください: "
+"
 post_max_size(現在 "
 
 #: ../../extensions/files_repo.php:221 ../../extensions/files_repo.php:238
 msgid "Files repository"
@@ -32105,8 +32747,8 @@ msgid ""
 "Warning, you are accessing the database directly. You can leave the system "
 "inoperative if you run an inappropriate SQL statement"
 msgstr ""
-"警告、データベースに直接アクセスしています。 不適切なSQLステートメントを実行すると、シ"
-"ステムが動作しなくなる可能性があります"
+"警告、データベースに直接アクセスしています。 不適切なSQLステートメントを実行す"
+"ると、システムが動作しなくなる可能性があります"
 
 #: ../../extensions/dbmanager.php:146
 #, php-format
@@ -32120,11 +32762,12 @@ msgid ""
 "\t\tThis extension is intended to be used only by experienced users\n"
 "\t\twith a depth knowledge of %s internals."
 msgstr ""
-"これは、ウェブコンソールから直接 %s データベースに SQL を使ってアクセスするための高度"
-"な拡張機能です。\n"
+"これは、ウェブコンソールから直接 %s データベースに SQL を使ってアクセスするため"
+"の高度な拡張機能です。\n"
 "\t\t何をやっているかを正しく把握していない場合、%s のインストールを\n"
 "\t\t破壊する可能性があることに注意してください。\n"
-"\t\tつまり、この拡張機能の利用により設定に重大な損傷を与える可能性があります。\n"
+"\t\tつまり、この拡張機能の利用により設定に重大な損傷を与える可能性がありま"
+"す。\n"
 "\t\tこの拡張は、%s の内部について深い理解を持っているユーザにのみ\n"
 "\t\t利用いただくことを想定しています。"
 
@@ -32140,29 +32783,30 @@ msgstr "SQLの実行"
 msgid "Error querying database node"
 msgstr "データベースノードへのクエリ中にエラー"
 
-#: ../../extensions/dbmanager.php:307 ../../godmode/menu.php:453
+#: ../../extensions/dbmanager.php:307 ../../godmode/menu.php:456
 msgid "DB interface"
 msgstr "DBインタフェース"
 
 #: ../../extensions/agents_modules.php:396
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1969
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1972
 #: ../../include/lib/Dashboard/Widgets/agent_module.php:255
 msgid "Show module status"
 msgstr "モジュールの状態表示"
 
 #: ../../extensions/agents_modules.php:397
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1970
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1973
 #: ../../include/lib/Dashboard/Widgets/agent_module.php:256
 msgid "Show module data"
 msgstr "モジュールの値表示"
 
 #: ../../extensions/agents_modules.php:400
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1965
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1968
 #: ../../include/lib/Dashboard/Widgets/agent_module.php:265
 msgid "Information to be shown"
 msgstr "表示情報"
 
-#: ../../extensions/agents_modules.php:465 ../../include/functions_reports.php:795
+#: ../../extensions/agents_modules.php:465
+#: ../../include/functions_reports.php:795
 msgid "Agents/Modules"
 msgstr "エージェント/モジュール"
 
@@ -32178,7 +32822,8 @@ msgstr "フィルタ "
 msgid "Secondary groups and agent subgroups will be taken into account."
 msgstr "セカンダリグループとエージェントサブグループが考慮されます。"
 
-#: ../../extensions/agents_modules.php:750 ../../include/functions_reporting.php:3141
+#: ../../extensions/agents_modules.php:750
+#: ../../include/functions_reporting.php:3272
 msgid "There are no agents with modules"
 msgstr "モジュールが定義されたエージェントがありません。"
 
@@ -32191,27 +32836,27 @@ msgid "More modules"
 msgstr "次のモジュールへ"
 
 #: ../../extensions/agents_modules.php:934
-#: ../../include/functions_reporting_html.php:2184
+#: ../../include/functions_reporting_html.php:2193
 msgid "Orange cell when the module has fired alerts"
 msgstr "オレンジのセルは、アラート発生中を示します。"
 
 #: ../../extensions/agents_modules.php:936
-#: ../../include/functions_reporting_html.php:2185
+#: ../../include/functions_reporting_html.php:2194
 msgid "Red cell when the module has a critical status"
 msgstr "赤のセルは、障害状態を示します。"
 
 #: ../../extensions/agents_modules.php:939
-#: ../../include/functions_reporting_html.php:2186
+#: ../../include/functions_reporting_html.php:2195
 msgid "Yellow cell when the module has a warning status"
 msgstr "黄色のセルは、警告状態を示します。"
 
 #: ../../extensions/agents_modules.php:941
-#: ../../include/functions_reporting_html.php:2187
+#: ../../include/functions_reporting_html.php:2196
 msgid "Green cell when the module has a normal status"
 msgstr "緑のセルは、正常状態を示します。"
 
 #: ../../extensions/agents_modules.php:943
-#: ../../include/functions_reporting_html.php:2188
+#: ../../include/functions_reporting_html.php:2197
 msgid "Grey cell when the module has an unknown status"
 msgstr "グレーのセルは、不明状態を示します。"
 
@@ -32250,10 +32895,11 @@ msgstr "コンソールで %s ログファイルを直接参照するために
 
 #: ../../extensions/pandora_logs.php:71
 msgid ""
-"You can choose the amount of information shown in general setup (Log size limit in "
-"system logs viewer extension), "
+"You can choose the amount of information shown in general setup (Log size "
+"limit in system logs viewer extension), "
 msgstr ""
-"一般の設定で表示される情報量(システムログビューワのログサイズ制限)を選択できます。 "
+"一般の設定で表示される情報量(システムログビューワのログサイズ制限)を選択できま"
+"す。 "
 
 #: ../../extensions/pandora_logs.php:85
 msgid "System logfiles"
@@ -32294,7 +32940,8 @@ msgstr "管理者に連絡してください"
 msgid "Only 200 characters are permitted"
 msgstr "200文字までです"
 
-#: ../../extensions/files_repo/files_repo_form.php:95 ../../godmode/extensions.php:138
+#: ../../extensions/files_repo/files_repo_form.php:95
+#: ../../godmode/extensions.php:138
 msgid "File"
 msgstr "ファイル"
 
@@ -32314,8 +32961,8 @@ msgid "Copy to clipboard"
 msgstr "クリップボードへコピー"
 
 #: ../../extensions/files_repo/files_repo_list.php:164
-#: ../../include/functions_reporting_html.php:2216
-#: ../../include/functions_reporting_html.php:2220
+#: ../../include/functions_reporting_html.php:2225
+#: ../../include/functions_reporting_html.php:2229
 msgid "No items"
 msgstr "アイテムがありません。"
 
@@ -32348,59 +32995,63 @@ msgid "Search by module group"
 msgstr "モジュールグループでの検索"
 
 #: ../../extensions/module_groups.php:392
-msgid "Orange cell when the module group and agent have at least one alarm fired."
+msgid ""
+"Orange cell when the module group and agent have at least one alarm fired."
 msgstr ""
-"モジュールグループおよびエージェントで、少なくとも 1つのモジュールでアラートが発生して"
-"いる時にオレンジになります。"
+"モジュールグループおよびエージェントで、少なくとも 1つのモジュールでアラートが"
+"発生している時にオレンジになります。"
 
 #: ../../extensions/module_groups.php:393
 msgid ""
-"Red cell when the module group and agent have at least one module in critical status "
-"and the others in any status"
+"Red cell when the module group and agent have at least one module in critical "
+"status and the others in any status"
 msgstr ""
-"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが障害状態の時に赤に"
-"なります。"
+"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが障害状態の"
+"時に赤になります。"
 
 #: ../../extensions/module_groups.php:394
 msgid ""
-"Yellow cell when the module group and agent have at least one in warning status and "
-"the others in grey or green status"
+"Yellow cell when the module group and agent have at least one in warning "
+"status and the others in grey or green status"
 msgstr ""
-"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが警告状態で、その他"
-"のモジュールが不明か正常状態の時にに黄色なります。"
+"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが警告状態"
+"で、その他のモジュールが不明か正常状態の時にに黄色なります。"
 
 #: ../../extensions/module_groups.php:395
 msgid ""
-"Grey cell when the module group and agent have at least one in unknown status and the "
-"others in green status"
+"Grey cell when the module group and agent have at least one in unknown status "
+"and the others in green status"
 msgstr ""
-"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが不明状態で、その他"
-"のモジュールが正常状態の時にグレーになります。"
+"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが不明状態"
+"で、その他のモジュールが正常状態の時にグレーになります。"
 
 #: ../../extensions/module_groups.php:396
 msgid "Green cell when the module group and agent have all modules in OK status"
 msgstr ""
-"モジュールグループおよびエージェントの全てのモジュールが正常状態の時に、緑になります。"
+"モジュールグループおよびエージェントの全てのモジュールが正常状態の時に、緑にな"
+"ります。"
 
 #: ../../extensions/module_groups.php:397
-msgid "Blue cell when the module group and agent have all modules in not init status."
+msgid ""
+"Blue cell when the module group and agent have all modules in not init status."
 msgstr "青のセルは、全モジュールが未初期化状態であることを示します。"
 
 #: ../../extensions/module_groups.php:401
 msgid ""
-"This table shows in columns the modules group and in rows agents group. The cell "
-"shows all modules"
+"This table shows in columns the modules group and in rows agents group. The "
+"cell shows all modules"
 msgstr ""
-"列にモジュールグループ、行にエージェントグループを示しています。各セルは、全モジュール"
-"の状態を表示しています。"
+"列にモジュールグループ、行にエージェントグループを示しています。各セルは、全モ"
+"ジュールの状態を表示しています。"
 
 #: ../../extensions/module_groups.php:402
 msgid "There are no defined groups or module groups"
 msgstr "定義済のグループまたはモジュールグループがありません。"
 
-#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:112
+#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:113
 #: ../../godmode/reporting/reporting_builder.item_editor.php:86
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:330 ../../operation/tree.php:102
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:330
+#: ../../operation/tree.php:102
 msgid "Module groups"
 msgstr "モジュールグループ"
 
@@ -32425,19 +33076,20 @@ msgstr "エージェント(%s)、モジュール(%s) のデータを保存しま
 #: ../../extensions/insert_data.php:145
 #, php-format
 msgid ""
-"Please check that the directory \"%s\" is writeable by the apache user. 

The CSV file format is date;value<newline>date;value<newline>... The " -"date in CSV is in format Y/m/d H:i:s." +"Please check that the directory \"%s\" is writeable by the apache user.

The CSV file format is date;value<newline>date;value<" +"newline>... The date in CSV is in format Y/m/d H:i:s." msgstr "" -"apache ユーザで \"%s\" ディレクトリが書き込みできるか確認してください。

CSV ファイルフォーマットは、date;value<newline>date;value<newline>... で" -"す。CSV 内の日時フォーマットは Y/m/d H:i:s です。" +"apache ユーザで \"%s\" ディレクトリが書き込みできるか確認してください。

CSV ファイルフォーマットは、date;value<newline>date;value<" +"newline>... です。CSV 内の日時フォーマットは Y/m/d H:i:s です。" #: ../../extensions/insert_data.php:273 msgid "Insert Data" msgstr "データの挿入" -#: ../../extensions/realtime_graphs.php:58 ../../extensions/realtime_graphs.php:268 +#: ../../extensions/realtime_graphs.php:58 +#: ../../extensions/realtime_graphs.php:268 msgid "Realtime graphs" msgstr "リアルタイムグラフ" @@ -32493,7 +33145,8 @@ msgstr "グラフをクリア" msgid "Use this OID" msgstr "この OID を利用" -#: ../../extensions/users_connected.php:37 ../../extensions/users_connected.php:209 +#: ../../extensions/users_connected.php:37 +#: ../../extensions/users_connected.php:209 msgid "Users connected" msgstr "接続ユーザ" @@ -32578,18 +33231,72 @@ msgstr "コンポーネントグループ管理" #: ../../godmode/modules/manage_nc_groups.php:293 #, php-format msgid "" -"This node is configured with centralized mode. Component groups are read only. Go to " -"%s to manage it." +"This node is configured with centralized mode. Component groups are read only. " +"Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 コンポーネントグループは読み取り専用で" -"す。管理は %s にて行います。" +"このノードは中央管理モードで設定されています。 コンポーネントグループは読み取り" +"専用です。管理は %s にて行います。" #: ../../godmode/modules/manage_nc_groups.php:311 msgid "There are no defined component groups" msgstr "定義済のコンポーネントグループがありません" -#: ../../godmode/modules/manage_network_components_form_common.php:712 -#: ../../godmode/agentes/module_manager_editor_common.php:2000 +#: ../../godmode/modules/manage_inventory_modules.php:40 +msgid "To manage inventory plugin you must activate centralized management" +msgstr "インベントリプラグインを管理するには、中央管理を有効化する必要があります" + +#: ../../godmode/modules/manage_inventory_modules.php:121 +msgid "Successfully created inventory module" +msgstr "インベントリモジュールを作成しました" + +#: ../../godmode/modules/manage_inventory_modules.php:122 +msgid "Error creating inventory module" +msgstr "インベントリモジュールの作成エラー" + +#: ../../godmode/modules/manage_inventory_modules.php:168 +#: ../../godmode/modules/manage_inventory_modules.php:189 +#: ../../godmode/agentes/inventory_manager.php:100 +msgid "Successfully deleted inventory module" +msgstr "インベントリモジュールを削除しました" + +#: ../../godmode/modules/manage_inventory_modules.php:169 +#: ../../godmode/modules/manage_inventory_modules.php:190 +#: ../../godmode/agentes/inventory_manager.php:102 +msgid "Error deleting inventory module" +msgstr "インベントリモジュールの削除エラー" + +#: ../../godmode/modules/manage_inventory_modules.php:281 +#: ../../godmode/modules/manage_inventory_modules_form.php:118 +msgid "Interpreter" +msgstr "処理系" + +#: ../../godmode/modules/manage_inventory_modules.php:290 +msgid "No inventory modules defined" +msgstr "インベントリモジュールがありません" + +#: ../../godmode/modules/manage_inventory_modules.php:311 +msgid "Local module" +msgstr "ローカルモジュール" + +#: ../../godmode/modules/manage_inventory_modules.php:313 +msgid "Remote/Local" +msgstr "リモート/ローカル" + +#: ../../godmode/modules/manage_inventory_modules.php:359 +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これ以降、インベントリスクリプトへの変更はこの画面から行う必要があります。" + +#: ../../godmode/modules/manage_inventory_modules.php:361 +msgid "You can find more information at:" +msgstr "詳細については次を参照してください:" + +#: ../../godmode/modules/manage_network_components_form_common.php:723 +#: ../../godmode/agentes/module_manager_editor_common.php:2014 msgid "Please introduce a positive percentage value" msgstr "正のパーセント値を設定してください" @@ -32604,78 +33311,80 @@ msgstr "OID 名" #: ../../godmode/modules/manage_network_components_form_wmi.php:41 #: ../../godmode/agentes/module_manager_editor_wmi.php:87 +#: ../../include/class/CredentialStore.class.php:1033 +#: ../../include/class/CredentialStore.class.php:1369 msgid "Namespace" msgstr "名前空間" -#: ../../godmode/modules/manage_network_components_form.php:355 +#: ../../godmode/modules/manage_network_components_form.php:358 msgid "Update Network Component" msgstr "ネットワークコンポーネント更新" -#: ../../godmode/modules/manage_network_components_form.php:357 +#: ../../godmode/modules/manage_network_components_form.php:360 msgid "Create Network Component" msgstr "ネットワークコンポーネント作成" -#: ../../godmode/modules/manage_network_components.php:290 +#: ../../godmode/modules/manage_network_components.php:291 msgid "Remote component management" msgstr "リモートコンポーネント管理" -#: ../../godmode/modules/manage_network_components.php:313 +#: ../../godmode/modules/manage_network_components.php:314 #, php-format msgid "" -"This node is configured with centralized mode. All remote components are read only. " -"Go to %s to manage them." +"This node is configured with centralized mode. All remote components are read " +"only. Go to %s to manage them." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのリモートコンポーネントは読み取" -"り専用です。 それらを管理するには、%s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのリモートコンポーネントは" +"読み取り専用です。 それらを管理するには、%s に移動します。" -#: ../../godmode/modules/manage_network_components.php:424 +#: ../../godmode/modules/manage_network_components.php:426 msgid "Could not be created because the component exists" msgstr "コンポーネントが存在するため、作成できませんでした" -#: ../../godmode/modules/manage_network_components.php:660 +#: ../../godmode/modules/manage_network_components.php:663 msgid "Search by name, description, tcp send or tcp rcv, list matches." msgstr "名前、説明、tcp送受信による検索にマッチした一覧を表示" -#: ../../godmode/modules/manage_network_components.php:753 +#: ../../godmode/modules/manage_network_components.php:756 msgid "Max/Min" msgstr "最大/最小" -#: ../../godmode/modules/manage_network_components.php:804 -#: ../../include/class/ModuleTemplates.class.php:1234 +#: ../../godmode/modules/manage_network_components.php:807 +#: ../../include/class/ModuleTemplates.class.php:1235 msgid "Network module" msgstr "ネットワークモジュール" -#: ../../godmode/modules/manage_network_components.php:815 -#: ../../include/class/ModuleTemplates.class.php:1245 +#: ../../godmode/modules/manage_network_components.php:818 +#: ../../include/class/ModuleTemplates.class.php:1246 msgid "WMI module" msgstr "WMIモジュール" -#: ../../godmode/modules/manage_network_components.php:826 -#: ../../include/class/ModuleTemplates.class.php:1256 +#: ../../godmode/modules/manage_network_components.php:829 +#: ../../include/class/ModuleTemplates.class.php:1257 msgid "Plug-in module" msgstr "プラグインモジュール" -#: ../../godmode/modules/manage_network_components.php:837 +#: ../../godmode/modules/manage_network_components.php:840 msgid "Wizard module" msgstr "ウィザードモジュール" -#: ../../godmode/modules/manage_network_components.php:910 +#: ../../godmode/modules/manage_network_components.php:913 msgid "There are no defined network components" msgstr "定義済のネットワークコンポーネントがありません" -#: ../../godmode/modules/manage_network_components.php:921 +#: ../../godmode/modules/manage_network_components.php:924 msgid "Create a new network component" msgstr "ネットワークコンポーネントを新規作成する。" -#: ../../godmode/modules/manage_network_components.php:922 +#: ../../godmode/modules/manage_network_components.php:925 msgid "Create a new plugin component" msgstr "プラグインコンポーネントを新規作成する。" -#: ../../godmode/modules/manage_network_components.php:923 +#: ../../godmode/modules/manage_network_components.php:926 msgid "Create a new WMI component" msgstr "WMIコンポーネントを新規作成する。" -#: ../../godmode/modules/manage_network_components.php:924 +#: ../../godmode/modules/manage_network_components.php:927 msgid "Create a new wizard component" msgstr "ウィザードコンポーネントを新規作成する。" @@ -32723,58 +33432,110 @@ msgstr "コンポーネントグループ" msgid "Module unit" msgstr "モジュール単位" -#: ../../godmode/modules/manage_network_components_form_wizard.php:458 +#: ../../godmode/modules/manage_network_components_form_wizard.php:464 msgid "Scan Type" msgstr "スキャンタイプ" -#: ../../godmode/modules/manage_network_components_form_wizard.php:472 -#: ../../godmode/agentes/planned_downtime.list.php:322 +#: ../../godmode/modules/manage_network_components_form_wizard.php:478 +#: ../../godmode/agentes/planned_downtime.list.php:359 msgid "Execution type" msgstr "実行タイプ" -#: ../../godmode/modules/manage_network_components_form_wizard.php:492 +#: ../../godmode/modules/manage_network_components_form_wizard.php:498 msgid "Value OID" msgstr "OID 値" -#: ../../godmode/modules/manage_network_components_form_wizard.php:509 +#: ../../godmode/modules/manage_network_components_form_wizard.php:515 msgid "Macros OID" msgstr "マクロ OID" -#: ../../godmode/modules/manage_network_components_form_wizard.php:517 -#: ../../godmode/modules/manage_network_components_form_wizard.php:702 +#: ../../godmode/modules/manage_network_components_form_wizard.php:523 +#: ../../godmode/modules/manage_network_components_form_wizard.php:708 msgid "Value operation" msgstr "値の操作" -#: ../../godmode/modules/manage_network_components_form_wizard.php:534 -#: ../../godmode/modules/manage_network_components_form_wizard.php:719 +#: ../../godmode/modules/manage_network_components_form_wizard.php:540 +#: ../../godmode/modules/manage_network_components_form_wizard.php:725 msgid "Satellite execution" msgstr "サテライト実行" -#: ../../godmode/modules/manage_network_components_form_wizard.php:551 -#: ../../godmode/modules/manage_network_components_form_wizard.php:736 +#: ../../godmode/modules/manage_network_components_form_wizard.php:557 +#: ../../godmode/modules/manage_network_components_form_wizard.php:742 msgid "Server plugin" msgstr "サーバプラグイン" -#: ../../godmode/modules/manage_network_components_form_wizard.php:589 +#: ../../godmode/modules/manage_network_components_form_wizard.php:595 msgid "WMI class" msgstr "WMI クラス" -#: ../../godmode/modules/manage_network_components_form_wizard.php:606 +#: ../../godmode/modules/manage_network_components_form_wizard.php:612 msgid "Query key field" msgstr "クエリキーフィールド" -#: ../../godmode/modules/manage_network_components_form_wizard.php:623 +#: ../../godmode/modules/manage_network_components_form_wizard.php:629 msgid "Query extra fields" msgstr "クエリ追加フィールド" -#: ../../godmode/modules/manage_network_components_form_wizard.php:631 +#: ../../godmode/modules/manage_network_components_form_wizard.php:637 msgid "Query filters" msgstr "クエリフィルタ" -#: ../../godmode/modules/manage_network_components_form_wizard.php:674 +#: ../../godmode/modules/manage_network_components_form_wizard.php:680 msgid "Field value" msgstr "フィールド値" +#: ../../godmode/modules/manage_inventory_modules_form.php:75 +#: ../../godmode/agentes/inventory_manager.php:165 +msgid "Inventory module error" +msgstr "インベントリモジュールエラー" + +#: ../../godmode/modules/manage_inventory_modules_form.php:120 +msgid "Left blank for the LOCAL inventory modules" +msgstr "ローカルインベントリモジュールの場合は入力しないでください" + +#: ../../godmode/modules/manage_inventory_modules_form.php:122 +msgid "Block Mode" +msgstr "ブロックモード" + +#: ../../godmode/modules/manage_inventory_modules_form.php:125 +#: ../../godmode/massive/massive_standby_alerts.php:224 +#: ../../godmode/massive/massive_standby_alerts.php:259 +#: ../../godmode/massive/massive_enable_disable_alerts.php:196 +#: ../../godmode/massive/massive_enable_disable_alerts.php:231 +#: ../../include/class/ModuleTemplates.class.php:1209 +msgid "Format" +msgstr "フォーマット" + +#: ../../godmode/modules/manage_inventory_modules_form.php:126 +msgid "separate fields with " +msgstr "フィールドセパレータは、 " + +#: ../../godmode/modules/manage_inventory_modules_form.php:129 +msgid "Script mode" +msgstr "スクリプトモード" + +#: ../../godmode/modules/manage_inventory_modules_form.php:131 +msgid "Use script" +msgstr "スクリプトの利用" + +#: ../../godmode/modules/manage_inventory_modules_form.php:139 +msgid "Use inline code" +msgstr "インラインコードの利用" + +#: ../../godmode/modules/manage_inventory_modules_form.php:151 +#: ../../include/ajax/double_auth.ajax.php:149 +#: ../../include/ajax/double_auth.ajax.php:292 +msgid "Code" +msgstr "コード" + +#: ../../godmode/modules/manage_inventory_modules_form.php:152 +msgid "" +"Here is placed the script for the REMOTE inventory modules Local inventory " +"modules don't use this field" +msgstr "" +"リモートインベントリモジュールのスクリプトを入力します。ローカルインベントリモ" +"ジュールではこのフィールドは使いません。" + #: ../../godmode/modules/module_list.php:29 msgid "Defined modules" msgstr "定義済みモジュール" @@ -32795,7 +33556,7 @@ msgstr "テンプレートの削除に失敗しました。" msgid "This template does not exist" msgstr "このテンプレートは存在しません" -#: ../../godmode/modules/manage_network_templates.php:304 +#: ../../godmode/modules/manage_network_templates.php:306 msgid "There are no defined network profiles" msgstr "ネットワークプロファイルが定義されていません。" @@ -32815,12 +33576,12 @@ msgstr "データ保持日数(未圧縮)" msgid "Max. time before purge" msgstr "データ保持日数" -#: ../../godmode/db/db_main.php:98 ../../include/class/Diagnostics.class.php:230 +#: ../../godmode/db/db_main.php:98 ../../include/class/Diagnostics.class.php:231 msgid "Database size stats" msgstr "データベースサイズ" -#: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:569 -#: ../../include/functions_reporting.php:14235 +#: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:570 +#: ../../include/functions_reporting.php:14550 msgid "Total events" msgstr "イベント数" @@ -32864,12 +33625,12 @@ msgstr "最終 DB メンテナンス日時" #, php-format msgid "" "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." +"maintenance daemon is running. It's very important to keep your database up to " +"date in order to get the best performance and results from %s." msgstr "" -"%s サーバの設定が正しいこと、およびデータベースメンテナンスデーモンが実行されているこ" -"とを確認してください。 %s の最高のパフォーマンスと結果を得るには、データベースを最新の" -"状態に保つことが非常に重要です。" +"%s サーバの設定が正しいこと、およびデータベースメンテナンスデーモンが実行されて" +"いることを確認してください。 %s の最高のパフォーマンスと結果を得るには、データ" +"ベースを最新の状態に保つことが非常に重要です。" #: ../../godmode/groups/configure_group.php:87 #: ../../godmode/groups/configure_modu_group.php:49 @@ -32880,11 +33641,13 @@ msgstr "グループの読み込みに失敗しました。" msgid "Update group" msgstr "グループ情報の更新" -#: ../../godmode/groups/configure_group.php:108 ../../godmode/groups/group_list.php:981 +#: ../../godmode/groups/configure_group.php:108 +#: ../../godmode/groups/group_list.php:986 msgid "Create group" msgstr "グループの作成" -#: ../../godmode/groups/configure_group.php:126 ../../godmode/groups/group_list.php:384 +#: ../../godmode/groups/configure_group.php:126 +#: ../../godmode/groups/group_list.php:389 msgid "Manage agents group" msgstr "エージェントグループ管理" @@ -32916,7 +33679,8 @@ msgstr "ACL の伝播" msgid "Propagate the same ACL security into the child subgroups." msgstr "子のサブグループへ同じ ACL を適用します。" -#: ../../godmode/groups/configure_group.php:246 ../../include/functions_events.php:4734 +#: ../../godmode/groups/configure_group.php:246 +#: ../../include/functions_events.php:4855 msgid "Contact" msgstr "連絡先" @@ -32936,98 +33700,113 @@ msgstr "最大エージェント数" msgid "Set the maximum of agents allowed for this group. 0 is unlimited." msgstr "このグループの最大エージェント数を設定します。0 は無制限です。" -#: ../../godmode/groups/group_list.php:309 +#: ../../godmode/groups/group_list.php:314 msgid "Tree Group view" msgstr "グループツリー表示" -#: ../../godmode/groups/group_list.php:333 +#: ../../godmode/groups/group_list.php:338 msgid "Credential Store" msgstr "認証情報ストア" -#: ../../godmode/groups/group_list.php:339 +#: ../../godmode/groups/group_list.php:344 #, php-format msgid "Groups defined in %s" msgstr "%s に定義済のグループ" -#: ../../godmode/groups/group_list.php:349 ../../godmode/menu.php:220 +#: ../../godmode/groups/group_list.php:354 +#: ../../godmode/agentes/module_manager_editor_network.php:164 +#: ../../godmode/menu.php:223 ../../include/class/AgentWizard.class.php:722 +#: ../../include/class/AgentWizard.class.php:778 msgid "Credential store" msgstr "認証情報ストア" -#: ../../godmode/groups/group_list.php:365 +#: ../../godmode/groups/group_list.php:370 msgid "Edit or delete groups can cause problems with synchronization" msgstr "グループの編集や削除は、同期で問題が発生する可能性があります。" -#: ../../godmode/groups/group_list.php:403 +#: ../../godmode/groups/group_list.php:408 #, php-format msgid "" -"This node is configured with centralized mode. All groups information is read only. " -"Go to %s to manage it." +"This node is configured with centralized mode. All groups information is read " +"only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのグループ情報は読み取り専用で" -"す。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのグループ情報は読み取り専" +"用です。管理するには %s に移動します。" -#: ../../godmode/groups/group_list.php:468 ../../godmode/groups/modu_group_list.php:119 +#: ../../godmode/groups/group_list.php:473 +#: ../../godmode/groups/modu_group_list.php:119 msgid "Group successfully created" msgstr "グループを作成しました。" -#: ../../godmode/groups/group_list.php:470 ../../godmode/groups/modu_group_list.php:122 +#: ../../godmode/groups/group_list.php:475 +#: ../../godmode/groups/modu_group_list.php:122 msgid "There was a problem creating group" msgstr "グループの作成に失敗しました。" -#: ../../godmode/groups/group_list.php:473 ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/group_list.php:478 +#: ../../godmode/groups/group_list.php:550 msgid "Each group must have a different name" msgstr "各グループは異なる名前でなければいけません" -#: ../../godmode/groups/group_list.php:476 ../../godmode/groups/group_list.php:548 +#: ../../godmode/groups/group_list.php:481 +#: ../../godmode/groups/group_list.php:553 msgid "Group must have a name" msgstr "グループには名前が必要です" -#: ../../godmode/groups/group_list.php:540 ../../godmode/groups/modu_group_list.php:155 +#: ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/modu_group_list.php:155 msgid "Group successfully updated" msgstr "グループを更新しました。" -#: ../../godmode/groups/group_list.php:542 ../../godmode/groups/modu_group_list.php:158 +#: ../../godmode/groups/group_list.php:547 +#: ../../godmode/groups/modu_group_list.php:158 msgid "There was a problem modifying group" msgstr "グループの更新に失敗しました。" -#: ../../godmode/groups/group_list.php:605 +#: ../../godmode/groups/group_list.php:610 #, 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:679 +#: ../../godmode/groups/group_list.php:684 msgid "" -"The group has not been deleted in the metaconsole due to an error in the node database" -msgstr "ノードデータベースのエラーのため、グループはメタコンソールで削除されていません" +"The group has not been deleted in the metaconsole due to an error in the node " +"database" +msgstr "" +"ノードデータベースのエラーのため、グループはメタコンソールで削除されていません" -#: ../../godmode/groups/group_list.php:688 +#: ../../godmode/groups/group_list.php:693 #, php-format msgid "The group %s has been deleted in the nodes" msgstr "グループ %s をノードで削除しました" -#: ../../godmode/groups/group_list.php:720 ../../godmode/groups/modu_group_list.php:229 +#: ../../godmode/groups/group_list.php:725 +#: ../../godmode/groups/modu_group_list.php:229 msgid "Group successfully deleted" msgstr "グループを削除しました。" -#: ../../godmode/groups/group_list.php:723 ../../godmode/groups/modu_group_list.php:227 +#: ../../godmode/groups/group_list.php:728 +#: ../../godmode/groups/modu_group_list.php:227 msgid "There was a problem deleting group" msgstr "グループの削除に失敗しました。" -#: ../../godmode/groups/group_list.php:730 +#: ../../godmode/groups/group_list.php:735 #, php-format msgid "The group is not empty. It is use in %s." msgstr "グループが空ではありません。%s で利用されています。" -#: ../../godmode/groups/group_list.php:775 ../../godmode/groups/group_list.php:969 +#: ../../godmode/groups/group_list.php:780 +#: ../../godmode/groups/group_list.php:974 msgid "There are no defined groups" msgstr "グループが定義されていません" -#: ../../godmode/groups/group_list.php:924 +#: ../../godmode/groups/group_list.php:929 msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "よろしいですか? このグループはすべてのノードで削除されます。" -#: ../../godmode/groups/group_list.php:930 -msgid "The child groups will be updated to use the parent id of the deleted group" +#: ../../godmode/groups/group_list.php:935 +msgid "" +"The child groups will be updated to use the parent id of the deleted group" msgstr "削除されたグループの親 ID を使用するように、子グループが更新されます" #: ../../godmode/groups/configure_modu_group.php:31 @@ -33042,11 +33821,11 @@ msgstr "%s に定義済のモジュールグループ" #: ../../godmode/groups/modu_group_list.php:92 #, php-format msgid "" -"This node is configured with centralized mode. All module groups information is read " -"only. Go to %s to manage it." +"This node is configured with centralized mode. All module groups information " +"is read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのモジュールグループ情報は読み取" -"り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのモジュールグループ情報は" +"読み取り専用です。管理するには %s に移動します。" #: ../../godmode/groups/modu_group_list.php:127 #: ../../godmode/groups/modu_group_list.php:163 @@ -33166,11 +33945,11 @@ msgstr "%s コミュニティリマインダ" #: ../../godmode/update_manager/update_manager.setup.php:371 #, php-format msgid "" -"Every 8 days, a message is displayed to admin users to remember to register this %s " -"instance" +"Every 8 days, a message is displayed to admin users to remember to register " +"this %s instance" msgstr "" -"8日ごとに、この %s インスタンスを登録するリマインダメッセージを admin ユーザに表示しま" -"す。" +"8日ごとに、この %s インスタンスを登録するリマインダメッセージを admin ユーザに" +"表示します。" #: ../../godmode/update_manager/update_manager.history.php:42 msgid "Origin" @@ -33201,7 +33980,8 @@ msgstr "オンライン" msgid "Please register on metaconsole first." msgstr "先にメタコンソールで登録してください。" -#: ../../godmode/users/profile_list.php:84 ../../godmode/users/configure_profile.php:76 +#: ../../godmode/users/profile_list.php:84 +#: ../../godmode/users/configure_profile.php:76 #, php-format msgid "Profiles defined on %s" msgstr "%s に定義済のプロファイル" @@ -33209,13 +33989,13 @@ msgstr "%s に定義済のプロファイル" #: ../../godmode/users/profile_list.php:115 #, php-format msgid "" -"This node is configured with centralized mode. All profiles information is read only. " -"Go to %s to manage it." +"This node is configured with centralized mode. All profiles information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのプロファイル情報は読み取り専用" -"です。管理には %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのプロファイル情報は読み取" +"り専用です。管理には %s に移動します。" -#: ../../godmode/users/profile_list.php:127 ../../godmode/users/user_list.php:341 +#: ../../godmode/users/profile_list.php:127 ../../godmode/users/user_list.php:401 msgid "There was a problem deleting the profile" msgstr "プロファイルの削除に失敗しました。" @@ -33227,7 +34007,8 @@ msgstr "プロファイルの更新に失敗しました。" msgid "Profile name cannot be empty" msgstr "プロファイル名は空にできません" -#: ../../godmode/users/profile_list.php:303 ../../godmode/users/profile_list.php:306 +#: ../../godmode/users/profile_list.php:303 +#: ../../godmode/users/profile_list.php:306 msgid "There was a problem creating this profile" msgstr "プロファイルの作成に失敗しました。" @@ -33275,8 +34056,8 @@ msgstr "アラート編集" msgid "Edit events" msgstr "イベント編集" -#: ../../godmode/users/configure_profile.php:306 ../../godmode/events/events.php:133 -#: ../../operation/events/events.php:1418 +#: ../../godmode/users/configure_profile.php:306 +#: ../../godmode/events/events.php:133 ../../operation/events/events.php:1495 msgid "Manage events" msgstr "イベント管理" @@ -33304,7 +34085,8 @@ msgstr "ネットワークマップ編集" msgid "Manage network maps" msgstr "ネットワークマップ管理" -#: ../../godmode/users/configure_profile.php:343 ../../include/functions_menu.php:496 +#: ../../godmode/users/configure_profile.php:343 +#: ../../include/functions_menu.php:496 msgid "View visual console" msgstr "ビジュアルコンソール表示" @@ -33329,6 +34111,7 @@ msgid "Manage NCM" msgstr "NCM 管理" #: ../../godmode/users/configure_profile.php:378 +#: ../../godmode/users/configure_user.php:321 msgid "Manage users" msgstr "ユーザ管理" @@ -33341,368 +34124,473 @@ msgstr "データベース管理" msgid "%s management" msgstr "%s 管理" -#: ../../godmode/users/user_list.php:250 +#: ../../godmode/users/configure_profile.php:454 +msgid "Profile name already on use, please, change the name before save" +msgstr "プロファイルが既に存在します。保存する前に名前を変更してください。" + +#: ../../godmode/users/user_list.php:289 #, php-format msgid "Users defined on %s" msgstr "%s に定義済のユーザ" -#: ../../godmode/users/user_list.php:287 ../../godmode/users/configure_user.php:166 +#: ../../godmode/users/user_list.php:338 +#: ../../godmode/users/configure_user.php:162 #, php-format msgid "Deleted user %s" msgstr "ユーザ %s を削除しました" -#: ../../godmode/users/user_list.php:294 ../../godmode/users/user_list.php:332 -#: ../../godmode/users/configure_user.php:173 +#: ../../godmode/users/user_list.php:345 ../../godmode/users/user_list.php:389 +#: ../../godmode/users/configure_user.php:169 msgid "There was a problem deleting the user" msgstr "ユーザの削除に失敗しました。" -#: ../../godmode/users/user_list.php:308 ../../godmode/users/configure_user.php:188 +#: ../../godmode/users/user_list.php:363 +#: ../../godmode/users/configure_user.php:184 #, php-format msgid "Deleted user %s from metaconsole" msgstr "メタコンソールから、ユーザ %s を削除しました" -#: ../../godmode/users/user_list.php:320 ../../godmode/users/configure_user.php:199 +#: ../../godmode/users/user_list.php:375 +#: ../../godmode/users/configure_user.php:196 #, php-format msgid "Deleted user %s from %s" msgstr "ユーザ %s を %s から削除しました" -#: ../../godmode/users/user_list.php:326 ../../godmode/users/configure_user.php:205 +#: ../../godmode/users/user_list.php:381 +#: ../../godmode/users/configure_user.php:205 #, php-format msgid "Successfully deleted from %s" msgstr "%s から削除しました" -#: ../../godmode/users/user_list.php:327 ../../godmode/users/configure_user.php:206 +#: ../../godmode/users/user_list.php:382 +#: ../../godmode/users/configure_user.php:206 #, php-format msgid "There was a problem deleting the user from %s" msgstr "%s からのユーザ削除で問題が発生しました" -#: ../../godmode/users/user_list.php:367 +#: ../../godmode/users/user_list.php:392 +msgid "ID user cannot be empty" +msgstr "ユーザIDは空にできません" + +#: ../../godmode/users/user_list.php:427 msgid "There was a problem disabling user" msgstr "ユーザの無効化で問題が発生しました" -#: ../../godmode/users/user_list.php:373 +#: ../../godmode/users/user_list.php:433 msgid "There was a problem enabling user" msgstr "ユーザの有効化で問題が発生しました" -#: ../../godmode/users/user_list.php:432 ../../operation/users/user_edit.php:254 +#: ../../godmode/users/user_list.php:492 ../../operation/users/user_edit.php:261 #, php-format msgid "" -"This node is configured with centralized mode. All users information is read only. Go " -"to %s to manage it." +"This node is configured with centralized mode. All users information is read " +"only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのユーザ情報は読み取り専用です。" -"管理には %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのユーザ情報は読み取り専用" +"です。管理には %s に移動します。" -#: ../../godmode/users/user_list.php:484 +#: ../../godmode/users/user_list.php:544 msgid "Profile / Group" msgstr "プロファイル / グループ" -#: ../../godmode/users/user_list.php:665 ../../operation/search_users.php:63 +#: ../../godmode/users/user_list.php:727 ../../operation/search_users.php:63 msgid "Administrator" msgstr "管理者" -#: ../../godmode/users/user_list.php:714 +#: ../../godmode/users/user_list.php:753 +msgid "Show profiles" +msgstr "ファイル表示" + +#: ../../godmode/users/user_list.php:772 msgid "Other profiles are also assigned." msgstr "他のプロファイルも割り当てられています。" -#: ../../godmode/users/user_list.php:716 +#: ../../godmode/users/user_list.php:774 msgid "" -"Other profiles you cannot manage are also assigned. These profiles are not shown. You " -"cannot enable/disable or delete this user." +"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:723 ../../include/functions_reporting.php:4760 -#: ../../include/functions_reporting.php:4807 ../../operation/search_users.php:87 +#: ../../godmode/users/user_list.php:783 +#: ../../include/functions_reporting.php:5036 +#: ../../include/functions_reporting.php:5083 ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" -msgstr "このユーザには、プロファイル/グループの組み合わせが何も割り当てられていません。" +msgstr "" +"このユーザには、プロファイル/グループの組み合わせが何も割り当てられていません。" -#: ../../godmode/users/user_list.php:873 ../../godmode/users/configure_user.php:223 +#: ../../godmode/users/user_list.php:933 +#: ../../godmode/users/configure_user.php:308 msgid "Create user" msgstr "ユーザの作成" -#: ../../godmode/users/user_list.php:876 ../../godmode/users/configure_user.php:331 +#: ../../godmode/users/user_list.php:936 +#: ../../godmode/users/configure_user.php:397 #, php-format msgid "The current authentication scheme doesn't support creating users on %s" msgstr "現在の認証スキーマは、%s のユーザ作成に対応していません。" -#: ../../godmode/users/configure_user.php:221 +#: ../../godmode/users/configure_user.php:308 msgid "Update user" msgstr "ユーザ更新" -#: ../../godmode/users/configure_user.php:259 ../../operation/users/user_edit.php:31 -msgid "User detail editor" -msgstr "ユーザ情報の編集" +#: ../../godmode/users/configure_user.php:325 +msgid "User Detail Editor" +msgstr "ユーザ詳細の編集" -#: ../../godmode/users/configure_user.php:418 +#: ../../godmode/users/configure_user.php:487 msgid "User ID cannot be empty" msgstr "ユーザ ID は空に設定できません。" -#: ../../godmode/users/configure_user.php:425 +#: ../../godmode/users/configure_user.php:494 msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "不正なユーザID: 先頭または末尾にスペースを含めることはできません" -#: ../../godmode/users/configure_user.php:433 +#: ../../godmode/users/configure_user.php:502 msgid "Passwords cannot be empty" msgstr "パスワードは空に設定できません。" -#: ../../godmode/users/configure_user.php:440 +#: ../../godmode/users/configure_user.php:509 msgid "Passwords didn't match" msgstr "パスワードが一致しません。" -#: ../../godmode/users/configure_user.php:502 -msgid "" -"Strict ACL is not recommended for admin users because performance could be affected." -msgstr "パフォーマンスに影響するため、管理者ユーザへの厳重な ACL 設定はお勧めしません。" +#: ../../godmode/users/configure_user.php:516 +msgid "The password provided is not valid. Please set another one." +msgstr "パスワードが正しくありません。別のものを設定してください。" -#: ../../godmode/users/configure_user.php:537 ../../godmode/users/configure_user.php:829 +#: ../../godmode/users/configure_user.php:578 +msgid "" +"Strict ACL is not recommended for admin users because performance could be " +"affected." +msgstr "" +"パフォーマンスに影響するため、管理者ユーザへの厳重な ACL 設定はお勧めしません。" + +#: ../../godmode/users/configure_user.php:662 +#: ../../godmode/users/configure_user.php:998 msgid "Profile added successfully" msgstr "プロファイルを追加しました。" -#: ../../godmode/users/configure_user.php:538 ../../godmode/users/configure_user.php:830 +#: ../../godmode/users/configure_user.php:663 +#: ../../godmode/users/configure_user.php:999 msgid "Profile cannot be added" msgstr "プロファイルの追加に失敗しました。" -#: ../../godmode/users/configure_user.php:662 ../../godmode/users/configure_user.php:686 -#: ../../godmode/users/configure_user.php:760 ../../godmode/users/configure_user.php:767 -#: ../../godmode/users/configure_user.php:799 ../../operation/users/user_edit.php:187 -#: ../../operation/users/user_edit.php:232 +#: ../../godmode/users/configure_user.php:790 +#: ../../godmode/users/configure_user.php:814 +#: ../../godmode/users/configure_user.php:888 +#: ../../godmode/users/configure_user.php:895 +#: ../../godmode/users/configure_user.php:927 +#: ../../operation/users/user_edit.php:193 +#: ../../operation/users/user_edit.php:239 msgid "User info successfully updated" msgstr "ユーザ情報を更新しました。" -#: ../../godmode/users/configure_user.php:663 ../../godmode/users/configure_user.php:687 -#: ../../godmode/users/configure_user.php:761 ../../godmode/users/configure_user.php:768 -#: ../../godmode/users/configure_user.php:800 +#: ../../godmode/users/configure_user.php:791 +#: ../../godmode/users/configure_user.php:815 +#: ../../godmode/users/configure_user.php:889 +#: ../../godmode/users/configure_user.php:896 +#: ../../godmode/users/configure_user.php:928 msgid "Error updating user info (no change?)" msgstr "ユーザ情報の更新に失敗しました。(変更なし?)" -#: ../../godmode/users/configure_user.php:692 +#: ../../godmode/users/configure_user.php:820 msgid "Password of the active user is required to perform password change" msgstr "パスワード変更を行うには、アクティブユーザのパスワードが必要です" -#: ../../godmode/users/configure_user.php:694 +#: ../../godmode/users/configure_user.php:822 msgid "Password of active user is not correct" msgstr "アクティブユーザのパスワードが正しくありません" -#: ../../godmode/users/configure_user.php:710 +#: ../../godmode/users/configure_user.php:838 msgid "Passwords does not match" msgstr "パスワードが一致しません。" -#: ../../godmode/users/configure_user.php:789 -msgid "Strict ACL is not recommended for this user. Performance could be affected." +#: ../../godmode/users/configure_user.php:888 +#: ../../operation/users/user_edit.php:191 +msgid "You have generated a new API Token." +msgstr "新たな API トークンを生成しました。" + +#: ../../godmode/users/configure_user.php:917 +msgid "" +"Strict ACL is not recommended for this user. Performance could be affected." msgstr "このユーザには厳重な ACL はお勧めしません。パフォーマンスに影響します。" -#: ../../godmode/users/configure_user.php:870 +#: ../../godmode/users/configure_user.php:1039 msgid "Update User" msgstr "ユーザ更新" -#: ../../godmode/users/configure_user.php:870 +#: ../../godmode/users/configure_user.php:1039 msgid "Create User" msgstr "ユーザ作成" -#: ../../godmode/users/configure_user.php:923 ../../operation/users/user_edit.php:275 +#: ../../godmode/users/configure_user.php:1055 +#: ../../operation/users/user_edit.php:278 +msgid "" +"The API token will be renewed. After this action, the last token you were " +"using will not work. Are you sure?" +msgstr "" +"API トークンが更新されます。 これの実行後は以前のトークンは利用できなくなりま" +"す。 よろしいですか?" + +#: ../../godmode/users/configure_user.php:1063 +#: ../../operation/users/user_edit.php:286 +msgid "Renew API Token" +msgstr "API トークンの更新" + +#: ../../godmode/users/configure_user.php:1076 +#: ../../operation/users/user_edit.php:311 +msgid "Your API Token is:" +msgstr "API トークン: " + +#: ../../godmode/users/configure_user.php:1076 +#: ../../operation/users/user_edit.php:311 +msgid "Please, avoid share this string with others." +msgstr "この文字列の他人への共有は避けてください。" + +#: ../../godmode/users/configure_user.php:1083 +#: ../../operation/users/user_edit.php:318 +msgid "Show API Token" +msgstr "API トークンの表示" + +#: ../../godmode/users/configure_user.php:1134 +#: ../../operation/users/user_edit.php:349 msgid "Full (display) name" msgstr "表示名" -#: ../../godmode/users/configure_user.php:940 ../../operation/users/user_edit.php:422 +#: ../../godmode/users/configure_user.php:1151 +#: ../../godmode/massive/massive_edit_users.php:470 +#: ../../operation/users/user_edit.php:496 msgid "Timezone" msgstr "タイムゾーン" -#: ../../godmode/users/configure_user.php:941 ../../operation/users/user_edit.php:422 +#: ../../godmode/users/configure_user.php:1152 +#: ../../godmode/massive/massive_edit_users.php:470 +#: ../../operation/users/user_edit.php:496 msgid "The timezone must be that of the associated server." -msgstr "タイムゾーンは、関連付けられているサーバのタイムゾーンである必要があります。" +msgstr "" +"タイムゾーンは、関連付けられているサーバのタイムゾーンである必要があります。" -#: ../../godmode/users/configure_user.php:974 ../../operation/users/user_edit.php:302 +#: ../../godmode/users/configure_user.php:1185 +#: ../../operation/users/user_edit.php:376 msgid "Password confirmation" msgstr "パスワード確認" -#: ../../godmode/users/configure_user.php:992 +#: ../../godmode/users/configure_user.php:1203 msgid "Own password confirmation" msgstr "自分自身のパスワードの確認" -#: ../../godmode/users/configure_user.php:1002 +#: ../../godmode/users/configure_user.php:1213 msgid "Administrator user" msgstr "管理者" -#: ../../godmode/users/configure_user.php:1029 ../../operation/users/user_edit.php:295 +#: ../../godmode/users/configure_user.php:1240 +#: ../../operation/users/user_edit.php:369 msgid "E-mail" msgstr "メールアドレス" -#: ../../godmode/users/configure_user.php:1045 ../../operation/users/user_edit.php:297 +#: ../../godmode/users/configure_user.php:1256 +#: ../../operation/users/user_edit.php:371 msgid "Phone number" msgstr "電話番号" -#: ../../godmode/users/configure_user.php:1061 ../../operation/users/user_edit.php:621 +#: ../../godmode/users/configure_user.php:1272 +#: ../../operation/users/user_edit.php:693 msgid "Login allowed IP list" msgstr "ログイン許可 IP 一覧" -#: ../../godmode/users/configure_user.php:1062 ../../operation/users/user_edit.php:622 +#: ../../godmode/users/configure_user.php:1273 +#: ../../operation/users/user_edit.php:694 msgid "" -"Add the source IPs that will allow console access. Each IP must be separated only by " -"comma. * allows all." +"Add the source IPs that will allow console access. Each IP must be separated " +"only by comma. * allows all." msgstr "" -"コンソールアクセスを許可するソース IP を追加します。各 IP はカンマだけで区切る必要があ" -"ります。* はすべてを許可します。" +"コンソールアクセスを許可するソース IP を追加します。各 IP はカンマだけで区切る" +"必要があります。* はすべてを許可します。" -#: ../../godmode/users/configure_user.php:1100 ../../operation/users/user_edit.php:404 -#: ../../operation/users/user_edit.php:413 +#: ../../godmode/users/configure_user.php:1311 msgid "Skin" msgstr "スキン" -#: ../../godmode/users/configure_user.php:1109 +#: ../../godmode/users/configure_user.php:1320 msgid "Search custom field view" msgstr "カスタムフィールド表示検索" -#: ../../godmode/users/configure_user.php:1109 +#: ../../godmode/users/configure_user.php:1320 msgid "Load by default the selected view in custom field view" msgstr "デフォルトでは、選択した表示をカスタムフィールド表示に読み込みます" -#: ../../godmode/users/configure_user.php:1126 +#: ../../godmode/users/configure_user.php:1337 msgid "Use global conf" msgstr "グローバル設定を利用します。" -#: ../../godmode/users/configure_user.php:1131 ../../operation/users/user_edit.php:357 +#: ../../godmode/users/configure_user.php:1342 +#: ../../godmode/massive/massive_edit_users.php:271 +#: ../../operation/users/user_edit.php:431 msgid "Home screen" msgstr "ホーム画面" -#: ../../godmode/users/configure_user.php:1132 ../../operation/users/user_edit.php:357 +#: ../../godmode/users/configure_user.php:1343 +#: ../../godmode/massive/massive_edit_users.php:271 +#: ../../operation/users/user_edit.php:431 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/" +"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 "" -"ユーザはホームページをカスタマイズできます。 デフォルトでは、'エージェントの詳細' が表" -"示されます。 例: 'その他' を選択し、index.php?sec=estado&sec2=operation/agentes/" -"ver_agente&id_agente=1 と入力すると、エージェントの詳細を表示します。" +"ユーザはホームページをカスタマイズできます。 デフォルトでは、'エージェントの詳" +"細' が表示されます。 例: 'その他' を選択し、index.php?" +"sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 と入力すると、エージェ" +"ントの詳細を表示します。" -#: ../../godmode/users/configure_user.php:1139 ../../godmode/events/events.php:41 -#: ../../operation/users/user_edit.php:361 ../../operation/events/events.php:1361 +#: ../../godmode/users/configure_user.php:1350 +#: ../../godmode/massive/massive_edit_users.php:276 +#: ../../godmode/events/events.php:41 ../../operation/users/user_edit.php:435 +#: ../../operation/events/events.php:1438 msgid "Event list" msgstr "イベント一覧" -#: ../../godmode/users/configure_user.php:1142 ../../operation/users/user_edit.php:364 +#: ../../godmode/users/configure_user.php:1353 +#: ../../godmode/massive/massive_edit_users.php:279 +#: ../../operation/users/user_edit.php:438 #: ../../operation/agentes/alerts_status.php:190 ../../operation/menu.php:68 msgid "Alert detail" msgstr "アラート詳細" -#: ../../godmode/users/configure_user.php:1143 +#: ../../godmode/users/configure_user.php:1354 msgid "External link" msgstr "外部リンク" -#: ../../godmode/users/configure_user.php:1236 +#: ../../godmode/users/configure_user.php:1447 msgid "Metaconsole access" msgstr "メタコンソールアクセス" -#: ../../godmode/users/configure_user.php:1254 +#: ../../godmode/users/configure_user.php:1465 msgid "Not Login" msgstr "ログイン無し" -#: ../../godmode/users/configure_user.php:1256 +#: ../../godmode/users/configure_user.php:1467 msgid "The user with not login set only can access to API." msgstr "ログイン無しを設定したユーザは、API にのみアクセスできます。" -#: ../../godmode/users/configure_user.php:1266 +#: ../../godmode/users/configure_user.php:1477 msgid "Local user" msgstr "ローカルユーザ" -#: ../../godmode/users/configure_user.php:1268 -msgid "The user with local authentication enabled will always use local authentication." +#: ../../godmode/users/configure_user.php:1479 +msgid "" +"The user with local authentication enabled will always use local " +"authentication." msgstr "ローカル認証が有効になっているユーザは、常にローカル認証を使用します。" -#: ../../godmode/users/configure_user.php:1278 +#: ../../godmode/users/configure_user.php:1489 msgid "Session Time" msgstr "セッション時間" -#: ../../godmode/users/configure_user.php:1280 +#: ../../godmode/users/configure_user.php:1491 msgid "" -"This is defined in minutes, If you wish a permanent session should putting -1 in this " -"field." +"This is defined in minutes, If you wish a permanent session should putting -1 " +"in this field." msgstr "分単位で定義します。無制限の場合は -1 を設定してください。" -#: ../../godmode/users/configure_user.php:1314 +#: ../../godmode/users/configure_user.php:1524 msgid "Default event filter" msgstr "デフォルトイベントフィルタ" -#: ../../godmode/users/configure_user.php:1328 +#: ../../godmode/users/configure_user.php:1538 msgid "eHorus user access enabled" msgstr "eHorus ユーザアクセス有効化" -#: ../../godmode/users/configure_user.php:1336 ../../include/functions_config.php:1683 +#: ../../godmode/users/configure_user.php:1546 +#: ../../include/functions_config.php:1722 msgid "eHorus user" msgstr "eHorus ユーザ" -#: ../../godmode/users/configure_user.php:1345 ../../include/functions_config.php:1687 +#: ../../godmode/users/configure_user.php:1555 +#: ../../include/functions_config.php:1726 msgid "eHorus password" msgstr "eHorus パスワード" -#: ../../godmode/users/configure_user.php:1368 +#: ../../godmode/users/configure_user.php:1578 msgid "User must be created before activating double authentication." msgstr "二段階認証を有効にする前に、ユーザを作成する必要があります。" -#: ../../godmode/users/configure_user.php:1378 ../../operation/users/user_edit.php:443 +#: ../../godmode/users/configure_user.php:1588 +#: ../../operation/users/user_edit.php:514 msgid "Show information" msgstr "情報表示" -#: ../../godmode/users/configure_user.php:1396 +#: ../../godmode/users/configure_user.php:1606 msgid "Enable agents managment" msgstr "エージェント管理を有効にする" -#: ../../godmode/users/configure_user.php:1404 +#: ../../godmode/users/configure_user.php:1614 msgid "Enable node access" msgstr "ノードアクセスを有効にする" -#: ../../godmode/users/configure_user.php:1404 +#: ../../godmode/users/configure_user.php:1614 msgid "With this option enabled, the user will can access to nodes console" -msgstr "このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。" +msgstr "" +"このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。" -#: ../../godmode/users/configure_user.php:1633 +#: ../../godmode/users/configure_user.php:1854 msgid "yes" msgstr "はい" -#: ../../godmode/users/configure_user.php:1636 +#: ../../godmode/users/configure_user.php:1857 msgid "no" msgstr "いいえ" -#: ../../godmode/users/configure_user.php:1640 -msgid "please select profile and group" +#: ../../godmode/users/configure_user.php:1861 +msgid "Please select profile and group" msgstr "プロファイルとグループを選択してください" -#: ../../godmode/users/configure_user.php:1666 +#: ../../godmode/users/configure_user.php:1875 +#: ../../godmode/users/configure_user.php:1926 +msgid "This profile is already defined" +msgstr "このプロファイルはすでに定義済です" + +#: ../../godmode/users/configure_user.php:1940 msgid "Deleting last profile will delete this user" msgstr "最後のプロファイルを削除すると、このユーザが削除されます" -#: ../../godmode/users/configure_user.php:1706 +#: ../../godmode/users/configure_user.php:1980 msgid "" -"User will be created without profiles assigned and won't be able to log in, are you " -"sure?" +"User will be created without profiles assigned and won't be able to log in, " +"are you sure?" msgstr "" -"ユーザはプロファイルが割り当てられていない状態で作成され、ログインできなくなります。よ" -"ろしいですか?" +"ユーザはプロファイルが割り当てられていない状態で作成され、ログインできなくなり" +"ます。よろしいですか?" -#: ../../godmode/users/configure_user.php:1871 ../../operation/users/user_edit.php:1106 +#: ../../godmode/users/configure_user.php:2147 +#: ../../operation/users/user_edit.php:1178 msgid "Double autentication information" msgstr "二段階認証情報" -#: ../../godmode/users/configure_user.php:1961 ../../operation/users/user_edit.php:1195 +#: ../../godmode/users/configure_user.php:2237 +#: ../../operation/users/user_edit.php:1267 msgid "The double authentication will be deactivated" msgstr "二段階認証は無効化されます" -#: ../../godmode/users/configure_user.php:1962 ../../operation/users/user_edit.php:1196 +#: ../../godmode/users/configure_user.php:2238 +#: ../../operation/users/user_edit.php:1268 msgid "Deactivate" msgstr "無効化" -#: ../../godmode/users/configure_user.php:1998 ../../operation/users/user_edit.php:1228 +#: ../../godmode/users/configure_user.php:2274 +#: ../../operation/users/user_edit.php:1300 msgid "The double autentication was deactivated successfully" msgstr "二段階認証を無効化しました" -#: ../../godmode/users/configure_user.php:2002 -#: ../../godmode/users/configure_user.php:2006 ../../operation/users/user_edit.php:1231 -#: ../../operation/users/user_edit.php:1235 +#: ../../godmode/users/configure_user.php:2278 +#: ../../godmode/users/configure_user.php:2282 +#: ../../operation/users/user_edit.php:1303 +#: ../../operation/users/user_edit.php:1307 msgid "There was an error deactivating the double autentication" msgstr "二段階認証の無効化でエラーが発生しました" -#: ../../godmode/agentes/agent_template.php:67 ../../include/functions_api.php:15251 +#: ../../godmode/agentes/agent_template.php:67 +#: ../../include/functions_api.php:15030 msgid "Created by template " msgstr "テンプレートにより作成 " @@ -33714,7 +34602,8 @@ msgstr "モジュールを追加できませんでした。" msgid "Error adding modules. The following errors already exists: " msgstr "モジュールを追加できませんでした。次のモジュールは存在します: " -#: ../../godmode/agentes/agent_template.php:163 ../../include/functions_api.php:15345 +#: ../../godmode/agentes/agent_template.php:163 +#: ../../include/functions_api.php:15124 msgid "Modules successfully added" msgstr "モジュールを追加しました。" @@ -33722,7 +34611,8 @@ msgstr "モジュールを追加しました。" msgid "Assign" msgstr "割当" -#: ../../godmode/agentes/agent_template.php:269 ../../mobile/operation/modules.php:772 +#: ../../godmode/agentes/agent_template.php:270 +#: ../../mobile/operation/modules.php:772 msgid "No modules" msgstr "モジュールがありません" @@ -33732,11 +34622,11 @@ msgstr "オプション。WMI 名前空間。不明な場合は空白のまま #: ../../godmode/agentes/module_manager_editor_wmi.php:151 msgid "" -"Optional. Substring to look for in the WQL query result. The module returns 1 if " -"found, 0 if not." +"Optional. Substring to look for in the WQL query result. The module returns 1 " +"if found, 0 if not." msgstr "" -"オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は 1 を返" -"し、見つからない場合は 0 を返します。" +"オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は " +"1 を返し、見つからない場合は 0 を返します。" #: ../../godmode/agentes/module_manager_editor_wmi.php:164 msgid "Column number to retrieve from the WQL query result (starting from zero)." @@ -33794,7 +34684,7 @@ msgstr "get または post がありません" #: ../../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:1340 +#: ../../operation/agentes/status_monitor.php:1353 #: ../../operation/agentes/estado_generalagente.php:436 msgid "Last status change" msgstr "最新の状態変化" @@ -33803,180 +34693,188 @@ msgstr "最新の状態変化" msgid "Show monitor detail fields" msgstr "監視詳細フィールド表示" -#: ../../godmode/agentes/configurar_agente.php:246 -#: ../../godmode/agentes/configurar_agente.php:1046 +#: ../../godmode/agentes/configurar_agente.php:254 +#: ../../godmode/agentes/configurar_agente.php:1082 msgid "No agent alias specified" msgstr "エージェントの別名が定義されていません" -#: ../../godmode/agentes/configurar_agente.php:249 +#: ../../godmode/agentes/configurar_agente.php:257 msgid "Agent cannot be created due to the maximum agent limit for this group" msgstr "このグループのエージェント上限のため、エージェントを作成できません" -#: ../../godmode/agentes/configurar_agente.php:356 +#: ../../godmode/agentes/configurar_agente.php:364 msgid "Could not be created, because name already exists" msgstr "名前がすでに存在するため、作成できませんでした。" -#: ../../godmode/agentes/configurar_agente.php:358 +#: ../../godmode/agentes/configurar_agente.php:366 msgid "Could not be created, because IP already exists" msgstr "IP はすでに存在するため作成できません" -#: ../../godmode/agentes/configurar_agente.php:441 ../../godmode/menu.php:173 -#: ../../godmode/wizards/HostDevices.class.php:1077 +#: ../../godmode/agentes/configurar_agente.php:449 ../../godmode/menu.php:174 +#: ../../godmode/wizards/HostDevices.class.php:1081 msgid "Module templates" msgstr "モジュールテンプレート" -#: ../../godmode/agentes/configurar_agente.php:513 -#: ../../operation/agentes/ver_agente.php:1487 +#: ../../godmode/agentes/configurar_agente.php:534 +#: ../../operation/agentes/ver_agente.php:1517 msgid "GIS data" msgstr "GIS データ" -#: ../../godmode/agentes/configurar_agente.php:585 -#: ../../godmode/agentes/configurar_agente.php:753 -#: ../../operation/agentes/ver_agente.php:1507 ../../operation/menu.php:496 +#: ../../godmode/agentes/configurar_agente.php:606 +#: ../../godmode/agentes/configurar_agente.php:774 +#: ../../operation/agentes/ver_agente.php:1537 ../../operation/menu.php:506 #: ../../operation/incidents/incident_statistics.php:21 #: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "インシデント" -#: ../../godmode/agentes/configurar_agente.php:748 +#: ../../godmode/agentes/configurar_agente.php:769 msgid "Gis" msgstr "GIS" -#: ../../godmode/agentes/configurar_agente.php:790 +#: ../../godmode/agentes/configurar_agente.php:811 msgid "SNMP explorer" msgstr "SNMPエクスプローラ" -#: ../../godmode/agentes/configurar_agente.php:821 -#: ../../godmode/agentes/configurar_agente.php:843 -#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:128 +#: ../../godmode/agentes/configurar_agente.php:842 +#: ../../godmode/agentes/configurar_agente.php:864 +#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:129 msgid "Resources" msgstr "リソース" -#: ../../godmode/agentes/configurar_agente.php:831 +#: ../../godmode/agentes/configurar_agente.php:852 msgid "Agent manager" msgstr "エージェントマネージャ" -#: ../../godmode/agentes/configurar_agente.php:871 -#: ../../godmode/servers/modificar_server.php:240 +#: ../../godmode/agentes/configurar_agente.php:892 +#: ../../godmode/servers/modificar_server.php:248 msgid "Conf file deleted successfully" msgstr "conf ファイルを削除しました。" -#: ../../godmode/agentes/configurar_agente.php:872 -#: ../../godmode/servers/modificar_server.php:241 +#: ../../godmode/agentes/configurar_agente.php:893 +#: ../../godmode/servers/modificar_server.php:249 msgid "Could not delete conf file" msgstr "conf ファイルの削除に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:889 -#: ../../godmode/agentes/configurar_agente.php:1041 +#: ../../godmode/agentes/configurar_agente.php:910 +#: ../../godmode/agentes/configurar_agente.php:1077 #: ../../include/class/ExternalTools.class.php:756 msgid "The ip or dns name entered cannot be resolved" msgstr "入力された IP または DNS 名の名前解決ができません。" -#: ../../godmode/agentes/configurar_agente.php:916 -#: ../../godmode/agentes/configurar_agente.php:920 +#: ../../godmode/agentes/configurar_agente.php:937 +#: ../../godmode/agentes/configurar_agente.php:941 msgid "No data to normalize" msgstr "正規化するデータがありません。" -#: ../../godmode/agentes/configurar_agente.php:925 +#: ../../godmode/agentes/configurar_agente.php:946 #, php-format msgid "Deleted data above %f" msgstr "%f を超えるデータを削除しました。" -#: ../../godmode/agentes/configurar_agente.php:926 +#: ../../godmode/agentes/configurar_agente.php:947 #, php-format msgid "Error normalizing module %s" msgstr "モジュール %s において正規化に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:1057 +#: ../../godmode/agentes/configurar_agente.php:1093 #, php-format msgid "The group id %d is incorrect." msgstr "グループ ID %d は不正です。" -#: ../../godmode/agentes/configurar_agente.php:1059 +#: ../../godmode/agentes/configurar_agente.php:1095 msgid "Agent cannot be updated due to the maximum agent limit for this group" msgstr "このグループのエージェント上限のため、エージェントを更新できません" -#: ../../godmode/agentes/configurar_agente.php:1061 +#: ../../godmode/agentes/configurar_agente.php:1097 msgid "Duplicate main IP address" msgstr "メイン IP が重複しています" -#: ../../godmode/agentes/configurar_agente.php:1115 +#: ../../godmode/agentes/configurar_agente.php:1151 msgid "There was a problem updating the agent" msgstr "エージェントの更新に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:1208 +#: ../../godmode/agentes/configurar_agente.php:1244 msgid "There was a problem loading the agent" msgstr "エージェントのロードに失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:1720 +#: ../../godmode/agentes/configurar_agente.php:1758 msgid "" -"There was a problem updating module. Another module already exists with the same name." -msgstr "モジュールの更新で問題が発生しました。同じ名前のモジュールがすでに存在します。" - -#: ../../godmode/agentes/configurar_agente.php:1724 -msgid "There was a problem updating module. Some required fields are missed: (name)" +"There was a problem updating module. Another module already exists with the " +"same name." msgstr "" -"モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名前)" +"モジュールの更新で問題が発生しました。同じ名前のモジュールがすでに存在します。" -#: ../../godmode/agentes/configurar_agente.php:1728 +#: ../../godmode/agentes/configurar_agente.php:1762 +msgid "" +"There was a problem updating module. Some required fields are missed: (name)" +msgstr "" +"モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名" +"前)" + +#: ../../godmode/agentes/configurar_agente.php:1766 msgid "There was a problem updating module. \"No change\"" msgstr "モジュールの更新で問題が発生しました。\"変更点がありません\"" -#: ../../godmode/agentes/configurar_agente.php:1734 +#: ../../godmode/agentes/configurar_agente.php:1772 msgid "There was a problem updating module. Processing error" msgstr "モジュールの更新で問題が発生しました。処理エラー" -#: ../../godmode/agentes/configurar_agente.php:1763 +#: ../../godmode/agentes/configurar_agente.php:1801 msgid "Module successfully updated" msgstr "モジュールの更新が完了しました。" -#: ../../godmode/agentes/configurar_agente.php:1910 +#: ../../godmode/agentes/configurar_agente.php:1949 msgid "" -"There was a problem adding module. Another module already exists with the same name." -msgstr "モジュールの追加で問題が発生しました。同じ名前のモジュールがすでに存在します。" - -#: ../../godmode/agentes/configurar_agente.php:1914 -msgid "There was a problem adding module. Some required fields are missed : (name)" +"There was a problem adding module. Another module already exists with the same " +"name." msgstr "" -"モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名前)" +"モジュールの追加で問題が発生しました。同じ名前のモジュールがすでに存在します。" -#: ../../godmode/agentes/configurar_agente.php:1920 +#: ../../godmode/agentes/configurar_agente.php:1953 +msgid "" +"There was a problem adding module. Some required fields are missed : (name)" +msgstr "" +"モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名" +"前)" + +#: ../../godmode/agentes/configurar_agente.php:1959 msgid "There was a problem adding module. Processing error" msgstr "モジュールの追加で問題が発生しました。処理エラー" -#: ../../godmode/agentes/configurar_agente.php:1949 -#: ../../godmode/reporting/graph_builder.php:386 +#: ../../godmode/agentes/configurar_agente.php:1988 +#: ../../godmode/reporting/graph_builder.php:392 msgid "Module added successfully" msgstr "モジュールを追加しました。" -#: ../../godmode/agentes/configurar_agente.php:2100 +#: ../../godmode/agentes/configurar_agente.php:2142 msgid "There was a problem deleting the module" msgstr "モジュールの削除に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:2104 +#: ../../godmode/agentes/configurar_agente.php:2146 msgid "Module deleted succesfully" msgstr "モジュールを削除しました。" -#: ../../godmode/agentes/configurar_agente.php:2243 -#: ../../include/functions_api.php:11144 +#: ../../godmode/agentes/configurar_agente.php:2285 +#: ../../include/functions_api.php:11172 #, php-format msgid "Save by %s Console" msgstr "%s コンソールでの保存" -#: ../../godmode/agentes/configurar_agente.php:2261 -#: ../../include/functions_api.php:11145 +#: ../../godmode/agentes/configurar_agente.php:2303 +#: ../../include/functions_api.php:11173 #, php-format msgid "Update by %s Console" msgstr "%s コンソールでの更新" -#: ../../godmode/agentes/configurar_agente.php:2277 -#: ../../include/functions_api.php:11146 +#: ../../godmode/agentes/configurar_agente.php:2319 +#: ../../include/functions_api.php:11174 #, php-format msgid "Insert by %s Console" msgstr "%s コンソールによる挿入" -#: ../../godmode/agentes/configurar_agente.php:2350 -#: ../../godmode/agentes/configurar_agente.php:2362 +#: ../../godmode/agentes/configurar_agente.php:2392 +#: ../../godmode/agentes/configurar_agente.php:2408 msgid "Invalid tab specified" msgstr "不正なタブが指定されました" @@ -34009,48 +34907,59 @@ msgstr "将来の見積" msgid "Limit value" msgstr "制限値" -#: ../../godmode/agentes/module_manager_editor.php:718 +#: ../../godmode/agentes/module_manager_editor.php:720 msgid "Invalid module type" msgstr "不正なモジュールタイプ" -#: ../../godmode/agentes/module_manager_editor.php:762 +#: ../../godmode/agentes/module_manager_editor.php:764 msgid "Module relations" msgstr "モジュール関係" -#: ../../godmode/agentes/module_manager_editor.php:852 +#: ../../godmode/agentes/module_manager_editor.php:854 msgid "No module to predict" msgstr "予測モジュールがありません。" -#: ../../godmode/agentes/module_manager_editor.php:862 +#: ../../godmode/agentes/module_manager_editor.php:864 msgid "No plug-in provided" msgstr "プラグインがありません" -#: ../../godmode/agentes/module_manager_editor.php:872 +#: ../../godmode/agentes/module_manager_editor.php:874 msgid "No server provided" msgstr "サーバがありません" -#: ../../godmode/agentes/module_manager_editor.php:903 +#: ../../godmode/agentes/module_manager_editor.php:905 msgid "" -"Error, The field name and name in module_name in data configuration are different." -msgstr "エラー、データ設定におけるフィールド名と module_name 内の名前が異なります。" +"Error, The field name and name in module_name in data configuration are " +"different." +msgstr "" +"エラー、データ設定におけるフィールド名と module_name 内の名前が異なります。" -#: ../../godmode/agentes/module_manager_editor.php:941 +#: ../../godmode/agentes/module_manager_editor.php:943 msgid "The File APIs are not fully supported in this browser." msgstr "このブラウザでは、ファイル API は完全にはサポートされていません。" -#: ../../godmode/agentes/module_manager_editor.php:942 +#: ../../godmode/agentes/module_manager_editor.php:944 msgid "Couldn`t find the fileinput element." msgstr "ファイル入力要素がみつかりません。" -#: ../../godmode/agentes/module_manager_editor.php:943 +#: ../../godmode/agentes/module_manager_editor.php:945 msgid "This browser doesn`t seem to support the files property of file inputs." msgstr "" -"このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていません。" +"このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていませ" +"ん。" -#: ../../godmode/agentes/module_manager_editor.php:944 +#: ../../godmode/agentes/module_manager_editor.php:946 msgid "Please select a file before clicking Load" msgstr "読み込みをクリックする前にファイルを選択してください。" +#: ../../godmode/agentes/inventory_manager.php:110 +msgid "Successfully forced inventory module" +msgstr "インベントリモジュールを強制実行しました" + +#: ../../godmode/agentes/inventory_manager.php:112 +msgid "Error forcing inventory module" +msgstr "インベントリモジュールの強制実行エラー" + #: ../../godmode/agentes/modificar_agente.php:95 #, php-format msgid "Agents defined in %s" @@ -34058,10 +34967,11 @@ msgstr "%s で定義されたエージェント" #: ../../godmode/agentes/modificar_agente.php:124 #, php-format -msgid "This node is configured with centralized mode. Go to %s to delete an agent" +msgid "" +"This node is configured with centralized mode. Go to %s to delete an agent" msgstr "" -"このノードは中央管理モードで設定されています。 エージェントを削除するには %s に移動し" -"ます" +"このノードは中央管理モードで設定されています。 エージェントを削除するには %s に" +"移動します" #: ../../godmode/agentes/modificar_agente.php:170 msgid "Success deleted agent." @@ -34080,6 +34990,7 @@ msgid "Show Agents" msgstr "エージェント表示" #: ../../godmode/agentes/modificar_agente.php:335 +#: ../../include/class/SatelliteAgent.class.php:152 msgid "Everyone" msgstr "全て" @@ -34088,8 +34999,9 @@ msgid "Operative System" msgstr "オペレーションシステム" #: ../../godmode/agentes/modificar_agente.php:367 -#: ../../include/class/SatelliteAgent.class.php:163 -msgid "Search filter by alias, name, description, IP address or custom fields content" +#: ../../include/class/SatelliteAgent.class.php:190 +msgid "" +"Search filter by alias, name, description, IP address or custom fields content" msgstr "別名、名前、説明、IPドレス、カスタムフィールドの内容による検索フィルタ" #: ../../godmode/agentes/modificar_agente.php:648 @@ -34100,219 +35012,228 @@ msgstr "リモートエージェント設定" msgid "R" msgstr "R" -#: ../../godmode/agentes/modificar_agente.php:859 +#: ../../godmode/agentes/modificar_agente.php:853 msgid "Edit remote config" msgstr "リモート設定" -#: ../../godmode/agentes/modificar_agente.php:909 +#: ../../godmode/agentes/modificar_agente.php:903 msgid "You are going to enable a cluster agent. Are you sure?" msgstr "クラスタエージェントを有効化します。よろしいですか?" -#: ../../godmode/agentes/modificar_agente.php:912 +#: ../../godmode/agentes/modificar_agente.php:906 msgid "Enable agent" msgstr "エージェントの有効化" -#: ../../godmode/agentes/modificar_agente.php:919 +#: ../../godmode/agentes/modificar_agente.php:913 msgid "You are going to disable a cluster agent. Are you sure?" msgstr "クラスタエージェントを無効化します。よろしいですか?" -#: ../../godmode/agentes/modificar_agente.php:922 +#: ../../godmode/agentes/modificar_agente.php:916 msgid "Disable agent" msgstr "エージェントの無効化" -#: ../../godmode/agentes/modificar_agente.php:932 +#: ../../godmode/agentes/modificar_agente.php:926 msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" msgstr "警告! - クラスタエージェントを削除します。よろしいですか?" -#: ../../godmode/agentes/agent_conf_gis.php:38 ../../operation/agentes/gis_view.php:59 +#: ../../godmode/agentes/agent_conf_gis.php:38 +#: ../../operation/agentes/gis_view.php:59 msgid "There is no default map. Please go to the setup for to set a default map." 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." +"There is no GIS data for this agent, so it's positioned in default position of " +"map." msgstr "" -"このエージェントには GIS データがありません。そのため、マップのデフォルト位置に配置し" -"ます。" +"このエージェントには GIS データがありません。そのため、マップのデフォルト位置に" +"配置します。" #: ../../godmode/agentes/agent_conf_gis.php:58 msgid "" -"When you change the Agent position, the agent automatically activates the 'Ignore new " -"GIS data' option" +"When you change the Agent position, the agent automatically activates the " +"'Ignore new GIS data' option" msgstr "" -"エージェントの位置を変更すると、エージェントは '新たなGISデータを無視する' オプション" -"を自動的に有効化します。" +"エージェントの位置を変更すると、エージェントは '新たなGISデータを無視する' オプ" +"ションを自動的に有効化します。" -#: ../../godmode/agentes/agent_conf_gis.php:67 +#: ../../godmode/agentes/agent_conf_gis.php:68 msgid "Agent position" msgstr "エージェントの位置" -#: ../../godmode/agentes/agent_conf_gis.php:73 +#: ../../godmode/agentes/agent_conf_gis.php:74 msgid "Latitude: " msgstr "緯度: " -#: ../../godmode/agentes/agent_conf_gis.php:90 +#: ../../godmode/agentes/agent_conf_gis.php:91 msgid "Longitude: " msgstr "経度: " -#: ../../godmode/agentes/agent_conf_gis.php:107 +#: ../../godmode/agentes/agent_conf_gis.php:108 msgid "Altitude: " msgstr "高度: " -#: ../../godmode/agentes/agent_conf_gis.php:124 +#: ../../godmode/agentes/agent_conf_gis.php:125 #: ../../godmode/massive/massive_edit_agents.php:1072 msgid "Ignore new GIS data:" msgstr "新たな GIS データを無視する:" -#: ../../godmode/agentes/planned_downtime.list.php:174 +#: ../../godmode/agentes/planned_downtime.list.php:166 +#: ../../godmode/agentes/planned_downtime.editor.php:1245 +#: ../../godmode/agentes/planned_downtime.editor.php:1367 +msgid "All modules" +msgstr "全モジュール" + +#: ../../godmode/agentes/planned_downtime.list.php:211 #: ../../godmode/agentes/planned_downtime.editor.php:68 -#: ../../include/functions_reporting_html.php:883 -#: ../../include/functions_reporting_html.php:4785 +#: ../../include/functions_reporting_html.php:884 +#: ../../include/functions_reporting_html.php:4805 msgid "Scheduled Downtime" msgstr "計画停止" -#: ../../godmode/agentes/planned_downtime.list.php:206 +#: ../../godmode/agentes/planned_downtime.list.php:243 msgid "An error occurred stopping the scheduled downtime" msgstr "計画停止の中止中にエラーが発生しました" -#: ../../godmode/agentes/planned_downtime.list.php:233 +#: ../../godmode/agentes/planned_downtime.list.php:270 msgid "This scheduled downtime is running" msgstr "この計画停止を実行中" -#: ../../godmode/agentes/planned_downtime.list.php:318 -#: ../../godmode/agentes/planned_downtime.list.php:672 +#: ../../godmode/agentes/planned_downtime.list.php:355 +#: ../../godmode/agentes/planned_downtime.list.php:709 #: ../../godmode/agentes/planned_downtime.editor.php:881 msgid "Once" msgstr "一回のみ" -#: ../../godmode/agentes/planned_downtime.list.php:319 -#: ../../godmode/agentes/planned_downtime.list.php:673 +#: ../../godmode/agentes/planned_downtime.list.php:356 +#: ../../godmode/agentes/planned_downtime.list.php:710 #: ../../godmode/agentes/planned_downtime.editor.php:882 msgid "Periodically" msgstr "定期的" -#: ../../godmode/agentes/planned_downtime.list.php:320 -#: ../../godmode/agentes/planned_downtime.list.php:674 +#: ../../godmode/agentes/planned_downtime.list.php:357 +#: ../../godmode/agentes/planned_downtime.list.php:711 msgid "Cron" msgstr "Cron" -#: ../../godmode/agentes/planned_downtime.list.php:334 +#: ../../godmode/agentes/planned_downtime.list.php:371 msgid "Show past downtimes" msgstr "終了した計画停止の表示" -#: ../../godmode/agentes/planned_downtime.list.php:583 -#: ../../godmode/agentes/planned_downtime.export_csv.php:202 +#: ../../godmode/agentes/planned_downtime.list.php:620 +#: ../../godmode/agentes/planned_downtime.export_csv.php:204 msgid "No scheduled downtime" msgstr "計画停止がありません" -#: ../../godmode/agentes/planned_downtime.list.php:619 +#: ../../godmode/agentes/planned_downtime.list.php:656 msgid "Name #Ag." msgstr "名前" -#: ../../godmode/agentes/planned_downtime.list.php:626 +#: ../../godmode/agentes/planned_downtime.list.php:663 msgid "Affected" msgstr "対象" -#: ../../godmode/agentes/planned_downtime.list.php:631 -#: ../../godmode/agentes/planned_downtime.list.php:735 -#: ../../godmode/agentes/planned_downtime.list.php:741 +#: ../../godmode/agentes/planned_downtime.list.php:668 +#: ../../godmode/agentes/planned_downtime.list.php:772 +#: ../../godmode/agentes/planned_downtime.list.php:778 msgid "Stop downtime" msgstr "計画停止の中止" -#: ../../godmode/agentes/planned_downtime.list.php:665 +#: ../../godmode/agentes/planned_downtime.list.php:702 #: ../../godmode/agentes/planned_downtime.editor.php:863 msgid "Disabled Agents" msgstr "エージェント無効化" -#: ../../godmode/agentes/planned_downtime.list.php:666 +#: ../../godmode/agentes/planned_downtime.list.php:703 #: ../../godmode/agentes/planned_downtime.editor.php:865 msgid "Disabled only Alerts" msgstr "アラートのみ無効化" -#: ../../godmode/agentes/planned_downtime.list.php:688 +#: ../../godmode/agentes/planned_downtime.list.php:725 msgid "Not running" msgstr "停止中" -#: ../../godmode/agentes/planned_downtime.list.php:706 +#: ../../godmode/agentes/planned_downtime.list.php:743 msgid "Agents / Modules affected" msgstr "対象エージェント/モジュール" -#: ../../godmode/agentes/planned_downtime.list.php:715 +#: ../../godmode/agentes/planned_downtime.list.php:752 msgid "Agents and modules affected" msgstr "対象エージェントとモジュール" -#: ../../godmode/agentes/planned_downtime.list.php:913 +#: ../../godmode/agentes/planned_downtime.list.php:950 msgid "" -"WARNING: If you delete this scheduled downtime, it will not be taken into account in " -"future SLA reports" +"WARNING: If you delete this scheduled downtime, it will not be taken into " +"account in future SLA reports" msgstr "警告: この計画停止を削除すると、将来の SLA レポートには考慮されません" -#: ../../godmode/agentes/planned_downtime.list.php:919 +#: ../../godmode/agentes/planned_downtime.list.php:956 msgid "WARNING: There are malformed scheduled downtimes" msgstr "警告: 不正な計画停止があります" -#: ../../godmode/agentes/planned_downtime.list.php:919 +#: ../../godmode/agentes/planned_downtime.list.php:956 msgid "Do you want to migrate automatically the malformed items?" msgstr "不正な要素を自動的に移動しますか。" #: ../../godmode/agentes/planned_downtime.editor.php:221 -#: ../../godmode/agentes/planned_downtime.editor.php:1427 -#: ../../godmode/agentes/planned_downtime.editor.php:1569 +#: ../../godmode/agentes/planned_downtime.editor.php:1422 +#: ../../godmode/agentes/planned_downtime.editor.php:1625 msgid "This elements cannot be modified while the downtime is being executed" msgstr "計画停止実行中は、この要素は変更できません。" #: ../../godmode/agentes/planned_downtime.editor.php:254 -#: ../../include/functions_planned_downtimes.php:40 -#: ../../include/functions_planned_downtimes.php:759 +#: ../../include/functions_planned_downtimes.php:41 +#: ../../include/functions_planned_downtimes.php:760 msgid "" -"Not created. Error inserting data. Start time must be higher than the current time" +"Not created. Error inserting data. Start time must be higher than the current " +"time" msgstr "" -"作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなければいけま" -"せん。" +"作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなけれ" +"ばいけません。" #: ../../godmode/agentes/planned_downtime.editor.php:258 #: ../../godmode/agentes/planned_downtime.editor.php:262 #: ../../godmode/agentes/planned_downtime.editor.php:270 #: ../../godmode/agentes/planned_downtime.editor.php:274 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:764 -#: ../../include/functions_planned_downtimes.php:771 -#: ../../include/functions_planned_downtimes.php:779 -#: ../../include/functions_planned_downtimes.php:787 -#: ../../include/functions_planned_downtimes.php:792 -#: ../../include/functions_planned_downtimes.php:797 -#: ../../include/functions_planned_downtimes.php:802 -#: ../../include/functions_planned_downtimes.php:807 -#: ../../include/functions_planned_downtimes.php:812 -#: ../../include/functions_planned_downtimes.php:817 +#: ../../include/functions_planned_downtimes.php:43 +#: ../../include/functions_planned_downtimes.php:48 +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:765 +#: ../../include/functions_planned_downtimes.php:772 +#: ../../include/functions_planned_downtimes.php:780 +#: ../../include/functions_planned_downtimes.php:788 +#: ../../include/functions_planned_downtimes.php:793 +#: ../../include/functions_planned_downtimes.php:798 +#: ../../include/functions_planned_downtimes.php:803 +#: ../../include/functions_planned_downtimes.php:808 +#: ../../include/functions_planned_downtimes.php:813 +#: ../../include/functions_planned_downtimes.php:818 msgid "Not created. Error inserting data" msgstr "設定できませんでした。入力データエラーです。" #: ../../godmode/agentes/planned_downtime.editor.php:258 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:771 +#: ../../include/functions_planned_downtimes.php:43 +#: ../../include/functions_planned_downtimes.php:772 msgid "The end date must be higher than the start date" msgstr "終了日は開始日より後でなければいけません" #: ../../godmode/agentes/planned_downtime.editor.php:262 -#: ../../include/functions_planned_downtimes.php:764 +#: ../../include/functions_planned_downtimes.php:765 msgid "The end date must be higher than the current time" msgstr "終了日時は開始日時より後でなければいけません" #: ../../godmode/agentes/planned_downtime.editor.php:270 #: ../../godmode/agentes/planned_downtime.editor.php:992 #: ../../godmode/agentes/planned_downtime.editor.php:1005 -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:779 +#: ../../include/functions_planned_downtimes.php:48 +#: ../../include/functions_planned_downtimes.php:780 msgid "The end time must be higher than the start time" msgstr "終了時刻は開始時刻より後でなければいけません" #: ../../godmode/agentes/planned_downtime.editor.php:274 #: ../../godmode/agentes/planned_downtime.editor.php:977 -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:787 +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:788 msgid "The end day must be higher than the start day" msgstr "終了日は開始日より後でなければいけません" @@ -34367,15 +35288,15 @@ msgid "Downtime stop cron expression is not correct" msgstr "計画停止 cron 書式が正しくありません" #: ../../godmode/agentes/planned_downtime.editor.php:530 -#: ../../include/functions_planned_downtimes.php:98 -#: ../../include/functions_planned_downtimes.php:831 +#: ../../include/functions_planned_downtimes.php:99 +#: ../../include/functions_planned_downtimes.php:832 msgid "Each scheduled downtime must have a different name" msgstr "それぞれの計画停止は異なる名前である必要があります" #: ../../godmode/agentes/planned_downtime.editor.php:535 #: ../../godmode/agentes/planned_downtime.editor.php:568 -#: ../../include/functions_planned_downtimes.php:103 -#: ../../include/functions_planned_downtimes.php:837 +#: ../../include/functions_planned_downtimes.php:104 +#: ../../include/functions_planned_downtimes.php:838 msgid "Scheduled downtime must have a name" msgstr "計画停止には名前が必要です" @@ -34400,15 +35321,15 @@ msgid "Cron from/to" msgstr "Cron 開始/終了" #: ../../godmode/agentes/planned_downtime.editor.php:904 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5697 +#: ../../include/functions_reporting_html.php:87 +#: ../../include/functions_reporting_html.php:5736 #: ../../include/ajax/alert_list.ajax.php:592 msgid "From:" msgstr "開始日時:" #: ../../godmode/agentes/planned_downtime.editor.php:908 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5697 +#: ../../include/functions_reporting_html.php:87 +#: ../../include/functions_reporting_html.php:5736 #: ../../include/ajax/alert_list.ajax.php:606 msgid "To:" msgstr "終了日時:" @@ -34433,121 +35354,120 @@ msgstr "Cron 終了: " msgid "Group filter" msgstr "グループフィルタ" -#: ../../godmode/agentes/planned_downtime.editor.php:1133 +#: ../../godmode/agentes/planned_downtime.editor.php:1129 msgid "Available modules:" msgstr "存在するモジュール:" -#: ../../godmode/agentes/planned_downtime.editor.php:1134 +#: ../../godmode/agentes/planned_downtime.editor.php:1130 msgid "Only for type Quiet for downtimes." msgstr "静観タイプの場合のみ" -#: ../../godmode/agentes/planned_downtime.editor.php:1192 +#: ../../godmode/agentes/planned_downtime.editor.php:1180 msgid "Agents planned for this downtime" msgstr "この計画停止が予定される対象エージェント" -#: ../../godmode/agentes/planned_downtime.editor.php:1210 +#: ../../godmode/agentes/planned_downtime.editor.php:1198 msgid "There are no agents" msgstr "エージェントがありません" -#: ../../godmode/agentes/planned_downtime.editor.php:1252 +#: ../../godmode/agentes/planned_downtime.editor.php:1240 msgid "All alerts" msgstr "全アラート" -#: ../../godmode/agentes/planned_downtime.editor.php:1254 +#: ../../godmode/agentes/planned_downtime.editor.php:1242 msgid "Entire agent" msgstr "エージェント全体" -#: ../../godmode/agentes/planned_downtime.editor.php:1257 -#: ../../godmode/agentes/planned_downtime.editor.php:1379 -msgid "All modules" -msgstr "全モジュール" - -#: ../../godmode/agentes/planned_downtime.editor.php:1259 -#: ../../godmode/agentes/planned_downtime.editor.php:1371 -#: ../../godmode/agentes/planned_downtime.editor.php:1375 +#: ../../godmode/agentes/planned_downtime.editor.php:1247 +#: ../../godmode/agentes/planned_downtime.editor.php:1359 +#: ../../godmode/agentes/planned_downtime.editor.php:1363 msgid "Some modules" msgstr "いくつかのモジュール" -#: ../../godmode/agentes/planned_downtime.editor.php:1325 +#: ../../godmode/agentes/planned_downtime.editor.php:1313 msgid "Add Module:" msgstr "モジュール追加:" -#: ../../godmode/agentes/planned_downtime.editor.php:1699 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4815 +#: ../../godmode/agentes/planned_downtime.editor.php:1755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4834 msgid "Please select a module." msgstr "モジュールを選択してください。" -#: ../../godmode/agentes/planned_downtime.editor.php:1834 +#: ../../godmode/agentes/planned_downtime.editor.php:1894 msgid "" -"WARNING: If you edit this scheduled downtime, the data of future SLA reports may be " -"altered" -msgstr "警告: この計画停止を編集すると、将来の SLA レポートデータが置き換えられます" +"WARNING: If you edit this scheduled 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:46 ../../include/ajax/custom_fields.php:737 +#: ../../godmode/agentes/fields_manager.php:47 +#: ../../include/ajax/custom_fields.php:739 msgid "The name must not be empty" msgstr "名前は空ではいけません" -#: ../../godmode/agentes/fields_manager.php:48 +#: ../../godmode/agentes/fields_manager.php:49 msgid "The name must be unique" msgstr "名前はユニークである必要があります" -#: ../../godmode/agentes/fields_manager.php:59 +#: ../../godmode/agentes/fields_manager.php:61 msgid "Field successfully created" msgstr "フィールドを作成しました。" -#: ../../godmode/agentes/fields_manager.php:80 +#: ../../godmode/agentes/fields_manager.php:83 msgid "Field successfully updated" msgstr "フィールドを更新しました。" -#: ../../godmode/agentes/fields_manager.php:82 +#: ../../godmode/agentes/fields_manager.php:85 msgid "There was a problem modifying field" msgstr "フィールドの修正で問題が発生しました。" -#: ../../godmode/agentes/fields_manager.php:94 +#: ../../godmode/agentes/fields_manager.php:97 msgid "There was a problem deleting field" msgstr "フィールドの削除で問題が発生しました。" -#: ../../godmode/agentes/fields_manager.php:96 +#: ../../godmode/agentes/fields_manager.php:99 msgid "Field successfully deleted" msgstr "フィールドを削除しました。" -#: ../../godmode/agentes/fields_manager.php:120 -#: ../../godmode/agentes/configure_field.php:95 +#: ../../godmode/agentes/fields_manager.php:123 +#: ../../godmode/agentes/configure_field.php:98 #: ../../operation/agentes/custom_fields.php:67 msgid "Display on front" msgstr "前面に表示" -#: ../../godmode/agentes/fields_manager.php:120 -#: ../../godmode/agentes/configure_field.php:96 +#: ../../godmode/agentes/fields_manager.php:123 +#: ../../godmode/agentes/configure_field.php:99 #: ../../operation/agentes/custom_fields.php:67 msgid "" -"The fields with display on front enabled will be displayed into the agent details" +"The fields with display on front enabled will be displayed into the agent " +"details" msgstr "前面表示が有効になっていると、エージェント詳細に表示されます。" -#: ../../godmode/agentes/fields_manager.php:168 +#: ../../godmode/agentes/fields_manager.php:171 msgid "Create field" msgstr "フィールド作成" -#: ../../godmode/agentes/module_manager_editor_network.php:266 +#: ../../godmode/agentes/module_manager_editor_network.php:309 msgid "SNMP walk" msgstr "snmpwalk" -#: ../../godmode/agentes/module_manager_editor_network.php:448 +#: ../../godmode/agentes/module_manager_editor_network.php:492 msgid "" "Please use single quotation marks when necessary. \n" "\n" -"If double quotation marks are needed, please escape them with a backslash (\\")" +"If double quotation marks are needed, please escape them with a backslash " +"(\\")" msgstr "" "必要であれば、シングルクォーテーションを使ってください。\n" "\n" -"ダブルクォーテーションが必要な場合は、バックスラッシュ(\\")でエスケープしてくださ" -"い。" +"ダブルクォーテーションが必要な場合は、バックスラッシュ(\\")でエスケープし" +"てください。" -#: ../../godmode/agentes/module_manager_editor_network.php:479 +#: ../../godmode/agentes/module_manager_editor_network.php:523 msgid "Windows remote" msgstr "リモート Windows" @@ -34568,7 +35488,8 @@ msgstr "エージェント表示 QR コード" msgid "Use alias as name" msgstr "名前に別名を利用" -#: ../../godmode/agentes/agent_manager.php:304 ../../godmode/setup/setup_general.php:459 +#: ../../godmode/agentes/agent_manager.php:304 +#: ../../godmode/setup/setup_general.php:540 #: ../../include/functions_config.php:368 msgid "Unique IP" msgstr "ユニーク IP" @@ -34589,9 +35510,11 @@ msgstr "選択 IP を削除します" msgid "Primary group" msgstr "プライマリグループ" -#: ../../godmode/agentes/agent_manager.php:461 ../../godmode/setup/license.php:153 -#: ../../godmode/servers/modificar_server.php:42 ../../include/functions_ui.php:866 -#: ../../include/class/Diagnostics.class.php:1184 +#: ../../godmode/agentes/agent_manager.php:461 +#: ../../godmode/setup/license.php:179 +#: ../../godmode/servers/modificar_server.php:42 +#: ../../include/functions_ui.php:866 +#: ../../include/class/Diagnostics.class.php:1187 msgid "Satellite" msgstr "サテライト" @@ -34634,8 +35557,9 @@ msgid "Disabled mode" msgstr "無効化モード" #: ../../godmode/agentes/agent_manager.php:662 -#: ../../godmode/agentes/agent_manager.php:679 ../../include/functions_treeview.php:759 -#: ../../operation/agentes/ver_agente.php:1526 +#: ../../godmode/agentes/agent_manager.php:679 +#: ../../include/functions_treeview.php:752 +#: ../../operation/agentes/ver_agente.php:1556 #: ../../operation/agentes/estado_generalagente.php:495 msgid "Url address" msgstr "URLアドレス" @@ -34653,7 +35577,15 @@ msgstr "新たな GIS データ更新:" msgid "Click to display" msgstr "クリックして表示" -#: ../../godmode/agentes/agent_manager.php:1064 +#: ../../godmode/agentes/agent_manager.php:883 +msgid "Link text:" +msgstr "リンクテキスト: " + +#: ../../godmode/agentes/agent_manager.php:894 +msgid "Link URL:" +msgstr "リンク URL: " + +#: ../../godmode/agentes/agent_manager.php:1093 msgid "Secondary group cannot be primary too." msgstr "セカンダリグループはプライマリにできません。" @@ -34663,11 +35595,11 @@ msgstr "セカンダリグループはプライマリにできません。" #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23 #: ../../operation/incidents/list_integriaims_incidents.php:34 msgid "" -"In order to access ticket management system, integration with Integria IMS must be " -"enabled and properly configured" +"In order to access ticket management system, integration with Integria IMS " +"must be enabled and properly configured" msgstr "" -"チケット管理システムにアクセスするためには、Integria IMS との統合が有効化され正しく設" -"定されている必要があります" +"チケット管理システムにアクセスするためには、Integria IMS との統合が有効化され正" +"しく設定されている必要があります" #: ../../godmode/agentes/agent_incidents.php:69 msgid "No incidents associated to this agent" @@ -34677,253 +35609,261 @@ msgstr "このエージェントに関連付けられたインシデントがあ msgid "Incident" msgstr "インシデント" -#: ../../godmode/agentes/configure_field.php:41 +#: ../../godmode/agentes/configure_field.php:44 msgid "Update agent custom field" msgstr "エージェントカスタムフィールドの更新" -#: ../../godmode/agentes/configure_field.php:43 +#: ../../godmode/agentes/configure_field.php:46 msgid "Create agent custom field" msgstr "エージェントカスタムフィールドの作成" -#: ../../godmode/agentes/configure_field.php:55 -#: ../../godmode/agentes/configure_field.php:59 -#: ../../godmode/agentes/configure_field.php:63 -#: ../../godmode/agentes/configure_field.php:67 +#: ../../godmode/agentes/configure_field.php:58 +#: ../../godmode/agentes/configure_field.php:62 +#: ../../godmode/agentes/configure_field.php:66 +#: ../../godmode/agentes/configure_field.php:70 msgid "Agent Custom Fields Information" msgstr "エージェントカスタムフィールド情報" -#: ../../godmode/agentes/configure_field.php:56 +#: ../../godmode/agentes/configure_field.php:59 msgid "" -"You cannot set the Password type until you clear the combo values and click on update " -"button." +"You cannot set the Password type until you clear the combo values and click on " +"update button." msgstr "" -"選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定することはでき" -"ません。" +"選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定するこ" +"とはできません。" -#: ../../godmode/agentes/configure_field.php:60 +#: ../../godmode/agentes/configure_field.php:63 msgid "" -"You cannot unset the enable combo until you clear the combo values and click on " -"update." +"You cannot unset the enable combo until you clear the combo values and click " +"on update." msgstr "" -"選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできません。" +"選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできま" +"せん。" -#: ../../godmode/agentes/configure_field.php:64 +#: ../../godmode/agentes/configure_field.php:67 msgid "If you select Enabled combo the Password type will be disabled." msgstr "有効な設定を選択すると、パスワードタイプは無効になります。" -#: ../../godmode/agentes/configure_field.php:68 +#: ../../godmode/agentes/configure_field.php:71 msgid "If you select Passord type the Enabled combo will be disabled." msgstr "パスワードを選択すると、有効な設定が無効化されます。" -#: ../../godmode/agentes/configure_field.php:84 +#: ../../godmode/agentes/configure_field.php:87 msgid "Pass type" msgstr "パスタイプ" -#: ../../godmode/agentes/configure_field.php:85 +#: ../../godmode/agentes/configure_field.php:88 msgid "" -"The fields with pass type enabled will be displayed like html input type pass in html" +"The fields with pass type enabled will be displayed like html input type pass " +"in html" msgstr "パスタイプを有効化すると、html 内の入力パスタイプのように表示されます。" -#: ../../godmode/agentes/configure_field.php:106 +#: ../../godmode/agentes/configure_field.php:109 msgid "Enabled combo" msgstr "有効な設定" -#: ../../godmode/agentes/configure_field.php:118 +#: ../../godmode/agentes/configure_field.php:121 msgid "Combo values" msgstr "選択肢" -#: ../../godmode/agentes/configure_field.php:119 +#: ../../godmode/agentes/configure_field.php:122 msgid "Set values separated by comma" msgstr "カンマ区切りで値を設定" +#: ../../godmode/agentes/configure_field.php:134 +msgid "Link type" +msgstr "リンクタイプ" + #: ../../godmode/agentes/module_manager_editor_common.php:108 msgid "Using module component" msgstr "モジュールコンポーネント" #: ../../godmode/agentes/module_manager_editor_common.php:413 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:406 msgid "Warning threshold" msgstr "警告閾値" #: ../../godmode/agentes/module_manager_editor_common.php:415 -#: ../../godmode/agentes/module_manager_editor_common.php:476 +#: ../../godmode/agentes/module_manager_editor_common.php:491 msgid "Min. " msgstr "最小 " -#: ../../godmode/agentes/module_manager_editor_common.php:474 +#: ../../godmode/agentes/module_manager_editor_common.php:489 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:435 msgid "Critical threshold" msgstr "障害閾値" -#: ../../godmode/agentes/module_manager_editor_common.php:673 +#: ../../godmode/agentes/module_manager_editor_common.php:687 msgid "Dynamic Threshold Interval" msgstr "動的しきい値の間隔" -#: ../../godmode/agentes/module_manager_editor_common.php:700 +#: ../../godmode/agentes/module_manager_editor_common.php:714 msgid "Dynamic Threshold Min. " msgstr "最小動的しきい値 " -#: ../../godmode/agentes/module_manager_editor_common.php:713 +#: ../../godmode/agentes/module_manager_editor_common.php:727 msgid "Dynamic Threshold Max. " msgstr "最大動的しきい値 " -#: ../../godmode/agentes/module_manager_editor_common.php:726 +#: ../../godmode/agentes/module_manager_editor_common.php:740 msgid "Dynamic Threshold Two Tailed: " msgstr "2つの動的しきい値を使う: " -#: ../../godmode/agentes/module_manager_editor_common.php:737 +#: ../../godmode/agentes/module_manager_editor_common.php:751 msgid "Not needed" msgstr "不要です。" -#: ../../godmode/agentes/module_manager_editor_common.php:1035 +#: ../../godmode/agentes/module_manager_editor_common.php:1049 msgid "Tags from policy" msgstr "ポリシーからのタグ" -#: ../../godmode/agentes/module_manager_editor_common.php:1075 +#: ../../godmode/agentes/module_manager_editor_common.php:1089 msgid "Cascade Protection Services" msgstr "サービス関連障害検知抑制" -#: ../../godmode/agentes/module_manager_editor_common.php:1109 -#: ../../godmode/agentes/module_manager_editor_common.php:1117 -#: ../../godmode/agentes/module_manager_editor_common.php:1126 +#: ../../godmode/agentes/module_manager_editor_common.php:1123 +#: ../../godmode/agentes/module_manager_editor_common.php:1131 +#: ../../godmode/agentes/module_manager_editor_common.php:1140 msgid "Cron from" msgstr "Cron 開始" -#: ../../godmode/agentes/module_manager_editor_common.php:1113 -#: ../../godmode/agentes/module_manager_editor_common.php:1121 -#: ../../godmode/agentes/module_manager_editor_common.php:1130 +#: ../../godmode/agentes/module_manager_editor_common.php:1127 +#: ../../godmode/agentes/module_manager_editor_common.php:1135 +#: ../../godmode/agentes/module_manager_editor_common.php:1144 msgid "Cron to" msgstr "Cron 終了" -#: ../../godmode/agentes/module_manager_editor_common.php:1166 +#: ../../godmode/agentes/module_manager_editor_common.php:1180 msgid "Module parent" msgstr "モジュールの親" -#: ../../godmode/agentes/module_manager_editor_common.php:1264 -#: ../../godmode/agentes/module_manager_editor_common.php:1375 +#: ../../godmode/agentes/module_manager_editor_common.php:1278 +#: ../../godmode/agentes/module_manager_editor_common.php:1389 msgid "Direct" msgstr "直接" -#: ../../godmode/agentes/module_manager_editor_common.php:1265 -#: ../../godmode/agentes/module_manager_editor_common.php:1375 -#: ../../include/functions_reporting_html.php:4028 -#: ../../include/functions_reporting_html.php:4122 -#: ../../include/functions_reporting_html.php:4202 -#: ../../include/functions_reporting_html.php:4211 -#: ../../include/functions_reporting_html.php:4349 -#: ../../include/functions_reporting_html.php:4358 -#: ../../include/functions_reporting_html.php:4682 -#: ../../include/functions_reporting_html.php:4688 +#: ../../godmode/agentes/module_manager_editor_common.php:1279 +#: ../../godmode/agentes/module_manager_editor_common.php:1389 +#: ../../include/functions_reporting_html.php:4047 +#: ../../include/functions_reporting_html.php:4141 +#: ../../include/functions_reporting_html.php:4221 +#: ../../include/functions_reporting_html.php:4230 +#: ../../include/functions_reporting_html.php:4368 +#: ../../include/functions_reporting_html.php:4377 +#: ../../include/functions_reporting_html.php:4702 +#: ../../include/functions_reporting_html.php:4708 msgid "Failover" msgstr "フェイルオーバ" -#: ../../godmode/agentes/module_manager_editor_common.php:1266 +#: ../../godmode/agentes/module_manager_editor_common.php:1280 msgid "Rel. type" msgstr "関係タイプ" -#: ../../godmode/agentes/module_manager_editor_common.php:1281 +#: ../../godmode/agentes/module_manager_editor_common.php:1295 msgid "Add relationship" msgstr "関係の追加" -#: ../../godmode/agentes/module_manager_editor_common.php:1306 +#: ../../godmode/agentes/module_manager_editor_common.php:1320 msgid "Changes" msgstr "変更" -#: ../../godmode/agentes/module_manager.php:130 +#: ../../godmode/agentes/module_manager.php:120 msgid "Create a new data server module" msgstr "データサーバモジュールの新規作成" -#: ../../godmode/agentes/module_manager.php:132 +#: ../../godmode/agentes/module_manager.php:122 msgid "Create a new network server module" msgstr "ネットワークサーバモジュールの新規作成" -#: ../../godmode/agentes/module_manager.php:136 +#: ../../godmode/agentes/module_manager.php:126 msgid "Create a new plugin server module" msgstr "プラグインサーバモジュールの新規作成" -#: ../../godmode/agentes/module_manager.php:140 +#: ../../godmode/agentes/module_manager.php:130 msgid "Create a new WMI server module" msgstr "WMI サーバモジュールの新規作成" -#: ../../godmode/agentes/module_manager.php:144 +#: ../../godmode/agentes/module_manager.php:134 msgid "Create a new prediction server module" msgstr "予測サーバモジュールの新規作成" -#: ../../godmode/agentes/module_manager.php:148 +#: ../../godmode/agentes/module_manager.php:138 msgid "Create a new web Server module" msgstr "ウェブサーバモジュールの新規作成" -#: ../../godmode/agentes/module_manager.php:192 +#: ../../godmode/agentes/module_manager.php:182 #: ../../operation/agentes/estado_monitores.php:582 msgid "Show in hierachy mode" msgstr "階層モードで表示" -#: ../../godmode/agentes/module_manager.php:211 -msgid "

Type

" -msgstr "

タイプ

" - -#: ../../godmode/agentes/module_manager.php:241 +#: ../../godmode/agentes/module_manager.php:231 msgid "Get more modules on Monitoring Library" msgstr "ライブラリからモジュールを取得" -#: ../../godmode/agentes/module_manager.php:280 +#: ../../godmode/agentes/module_manager.php:272 msgid "There was a problem completing the operation" msgstr "処理が正しく終了しませんでした。" -#: ../../godmode/agentes/module_manager.php:437 -#: ../../godmode/agentes/module_manager.php:485 +#: ../../godmode/agentes/module_manager.php:429 +#: ../../godmode/agentes/module_manager.php:475 +#: ../../godmode/agentes/module_manager.php:521 #, php-format msgid "There was a problem completing the operation. Applied to 0/%d modules." msgstr "処理が正しく終了しませんでした。 0 /%d モジュールに適用されます。" -#: ../../godmode/agentes/module_manager.php:443 -#: ../../godmode/agentes/module_manager.php:491 +#: ../../godmode/agentes/module_manager.php:435 +#: ../../godmode/agentes/module_manager.php:481 +#: ../../godmode/agentes/module_manager.php:527 msgid "Operation finished successfully." msgstr "処理が正常に終了しました。" -#: ../../godmode/agentes/module_manager.php:447 -#: ../../godmode/agentes/module_manager.php:495 +#: ../../godmode/agentes/module_manager.php:439 +#: ../../godmode/agentes/module_manager.php:485 +#: ../../godmode/agentes/module_manager.php:531 #, php-format msgid "There was a problem completing the operation. Applied to %d/%d modules." msgstr "処理が正しく完了しませんでした。%d/%d モジュールに適用されます。" -#: ../../godmode/agentes/module_manager.php:801 +#: ../../godmode/agentes/module_manager.php:837 #: ../../godmode/reporting/map_builder.php:452 -#: ../../godmode/reporting/map_builder.php:469 ../../include/ajax/module.php:560 +#: ../../godmode/reporting/map_builder.php:469 ../../include/ajax/module.php:573 #: ../../operation/agentes/datos_agente.php:295 msgid "No available data to show" msgstr "表示するデータがありません。" -#: ../../godmode/agentes/module_manager.php:875 +#: ../../godmode/agentes/module_manager.php:911 msgid "Del." msgstr "削除" -#: ../../godmode/agentes/module_manager.php:1015 +#: ../../godmode/agentes/module_manager.php:1051 msgid "Module in scheduled downtime" msgstr "計画停止内エージェント" -#: ../../godmode/agentes/module_manager.php:1067 -#: ../../godmode/agentes/module_manager.php:1075 ../../include/ajax/module.php:1084 -#: ../../include/ajax/module.php:1092 +#: ../../godmode/agentes/module_manager.php:1103 +#: ../../godmode/agentes/module_manager.php:1111 +#: ../../include/ajax/module.php:1097 ../../include/ajax/module.php:1105 msgid "Adopted" msgstr "適用" -#: ../../godmode/agentes/module_manager.php:1205 +#: ../../godmode/agentes/module_manager.php:1245 msgid "Normalize" msgstr "正規化" -#: ../../godmode/agentes/module_manager.php:1215 +#: ../../godmode/agentes/module_manager.php:1255 msgid "Normalize (Disabled)" msgstr "正規化 (無効)" -#: ../../godmode/agentes/module_manager.php:1230 +#: ../../godmode/agentes/module_manager.php:1270 #: ../../include/functions_snmp_browser.php:638 msgid "Create network component" msgstr "ネットワークコンポーネントの作成" -#: ../../godmode/agentes/module_manager.php:1239 +#: ../../godmode/agentes/module_manager.php:1279 msgid "Create network component (Disabled)" msgstr "ネットワークコンポーネントの作成 (無効)" -#: ../../godmode/agentes/module_manager.php:1299 +#: ../../godmode/agentes/module_manager.php:1342 +#: ../../include/class/SatelliteAgent.class.php:245 msgid "Execute action" msgstr "アクション実行" @@ -34932,7 +35872,8 @@ msgstr "アクション実行" msgid "Report list" msgstr "レポート一覧" -#: ../../godmode/netflow/nf_item_list.php:30 ../../godmode/netflow/nf_item_list.php:38 +#: ../../godmode/netflow/nf_item_list.php:30 +#: ../../godmode/netflow/nf_item_list.php:38 msgid "Report items" msgstr "レポートアイテム" @@ -34949,12 +35890,13 @@ msgid "Item list" msgstr "アイテム一覧" #: ../../godmode/netflow/nf_item_list.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2501 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2504 #: ../../operation/netflow/nf_live_view.php:330 msgid "Max. values" msgstr "最大値" -#: ../../godmode/netflow/nf_item_list.php:177 ../../operation/agentes/graphs.php:233 +#: ../../godmode/netflow/nf_item_list.php:177 +#: ../../operation/agentes/graphs.php:233 msgid "Chart type" msgstr "グラフタイプ" @@ -34967,12 +35909,13 @@ msgid "Manage Netflow Filter" msgstr "Netflow フィルタ管理" #: ../../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:122 +#: ../../godmode/netflow/nf_edit_form.php:73 +#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:123 msgid "Netflow filters" msgstr "Netflow フィルタ" -#: ../../godmode/netflow/nf_edit.php:212 ../../godmode/events/event_filter.php:215 +#: ../../godmode/netflow/nf_edit.php:212 +#: ../../godmode/events/event_filter.php:215 msgid "There are no defined filters" msgstr "定義済のフィルタがありません" @@ -34980,7 +35923,8 @@ msgstr "定義済のフィルタがありません" msgid "Filter list" msgstr "フィルタ一覧" -#: ../../godmode/netflow/nf_edit_form.php:55 ../../godmode/netflow/nf_edit_form.php:77 +#: ../../godmode/netflow/nf_edit_form.php:55 +#: ../../godmode/netflow/nf_edit_form.php:77 msgid "Add filter" msgstr "フィルタの追加" @@ -34990,8 +35934,8 @@ msgstr "Netflow フィルタ" #: ../../godmode/netflow/nf_edit_form.php:188 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../include/ajax/custom_fields.php:707 ../../include/ajax/events.php:756 -#: ../../include/ajax/events.php:816 +#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:775 +#: ../../include/ajax/events.php:835 msgid "Update filter" msgstr "フィルタの更新" @@ -35007,11 +35951,12 @@ msgstr "宛先 IP" #: ../../godmode/netflow/nf_edit_form.php:239 #: ../../operation/netflow/nf_live_view.php:414 msgid "" -"Destination IP. A comma separated list of destination ip. If we leave the field " -"blank, will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" +"Destination IP. A comma separated list of destination ip. If we leave the " +"field blank, will show all ip. Example filter by ip:" +"
25.46.157.214,160.253.135.249" msgstr "" -"宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP によるフィ" -"ルタ例:
25.46.157.214,160.253.135.249" +"宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP によ" +"るフィルタ例:
25.46.157.214,160.253.135.249" #: ../../godmode/netflow/nf_edit_form.php:242 #: ../../operation/netflow/nf_live_view.php:422 @@ -35021,13 +35966,14 @@ msgstr "送信元IP" #: ../../godmode/netflow/nf_edit_form.php:242 #: ../../operation/netflow/nf_live_view.php:422 msgid "" -"Source IP. A comma separated list of source ip. If we leave the field blank, will " -"show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" +"Source IP. A comma separated list of source ip. If we leave the field blank, " +"will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249" msgstr "" -"カンマ区切りの発信元 IP 一覧です。何も入力しない場合は全てのIPを表示します。IPによる" -"フィルタ例:
25.46.157.214,160.253.135.249" +"カンマ区切りの発信元 IP 一覧です。何も入力しない場合は全てのIPを表示します。IP" +"によるフィルタ例:
25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:245 ../../godmode/netflow/nf_edit_form.php:258 +#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../godmode/netflow/nf_edit_form.php:258 #: ../../operation/netflow/nf_live_view.php:350 #: ../../operation/netflow/nf_live_view.php:433 msgid "Dst Port" @@ -35036,13 +35982,14 @@ msgstr "宛先ポート" #: ../../godmode/netflow/nf_edit_form.php:245 #: ../../operation/netflow/nf_live_view.php:433 msgid "" -"Destination port. A comma separated list of destination ports. If we leave the field " -"blank, will show all ports. Example filter by ports 80 and 22:
80,22" +"Destination port. A comma separated list of destination ports. If we leave the " +"field blank, will show all ports. Example filter by ports 80 and 22:
80,22" msgstr "" -"宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。ポート " -"80 および 22 のフィルタ例:
80,22" +"宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。" +"ポート 80 および 22 のフィルタ例:
80,22" -#: ../../godmode/netflow/nf_edit_form.php:248 ../../godmode/netflow/nf_edit_form.php:257 +#: ../../godmode/netflow/nf_edit_form.php:248 +#: ../../godmode/netflow/nf_edit_form.php:257 #: ../../operation/netflow/nf_live_view.php:349 #: ../../operation/netflow/nf_live_view.php:441 msgid "Src Port" @@ -35051,11 +35998,11 @@ msgstr "送信元ポート" #: ../../godmode/netflow/nf_edit_form.php:248 #: ../../operation/netflow/nf_live_view.php:441 msgid "" -"Source port. A comma separated list of source ports. If we leave the field blank, " -"will show all ports. Example filter by ports 80 and 22:
80,22" +"Source port. A comma separated list of source ports. If we leave the field " +"blank, will show all ports. Example filter by ports 80 and 22:
80,22" msgstr "" -"カンマ区切りの発信元ポート一覧です。何も入力しない場合は全てのポートを表示します。ポー" -"ト 80 と 22 でのフィルタ例:
80,22" +"カンマ区切りの発信元ポート一覧です。何も入力しない場合は全てのポートを表示しま" +"す。ポート 80 と 22 でのフィルタ例:
80,22" #: ../../godmode/netflow/nf_edit_form.php:253 #: ../../operation/netflow/nf_live_view.php:344 @@ -35089,27 +36036,27 @@ msgstr "生成しました" msgid "Could not be generated: %s" msgstr "生成できません: %s" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:86 msgid "Host address" msgstr "ホストアドレス" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:95 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:96 #: ../../include/functions_snmp_browser.php:727 msgid "Community" msgstr "コミュニティ" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:105 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:106 #: ../../godmode/snmpconsole/snmp_alert.php:774 #: ../../godmode/snmpconsole/snmp_alert.php:1263 -#: ../../operation/snmpconsole/snmp_view.php:859 +#: ../../include/class/SnmpConsole.class.php:338 msgid "Enterprise String" msgstr "Enterprise文字列" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:135 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:136 msgid "SNMP Type" msgstr "SNMPタイプ" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:168 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:169 msgid "Generate trap" msgstr "トラップ生成" @@ -35119,8 +36066,7 @@ msgstr "アラート一覧" #: ../../godmode/snmpconsole/snmp_alert.php:118 #: ../../godmode/snmpconsole/snmp_filters.php:46 -#: ../../operation/snmpconsole/snmp_view.php:681 -#: ../../operation/snmpconsole/snmp_view.php:789 +#: ../../include/class/SnmpConsole.class.php:214 msgid "SNMP Console" msgstr "SNMP コンソール" @@ -35174,11 +36120,11 @@ msgstr "変数バインディング/データ" #: ../../godmode/snmpconsole/snmp_alert.php:1162 msgid "" -"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single value, " -"each Variable bindings/Datas." +"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " +"value, each Variable bindings/Datas." msgstr "" -"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、変数の割り当て・データのフィール" -"ドで検索します" +"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、変数の割り当て・データの" +"フィールドで検索します" #: ../../godmode/snmpconsole/snmp_alert.php:1180 msgid "Alert SNMP control filter" @@ -35193,8 +36139,8 @@ msgid "Custom Value/Enterprise String" msgstr "カスタム値/Enterprise文字列" #: ../../godmode/snmpconsole/snmp_alert.php:1271 -#: ../../include/functions_reporting_html.php:5247 -#: ../../include/functions_reporting_html.php:5369 +#: ../../include/functions_reporting_html.php:5286 +#: ../../include/functions_reporting_html.php:5408 #: ../../include/functions_treeview.php:454 msgid "Times fired" msgstr "通知回数" @@ -35207,11 +36153,6 @@ msgstr "回数" msgid "ID Alert SNMP" msgstr "SNMPアラートID" -#: ../../godmode/snmpconsole/snmp_alert.php:1545 -#: ../../godmode/snmpconsole/snmp_alert.php:1560 -msgid "Confirmation" -msgstr "確認" - #: ../../godmode/snmpconsole/snmp_alert.php:1546 msgid "Do you want delete this alert?" msgstr "このエージェントを削除しますか?" @@ -35220,7 +36161,7 @@ msgstr "このエージェントを削除しますか?" msgid "Do you want delete the selected alerts?" msgstr "選択したアラートを削除しますか?" -#: ../../godmode/snmpconsole/snmp_alert.php:1671 +#: ../../godmode/snmpconsole/snmp_alert.php:1676 msgid "Add action " msgstr "アクション追加 " @@ -35256,8 +36197,8 @@ msgstr "フィルタの削除で問題が発生しました。" #: ../../godmode/snmpconsole/snmp_filters.php:221 #: ../../godmode/snmpconsole/snmp_filters.php:231 msgid "" -"This field contains a substring, could be part of a IP address, a numeric OID, or a " -"plain substring" +"This field contains a substring, could be part of a IP address, a numeric OID, " +"or a plain substring" msgstr "このフィールドには、IPアドレス、OID、文字列の一部を入力します。" #: ../../godmode/snmpconsole/snmp_filters.php:223 @@ -35269,175 +36210,182 @@ msgstr "フィルタ削除" msgid "Click to add new filter" msgstr "新規フィルタ追加" -#: ../../godmode/menu.php:62 +#: ../../godmode/menu.php:63 msgid "Network scan" msgstr "ネットワークスキャン" -#: ../../godmode/menu.php:64 +#: ../../godmode/menu.php:65 msgid "Custom network scan" msgstr "カスタムネットワークスキャン" -#: ../../godmode/menu.php:68 +#: ../../godmode/menu.php:69 msgid "Manage scan scripts" msgstr "スキャンスクリプト管理" -#: ../../godmode/menu.php:71 ../../godmode/wizards/HostDevices.class.php:204 +#: ../../godmode/menu.php:72 ../../godmode/wizards/HostDevices.class.php:204 msgid "Host & devices" msgstr "ホスト & デバイス" -#: ../../godmode/menu.php:105 +#: ../../godmode/menu.php:106 msgid "Module categories" msgstr "モジュールカテゴリ" -#: ../../godmode/menu.php:109 +#: ../../godmode/menu.php:110 msgid "Module types" msgstr "モジュールタイプ" -#: ../../godmode/menu.php:115 +#: ../../godmode/menu.php:116 msgid "Operating systems" msgstr "オペレーティングシステム" -#: ../../godmode/menu.php:136 +#: ../../godmode/menu.php:137 msgid "Manage agents groups" msgstr "エージェントグループ管理" -#: ../../godmode/menu.php:175 ../../include/class/ConfigPEN.class.php:337 +#: ../../godmode/menu.php:176 ../../include/class/ConfigPEN.class.php:337 #: ../../include/class/ConfigPEN.class.php:345 msgid "Private Enterprise Numbers" msgstr "プライベートエンタープライズ番号" -#: ../../godmode/menu.php:179 +#: ../../godmode/menu.php:180 msgid "Remote components" msgstr "リモートコンポーネント" -#: ../../godmode/menu.php:203 ../../godmode/massive/massive_operations.php:241 +#: ../../godmode/menu.php:206 ../../godmode/massive/massive_operations.php:246 msgid "Agents operations" msgstr "エージェント操作" -#: ../../godmode/menu.php:204 ../../godmode/massive/massive_operations.php:253 +#: ../../godmode/menu.php:207 ../../godmode/massive/massive_operations.php:258 msgid "Modules operations" msgstr "モジュール操作" -#: ../../godmode/menu.php:205 ../../godmode/massive/massive_operations.php:265 +#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:270 msgid "Plugins operations" msgstr "プラグイン操作" -#: ../../godmode/menu.php:207 ../../godmode/massive/massive_operations.php:229 +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:234 msgid "Users operations" msgstr "ユーザ操作" -#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:217 +#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:222 msgid "Alerts operations" msgstr "アラート操作" -#: ../../godmode/menu.php:228 +#: ../../godmode/menu.php:231 msgid "Event filters" msgstr "イベントフィルタ" -#: ../../godmode/menu.php:233 ../../godmode/events/events.php:80 +#: ../../godmode/menu.php:236 ../../godmode/events/events.php:80 #: ../../godmode/events/events.php:95 msgid "Custom columns" msgstr "カスタムカラム" -#: ../../godmode/menu.php:264 +#: ../../godmode/menu.php:267 msgid "List of Alerts" msgstr "アラート一覧" -#: ../../godmode/menu.php:279 ../../godmode/menu.php:280 +#: ../../godmode/menu.php:282 ../../godmode/menu.php:283 msgid "Special days list" msgstr "特別日一覧" -#: ../../godmode/menu.php:284 +#: ../../godmode/menu.php:287 msgid "SNMP alerts" msgstr "SNMPアラート" -#: ../../godmode/menu.php:301 +#: ../../godmode/menu.php:304 msgid "Manage servers" msgstr "サーバ管理" -#: ../../godmode/menu.php:312 +#: ../../godmode/menu.php:315 msgid "Register Plugin" msgstr "プラグイン登録" -#: ../../godmode/menu.php:338 ../../include/class/OrderInterpreter.class.php:141 +#: ../../godmode/menu.php:341 ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "基本設定" -#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:177 -#: ../../godmode/setup/setup.php:277 ../../operation/agentes/ver_agente.php:1609 +#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:177 +#: ../../godmode/setup/setup.php:277 ../../operation/agentes/ver_agente.php:1639 msgid "eHorus" msgstr "eHorus" -#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:165 +#: ../../godmode/menu.php:369 ../../godmode/setup/setup.php:165 #: ../../godmode/setup/setup.php:283 ../../godmode/setup/setup_integria.php:585 msgid "Integria IMS" msgstr "Integria IMS" -#: ../../godmode/menu.php:374 +#: ../../godmode/menu.php:377 msgid "Websocket Engine" msgstr "Websocket エンジン" -#: ../../godmode/menu.php:377 ../../godmode/setup/setup.php:224 -#: ../../godmode/setup/setup.php:311 ../../operation/agentes/ver_agente.php:1695 +#: ../../godmode/menu.php:380 ../../godmode/setup/setup.php:224 +#: ../../godmode/setup/setup.php:311 ../../operation/agentes/ver_agente.php:1725 msgid "External Tools" msgstr "外部ツール" -#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:295 +#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:295 msgid "Map conections GIS" msgstr "GIS 利用マップ" -#: ../../godmode/menu.php:409 +#: ../../godmode/menu.php:412 msgid "Diagnostic info" msgstr "診断情報" -#: ../../godmode/menu.php:414 +#: ../../godmode/menu.php:417 msgid "Site news" msgstr "サイトニュース" -#: ../../godmode/menu.php:423 +#: ../../godmode/menu.php:426 msgid "DB Schema Check" msgstr "DB スキーマチェック" -#: ../../godmode/menu.php:426 +#: ../../godmode/menu.php:429 msgid "DB Interface" msgstr "DB インタフェース" -#: ../../godmode/menu.php:508 +#: ../../godmode/menu.php:511 msgid "Extension manager view" msgstr "拡張マネージャ表示" -#: ../../godmode/menu.php:512 +#: ../../godmode/menu.php:515 msgid "Extension manager" msgstr "拡張マネージャ" -#: ../../godmode/menu.php:544 ../../include/class/OrderInterpreter.class.php:339 +#: ../../godmode/menu.php:547 ../../include/class/OrderInterpreter.class.php:339 msgid "Warp Update" msgstr "ワープアップデート" -#: ../../godmode/menu.php:549 +#: ../../godmode/menu.php:552 msgid "Update offline" msgstr "オフラインアップデート" -#: ../../godmode/menu.php:552 +#: ../../godmode/menu.php:555 msgid "Update online" msgstr "オンラインアップデート" -#: ../../godmode/menu.php:558 +#: ../../godmode/menu.php:561 msgid "Warp journal" msgstr "ワープ履歴" -#: ../../godmode/menu.php:567 ../../godmode/module_library/module_library_view.php:81 +#: ../../godmode/menu.php:570 +#: ../../godmode/module_library/module_library_view.php:81 msgid "Module library" msgstr "モジュールライブラリ" -#: ../../godmode/menu.php:574 ../../godmode/module_library/module_library_view.php:54 +#: ../../godmode/menu.php:577 +#: ../../godmode/module_library/module_library_view.php:54 #: ../../godmode/module_library/module_library_view.php:68 #: ../../godmode/module_library/module_library_view.php:104 msgid "Categories" msgstr "分類" +#: ../../godmode/menu.php:586 +msgid "About" +msgstr "情報" + #: ../../godmode/gis_maps/configure_gis_map.php:86 -#: ../../operation/gis_maps/gis_map.php:30 ../../operation/gis_maps/render_view.php:130 +#: ../../operation/gis_maps/gis_map.php:30 +#: ../../operation/gis_maps/render_view.php:130 msgid "GIS Maps list" msgstr "GIS マップ一覧" @@ -35514,7 +36462,7 @@ msgid "Default Altitude" msgstr "デフォルトの高度" #: ../../godmode/gis_maps/configure_gis_map.php:552 -#: ../../godmode/setup/gis_step_2.php:395 +#: ../../godmode/setup/gis_step_2.php:396 msgid "Layers" msgstr "レイヤ" @@ -35538,14 +36486,6 @@ msgstr "可視化" msgid "Show agents from group" msgstr "表示するエージェントのグループ" -#: ../../godmode/gis_maps/configure_gis_map.php:575 -#: ../../godmode/setup/setup_general.php:585 -#: ../../godmode/reporting/create_container.php:294 -#: ../../godmode/reporting/create_container.php:310 ../../include/ajax/events.php:1018 -#: ../../include/ajax/graph.ajax.php:145 -msgid "none" -msgstr "なし" - #: ../../godmode/gis_maps/configure_gis_map.php:586 msgid "Add agent" msgstr "エージェント追加" @@ -35647,60 +36587,64 @@ msgstr "一括エージェント編集" msgid "Bulk agent delete" msgstr "一括エージェント削除" -#: ../../godmode/massive/massive_operations.php:74 +#: ../../godmode/massive/massive_operations.php:75 msgid "Bulk profile add" msgstr "一括プロファイル追加" -#: ../../godmode/massive/massive_operations.php:75 +#: ../../godmode/massive/massive_operations.php:76 msgid "Bulk profile delete" msgstr "一括プロファイル削除" -#: ../../godmode/massive/massive_operations.php:82 +#: ../../godmode/massive/massive_operations.php:81 +msgid "Edit users in bulk" +msgstr "ユーザ一括編集" + +#: ../../godmode/massive/massive_operations.php:88 msgid "Bulk module edit" msgstr "一括モジュール編集" -#: ../../godmode/massive/massive_operations.php:83 +#: ../../godmode/massive/massive_operations.php:89 msgid "Bulk module copy" msgstr "一括モジュールコピー" -#: ../../godmode/massive/massive_operations.php:84 +#: ../../godmode/massive/massive_operations.php:90 msgid "Bulk module delete" msgstr "一括モジュール削除" -#: ../../godmode/massive/massive_operations.php:88 +#: ../../godmode/massive/massive_operations.php:94 msgid "Bulk plugin edit" msgstr "一括プラグイン編集" -#: ../../godmode/massive/massive_operations.php:367 +#: ../../godmode/massive/massive_operations.php:372 #, php-format msgid "" -"No changes have been made because they exceed the maximum allowed (%d). Make fewer " -"changes or contact the administrator." +"No changes have been made because they exceed the maximum allowed (%d). Make " +"fewer changes or contact the administrator." msgstr "" -"最大値(%d)を超えているため、変更は加えられていません。 変更を少なくするか、管理者に連" -"絡してください。" +"最大値(%d)を超えているため、変更は加えられていません。 変更を少なくするか、管理" +"者に連絡してください。" -#: ../../godmode/massive/massive_operations.php:395 +#: ../../godmode/massive/massive_operations.php:400 #, php-format msgid "This node is configured with centralized mode. To delete agents go to %s" msgstr "" -"このノードは中央管理モードで設定されています。 エージェントを削除するには、%s に移動し" -"ます" +"このノードは中央管理モードで設定されています。 エージェントを削除するには、%s " +"に移動します" -#: ../../godmode/massive/massive_operations.php:418 +#: ../../godmode/massive/massive_operations.php:423 msgid "The blank fields will not be updated" msgstr "未入力の項目は更新されません。" -#: ../../godmode/massive/massive_standby_alerts.php:223 +#: ../../godmode/massive/massive_standby_alerts.php:224 msgid "Not standby alerts" msgstr "非スタンバイ状態アラート" -#: ../../godmode/massive/massive_standby_alerts.php:252 -#: ../../godmode/massive/massive_standby_alerts.php:256 +#: ../../godmode/massive/massive_standby_alerts.php:253 +#: ../../godmode/massive/massive_standby_alerts.php:257 msgid "Set standby selected alerts" msgstr "選択したアラートをスタンバイ状態にする" -#: ../../godmode/massive/massive_standby_alerts.php:258 +#: ../../godmode/massive/massive_standby_alerts.php:259 msgid "Standby alerts" msgstr "スタンバイ状態アラート" @@ -35716,13 +36660,13 @@ msgstr "削除できません。アラートが選択されていません。" msgid "Could not be deleted. No action selected" msgstr "削除できません。アクションが選択されていません。" -#: ../../godmode/massive/massive_delete_action_alerts.php:230 -#: ../../godmode/massive/massive_add_action_alerts.php:212 +#: ../../godmode/massive/massive_delete_action_alerts.php:231 +#: ../../godmode/massive/massive_add_action_alerts.php:213 msgid "Agents with templates" msgstr "テンプレートがあるエージェント" -#: ../../godmode/massive/massive_delete_action_alerts.php:239 -#: ../../godmode/massive/massive_add_action_alerts.php:218 +#: ../../godmode/massive/massive_delete_action_alerts.php:240 +#: ../../godmode/massive/massive_add_action_alerts.php:219 #: ../../godmode/alerts/alert_templates.php:131 #: ../../godmode/alerts/alert_templates.php:183 #: ../../godmode/alerts/alert_templates.php:206 @@ -35730,9 +36674,9 @@ msgstr "テンプレートがあるエージェント" msgid "Alert templates" msgstr "アラートテンプレート" -#: ../../godmode/massive/massive_delete_action_alerts.php:247 +#: ../../godmode/massive/massive_delete_action_alerts.php:248 #: ../../godmode/massive/massive_delete_modules.php:557 -#: ../../godmode/massive/massive_add_action_alerts.php:226 +#: ../../godmode/massive/massive_add_action_alerts.php:227 #: ../../godmode/massive/massive_edit_modules.php:530 msgid "Show unknown and not init modules" msgstr "不明および未初期化モジュールを表示" @@ -35772,7 +36716,8 @@ msgstr "このグループの全てのモジュールを選択" #: ../../godmode/massive/massive_delete_modules.php:436 #: ../../godmode/massive/massive_edit_modules.php:382 -#: ../../godmode/events/custom_events.php:116 ../../include/functions_events.php:304 +#: ../../godmode/events/custom_events.php:116 +#: ../../include/functions_events.php:304 msgid "Module Status" msgstr "モジュールの状態" @@ -35806,9 +36751,91 @@ msgstr "全エージェントを選択" msgid "Please, select an agent first" msgstr "エージェントを先に選択してください" +#: ../../godmode/massive/massive_edit_users.php:54 +#: ../../godmode/massive/massive_delete_profiles.php:52 +#: ../../godmode/massive/massive_add_profiles.php:52 +#, php-format +msgid "" +"This node is configured with centralized mode. All profiles user information " +"is read only. Go to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのプロファイルのユーザ情報" +"は読み取り専用です。管理するには %s に移動します。" + +#: ../../godmode/massive/massive_edit_users.php:154 +#, php-format +msgid "Users updated successfully (%s)" +msgstr "ユーザを更新しました (%s)" + +#: ../../godmode/massive/massive_edit_users.php:166 +#, php-format +msgid "Users cannot be updated (%s)" +msgstr "ユーザの更新ができませんでした (%s)" + +#: ../../godmode/massive/massive_edit_users.php:210 +#: ../../godmode/massive/massive_delete_profiles.php:154 +#: ../../godmode/massive/massive_add_profiles.php:204 +#: ../../include/functions_reporting.php:12207 +#: ../../operation/search_results.php:94 +msgid "Users" +msgstr "ユーザ" + +#: ../../godmode/massive/massive_edit_users.php:341 +#: ../../operation/users/user_edit.php:522 +msgid "Event filter" +msgstr "イベントフィルタ" + +#: ../../godmode/massive/massive_edit_users.php:379 +#: ../../operation/users/user_edit.php:594 +msgid "Autorefresh" +msgstr "自動更新" + +#: ../../godmode/massive/massive_edit_users.php:380 +#: ../../operation/users/user_edit.php:595 +msgid "This will activate autorefresh in selected pages" +msgstr "選択したページで自動更新を有効にします" + +#: ../../godmode/massive/massive_edit_users.php:419 +#: ../../operation/users/user_edit.php:630 +msgid "Full list of pages" +msgstr "全ページ一覧" + +#: ../../godmode/massive/massive_edit_users.php:428 +#: ../../godmode/massive/massive_edit_users.php:429 +#: ../../operation/users/user_edit.php:639 +#: ../../operation/users/user_edit.php:640 +msgid "Push selected pages into autorefresh list" +msgstr "選択したページを自動更新にする" + +#: ../../godmode/massive/massive_edit_users.php:438 +#: ../../godmode/massive/massive_edit_users.php:439 +#: ../../operation/users/user_edit.php:648 +#: ../../operation/users/user_edit.php:649 +msgid "Pop selected pages out of autorefresh list" +msgstr "選択したページを自動更新から外す" + +#: ../../godmode/massive/massive_edit_users.php:444 +#: ../../operation/users/user_edit.php:654 +msgid "List of pages with autorefresh" +msgstr "自動更新ページ一覧" + +#: ../../godmode/massive/massive_edit_users.php:453 +#: ../../operation/users/user_edit.php:663 +msgid "Time autorefresh" +msgstr "自動更新時間" + +#: ../../godmode/massive/massive_edit_users.php:455 +#: ../../operation/users/user_edit.php:665 +msgid "" +"Interval of autorefresh of the elements, by default they are 30 seconds, " +"needing to enable the autorefresh first" +msgstr "" +"要素の自動更新の間隔です。デフォルトでは 30秒で、最初に自動更新を有効にする必要" +"があります。" + #: ../../godmode/massive/massive_add_alerts.php:105 #: ../../godmode/massive/massive_delete_alerts.php:108 -#: ../../operation/agentes/alerts_status.php:531 +#: ../../operation/agentes/alerts_status.php:540 #: ../../operation/agentes/alerts_status.functions.php:54 msgid "No alert selected" msgstr "アラートが選択されていません。" @@ -35816,11 +36843,11 @@ msgstr "アラートが選択されていません。" #: ../../godmode/massive/massive_delete_agents.php:122 #, php-format msgid "" -"There was an error deleting the agent, the operation has been cancelled Could not " -"delete agent %s" +"There was an error deleting the agent, the operation has been cancelled Could " +"not delete agent %s" msgstr "" -"エージェントの削除でエラーが発生しました。操作はキャンセルされました。エージェント %s " -"は削除できません。" +"エージェントの削除でエラーが発生しました。操作はキャンセルされました。エージェ" +"ント %s は削除できません。" #: ../../godmode/massive/massive_delete_agents.php:132 #, php-format @@ -35898,19 +36925,19 @@ msgstr "このプラグインを使っているモジュールはありません msgid "There was a problem loading the module plugin macros data" msgstr "モジュールプラグインマクロデータのロード中に問題が発生しました" -#: ../../godmode/massive/massive_enable_disable_alerts.php:195 +#: ../../godmode/massive/massive_enable_disable_alerts.php:196 msgid "Enabled alerts" msgstr "有効なアラート" -#: ../../godmode/massive/massive_enable_disable_alerts.php:224 +#: ../../godmode/massive/massive_enable_disable_alerts.php:225 msgid "Disable selected alerts" msgstr "選択したアラートを無効にする" -#: ../../godmode/massive/massive_enable_disable_alerts.php:228 +#: ../../godmode/massive/massive_enable_disable_alerts.php:229 msgid "Enable selected alerts" msgstr "選択したアラートを有効にする" -#: ../../godmode/massive/massive_enable_disable_alerts.php:230 +#: ../../godmode/massive/massive_enable_disable_alerts.php:231 msgid "Disabled alerts" msgstr "無効なアラート" @@ -35950,7 +36977,8 @@ msgstr "エージェントID: %s は %s セカンダリグループ (%s) を更 msgid "" "If the remote configuration is enabled, it will also go into standby mode when " "disabling it." -msgstr "リモート設定が有効になっている場合、無効にするとスタンバイモードになります。" +msgstr "" +"リモート設定が有効になっている場合、無効にするとスタンバイモードになります。" #: ../../godmode/massive/massive_edit_agents.php:953 msgid "Active" @@ -35976,21 +37004,11 @@ msgstr "エージェントは実行しますが、アラートとイベントは #: ../../godmode/massive/massive_edit_agents.php:1130 #, php-format msgid "" -"This mode allow %s to disable all modules of this agent while the selected module is " -"on CRITICAL status" +"This mode allow %s to disable all modules of this agent while the selected " +"module is on CRITICAL status" msgstr "" -"このモードでは、選択したモジュールが障害状態の際に、%s はこのエージェントの全モジュー" -"ルを無効化することができます。" - -#: ../../godmode/massive/massive_delete_profiles.php:52 -#: ../../godmode/massive/massive_add_profiles.php:52 -#, php-format -msgid "" -"This node is configured with centralized mode. All profiles user information is read " -"only. Go to %s to manage it." -msgstr "" -"このノードは中央管理モードで設定されています。 すべてのプロファイルのユーザ情報は読み" -"取り専用です。管理するには %s に移動します。" +"このモードでは、選択したモジュールが障害状態の際に、%s はこのエージェントの全モ" +"ジュールを無効化することができます。" #: ../../godmode/massive/massive_delete_profiles.php:133 msgid "Profiles deleted successfully" @@ -36000,13 +37018,7 @@ msgstr "プロファイルを削除しました。" msgid "Profiles cannot be deleted" msgstr "プロファイルを削除できませんでした。" -#: ../../godmode/massive/massive_delete_profiles.php:153 -#: ../../godmode/massive/massive_add_profiles.php:204 -#: ../../include/functions_reporting.php:11892 ../../operation/search_results.php:93 -msgid "Users" -msgstr "ユーザ" - -#: ../../godmode/massive/massive_delete_alerts.php:307 +#: ../../godmode/massive/massive_delete_alerts.php:308 msgid "Show alerts on disabled modules" msgstr "無効化モジュールのアラート表示" @@ -36048,14 +37060,14 @@ msgid "Configure alert command" msgstr "コマンドの作成" #: ../../godmode/alerts/configure_alert_command.php:196 -#: ../../godmode/alerts/alert_commands.php:729 +#: ../../godmode/alerts/alert_commands.php:730 #, php-format msgid "" -"This node is configured with centralized mode. All alert commands information is read " -"only. Go to %s to manage it." +"This node is configured with centralized mode. All alert commands information " +"is read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートコマンド情報は読み取り" -"専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのアラートコマンド情報は読" +"み取り専用です。管理するには %s に移動します。" #: ../../godmode/alerts/configure_alert_command.php:207 msgid "Update Command" @@ -36084,7 +37096,8 @@ msgstr "値1,タグ1;値2,タグ2;値3,タグ3" msgid "Hide" msgstr "隠す" -#: ../../godmode/alerts/alert_actions.php:74 ../../include/functions_reporting.php:2991 +#: ../../godmode/alerts/alert_actions.php:74 +#: ../../include/functions_reporting.php:3122 msgid "Alert actions" msgstr "アクション" @@ -36092,23 +37105,25 @@ msgstr "アクション" #: ../../godmode/alerts/configure_alert_action.php:120 #, php-format msgid "" -"This node is configured with centralized mode. All alert actions information is read " -"only. Go to %s to manage it." +"This node is configured with centralized mode. All alert actions information " +"is read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートアクション情報は読み取" -"り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのアラートアクション情報は" +"読み取り専用です。管理するには %s に移動します。" #: ../../godmode/alerts/alert_actions.php:396 -msgid "You cannot edit this action, You don't have the permission to edit All group." -msgstr "このアクションは編集できません。'全て' グループを編集する権限がありません。" +msgid "" +"You cannot edit this action, You don't have the permission to edit All group." +msgstr "" +"このアクションは編集できません。'全て' グループを編集する権限がありません。" #: ../../godmode/alerts/alert_actions.php:407 msgid "" -"The action and the command associated with it do not have the same group. Please " -"contact an administrator to fix it." +"The action and the command associated with it do not have the same group. " +"Please contact an administrator to fix it." msgstr "" -"アクションとそれに関連付けられたコマンドに同じグループがありません。 管理者に連絡して" -"修正してください。" +"アクションとそれに関連付けられたコマンドに同じグループがありません。 管理者に連" +"絡して修正してください。" #: ../../godmode/alerts/alert_actions.php:465 msgid "No alert actions configured" @@ -36118,104 +37133,110 @@ msgstr "アクションが設定されていません。" msgid "Field content" msgstr "フィールドの内容" -#: ../../godmode/alerts/alert_list.list.php:145 ../../mobile/operation/alerts.php:64 +#: ../../godmode/alerts/alert_list.list.php:145 +#: ../../mobile/operation/alerts.php:64 #: ../../operation/agentes/alerts_status.functions.php:95 msgid "All (Enabled)" msgstr "全て(有効状態のもの)" -#: ../../godmode/alerts/alert_list.list.php:148 ../../mobile/operation/alerts.php:67 +#: ../../godmode/alerts/alert_list.list.php:148 +#: ../../mobile/operation/alerts.php:67 +#: ../../include/class/SnmpConsole.class.php:541 #: ../../operation/agentes/alerts_status.functions.php:98 -#: ../../operation/snmpconsole/snmp_view.php:228 -#: ../../operation/snmpconsole/snmp_view.php:1263 msgid "Not fired" msgstr "未通知" -#: ../../godmode/alerts/alert_list.list.php:676 ../../godmode/alerts/alert_view.php:317 +#: ../../godmode/alerts/alert_list.list.php:676 +#: ../../godmode/alerts/alert_view.php:317 msgid "" -"The default actions will be executed every time that the alert is fired and no other " -"action is executed" +"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:944 msgid "View alert advanced details" msgstr "アラートの拡張詳細表示" #: ../../godmode/alerts/alert_list.list.php:960 -#: ../../include/functions_reporting_html.php:3334 +#: ../../include/functions_reporting_html.php:3347 msgid "No alerts defined" msgstr "アラートが定義されていません" -#: ../../godmode/alerts/alert_commands.php:144 +#: ../../godmode/alerts/alert_commands.php:145 msgid "" -"For sending emails, text must be HTML format, if you want to use plain text, type it " -"between the following labels:
"
+"For sending emails, text must be HTML format, if you want to use plain text, "
+"type it between the following labels: 
"
 msgstr ""
-"メール送信には、テキストが HTML フォーマットである必要があります。プレーンテキストを使"
-"いたい場合は、ラベル 
 の間に入力してください。"
+"メール送信には、テキストが HTML フォーマットである必要があります。プレーンテキ"
+"ストを使いたい場合は、ラベル 
 の間に入力してください。"
 
-#: ../../godmode/alerts/alert_commands.php:220
-#: ../../godmode/alerts/alert_commands.php:251
+#: ../../godmode/alerts/alert_commands.php:221
+#: ../../godmode/alerts/alert_commands.php:252
 msgid "Text/plain"
 msgstr "Text/plain"
 
-#: ../../godmode/alerts/alert_commands.php:222
-#: ../../godmode/alerts/alert_commands.php:253
+#: ../../godmode/alerts/alert_commands.php:223
+#: ../../godmode/alerts/alert_commands.php:254
 msgid "For sending emails only text plain"
 msgstr "プレーンテキストのみでのメール送信"
 
-#: ../../godmode/alerts/alert_commands.php:236
-#: ../../godmode/alerts/alert_commands.php:267
+#: ../../godmode/alerts/alert_commands.php:237
+#: ../../godmode/alerts/alert_commands.php:268
 msgid "Text/html"
 msgstr "Text/html"
 
-#: ../../godmode/alerts/alert_commands.php:560
+#: ../../godmode/alerts/alert_commands.php:561
 msgid "Permissions warning"
 msgstr "権限の警告"
 
-#: ../../godmode/alerts/alert_commands.php:563
+#: ../../godmode/alerts/alert_commands.php:564
 msgid ""
 "Command management is limited to administrator users or user profiles with "
 "permissions PM"
 msgstr ""
-"コマンド管理は、管理者ユーザまたは PM 権限を持つプロファイルを割り当てられたユーザに制"
-"限されています"
+"コマンド管理は、管理者ユーザまたは PM 権限を持つプロファイルを割り当てられた"
+"ユーザに制限されています"
 
-#: ../../godmode/alerts/alert_commands.php:580
+#: ../../godmode/alerts/alert_commands.php:581
 msgid "Alert commands"
 msgstr "アラートコマンド"
 
-#: ../../godmode/alerts/alert_commands.php:649 ../../include/functions_alerts.php:2652
+#: ../../godmode/alerts/alert_commands.php:650
+#: ../../include/functions_alerts.php:2659
 msgid "No name specified"
 msgstr "名前が指定されていません"
 
-#: ../../godmode/alerts/alert_commands.php:653 ../../include/functions_alerts.php:2647
+#: ../../godmode/alerts/alert_commands.php:654
+#: ../../include/functions_alerts.php:2654
 msgid "No command specified"
 msgstr "コマンドが指定されていません。"
 
-#: ../../godmode/alerts/alert_commands.php:705
+#: ../../godmode/alerts/alert_commands.php:706
 msgid " (copy)"
 msgstr " (コピー)"
 
-#: ../../godmode/alerts/alert_commands.php:826
+#: ../../godmode/alerts/alert_commands.php:823
 msgid "No alert commands configured"
 msgstr "アラートコマンドが設定されていません"
 
 #: ../../godmode/alerts/alert_templates.php:268
 #, php-format
 msgid ""
-"This node is configured with centralized mode. All alert templates information is "
-"read only. Go to %s to manage it."
+"This node is configured with centralized mode. All alert templates information "
+"is read only. Go to %s to manage it."
 msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は読み"
-"取り専用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報"
+"は読み取り専用です。管理するには %s に移動します。"
 
 #: ../../godmode/alerts/alert_templates.php:413
 msgid ""
-"You cannot edit this alert template, You don't have the permission to edit All group."
+"You cannot edit this alert template, You don't have the permission to edit All "
+"group."
 msgstr ""
-"このアラートテンプレートを編集することはできません。'全て' グループを編集する権限があ"
-"りません。"
+"このアラートテンプレートを編集することはできません。'全て' グループを編集する権"
+"限がありません。"
 
 #: ../../godmode/alerts/alert_templates.php:474
 msgid "No alert templates defined"
@@ -36245,8 +37266,8 @@ msgid "Recovery"
 msgstr "復旧通知"
 
 #: ../../godmode/alerts/configure_alert_action.php:310
-#: ../../godmode/alerts/alert_view.php:527 ../../godmode/alerts/alert_view.php:654
-#: ../../godmode/servers/plugin.php:422
+#: ../../godmode/alerts/alert_view.php:527
+#: ../../godmode/alerts/alert_view.php:654 ../../godmode/servers/plugin.php:415
 msgid "Command preview"
 msgstr "実行されるコマンドのプレビュー"
 
@@ -36259,8 +37280,8 @@ msgid ""
 "If closed status is set on recovery, a workunit will be added to the ticket in "
 "Integria IMS rather that closing the ticket."
 msgstr ""
-"リカバリ時にクローズステータスが設定されている場合、ワークユニットはチケットをクローズ"
-"するのではなく、Integria IMS のチケットに追加されます。"
+"リカバリ時にクローズステータスが設定されている場合、ワークユニットはチケットを"
+"クローズするのではなく、Integria IMS のチケットに追加されます。"
 
 #: ../../godmode/alerts/configure_alert_template.php:99
 #: ../../godmode/alerts/configure_alert_template.php:123
@@ -36282,11 +37303,11 @@ msgstr "拡張フィールド"
 #: ../../godmode/alerts/configure_alert_template.php:419
 #, php-format
 msgid ""
-"This node is configured with centralized mode. All alerts templates information is "
-"read only. Go to Go to %s to manage it."
+"This node is configured with centralized mode. All alerts templates "
+"information is read only. Go to Go to %s to manage it."
 msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は読み"
-"取り専用です。 管理するには、%s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報"
+"は読み取り専用です。 管理するには、%s に移動します。"
 
 #: ../../godmode/alerts/configure_alert_template.php:531
 msgid "No template name specified"
@@ -36304,19 +37325,19 @@ msgstr "アラートが継続しない場合にカウンターをリセット"
 
 #: ../../godmode/alerts/configure_alert_template.php:714
 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"
+"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:788
 msgid ""
-"Unless they're left blank, the fields from the action will override those set on the "
-"template."
+"Unless they're left blank, the fields from the action will override those set "
+"on the template."
 msgstr ""
-"空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が優先され"
-"ます。"
+"空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が"
+"優先されます。"
 
 #: ../../godmode/alerts/configure_alert_template.php:792
 msgid "Condition type"
@@ -36346,7 +37367,8 @@ msgstr "ウィザードがありません"
 #: ../../godmode/alerts/alert_view.php:166 ../../include/functions_ui.php:1340
 msgid "The alert would fire when the value matches "
 msgstr ""
-"取得した値が  にマッチした場合、アラートを発生させます。"
+"取得した値が  にマッチした場合、アラートを発生させま"
+"す。"
 
 #: ../../godmode/alerts/configure_alert_template.php:1217
 #, php-format
@@ -36361,24 +37383,25 @@ msgstr "取得した値が  の場合、アラート
 #: ../../godmode/alerts/configure_alert_template.php:1219
 #: ../../godmode/alerts/alert_view.php:180 ../../include/functions_ui.php:1334
 msgid "The alert would fire when the value is not "
-msgstr "取得した値が  以外の場合、アラートを発生させます。"
+msgstr ""
+"取得した値が  以外の場合、アラートを発生させます。"
 
 #: ../../godmode/alerts/configure_alert_template.php:1220
 #: ../../godmode/alerts/alert_view.php:187 ../../include/functions_ui.php:1352
 msgid ""
-"The alert would fire when the value is between  and "
+"The alert would fire when the value is between  and "
+""
 msgstr ""
-"取得した値が  の間になったら、ア"
-"ラートを発生させます。"
+"取得した値が  の間になった"
+"ら、アラートを発生させます。"
 
 #: ../../godmode/alerts/configure_alert_template.php:1221
 msgid ""
-"The alert would fire when the value is not between  and "
+"The alert would fire when the value is not between  and "
+""
 msgstr ""
-"値が  の間にない場合、アラートが発生しま"
-"す。"
+"値が  の間にない場合、アラートが発"
+"生します。"
 
 #: ../../godmode/alerts/configure_alert_template.php:1222
 #: ../../godmode/alerts/alert_view.php:200
@@ -36426,19 +37449,19 @@ msgstr "モジュールが正常状態でない場合にアラートが発報さ
 
 #: ../../godmode/alerts/configure_alert_template.php:1407
 msgid ""
-"The alert would fire when the module is in unknown status. Warning: unknown_updates "
-"of pandora_server.conf must be equal to 1"
+"The alert would fire when the module is in unknown status. Warning: "
+"unknown_updates of pandora_server.conf must be equal to 1"
 msgstr ""
-"モジュールのステータスが不明の場合、アラートが発生します。 警告: pandora_server.conf "
-"の unknown_updates を 1 にする必要があります"
+"モジュールのステータスが不明の場合、アラートが発生します。 警告: "
+"pandora_server.conf の unknown_updates を 1 にする必要があります"
 
 #: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:280
-#: ../../include/functions_events.php:4241
+#: ../../include/functions_events.php:4354
 msgid "Alert details"
 msgstr "アラート詳細"
 
 #: ../../godmode/alerts/alert_view.php:83 ../../godmode/alerts/alert_view.php:84
-#: ../../godmode/alerts/alert_list.php:480
+#: ../../godmode/alerts/alert_list.php:505
 msgid "List alerts"
 msgstr "アラート一覧"
 
@@ -36449,32 +37472,36 @@ msgid "Stand by"
 msgstr "スタンバイ"
 
 #: ../../godmode/alerts/alert_view.php:168 ../../include/functions_ui.php:1343
-msgid "The alert would fire when the value doesn't match "
+msgid ""
+"The alert would fire when the value doesn't match "
 msgstr ""
-"取得した値が  にマッチしない場合、アラートを発生させます。"
+"取得した値が  にマッチしない場合、アラートを発生させ"
+"ます。"
 
 #: ../../godmode/alerts/alert_view.php:191 ../../include/functions_ui.php:1355
 msgid ""
-"The alert would fire when the value is not between  and "
+"The alert would fire when the value is not between  "
+"and "
 msgstr ""
-"取得した値が  の間を外れたら、ア"
-"ラートを発生させます。"
+"取得した値が  の間を外れた"
+"ら、アラートを発生させます。"
 
 #: ../../godmode/alerts/alert_view.php:281
 msgid "Firing conditions"
 msgstr "発報条件"
 
-#: ../../godmode/alerts/alert_view.php:305 ../../godmode/alerts/alert_view.php:339
+#: ../../godmode/alerts/alert_view.php:305
+#: ../../godmode/alerts/alert_view.php:339
 msgid "Every time that the alert is fired"
 msgstr "アラート発生のたび"
 
 #: ../../godmode/alerts/alert_view.php:385
 msgid ""
-"Select the desired action and mode to see the Firing/Recovery fields for this action"
+"Select the desired action and mode to see the Firing/Recovery fields for this "
+"action"
 msgstr ""
-"このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを選択して"
-"ください。"
+"このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを"
+"選択してください。"
 
 #: ../../godmode/alerts/alert_view.php:446
 msgid "Template fields"
@@ -36493,9 +37520,12 @@ msgid "Recovering fields"
 msgstr "復旧フィールド"
 
 #: ../../godmode/alerts/alert_view.php:560
-msgid "Fields passed to the command executed by this action when the alert is recovered"
+msgid ""
+"Fields passed to the command executed by this action when the alert is "
+"recovered"
 msgstr ""
-"アラートが復旧したときに、このアクションによって実行されるコマンドに渡されるフィールド"
+"アラートが復旧したときに、このアクションによって実行されるコマンドに渡される"
+"フィールド"
 
 #: ../../godmode/alerts/alert_view.php:574
 msgid "Template recovery fields"
@@ -36529,15 +37559,15 @@ msgstr "最新の値"
 msgid "Finish and view cluster"
 msgstr "終了しクラスタを見る"
 
-#: ../../godmode/alerts/alert_list.php:115
+#: ../../godmode/alerts/alert_list.php:122
 msgid "Already added"
 msgstr "すでに追加されています。"
 
-#: ../../godmode/alerts/alert_list.php:169
+#: ../../godmode/alerts/alert_list.php:176
 msgid "No template specified"
 msgstr "テンプレートが指定されていません"
 
-#: ../../godmode/alerts/alert_list.php:484
+#: ../../godmode/alerts/alert_list.php:509
 msgid "Builder alert"
 msgstr "アラート作成"
 
@@ -36545,94 +37575,114 @@ msgstr "アラート作成"
 msgid "License management"
 msgstr "ライセンス管理"
 
-#: ../../godmode/setup/license.php:99
+#: ../../godmode/setup/license.php:125
 msgid "Error while connecting to licence server."
 msgstr "ライセンスサーバへの接続エラー"
 
-#: ../../godmode/setup/license.php:100
+#: ../../godmode/setup/license.php:126
 msgid "Invalid response while validating license."
 msgstr "ライセンスの検証に失敗しました。"
 
-#: ../../godmode/setup/license.php:121
+#: ../../godmode/setup/license.php:147
 msgid "Licence"
 msgstr "ライセンス"
 
-#: ../../godmode/setup/license.php:129 ../../include/class/Diagnostics.class.php:1152
+#: ../../godmode/setup/license.php:155
+#: ../../include/class/Diagnostics.class.php:1155
 msgid "Customer key"
 msgstr "カスタマーキー"
 
-#: ../../godmode/setup/license.php:135 ../../include/class/Diagnostics.class.php:1160
+#: ../../godmode/setup/license.php:161
+#: ../../include/class/Diagnostics.class.php:1163
 msgid "Platform Limit"
 msgstr "ライセンス数上限"
 
-#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
-#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
+#: ../../godmode/setup/license.php:162 ../../godmode/setup/license.php:165
+#: ../../godmode/setup/license.php:168 ../../godmode/setup/license.php:171
 msgid "agents"
 msgstr "エージェント"
 
-#: ../../godmode/setup/license.php:136 ../../godmode/setup/license.php:139
-#: ../../godmode/setup/license.php:142 ../../godmode/setup/license.php:145
+#: ../../godmode/setup/license.php:162 ../../godmode/setup/license.php:165
+#: ../../godmode/setup/license.php:168 ../../godmode/setup/license.php:171
 #: ../../operation/tree.php:158
 msgid "modules"
 msgstr "モジュール"
 
-#: ../../godmode/setup/license.php:138 ../../include/class/Diagnostics.class.php:1164
+#: ../../godmode/setup/license.php:164
+#: ../../include/class/Diagnostics.class.php:1167
 msgid "Current Platform Count"
 msgstr "現在の利用数"
 
-#: ../../godmode/setup/license.php:141 ../../include/class/Diagnostics.class.php:1168
+#: ../../godmode/setup/license.php:167
+#: ../../include/class/Diagnostics.class.php:1171
 msgid "Current Platform Count (enabled: items)"
 msgstr "現在の利用数 (有効のもの)"
 
-#: ../../godmode/setup/license.php:144 ../../include/class/Diagnostics.class.php:1172
+#: ../../godmode/setup/license.php:170
+#: ../../include/class/Diagnostics.class.php:1175
 msgid "Current Platform Count (disabled: items)"
 msgstr "現在の利用数 (無効のもの)"
 
-#: ../../godmode/setup/license.php:147 ../../include/class/Diagnostics.class.php:1176
+#: ../../godmode/setup/license.php:173
+#: ../../include/class/Diagnostics.class.php:1179
 msgid "License Mode"
 msgstr "ライセンスモード"
 
-#: ../../godmode/setup/license.php:150
+#: ../../godmode/setup/license.php:176
 msgid "NMS"
 msgstr "NMS"
 
-#: ../../godmode/setup/license.php:156 ../../include/class/Diagnostics.class.php:1188
+#: ../../godmode/setup/license.php:183
+msgid "License encryption key"
+msgstr "ライセンス暗号化キー"
+
+#: ../../godmode/setup/license.php:184
+msgid ""
+"This key is used to encrypt your Pandora FMS license when it is shared with "
+"other Pandora FMS components"
+msgstr ""
+"このキーは、他の Pandora FMS コンポーネントと共有する際に Pandora FMS ライセン"
+"スを暗号化するために使用されます。"
+
+#: ../../godmode/setup/license.php:198
+#: ../../include/class/Diagnostics.class.php:1191
 msgid "Licensed to"
 msgstr "ライセンス先"
 
-#: ../../godmode/setup/license.php:167 ../../godmode/setup/license.php:182
+#: ../../godmode/setup/license.php:209 ../../godmode/setup/license.php:224
 msgid "Request new license"
 msgstr "新規ライセンス要求"
 
-#: ../../godmode/setup/license.php:186
+#: ../../godmode/setup/license.php:228
 #, php-format
 msgid "To get your %s Enterprise License:"
 msgstr "%s Enterprise ライセンスの取得:"
 
-#: ../../godmode/setup/license.php:189
+#: ../../godmode/setup/license.php:231
 #, php-format
 msgid "Go to %s"
 msgstr "%s へ移動"
 
-#: ../../godmode/setup/license.php:192
+#: ../../godmode/setup/license.php:234
 msgid "Enter the auth key and the following request key:"
 msgstr "auth key と次の  request key を入力してください:"
 
-#: ../../godmode/setup/license.php:198
+#: ../../godmode/setup/license.php:240
 msgid "Enter your name (or a company name) and a contact email address."
-msgstr "あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。"
+msgstr ""
+"あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。"
 
-#: ../../godmode/setup/license.php:201
+#: ../../godmode/setup/license.php:243
 msgid "Click on Generate."
 msgstr "
生成
をクリックします。" -#: ../../godmode/setup/license.php:204 +#: ../../godmode/setup/license.php:246 msgid "" "Click here, enter the " "generated license key and click on Validate." msgstr "" -"ここをクリックし、生成された" -"ライセンスキーを入力し有効化をクリックします。" +"ここをクリックし、生成" +"されたライセンスキーを入力し有効化をクリックします。" #: ../../godmode/setup/news.php:29 msgid "Site news management" @@ -36658,7 +37708,8 @@ msgstr "有効期限" msgid "There are no defined news" msgstr "定義済のニュースがありません" -#: ../../godmode/setup/news.php:248 ../../operation/agentes/estado_generalagente.php:642 +#: ../../godmode/setup/news.php:248 +#: ../../operation/agentes/estado_generalagente.php:658 msgid "Author" msgstr "作者" @@ -36674,11 +37725,11 @@ msgstr "ボード" msgid "Expired" msgstr "期限切れ" -#: ../../godmode/setup/gis.php:68 +#: ../../godmode/setup/gis.php:69 msgid "Map connection name" msgstr "GIS 利用マップ名" -#: ../../godmode/setup/gis.php:86 +#: ../../godmode/setup/gis.php:87 msgid "Do you wan delete this connection?" msgstr "このマップ利用設定を削除しますか。" @@ -36698,7 +37749,8 @@ msgstr "Pandora Websocket エンジン" msgid "Correct update the setup options" msgstr "設定オプションを更新しました" -#: ../../godmode/setup/setup_ehorus.php:58 ../../include/functions_config.php:1675 +#: ../../godmode/setup/setup_ehorus.php:58 +#: ../../include/functions_config.php:1714 msgid "Enable eHorus" msgstr "eHorus の有効化" @@ -36710,7 +37762,8 @@ msgstr "API ホスト名" msgid "API Port" msgstr "API ポート" -#: ../../godmode/setup/setup_ehorus.php:105 ../../godmode/setup/setup_integria.php:309 +#: ../../godmode/setup/setup_ehorus.php:105 +#: ../../godmode/setup/setup_integria.php:309 msgid "Request timeout" msgstr "要求タイムアウト" @@ -36732,7 +37785,8 @@ msgstr "eHorus には独自のエージェント識別があります" #: ../../godmode/setup/setup_ehorus.php:152 msgid "To store them, it will be necessary to use an agent custom field" -msgstr "それを保存するために、エージェントのカスタムフィールドを使う必要があります" +msgstr "" +"それを保存するために、エージェントのカスタムフィールドを使う必要があります" #: ../../godmode/setup/setup_ehorus.php:153 msgid "Possibly the eHorus id will have to be filled in by hand for every agent" @@ -36746,25 +37800,32 @@ msgstr "カスタムフィールドが存在しません" msgid "eHorus API" msgstr "eHorus API" -#: ../../godmode/setup/setup_ehorus.php:254 ../../godmode/setup/setup_integria.php:719 +#: ../../godmode/setup/setup_ehorus.php:254 +#: ../../godmode/setup/setup_integria.php:719 msgid "Connection timeout" msgstr "接続タイムアウト" -#: ../../godmode/setup/setup_ehorus.php:255 ../../godmode/setup/setup_integria.php:720 -#: ../../godmode/setup/setup_integria.php:801 ../../operation/users/user_edit.php:1270 -#: ../../operation/users/user_edit.php:1348 +#: ../../godmode/setup/setup_ehorus.php:255 +#: ../../godmode/setup/setup_integria.php:720 +#: ../../godmode/setup/setup_integria.php:801 +#: ../../operation/users/user_edit.php:1342 +#: ../../operation/users/user_edit.php:1420 msgid "Empty user or password" msgstr "ユーザまたはパスワードが空です" -#: ../../godmode/setup/setup_ehorus.php:256 ../../godmode/setup/setup_integria.php:721 -#: ../../godmode/setup/setup_integria.php:802 ../../operation/users/user_edit.php:1271 -#: ../../operation/users/user_edit.php:1349 +#: ../../godmode/setup/setup_ehorus.php:256 +#: ../../godmode/setup/setup_integria.php:721 +#: ../../godmode/setup/setup_integria.php:802 +#: ../../operation/users/user_edit.php:1343 +#: ../../operation/users/user_edit.php:1421 msgid "User not found" msgstr "ユーザが見つかりません" -#: ../../godmode/setup/setup_ehorus.php:257 ../../godmode/setup/setup_integria.php:722 -#: ../../godmode/setup/setup_integria.php:803 ../../operation/users/user_edit.php:1272 -#: ../../operation/users/user_edit.php:1350 +#: ../../godmode/setup/setup_ehorus.php:257 +#: ../../godmode/setup/setup_integria.php:722 +#: ../../godmode/setup/setup_integria.php:803 +#: ../../operation/users/user_edit.php:1344 +#: ../../operation/users/user_edit.php:1422 msgid "Invalid password" msgstr "パスワードが正しくありません" @@ -36781,18 +37842,18 @@ msgid "Bind port" msgstr "待ち受けポート" #: ../../godmode/setup/setup_websocket_engine.php:67 -#: ../../include/functions_config.php:1827 +#: ../../include/functions_config.php:1866 msgid "WebSocket proxy url" msgstr "Websocket プロキシ URL" #: ../../godmode/setup/os.list.php:56 #, php-format msgid "" -"This node is configured with centralized mode. All OS definitions are read only. Go " -"to %s to manage them." +"This node is configured with centralized mode. All OS definitions are read " +"only. Go to %s to manage them." msgstr "" -"このノードは中央管理モードで設定されています。 すべての OS 定義は読み取り専用です。 そ" -"れらを管理するには、%s に移動します。" +"このノードは中央管理モードで設定されています。 すべての OS 定義は読み取り専用で" +"す。 それらを管理するには、%s に移動します。" #: ../../godmode/setup/os.list.php:141 msgid "There are no defined operating systems" @@ -36818,7 +37879,7 @@ msgstr "OS の編集" msgid "List of Operating Systems" msgstr "オペレーティングシステム一覧" -#: ../../godmode/setup/os.php:238 ../../include/functions_api.php:2015 +#: ../../godmode/setup/os.php:238 ../../include/functions_api.php:2074 msgid "Success creating OS" msgstr "OS を作成しました" @@ -36826,7 +37887,7 @@ msgstr "OS を作成しました" msgid "Fail creating OS" msgstr "OS の作成に失敗しました" -#: ../../godmode/setup/os.php:246 ../../include/functions_api.php:2054 +#: ../../godmode/setup/os.php:246 ../../include/functions_api.php:2111 msgid "Success updating OS" msgstr "OS を更新しました" @@ -36858,180 +37919,188 @@ msgstr "新たな利用マップ設定" msgid "Edit map connection" msgstr "利用マップ編集" -#: ../../godmode/setup/gis_step_2.php:213 +#: ../../godmode/setup/gis_step_2.php:214 msgid "Connection Name" msgstr "名称" -#: ../../godmode/setup/gis_step_2.php:219 +#: ../../godmode/setup/gis_step_2.php:220 msgid "Number of zoom levels" msgstr "選択可能な拡大率の数" -#: ../../godmode/setup/gis_step_2.php:223 +#: ../../godmode/setup/gis_step_2.php:224 msgid "Default zoom level" msgstr "デフォルト拡大レベル" -#: ../../godmode/setup/gis_step_2.php:226 +#: ../../godmode/setup/gis_step_2.php:227 msgid "Basic configuration" msgstr "基本設定" -#: ../../godmode/setup/gis_step_2.php:231 +#: ../../godmode/setup/gis_step_2.php:232 msgid "Open Street Maps" msgstr "Open Street マップ" -#: ../../godmode/setup/gis_step_2.php:232 +#: ../../godmode/setup/gis_step_2.php:233 msgid "Google Maps" msgstr "Google マップ" -#: ../../godmode/setup/gis_step_2.php:233 +#: ../../godmode/setup/gis_step_2.php:234 #: ../../godmode/reporting/visual_console_builder.elements.php:183 #: ../../include/functions_visual_map_editor.php:1387 -#: ../../include/functions_visual_map.php:4247 -#: ../../operation/visual_console/view.php:296 +#: ../../include/functions_visual_map.php:4200 +#: ../../operation/visual_console/view.php:298 msgid "Static Image" msgstr "静的画像" -#: ../../godmode/setup/gis_step_2.php:234 +#: ../../godmode/setup/gis_step_2.php:235 msgid "WMS Server" msgstr "WMS サーバ" -#: ../../godmode/setup/gis_step_2.php:236 +#: ../../godmode/setup/gis_step_2.php:237 msgid "Please select the connection type" msgstr "利用マップタイプを選択してください" -#: ../../godmode/setup/gis_step_2.php:238 +#: ../../godmode/setup/gis_step_2.php:239 msgid "Map connection type" msgstr "利用マップタイプ" -#: ../../godmode/setup/gis_step_2.php:286 +#: ../../godmode/setup/gis_step_2.php:287 msgid "Tile Server URL" msgstr "サーバ URL" -#: ../../godmode/setup/gis_step_2.php:299 +#: ../../godmode/setup/gis_step_2.php:300 msgid "Google Physical" msgstr "地形" -#: ../../godmode/setup/gis_step_2.php:300 +#: ../../godmode/setup/gis_step_2.php:301 msgid "Google Hybrid" msgstr "航空写真" -#: ../../godmode/setup/gis_step_2.php:301 +#: ../../godmode/setup/gis_step_2.php:302 msgid "Google Satelite" msgstr "地図" -#: ../../godmode/setup/gis_step_2.php:303 +#: ../../godmode/setup/gis_step_2.php:304 msgid "Google Map Type" msgstr "Google マップタイプ" -#: ../../godmode/setup/gis_step_2.php:327 +#: ../../godmode/setup/gis_step_2.php:328 msgid "Google Maps Key" msgstr "Google マップキー" -#: ../../godmode/setup/gis_step_2.php:336 +#: ../../godmode/setup/gis_step_2.php:337 msgid "Image URL" msgstr "画像 URL" -#: ../../godmode/setup/gis_step_2.php:343 +#: ../../godmode/setup/gis_step_2.php:344 msgid "Corners of the area of the image" msgstr "画像が表す領域の範囲" -#: ../../godmode/setup/gis_step_2.php:343 -#: ../../include/rest-api/models/VisualConsole/Item.php:1960 +#: ../../godmode/setup/gis_step_2.php:344 +#: ../../include/rest-api/models/VisualConsole/Item.php:1961 msgid "Left" msgstr "左" -#: ../../godmode/setup/gis_step_2.php:350 -#: ../../include/rest-api/models/VisualConsole/Item.php:1957 +#: ../../godmode/setup/gis_step_2.php:351 +#: ../../include/rest-api/models/VisualConsole/Item.php:1958 #: ../../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:357 -#: ../../include/rest-api/models/VisualConsole/Item.php:1959 +#: ../../godmode/setup/gis_step_2.php:358 +#: ../../include/rest-api/models/VisualConsole/Item.php:1960 msgid "Right" msgstr "右" -#: ../../godmode/setup/gis_step_2.php:364 -#: ../../include/rest-api/models/VisualConsole/Item.php:1958 +#: ../../godmode/setup/gis_step_2.php:365 +#: ../../include/rest-api/models/VisualConsole/Item.php:1959 msgid "Top" msgstr "上" -#: ../../godmode/setup/gis_step_2.php:371 +#: ../../godmode/setup/gis_step_2.php:372 msgid "Image Size" msgstr "画像サイズ" -#: ../../godmode/setup/gis_step_2.php:388 +#: ../../godmode/setup/gis_step_2.php:389 msgid "WMS Server URL" msgstr "WMS サーバ URL" -#: ../../godmode/setup/gis_step_2.php:430 -msgid "" -"Preview to select the center of the map and the default position of an agent without " -"gis data" -msgstr "マップの中心選択と、GISデータが無い場合のエージェントのデフォルト位置プレビュー" - #: ../../godmode/setup/gis_step_2.php:431 +msgid "" +"Preview to select the center of the map and the default position of an agent " +"without gis data" +msgstr "" +"マップの中心選択と、GISデータが無い場合のエージェントのデフォルト位置プレビュー" + +#: ../../godmode/setup/gis_step_2.php:432 msgid "Load preview map" msgstr "マッププレビュー" -#: ../../godmode/setup/gis_step_2.php:440 +#: ../../godmode/setup/gis_step_2.php:441 msgid "Map Center" msgstr "マップの中心" -#: ../../godmode/setup/gis_step_2.php:441 +#: ../../godmode/setup/gis_step_2.php:442 msgid "Default position for agents without GIS data" msgstr "GIS データが無い場合のエージェントのデフォルト位置" -#: ../../godmode/setup/gis_step_2.php:443 +#: ../../godmode/setup/gis_step_2.php:444 msgid "Change in the map" msgstr "マップ内での変更" -#: ../../godmode/setup/gis_step_2.php:465 ../../operation/agentes/gis_view.php:218 +#: ../../godmode/setup/gis_step_2.php:466 +#: ../../operation/agentes/gis_view.php:218 msgid "Latitude" msgstr "緯度" -#: ../../godmode/setup/gis_step_2.php:483 ../../operation/agentes/gis_view.php:217 +#: ../../godmode/setup/gis_step_2.php:484 +#: ../../operation/agentes/gis_view.php:217 msgid "Longitude" msgstr "経度" -#: ../../godmode/setup/gis_step_2.php:501 ../../operation/agentes/gis_view.php:219 +#: ../../godmode/setup/gis_step_2.php:502 +#: ../../operation/agentes/gis_view.php:219 msgid "Altitude" msgstr "高度" -#: ../../godmode/setup/gis_step_2.php:564 ../../godmode/setup/gis_step_2.php:659 +#: ../../godmode/setup/gis_step_2.php:565 ../../godmode/setup/gis_step_2.php:660 msgid "Center" msgstr "中心" -#: ../../godmode/setup/gis_step_2.php:624 +#: ../../godmode/setup/gis_step_2.php:625 msgid "Refresh preview map" msgstr "マッププレビューの再実行" #: ../../godmode/setup/setup_auth.php:207 +msgid "Ldap search timeout (secs)" +msgstr "LDAP 検索タイムアウト(秒)" + +#: ../../godmode/setup/setup_auth.php:223 msgid "Enable secondary LDAP" msgstr "セカンダリ LDAP の有効化" -#: ../../godmode/setup/setup_auth.php:278 +#: ../../godmode/setup/setup_auth.php:294 msgid "Secondary Base DN" msgstr "セカンダリ Base DN" -#: ../../godmode/setup/setup_auth.php:291 +#: ../../godmode/setup/setup_auth.php:307 msgid "Secondary Login attribute" msgstr "セカンダリログイン属性" -#: ../../godmode/setup/setup_auth.php:368 +#: ../../godmode/setup/setup_auth.php:384 msgid "Force 2FA for all users is enabled" msgstr "全ユーザに二段階認証を強制する" -#: ../../godmode/setup/setup_auth.php:389 +#: ../../godmode/setup/setup_auth.php:405 msgid "Session timeout (mins)" msgstr "セッションタイムアウト(分)" -#: ../../godmode/setup/setup_auth.php:432 +#: ../../godmode/setup/setup_auth.php:448 #, php-format msgid "Local %s" msgstr "ローカル %s" -#: ../../godmode/setup/setup_auth.php:433 +#: ../../godmode/setup/setup_auth.php:449 msgid "ldap" msgstr "LDAP" @@ -37042,7 +38111,8 @@ msgstr "LDAP" msgid "Integria IMS API is not reachable" msgstr "Integria IMS API に通信できません" -#: ../../godmode/setup/setup_integria.php:261 ../../include/functions_config.php:1713 +#: ../../godmode/setup/setup_integria.php:261 +#: ../../include/functions_config.php:1752 msgid "Enable Integria IMS" msgstr "Integria IMS の有効化" @@ -37052,11 +38122,11 @@ msgstr "Integria IMS セットアップ URL" #: ../../godmode/setup/setup_integria.php:296 msgid "" -"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, https://" -"support.mycompany.com)." +"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, " +"https://support.mycompany.com)." msgstr "" -"完全な Integria IMS セットアップ URL (例: http://192.168.1.20/integria, https://" -"support.mycompany.com)" +"完全な Integria IMS セットアップ URL (例: http://192.168.1.20/integria, " +"https://support.mycompany.com)" #: ../../godmode/setup/setup_integria.php:302 msgid "API Password" @@ -37066,7 +38136,8 @@ msgstr "API パスワード" msgid "Sync inventory" msgstr "インベントリ同期" -#: ../../godmode/setup/setup_integria.php:348 ../../godmode/setup/setup_integria.php:469 +#: ../../godmode/setup/setup_integria.php:348 +#: ../../godmode/setup/setup_integria.php:469 msgid "Ticket body" msgstr "チケット本文" @@ -37110,39 +38181,48 @@ msgstr "SNMP翻訳の保存に失敗しました" msgid "Unsucessful save the snmp translation." msgstr "SNMP翻訳の保存に失敗しました。" -#: ../../godmode/setup/setup_netflow.php:47 ../../include/functions_config.php:1471 +#: ../../godmode/setup/setup_netflow.php:47 +#: ../../include/functions_config.php:1481 msgid "Data storage path" msgstr "データストアのパス" -#: ../../godmode/setup/setup_netflow.php:50 ../../include/functions_config.php:1475 +#: ../../godmode/setup/setup_netflow.php:50 +#: ../../include/functions_config.php:1485 msgid "Daemon interval" msgstr "デーモン間隔" -#: ../../godmode/setup/setup_netflow.php:53 ../../include/functions_config.php:1479 +#: ../../godmode/setup/setup_netflow.php:53 +#: ../../include/functions_config.php:1489 msgid "Daemon binary path" msgstr "デーモンのバイナリパス" -#: ../../godmode/setup/setup_netflow.php:56 ../../include/functions_config.php:1483 +#: ../../godmode/setup/setup_netflow.php:56 +#: ../../include/functions_config.php:1493 msgid "Nfdump binary path" msgstr "nfdump バイナリのパス" -#: ../../godmode/setup/setup_netflow.php:59 ../../include/functions_config.php:1487 +#: ../../godmode/setup/setup_netflow.php:59 +#: ../../include/functions_config.php:1497 msgid "Nfexpire binary path" msgstr "nfexpire バイナリのパス" -#: ../../godmode/setup/setup_netflow.php:62 ../../include/functions_config.php:1491 +#: ../../godmode/setup/setup_netflow.php:62 +#: ../../include/functions_config.php:1501 msgid "Maximum chart resolution" msgstr "最大グラフ解像度" -#: ../../godmode/setup/setup_netflow.php:67 ../../include/functions_config.php:1499 +#: ../../godmode/setup/setup_netflow.php:67 +#: ../../include/functions_config.php:1509 msgid "Netflow max lifetime" msgstr "Netflow 最大保持期間" -#: ../../godmode/setup/setup_netflow.php:70 ../../include/functions_config.php:1503 +#: ../../godmode/setup/setup_netflow.php:70 +#: ../../include/functions_config.php:1513 msgid "Name resolution for IP address" msgstr "IP アドレスの名前解決" -#: ../../godmode/setup/setup_netflow.php:71 ../../operation/netflow/nf_live_view.php:459 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../operation/netflow/nf_live_view.php:459 msgid "IP address resolution can take a lot of time" msgstr "IP アドレスの解決には多くの時間がかかります" @@ -37154,7 +38234,8 @@ msgstr "ページ区切りモジュール表示" msgid "Click to display lateral menus" msgstr "クリックして横のメニューを表示" -#: ../../godmode/setup/setup_visuals.php:116 ../../include/functions_config.php:1296 +#: ../../godmode/setup/setup_visuals.php:116 +#: ../../include/functions_config.php:1297 msgid "Service label font size" msgstr "サービスラベルフォントサイズ" @@ -37162,11 +38243,13 @@ msgstr "サービスラベルフォントサイズ" msgid "Space between items in Service maps" msgstr "サービスマップにおける要素間のスペース" -#: ../../godmode/setup/setup_visuals.php:137 ../../include/functions_config.php:1003 +#: ../../godmode/setup/setup_visuals.php:137 +#: ../../include/functions_config.php:1004 msgid "Style template" msgstr "スタイルテンプレート" -#: ../../godmode/setup/setup_visuals.php:150 ../../include/functions_config.php:1023 +#: ../../godmode/setup/setup_visuals.php:150 +#: ../../include/functions_config.php:1024 msgid "Status icon set" msgstr "ステータスアイコンの種類" @@ -37182,20 +38265,24 @@ msgstr "顔" msgid "Colors and text" msgstr "色と文字" -#: ../../godmode/setup/setup_visuals.php:176 ../../include/functions_config.php:1099 +#: ../../godmode/setup/setup_visuals.php:176 +#: ../../include/functions_config.php:1100 msgid "Login background" msgstr "ログイン背景" -#: ../../godmode/setup/setup_visuals.php:394 ../../include/functions_config.php:1059 +#: ../../godmode/setup/setup_visuals.php:394 +#: ../../include/functions_config.php:1060 msgid "Custom documentation logo" msgstr "カスタムドキュメントロゴ" -#: ../../godmode/setup/setup_visuals.php:414 ../../include/functions_config.php:1063 +#: ../../godmode/setup/setup_visuals.php:414 +#: ../../include/functions_config.php:1064 msgid "Custom support logo" msgstr "カスタムサポートロゴ" -#: ../../godmode/setup/setup_visuals.php:433 ../../include/functions_config.php:1067 -#: ../../include/functions_config.php:1071 +#: ../../godmode/setup/setup_visuals.php:433 +#: ../../include/functions_config.php:1068 +#: ../../include/functions_config.php:1072 msgid "Custom networkmap center logo" msgstr "カスタムネットワークマップセンターロゴ" @@ -37211,7 +38298,8 @@ msgstr "グラフ内ロゴの無効化" msgid "Disable helps" msgstr "ヘルプの無効化" -#: ../../godmode/setup/setup_visuals.php:545 ../../include/functions_config.php:1235 +#: ../../godmode/setup/setup_visuals.php:545 +#: ../../include/functions_config.php:1236 msgid "Fixed header" msgstr "ヘッダーの固定" @@ -37219,11 +38307,13 @@ msgstr "ヘッダーの固定" msgid "Automatically hide submenu" msgstr "サブメニューを自動的に隠す" -#: ../../godmode/setup/setup_visuals.php:584 ../../include/functions_config.php:1207 +#: ../../godmode/setup/setup_visuals.php:584 +#: ../../include/functions_config.php:1208 msgid "GIS Labels" msgstr "GIS ラベル" -#: ../../godmode/setup/setup_visuals.php:599 ../../include/functions_config.php:1215 +#: ../../godmode/setup/setup_visuals.php:599 +#: ../../include/functions_config.php:1216 msgid "Default icon in GIS" msgstr "GIS でのデフォルトアイコン" @@ -37235,29 +38325,35 @@ msgstr "エージェントアイコングループ" msgid "Graphs font size" msgstr "グラフフォントサイズ" -#: ../../godmode/setup/setup_visuals.php:654 ../../include/functions_config.php:1183 -#: ../../include/functions_config.php:1187 +#: ../../godmode/setup/setup_visuals.php:654 +#: ../../include/functions_config.php:1184 +#: ../../include/functions_config.php:1188 msgid "Agent size text" msgstr "エージェント名の表示長さ" -#: ../../godmode/setup/setup_visuals.php:655 ../../godmode/setup/setup_visuals.php:660 +#: ../../godmode/setup/setup_visuals.php:655 +#: ../../godmode/setup/setup_visuals.php:660 msgid "Small:" msgstr "小:" -#: ../../godmode/setup/setup_visuals.php:656 ../../godmode/setup/setup_visuals.php:661 +#: ../../godmode/setup/setup_visuals.php:656 +#: ../../godmode/setup/setup_visuals.php:661 msgid "Normal:" msgstr "通常:" -#: ../../godmode/setup/setup_visuals.php:659 ../../include/functions_config.php:1191 +#: ../../godmode/setup/setup_visuals.php:659 +#: ../../include/functions_config.php:1192 msgid "Module size text" msgstr "モジュール名の表示長さ" -#: ../../godmode/setup/setup_visuals.php:664 ../../include/functions_config.php:1195 -#: ../../include/functions_config.php:1199 +#: ../../godmode/setup/setup_visuals.php:664 +#: ../../include/functions_config.php:1196 +#: ../../include/functions_config.php:1200 msgid "Description size text" msgstr "説明の表示長さ" -#: ../../godmode/setup/setup_visuals.php:668 ../../include/functions_config.php:1203 +#: ../../godmode/setup/setup_visuals.php:668 +#: ../../include/functions_config.php:1204 msgid "Item title size text" msgstr "アイテムタイトルの表示長さ" @@ -37265,31 +38361,38 @@ msgstr "アイテムタイトルの表示長さ" msgid "Show unit along with value in reports" msgstr "レポート内に値に加えて単位を表示する" -#: ../../godmode/setup/setup_visuals.php:732 ../../include/functions_config.php:962 +#: ../../godmode/setup/setup_visuals.php:732 +#: ../../include/functions_config.php:963 msgid "Graph color #4" msgstr "グラフの色 #4" -#: ../../godmode/setup/setup_visuals.php:743 ../../include/functions_config.php:966 +#: ../../godmode/setup/setup_visuals.php:743 +#: ../../include/functions_config.php:967 msgid "Graph color #5" msgstr "グラフの色 #5" -#: ../../godmode/setup/setup_visuals.php:754 ../../include/functions_config.php:970 +#: ../../godmode/setup/setup_visuals.php:754 +#: ../../include/functions_config.php:971 msgid "Graph color #6" msgstr "グラフの色 #6" -#: ../../godmode/setup/setup_visuals.php:765 ../../include/functions_config.php:974 +#: ../../godmode/setup/setup_visuals.php:765 +#: ../../include/functions_config.php:975 msgid "Graph color #7" msgstr "グラフの色 #7" -#: ../../godmode/setup/setup_visuals.php:776 ../../include/functions_config.php:978 +#: ../../godmode/setup/setup_visuals.php:776 +#: ../../include/functions_config.php:979 msgid "Graph color #8" msgstr "グラフの色 #8" -#: ../../godmode/setup/setup_visuals.php:787 ../../include/functions_config.php:982 +#: ../../godmode/setup/setup_visuals.php:787 +#: ../../include/functions_config.php:983 msgid "Graph color #9" msgstr "グラフの色 #9" -#: ../../godmode/setup/setup_visuals.php:798 ../../include/functions_config.php:986 +#: ../../godmode/setup/setup_visuals.php:798 +#: ../../include/functions_config.php:987 msgid "Graph color #10" msgstr "グラフの色 #10" @@ -37301,7 +38404,8 @@ msgstr "データ精度" msgid "Data precision in graphs" msgstr "グラフにおけるデータの精度" -#: ../../godmode/setup/setup_visuals.php:858 ../../include/functions_config.php:1263 +#: ../../godmode/setup/setup_visuals.php:858 +#: ../../include/functions_config.php:1264 msgid "Default line thickness for the Custom Graph." msgstr "カスタムグラフのデフォルトの線の太さ" @@ -37329,7 +38433,8 @@ msgstr "ビジュアルコンソールの表示タイプ" msgid "Number of favorite visual consoles to show in the menu" msgstr "メニューに表示するお気に入りビジュアルコンソールの数" -#: ../../godmode/setup/setup_visuals.php:1088 ../../include/functions_config.php:1171 +#: ../../godmode/setup/setup_visuals.php:1088 +#: ../../include/functions_config.php:1172 msgid "Default line thickness for the Visual Console" msgstr "ビジュアルコンソールのデフォルトの線の太さ" @@ -37339,14 +38444,15 @@ msgstr "メニューに表示するお気に入りのサービスの数" #: ../../godmode/setup/setup_visuals.php:1195 msgid "" -"The dir of custom logos is in your www Console in 'images/custom_logo'. You can " -"upload more files (ONLY JPEG AND PNG) in upload tool in console." +"The dir of custom logos is in your www Console in 'images/custom_logo'. You " +"can upload more files (ONLY JPEG AND PNG) in upload tool in console." msgstr "" -"カスタムロゴのディレクトリは、ウェブコンソールの 'images/custom_logo' にあります。 コ" -"ンソールのアップロードツールで、追加のファイル(JPEG と PNG のみ)をアップロードできま" -"す。" +"カスタムロゴのディレクトリは、ウェブコンソールの 'images/custom_logo' にありま" +"す。 コンソールのアップロードツールで、追加のファイル(JPEG と PNG のみ)をアップ" +"ロードできます。" -#: ../../godmode/setup/setup_visuals.php:1281 ../../include/functions_config.php:1247 +#: ../../godmode/setup/setup_visuals.php:1281 +#: ../../include/functions_config.php:1248 msgid "Networkmap max width" msgstr "ネットワークマップ最大幅" @@ -37354,75 +38460,83 @@ msgstr "ネットワークマップ最大幅" msgid "Show empty groups in group view" msgstr "グループ表示で空のグループを表示する" -#: ../../godmode/setup/setup_visuals.php:1341 +#: ../../godmode/setup/setup_visuals.php:1320 +#: ../../include/functions_config.php:1470 +msgid "Decimal separator" +msgstr "小数点区切り" + +#: ../../godmode/setup/setup_visuals.php:1362 msgid "Custom values post process" msgstr "保存倍率のカスタム値" -#: ../../godmode/setup/setup_visuals.php:1362 ../../godmode/setup/setup_visuals.php:1430 +#: ../../godmode/setup/setup_visuals.php:1383 +#: ../../godmode/setup/setup_visuals.php:1451 msgid "Delete custom values" msgstr "カスタム値の削除" -#: ../../godmode/setup/setup_visuals.php:1394 +#: ../../godmode/setup/setup_visuals.php:1415 msgid "Interval values" msgstr "間隔値" -#: ../../godmode/setup/setup_visuals.php:1422 +#: ../../godmode/setup/setup_visuals.php:1443 msgid "Module units" msgstr "モジュール単位" -#: ../../godmode/setup/setup_visuals.php:1538 +#: ../../godmode/setup/setup_visuals.php:1559 msgid "Behaviour configuration" msgstr "動作設定" -#: ../../godmode/setup/setup_visuals.php:1543 +#: ../../godmode/setup/setup_visuals.php:1564 msgid "GIS configuration" msgstr "GIS設定" -#: ../../godmode/setup/setup_visuals.php:1548 +#: ../../godmode/setup/setup_visuals.php:1569 msgid "Style configuration" msgstr "スタイル設定" -#: ../../godmode/setup/setup_visuals.php:1553 +#: ../../godmode/setup/setup_visuals.php:1574 msgid "Charts configuration" msgstr "グラフ設定" -#: ../../godmode/setup/setup_visuals.php:1558 +#: ../../godmode/setup/setup_visuals.php:1579 msgid "Font and Text configuration" msgstr "フォントおよびテキスト設定" -#: ../../godmode/setup/setup_visuals.php:1563 +#: ../../godmode/setup/setup_visuals.php:1584 msgid "Visual consoles configuration" msgstr "ビジュアルコンソール設定" -#: ../../godmode/setup/setup_visuals.php:1568 +#: ../../godmode/setup/setup_visuals.php:1589 msgid "Reports configuration " msgstr "レポート設定 " -#: ../../godmode/setup/setup_visuals.php:1573 +#: ../../godmode/setup/setup_visuals.php:1594 msgid "Services configuration" msgstr "サービス設定" -#: ../../godmode/setup/setup_visuals.php:1578 +#: ../../godmode/setup/setup_visuals.php:1599 msgid "Other configuration" msgstr "その他設定" -#: ../../godmode/setup/setup_visuals.php:1855 +#: ../../godmode/setup/setup_visuals.php:1876 msgid "Mobile console logo preview" msgstr "モバイルコンソールロゴプレビュー" -#: ../../godmode/setup/setup_visuals.php:1890 +#: ../../godmode/setup/setup_visuals.php:1911 msgid "Gis icons preview" msgstr "GISアイコンのプレビュー" -#: ../../godmode/setup/setup_visuals.php:1956 +#: ../../godmode/setup/setup_visuals.php:1977 msgid "Status set preview" msgstr "状態表示プレビュー" -#: ../../godmode/setup/setup_general.php:77 ../../include/functions_register.php:122 +#: ../../godmode/setup/setup_general.php:77 +#: ../../include/functions_register.php:122 msgid "Language code" msgstr "言語" -#: ../../godmode/setup/setup_general.php:137 ../../include/functions_config.php:200 +#: ../../godmode/setup/setup_general.php:137 +#: ../../include/functions_config.php:200 msgid "Automatic check for updates" msgstr "更新の自動チェック" @@ -37434,7 +38548,8 @@ msgstr "https の利用" msgid "If SSL is not properly configured you will lose access to " msgstr "SSL が正しく設定されていないと、こちらへのアクセスができなくなります: " -#: ../../godmode/setup/setup_general.php:146 ../../godmode/setup/setup_general.php:340 +#: ../../godmode/setup/setup_general.php:146 +#: ../../godmode/setup/setup_general.php:340 msgid " Console" msgstr " コンソール" @@ -37446,11 +38561,13 @@ msgstr "SSL証明書の利用" msgid "Path of SSL Cert." msgstr "SSL証明書のパス" -#: ../../godmode/setup/setup_general.php:223 ../../include/functions_config.php:240 +#: ../../godmode/setup/setup_general.php:223 +#: ../../include/functions_config.php:240 msgid "Enable GIS features" msgstr "GIS 機能の有効化" -#: ../../godmode/setup/setup_general.php:231 ../../include/functions_config.php:256 +#: ../../godmode/setup/setup_general.php:231 +#: ../../include/functions_config.php:256 msgid "Enable Netflow" msgstr "Netflow を利用する" @@ -37460,108 +38577,135 @@ msgstr "公開 URL 利用に関する情報" #: ../../godmode/setup/setup_general.php:340 msgid "If public URL is not properly configured you will lose access to " -msgstr "公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: " +msgstr "" +"公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: " -#: ../../godmode/setup/setup_general.php:353 ../../include/functions_config.php:304 +#: ../../godmode/setup/setup_general.php:354 +#: ../../include/functions_config.php:401 +msgid "Inventory changes blacklist" +msgstr "インベントリブラックリスト変更" + +#: ../../godmode/setup/setup_general.php:417 +msgid "Out of black list" +msgstr "ブラックリスト対象外" + +#: ../../godmode/setup/setup_general.php:419 +msgid "In black list" +msgstr "ブラックリスト対象" + +#: ../../godmode/setup/setup_general.php:424 +msgid "Push selected modules into blacklist" +msgstr "選択したモジュールをブラックリストへ追加" + +#: ../../godmode/setup/setup_general.php:426 +msgid "Pop selected modules out of blacklist" +msgstr "選択したモジュールをブラックリストから削除" + +#: ../../godmode/setup/setup_general.php:434 +#: ../../include/functions_config.php:304 msgid "Referer security" msgstr "リファラーセキュリティ" -#: ../../godmode/setup/setup_general.php:361 ../../include/functions_config.php:308 +#: ../../godmode/setup/setup_general.php:442 +#: ../../include/functions_config.php:308 msgid "Event storm protection" msgstr "イベントストーム保護" -#: ../../godmode/setup/setup_general.php:378 +#: ../../godmode/setup/setup_general.php:459 msgid "Change remote config encoding" msgstr "リモートコンフィグのエンコーディング自動調整" -#: ../../godmode/setup/setup_general.php:386 ../../include/functions_config.php:320 +#: ../../godmode/setup/setup_general.php:467 +#: ../../include/functions_config.php:320 msgid "Server logs directory" msgstr "サーバログディレクトリ" -#: ../../godmode/setup/setup_general.php:396 ../../include/functions_config.php:324 +#: ../../godmode/setup/setup_general.php:477 +#: ../../include/functions_config.php:324 msgid "Log size limit in system logs viewer extension" msgstr "システムログビューワ拡張でのログサイズ制限" -#: ../../godmode/setup/setup_general.php:407 +#: ../../godmode/setup/setup_general.php:488 msgid "Full mode" msgstr "フルモード" -#: ../../godmode/setup/setup_general.php:409 +#: ../../godmode/setup/setup_general.php:490 msgid "Expert" msgstr "上級者" -#: ../../godmode/setup/setup_general.php:411 ../../include/functions_config.php:328 +#: ../../godmode/setup/setup_general.php:492 +#: ../../include/functions_config.php:328 msgid "Tutorial mode" msgstr "チュートリアルモード" -#: ../../godmode/setup/setup_general.php:425 ../../include/functions_config.php:332 +#: ../../godmode/setup/setup_general.php:506 +#: ../../include/functions_config.php:332 msgid "Allow create scheduled downtimes in the past" msgstr "過去の計画停止の作成を許可する" -#: ../../godmode/setup/setup_general.php:433 +#: ../../godmode/setup/setup_general.php:514 msgid "Limit for bulk operations" msgstr "一括操作制限" -#: ../../godmode/setup/setup_general.php:443 +#: ../../godmode/setup/setup_general.php:524 msgid "Include agents manually disabled" msgstr "手動で無効化したエージェントを含める" -#: ../../godmode/setup/setup_general.php:451 +#: ../../godmode/setup/setup_general.php:532 msgid "Set alias as name by default in agent creation" msgstr "エージェント作成でデフォルトでエイリアスを名前にする" -#: ../../godmode/setup/setup_general.php:468 ../../godmode/setup/setup_general.php:479 +#: ../../godmode/setup/setup_general.php:549 +#: ../../godmode/setup/setup_general.php:560 msgid "Log location" msgstr "ログの場所" -#: ../../godmode/setup/setup_general.php:489 +#: ../../godmode/setup/setup_general.php:570 msgid "Module custom ID readonly" msgstr "モジュールカスタム ID を読み出し専用にする" -#: ../../godmode/setup/setup_general.php:490 +#: ../../godmode/setup/setup_general.php:571 msgid "Useful for integrations" msgstr "統合に便利です" -#: ../../godmode/setup/setup_general.php:514 +#: ../../godmode/setup/setup_general.php:595 msgid "General options" msgstr "全般オプション" -#: ../../godmode/setup/setup_general.php:533 +#: ../../godmode/setup/setup_general.php:614 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" +"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 による外部接続を手動で設定/有効化す" -"る必要があり、ポート 587 で STARTTLS を使用する必要があることに注意してください。" +"Gmail や Office365 などの一部のプロバイダは、SMTP による外部接続を手動で設定/有" +"効化する必要があり、ポート 587 で STARTTLS を使用する必要があることに注意してく" +"ださい。" -#: ../../godmode/setup/setup_general.php:539 +#: ../../godmode/setup/setup_general.php:620 msgid "From address" msgstr "発信元アドレス" -#: ../../godmode/setup/setup_general.php:559 +#: ../../godmode/setup/setup_general.php:640 msgid "SMTP Server" msgstr "SMTP サーバ" -#: ../../godmode/setup/setup_general.php:569 +#: ../../godmode/setup/setup_general.php:650 msgid "SMTP Port" msgstr "SMTP ポート" -#: ../../godmode/setup/setup_general.php:579 ../../include/functions_config.php:388 -msgid "Encryption" -msgstr "暗号化" - -#: ../../godmode/setup/setup_general.php:619 +#: ../../godmode/setup/setup_general.php:700 msgid "Email test" msgstr "Email テスト" -#: ../../godmode/setup/setup_general.php:671 ../../general/header.php:826 +#: ../../godmode/setup/setup_general.php:752 ../../general/header.php:826 msgid "Send" msgstr "送信" -#: ../../godmode/setup/setup_general.php:681 +#: ../../godmode/setup/setup_general.php:762 msgid "Check mail configuration" msgstr "メール設定確認" @@ -37569,7 +38713,8 @@ msgstr "メール設定確認" msgid "Pandora_db running in active database." msgstr "アクティブデータベースで pandora_db が動作しています。" -#: ../../godmode/setup/performance.php:182 ../../godmode/setup/performance.php:238 +#: ../../godmode/setup/performance.php:182 +#: ../../godmode/setup/performance.php:238 msgid "Executed:" msgstr "実行済:" @@ -37581,34 +38726,34 @@ msgstr "ヒストリデータベースで pandora_db が動作しています。 msgid "not executed" msgstr "未実行" -#: ../../godmode/setup/performance.php:273 ../../include/functions_config.php:798 +#: ../../godmode/setup/performance.php:273 ../../include/functions_config.php:808 msgid "Max. days before delete traps" msgstr "トラップデータ保持日数" -#: ../../godmode/setup/performance.php:293 ../../godmode/setup/performance.php:470 -#: ../../include/functions_config.php:802 +#: ../../godmode/setup/performance.php:293 +#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:812 msgid "Max. days before delete string data" msgstr "文字列データ保持日数" -#: ../../godmode/setup/performance.php:303 ../../include/functions_config.php:810 +#: ../../godmode/setup/performance.php:303 ../../include/functions_config.php:820 msgid "Max. days before delete GIS data" msgstr "GIS データ保持日数" -#: ../../godmode/setup/performance.php:313 ../../godmode/setup/performance.php:430 -#: ../../include/functions_config.php:814 +#: ../../godmode/setup/performance.php:313 +#: ../../godmode/setup/performance.php:430 ../../include/functions_config.php:824 msgid "Max. days before purge" msgstr "データ保持日数" -#: ../../godmode/setup/performance.php:323 ../../godmode/setup/performance.php:440 -#: ../../include/functions_config.php:826 +#: ../../godmode/setup/performance.php:323 +#: ../../godmode/setup/performance.php:440 ../../include/functions_config.php:836 msgid "Max. days before compact data" msgstr "データ保持日数(丸め込みなし)" -#: ../../godmode/setup/performance.php:333 ../../include/functions_config.php:818 +#: ../../godmode/setup/performance.php:333 ../../include/functions_config.php:828 msgid "Max. days before delete unknown modules" msgstr "不明モジュール保持日数" -#: ../../godmode/setup/performance.php:344 ../../include/functions_config.php:822 +#: ../../godmode/setup/performance.php:344 ../../include/functions_config.php:832 msgid "Max. days before delete not initialized modules" msgstr "未初期化モジュール保持日数" @@ -37616,24 +38761,24 @@ msgstr "未初期化モジュール保持日数" msgid "Max. days before delete autodisabled agents" msgstr "自動無効化エージェントを削除せず保持する日数" -#: ../../godmode/setup/performance.php:364 ../../include/functions_config.php:874 +#: ../../godmode/setup/performance.php:364 ../../include/functions_config.php:884 msgid "Retention period of past special days" msgstr "過去の特別日の保存期間" -#: ../../godmode/setup/performance.php:388 ../../include/functions_config.php:883 +#: ../../godmode/setup/performance.php:388 ../../include/functions_config.php:893 msgid "Max. days before delete inventory data" msgstr "インベントリデータの保持日数" -#: ../../godmode/setup/performance.php:450 ../../godmode/setup/performance.php:531 -#: ../../include/functions_config.php:838 +#: ../../godmode/setup/performance.php:450 +#: ../../godmode/setup/performance.php:531 ../../include/functions_config.php:848 msgid "Compact interpolation in hours (1 Fine-20 bad)" msgstr "データ縮小時の丸め込み単位時間 (1〜20)" -#: ../../godmode/setup/performance.php:488 ../../include/functions_config.php:888 +#: ../../godmode/setup/performance.php:488 ../../include/functions_config.php:898 msgid "Max. days before delete old messages" msgstr "古いメッセージの保持日数" -#: ../../godmode/setup/performance.php:501 ../../include/functions_config.php:892 +#: ../../godmode/setup/performance.php:501 ../../include/functions_config.php:902 msgid "Max. days before delete old network matrix data" msgstr "ネットワークマトリックスデータ保持日数" @@ -37653,19 +38798,19 @@ msgstr "10日" msgid "2 weeks" msgstr "2週間" -#: ../../godmode/setup/performance.php:561 ../../include/functions_config.php:846 +#: ../../godmode/setup/performance.php:561 ../../include/functions_config.php:856 msgid "Use realtime statistics" msgstr "リアルタイム更新の利用" -#: ../../godmode/setup/performance.php:569 ../../include/functions_config.php:850 +#: ../../godmode/setup/performance.php:569 ../../include/functions_config.php:860 msgid "Batch statistics period (secs)" msgstr "バッチ更新間隔(秒)" -#: ../../godmode/setup/performance.php:582 ../../include/functions_config.php:858 +#: ../../godmode/setup/performance.php:582 ../../include/functions_config.php:868 msgid "Max. recommended number of files in attachment directory" msgstr "添付ディレクトリファイルの推奨上限数" -#: ../../godmode/setup/performance.php:592 ../../include/functions_config.php:862 +#: ../../godmode/setup/performance.php:592 ../../include/functions_config.php:872 msgid "Delete not init modules" msgstr "未初期化モジュールの削除" @@ -37673,11 +38818,11 @@ msgstr "未初期化モジュールの削除" msgid "Big Operation Step to purge old data" msgstr "古いデータ削除のための大きい処理の分割数" -#: ../../godmode/setup/performance.php:605 ../../include/functions_config.php:870 +#: ../../godmode/setup/performance.php:605 ../../include/functions_config.php:880 msgid "Small Operation Step to purge old data" msgstr "古いデータ削除のための小さな操作ステップ" -#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:896 +#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:906 msgid "Graph container - Max. Items" msgstr "グラフコンテナ - 最大アイテム" @@ -37687,34 +38832,47 @@ msgstr "snmpwalk バイナリ" #: ../../godmode/setup/performance.php:656 msgid "" -"SNMP bulk walk is not able to request V1 SNMP, this option will be used instead (by " -"default snmpwalk, slower)." +"SNMP bulk walk is not able to request V1 SNMP, this option will be used " +"instead (by default snmpwalk, slower)." msgstr "" -"snmpbulkwork は、SNMP v1 を利用できません。このオプションが代わりに利用されます。(デ" -"フォルトで snmpwalk で遅くなります)" +"snmpbulkwork は、SNMP v1 を利用できません。このオプションが代わりに利用されま" +"す。(デフォルトで snmpwalk で遅くなります)" #: ../../godmode/setup/performance.php:659 msgid "SNMP walk binary (fallback)" msgstr "snmpwalk バイナリ (フォールバック)" +#: ../../godmode/setup/performance.php:671 +#, php-format +msgid "" +"%s web2image cache system cleanup. It is always cleaned up after perform an " +"upgrade" +msgstr "" +"%s web2image キャッシュシステムのクリーンアップ。 アップグレードを実行した後は" +"常にクリーンアップされます" + #: ../../godmode/setup/performance.php:677 msgid "WMI binary" msgstr "WMI バイナリ" -#: ../../godmode/setup/performance.php:712 +#: ../../godmode/setup/performance.php:717 msgid "Database maintenance options" msgstr "データベースメンテナンスオプション" -#: ../../godmode/setup/performance.php:718 +#: ../../godmode/setup/performance.php:723 msgid "Historical database maintenance options" msgstr "ヒストリデータベースメンテナンスオプション" -#: ../../godmode/setup/performance.php:724 ../../include/functions_visual_map.php:2874 +#: ../../godmode/setup/performance.php:729 ../../include/graphs/fgraph.php:404 #: ../../include/functions_netflow.php:2078 -#: ../../operation/network/network_report.php:324 +#: ../../include/functions_reporting.php:3959 msgid "Others" msgstr "その他" +#: ../../godmode/setup/performance.php:734 +msgid "Agent SNMP Interface Wizard defaults" +msgstr "デフォルトエージェント SNMP インタフェースウィザード" + #: ../../godmode/setup/file_manager.php:83 ../../godmode/servers/plugin.php:235 #: ../../include/functions_filemanager.php:590 #, php-format @@ -37727,17 +38885,17 @@ msgstr "ビジュアルコンソールの作成" #: ../../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" +"Use [ or ( as first character, for example '[*] Map name', to render this map " +"name in main menu" msgstr "" -"最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニューに表示する" -"には、'[*] Map name' です。" +"最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニューに" +"表示するには、'[*] Map name' です。" #: ../../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:566 +#: ../../include/lib/Dashboard/Widget.php:568 msgid "Background" msgstr "背景" @@ -37747,8 +38905,9 @@ msgstr "背景画像" #: ../../godmode/reporting/visual_console_builder.data.php:181 #: ../../include/functions_visual_map_editor.php:347 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:469 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:524 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:251 msgid "Background color" msgstr "背景色" @@ -37826,7 +38985,7 @@ msgid "Successfully delete." msgstr "削除しました。" #: ../../godmode/reporting/visual_console_builder.php:834 -#: ../../operation/visual_console/view.php:178 +#: ../../operation/visual_console/view.php:180 #: ../../operation/visual_console/legacy_view.php:165 msgid "Services wizard" msgstr "サービスウィザード" @@ -37864,11 +39023,11 @@ 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." +"Are you sure to sort the items into the report?\\n. This action change the " +"sorting of items into data base." msgstr "" -"レポートのアイテムを並べ替えますか?\\n この操作は、データベースでのアイテムのソートを" -"変更します。" +"レポートのアイテムを並べ替えますか?\\n この操作は、データベースでのアイテムの" +"ソートを変更します。" #: ../../godmode/reporting/reporting_builder.list_items.php:844 #: ../../godmode/reporting/graph_builder.graph_editor.php:407 @@ -37912,15 +39071,17 @@ msgstr "コンテナの更新に失敗しました" msgid "Parent container" msgstr "親コンテナ" -#: ../../godmode/reporting/create_container.php:345 ../../include/functions.php:2688 +#: ../../godmode/reporting/create_container.php:345 +#: ../../include/functions.php:2734 msgid "custom" msgstr "カスタム" #: ../../godmode/reporting/create_container.php:347 #: ../../godmode/reporting/create_container.php:348 -#: ../../godmode/reporting/create_container.php:349 ../../include/functions.php:2700 -#: ../../include/functions.php:2701 ../../include/ajax/graph.ajax.php:147 -#: ../../include/ajax/graph.ajax.php:148 ../../include/ajax/graph.ajax.php:149 +#: ../../godmode/reporting/create_container.php:349 +#: ../../include/functions.php:2746 ../../include/functions.php:2747 +#: ../../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 時間" @@ -37932,13 +39093,15 @@ msgstr "%s 時間" msgid "%s days" msgstr "%s 日" -#: ../../godmode/reporting/create_container.php:353 ../../include/functions.php:2703 -#: ../../include/ajax/module.php:204 ../../include/ajax/graph.ajax.php:153 +#: ../../godmode/reporting/create_container.php:353 +#: ../../include/functions.php:2749 ../../include/ajax/module.php:211 +#: ../../include/ajax/graph.ajax.php:153 msgid "1 week" msgstr "1週間" -#: ../../godmode/reporting/create_container.php:355 ../../include/functions.php:2705 -#: ../../include/ajax/module.php:206 ../../include/ajax/graph.ajax.php:155 +#: ../../godmode/reporting/create_container.php:355 +#: ../../include/functions.php:2751 ../../include/ajax/module.php:213 +#: ../../include/ajax/graph.ajax.php:155 msgid "1 month" msgstr "1ヵ月" @@ -37946,10 +39109,11 @@ msgstr "1ヵ月" #: ../../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. " +"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 @@ -37963,7 +39127,7 @@ msgstr "グラフのタイプ" #: ../../godmode/reporting/create_container.php:589 #: ../../godmode/reporting/graph_builder.main.php:285 #: ../../operation/agentes/stat_win.php:395 -#: ../../operation/agentes/interface_traffic_graph_win.php:238 +#: ../../operation/agentes/interface_traffic_graph_win.php:240 msgid "Show full scale graph (TIP)" msgstr "詳細グラフ表示 (TIP)" @@ -38008,45 +39172,45 @@ msgstr "アイテム" msgid "There are no visual console defined yet." msgstr "ビジュアルコンソールが定義されていません。" -#: ../../godmode/reporting/graph_builder.php:309 +#: ../../godmode/reporting/graph_builder.php:315 #: ../../operation/reporting/graph_viewer.php:204 msgid "Graph editor" msgstr "グラフ編集" -#: ../../godmode/reporting/graph_builder.php:320 +#: ../../godmode/reporting/graph_builder.php:326 #: ../../operation/reporting/graph_viewer.php:223 msgid "View graph" msgstr "グラフ表示" -#: ../../godmode/reporting/graph_builder.php:336 +#: ../../godmode/reporting/graph_builder.php:342 msgid "Graph builder" msgstr "グラフビルダー" -#: ../../godmode/reporting/graph_builder.php:378 +#: ../../godmode/reporting/graph_builder.php:384 msgid "Graph stored successfully" msgstr "グラフを作成しました。" -#: ../../godmode/reporting/graph_builder.php:379 +#: ../../godmode/reporting/graph_builder.php:385 msgid "There was a problem storing Graph" msgstr "グラフの作成に失敗しました。" -#: ../../godmode/reporting/graph_builder.php:387 +#: ../../godmode/reporting/graph_builder.php:393 msgid "There was a problem adding Module" msgstr "モジュール追加で問題が発生しました。" -#: ../../godmode/reporting/graph_builder.php:394 +#: ../../godmode/reporting/graph_builder.php:400 msgid "Update the graph" msgstr "グラフを更新しました。" -#: ../../godmode/reporting/graph_builder.php:395 +#: ../../godmode/reporting/graph_builder.php:401 msgid "Bad update the graph" msgstr "グラフ更新に失敗しました。" -#: ../../godmode/reporting/graph_builder.php:402 +#: ../../godmode/reporting/graph_builder.php:408 msgid "Graph deleted successfully" msgstr "グラフを削除しました。" -#: ../../godmode/reporting/graph_builder.php:403 +#: ../../godmode/reporting/graph_builder.php:409 msgid "There was a problem deleting Graph" msgstr "グラフの削除で問題が発生しました。" @@ -38073,12 +39237,14 @@ msgstr "レポート名または説明で検索したリスト。" msgid "Show Option" msgstr "オプション表示" -#: ../../godmode/reporting/graphs.php:310 ../../include/functions_container.php:146 -#: ../../operation/search_graphs.php:30 ../../operation/reporting/graph_viewer.php:524 +#: ../../godmode/reporting/graphs.php:310 +#: ../../include/functions_container.php:146 ../../operation/search_graphs.php:30 +#: ../../operation/reporting/graph_viewer.php:521 msgid "Graph name" msgstr "グラフ名" -#: ../../godmode/reporting/graphs.php:312 ../../include/functions_container.php:148 +#: ../../godmode/reporting/graphs.php:312 +#: ../../include/functions_container.php:148 msgid "Number of Graphs" msgstr "グラフ数" @@ -38093,11 +39259,11 @@ 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." +"The maximum number of items in a chart is %d. You have %d elements, only first " +"%d will be displayed." msgstr "" -"グラフ内のアイテム最大数は %d です。現在 %d アイテムあり、最初の %d アイテムのみ表示さ" -"れます。" +"グラフ内のアイテム最大数は %d です。現在 %d アイテムあり、最初の %d アイテムの" +"み表示されます。" #: ../../godmode/reporting/graph_builder.graph_editor.php:291 msgid "Sort selected items" @@ -38111,266 +39277,281 @@ msgstr "この前へ:" msgid "after to" msgstr "この後へ:" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1062 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1070 msgid "Not valid" msgstr "不正です" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1070 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1078 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." +"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:1266 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1305 msgid "Log number" msgstr "ログ番号" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1268 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1307 msgid "" -"Warning: this parameter limits the contents of the logs and affects the performance." +"Warning: this parameter limits the contents of the logs and affects the " +"performance." msgstr "警告: このパラメータはログの内容を制限しパフォーマンスに影響します。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1329 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1368 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. " +"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 "" -"これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間です。 たと" -"えば、1週間は、今から1週間前のデータを意味します。 " +"これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間で" +"す。 たとえば、1週間は、今から1週間前のデータを意味します。 " -#: ../../godmode/reporting/reporting_builder.item_editor.php:1888 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1891 msgid "Show modules" msgstr "モジュール表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2269 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2193 +#: ../../operation/inventory/inventory.php:437 +msgid "Last" +msgstr "最新" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2272 msgid "Target server" msgstr "対象サーバ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2570 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2573 msgid "Macros definition" msgstr "マクロ定義" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2581 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2584 msgid "Render definition" msgstr "描画定義" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2582 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2585 msgid "Please note that not all CSS styles are supported by PDF reports." msgstr "" -"すべての CSS スタイルが PDF レポートでサポートされるわけではないことに注意してくださ" -"い。" +"すべての CSS スタイルが PDF レポートでサポートされるわけではないことに注意して" +"ください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2679 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2682 msgid "Greater or equal (>=)" msgstr "以上 (>=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2680 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2683 msgid "Less or equal (<=)" msgstr "以下 (<=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2681 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2684 msgid "Less (<)" msgstr "未満 (<)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2682 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2685 msgid "Greater (>)" msgstr "超えて (>)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2683 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2686 msgid "Equal (=)" msgstr "同じ (=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2684 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2687 msgid "Not equal (!=)" msgstr "異なる (!=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2809 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2812 msgid "" -"Show a summary chart with max, min and average number of total modules at the end of " -"the report and Checks." +"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:2864 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2867 msgid "Checks in Warning status" msgstr "警告状態のチェック" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2934 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2937 msgid "Only data" msgstr "ベースのみ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3032 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3035 msgid "Include extended events" msgstr "拡張イベントを含める" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3049 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3052 msgid "Show custom data" msgstr "カスタムデータを表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3068 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3071 msgid "By agent " msgstr "エージェントごと " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3078 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3081 msgid "By user validator " msgstr "承諾ユーザごと " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3088 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3091 msgid "By criticity " msgstr "重要度ごと " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3098 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3101 msgid "Validated vs unvalidated " msgstr "承諾済 / 未承諾 " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3113 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3116 msgid "" -"With the token enabled the query will affect the Historical Database, which may mean " -"a small drop in performance." +"With the token enabled the query will affect the Historical Database, which " +"may mean a small drop in performance." msgstr "" -"トークンを有効にすると、クエリはヒストリデータベースに影響を与えます。これは、パフォー" -"マンスのわずかな低下を発生させる場合があります。" +"トークンを有効にすると、クエリはヒストリデータベースに影響を与えます。これは、" +"パフォーマンスのわずかな低下を発生させる場合があります。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3298 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3301 msgid "Include filter" msgstr "含めるフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3302 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3311 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3305 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3314 msgid "Free text string search on event description" msgstr "イベントの説明の任意のテキスト検索" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3307 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3310 msgid "Exclude filter" msgstr "除外フィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3437 -#: ../../include/functions_reporting.php:4783 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3418 +msgid "" +"Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise " +"full value will be displayed (example: 20.742 bytes/sec)" +msgstr "" +"数値にプレフィックス表記を使用します (例: 20,8Kbytes/sec)。それ以外の場合は、完" +"全な値が表示されます (例: 20.742 bytes/sec)。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3456 +#: ../../include/functions_reporting.php:5059 msgid "Unassigned group" msgstr "未割当グループ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3483 -#: ../../include/functions_reporting.php:4777 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3502 +#: ../../include/functions_reporting.php:5053 msgid "Unnasigned group" msgstr "未割当グループ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3506 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 msgid "Select by group" msgstr "グループ選択" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3594 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3613 msgid "Display options" msgstr "表示オプション" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3652 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3671 msgid "Agent group filter" msgstr "エージェントグループフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3687 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3706 msgid "Agent OS filter" msgstr "エージェント OS フィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3713 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3732 msgid "Agent custom field" msgstr "エージェントカスタムフィールド" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3735 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3754 msgid "Agent custom field filter" msgstr "エージェントカスタムフィールドフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3759 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3778 msgid "Agent status filter" msgstr "エージェント状態フィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3797 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3816 msgid "Agent version filter" msgstr "エージェントバージョンフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3821 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3840 msgid "Agent has remote configuration" msgstr "リモート設定エージェント" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3822 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3841 msgid "Filter agents by remote configuration enabled." msgstr "リモート設定が有効化されているエージェントのフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3852 msgid "Agent module filter" msgstr "エージェントモジュールフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3857 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3876 msgid "Module group filter" msgstr "モジュールグループフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3981 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4496 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4000 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4515 msgid "Agent Failover" msgstr "エージェントフェイルオーバー" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3986 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4499 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4005 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4518 msgid "Module Failover" msgstr "モジュールフェイルオーバー" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4026 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4045 msgid "Please save the item before adding entries to this list." msgstr "一覧へのエントリ追加の前に、アイテムを保存してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4472 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4491 msgid "rate" msgstr "律" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4520 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4539 msgid "" "Please be careful, when the module have diferent intervals in their life, the " "summatory maybe get bad result." msgstr "" -"モジュールの間隔が異なる場合、合計は正しい値にならない場合があることに注意してくださ" -"い。" +"モジュールの間隔が異なる場合、合計は正しい値にならない場合があることに注意して" +"ください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4540 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4559 msgid "Please save the report to start adding items into the list." msgstr "リストに項目を追加する前にレポートを保存してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4806 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4810 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4814 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4818 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4822 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4826 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4830 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4834 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4825 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4829 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4833 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4837 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4841 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4845 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4849 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4853 msgid "Item Editor Information" msgstr "アイテムエディタ情報" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4807 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4826 msgid "Please select a name." msgstr "名前を選択してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4811 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4830 msgid "Please select an agent." msgstr "エージェントを選択してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4819 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4838 msgid "Please insert a SQL query." msgstr "SQL クエリを入力してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4823 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4842 msgid "Please insert a URL." msgstr "URL を入力してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4827 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4846 msgid "Please checked a custom interval option." msgstr "カスタム間隔オプションを確認してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4831 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4850 msgid "Please select a user." msgstr "ユーザを選択して下さい。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4835 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4854 msgid "Please select a group." msgstr "グループを選択してください。" @@ -38393,24 +39574,24 @@ msgstr "パーセント円表示" #: ../../godmode/reporting/visual_console_builder.elements.php:222 #: ../../mobile/operation/events.php:837 #: ../../include/functions_visual_map_editor.php:1389 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555 -#: ../../operation/visual_console/view.php:306 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545 +#: ../../operation/visual_console/view.php:308 msgid "Module Graph" msgstr "モジュールグラフ" #: ../../godmode/reporting/visual_console_builder.elements.php:232 #: ../../include/functions_visual_map_editor.php:59 #: ../../include/functions_visual_map_editor.php:1392 -#: ../../include/functions_visual_map.php:4227 -#: ../../operation/visual_console/view.php:326 +#: ../../include/functions_visual_map.php:4180 +#: ../../operation/visual_console/view.php:328 msgid "Event history graph" msgstr "イベント履歴グラフ" #: ../../godmode/reporting/visual_console_builder.elements.php:241 #: ../../include/functions_visual_map_editor.php:1393 -#: ../../include/functions_visual_map.php:4252 -#: ../../include/rest-api/models/VisualConsole/Item.php:2131 -#: ../../operation/visual_console/view.php:331 +#: ../../include/functions_visual_map.php:4205 +#: ../../include/rest-api/models/VisualConsole/Item.php:2132 +#: ../../operation/visual_console/view.php:333 msgid "Simple Value" msgstr "数値" @@ -38429,46 +39610,46 @@ msgstr "値 (平均値)" #: ../../godmode/reporting/visual_console_builder.elements.php:304 #: ../../include/functions_visual_map_editor.php:71 #: ../../include/functions_visual_map_editor.php:1398 -#: ../../include/functions_visual_map.php:4207 -#: ../../operation/visual_console/view.php:356 +#: ../../include/functions_visual_map.php:4160 +#: ../../operation/visual_console/view.php:358 msgid "Box" msgstr "ボックス" #: ../../godmode/reporting/visual_console_builder.elements.php:323 #: ../../include/functions_visual_map_editor.php:1405 -#: ../../operation/visual_console/view.php:371 +#: ../../operation/visual_console/view.php:373 msgid "Network link" msgstr "ネットワークリンク" #: ../../godmode/reporting/visual_console_builder.elements.php:344 #: ../../include/functions_visual_map_editor.php:73 #: ../../include/functions_visual_map_editor.php:1400 -#: ../../include/functions_visual_map.php:4267 -#: ../../include/rest-api/models/VisualConsole/Item.php:2143 -#: ../../operation/visual_console/view.php:366 +#: ../../include/functions_visual_map.php:4220 +#: ../../include/rest-api/models/VisualConsole/Item.php:2144 +#: ../../operation/visual_console/view.php:368 msgid "Color cloud" msgstr "カラークラウド" #: ../../godmode/reporting/visual_console_builder.elements.php:352 -#: ../../include/rest-api/models/VisualConsole/Item.php:2155 -#: ../../operation/visual_console/view.php:311 +#: ../../include/rest-api/models/VisualConsole/Item.php:2156 +#: ../../operation/visual_console/view.php:313 msgid "Basic chart" msgstr "基本グラフ" #: ../../godmode/reporting/visual_console_builder.elements.php:360 -#: ../../include/rest-api/models/VisualConsole/Item.php:2151 -#: ../../operation/visual_console/view.php:376 +#: ../../include/rest-api/models/VisualConsole/Item.php:2152 +#: ../../operation/visual_console/view.php:378 msgid "Odometer" msgstr "オドメーター" #: ../../godmode/reporting/visual_console_builder.elements.php:368 #: ../../include/functions_visual_map_editor.php:69 #: ../../include/functions_visual_map_editor.php:1396 -#: ../../include/functions_visual_map.php:4217 -#: ../../include/rest-api/models/VisualConsole/Item.php:2103 +#: ../../include/functions_visual_map.php:4170 +#: ../../include/rest-api/models/VisualConsole/Item.php:2104 #: ../../include/lib/Dashboard/Widgets/clock.php:158 #: ../../include/lib/Dashboard/Widgets/clock.php:310 -#: ../../operation/visual_console/view.php:346 +#: ../../operation/visual_console/view.php:348 msgid "Clock" msgstr "時計" @@ -38495,11 +39676,11 @@ msgstr "書き込みアクセス" #: ../../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." +"For example, you want a report that the people of \"All\" groups can see but " +"you want to edit only for you or your group." msgstr "" -"例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分のグルー" -"プのみが編集できるようにしたい場合等に利用します。" +"例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分" +"のグループのみが編集できるようにしたい場合等に利用します。" #: ../../godmode/reporting/reporting_builder.main.php:193 msgid "Non interactive report" @@ -38508,7 +39689,8 @@ msgstr "非対話型レポート" #: ../../godmode/reporting/reporting_builder.php:210 #: ../../operation/reporting/reporting_viewer.php:101 msgid "Your report has been planned, and the system will email you a " -msgstr "レポート処理が計画されており、システムはあなたに次の電子メールを送ります: " +msgstr "" +"レポート処理が計画されており、システムはあなたに次の電子メールを送ります: " #: ../../godmode/reporting/reporting_builder.php:211 #: ../../operation/reporting/reporting_viewer.php:102 @@ -38516,15 +39698,15 @@ msgid "An error has ocurred" msgstr "エラーが発生しました" #: ../../godmode/reporting/reporting_builder.php:535 -#: ../../godmode/reporting/reporting_builder.php:3499 -#: ../../godmode/reporting/reporting_builder.php:3582 -#: ../../godmode/reporting/reporting_builder.php:3630 +#: ../../godmode/reporting/reporting_builder.php:3527 +#: ../../godmode/reporting/reporting_builder.php:3610 +#: ../../godmode/reporting/reporting_builder.php:3658 msgid "Reports list" msgstr "レポート一覧" #: ../../godmode/reporting/reporting_builder.php:551 -#: ../../godmode/reporting/reporting_builder.php:3510 ../../operation/menu.php:319 -#: ../../operation/reporting/custom_reporting.php:23 +#: ../../godmode/reporting/reporting_builder.php:3538 +#: ../../operation/menu.php:332 ../../operation/reporting/custom_reporting.php:23 msgid "Custom reporting" msgstr "カスタムレポート" @@ -38540,16 +39722,16 @@ msgstr "このレポートはリアルタイム処理のアイテム数制限を msgid "Create report" msgstr "レポートの作成" -#: ../../godmode/reporting/reporting_builder.php:3614 +#: ../../godmode/reporting/reporting_builder.php:3642 #: ../../operation/reporting/reporting_viewer.php:173 msgid "View report" msgstr "レポート参照" -#: ../../godmode/reporting/reporting_builder.php:3633 +#: ../../godmode/reporting/reporting_builder.php:3661 msgid "Create Custom Report" msgstr "カスタムレポートの作成" -#: ../../godmode/reporting/reporting_builder.php:3721 +#: ../../godmode/reporting/reporting_builder.php:3749 msgid "Unsuccessful action

" msgstr "アクション失敗

" @@ -38561,14 +39743,15 @@ 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:301 +#: ../../operation/visual_console/view.php:303 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:4212 -#: ../../include/rest-api/models/VisualConsole/Item.php:2099 +#: ../../mobile/operation/home.php:102 +#: ../../include/functions_visual_map_editor.php:397 +#: ../../include/functions_visual_map.php:4165 +#: ../../include/rest-api/models/VisualConsole/Item.php:2100 msgid "Module graph" msgstr "モジュールデータのグラフ" @@ -38586,7 +39769,7 @@ msgid "Size (px)" msgstr "サイズ (px)" #: ../../godmode/reporting/visual_console_builder.wizard.php:228 -#: ../../include/functions_config.php:1031 +#: ../../include/functions_config.php:1032 msgid "Font size" msgstr "フォントサイズ" @@ -38706,19 +39889,19 @@ msgstr "削除中" #: ../../godmode/reporting/graph_builder.main.php:218 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:356 -#: ../../operation/reporting/graph_viewer.php:374 +#: ../../operation/reporting/graph_viewer.php:346 msgid "Bullet chart" msgstr "ブレットグラフ" #: ../../godmode/reporting/graph_builder.main.php:219 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:357 -#: ../../operation/reporting/graph_viewer.php:375 +#: ../../operation/reporting/graph_viewer.php:347 msgid "Gauge" msgstr "ゲージ" #: ../../godmode/reporting/graph_builder.main.php:222 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:360 -#: ../../operation/reporting/graph_viewer.php:378 +#: ../../operation/reporting/graph_viewer.php:350 msgid "Pie" msgstr "円" @@ -38741,48 +39924,49 @@ msgstr "モジュール値と統計値" #: ../../godmode/um_client/index.php:96 #, php-format msgid "" -"You cannot use update manager %s. You are exceding monitoring limits by %s elements. " -"Please update your license or disable enterprise section by moving enterprise " -"directory to another location and try again." +"You cannot use update manager %s. You are exceding monitoring limits by %s " +"elements. Please update your license or disable enterprise section by moving " +"enterprise directory to another location and try again." msgstr "" -"アップデートマネージャ %s は使用できません。%s 件監視制限を超えています。 ライセンスを" -"更新するか、enterprise ディレクトリを別の場所に移動して Enterprise 版の機能を無効にし" -"て、再試行してください。" +"アップデートマネージャ %s は使用できません。%s 件監視制限を超えています。 ライ" +"センスを更新するか、enterprise ディレクトリを別の場所に移動して Enterprise 版の" +"機能を無効にして、再試行してください。" #: ../../godmode/um_client/index.php:107 #, php-format msgid "" -"You cannot use update manager %s. This license has expired %d days ago. Please update " -"your license or disable enterprise section by moving enterprise directory to another " -"location and try again." +"You cannot use update manager %s. This license has expired %d days ago. Please " +"update your license or disable enterprise section by moving enterprise " +"directory to another location and try again." msgstr "" -"アップデートマネージャ %s は使用できません。 このライセンスは %d 日前に期限切れになり" -"ました。 ライセンスを更新するか、enterprise ディレクトリを別の場所に移動して " -"Enterprise 版の機能を無効にして、再試行してください。" +"アップデートマネージャ %s は使用できません。 このライセンスは %d 日前に期限切れ" +"になりました。 ライセンスを更新するか、enterprise ディレクトリを別の場所に移動" +"して Enterprise 版の機能を無効にして、再試行してください。" #: ../../godmode/um_client/index.php:120 #, php-format msgid "" -"You cannot use update manager %s. This license is a trial license to test all %s " -"features. Please update your license to unlock all %s features." +"You cannot use update manager %s. This license is a trial license to test all " +"%s features. Please update your license to unlock all %s features." msgstr "" -"アップデートマネージャ %s は使用できません。 このライセンスは、すべての %s 機能をテス" -"トするための試用ライセンスです。 ライセンスを更新して、すべての %s 機能のロックを解除" -"してください。" +"アップデートマネージャ %s は使用できません。 このライセンスは、すべての %s 機能" +"をテストするための試用ライセンスです。 ライセンスを更新して、すべての %s 機能の" +"ロックを解除してください。" #: ../../godmode/um_client/index.php:216 #, php-format msgid "Master server version %s does not match console version %s." -msgstr "マスターサーバのバージョン %s がコンソールのバージョン %s と一致しません。" +msgstr "" +"マスターサーバのバージョン %s がコンソールのバージョン %s と一致しません。" #: ../../godmode/um_client/index.php:229 #, php-format msgid "" -"'%s' recommended value is %s or greater. Please, change it on your PHP configuration " -"file (php.ini) or contact with administrator" +"'%s' recommended value is %s or greater. Please, change it on your PHP " +"configuration file (php.ini) or contact with administrator" msgstr "" -"'%s' の推奨値は %s 以上です。 PHP 設定ファイル(php.ini)で変更するか、管理者に連絡して" -"ください 。" +"'%s' の推奨値は %s 以上です。 PHP 設定ファイル(php.ini)で変更するか、管理者に連" +"絡してください 。" #: ../../godmode/um_client/index.php:318 msgid "Update online requires registration." @@ -38790,11 +39974,11 @@ msgstr "オンラインアップデートは登録が必要です。" #: ../../godmode/um_client/index.php:323 msgid "" -"Applying offline patches may make your console unusable, we recommend to completely " -"backup your files before applying any patch." +"Applying offline patches may make your console unusable, we recommend to " +"completely backup your files before applying any patch." msgstr "" -"オフラインパッチを適用すると、コンソールが使用できなくなる可能性があります。パッチを適" -"用する前に、ファイルを完全にバックアップすることをお勧めします。" +"オフラインパッチを適用すると、コンソールが使用できなくなる可能性があります。" +"パッチを適用する前に、ファイルを完全にバックアップすることをお勧めします。" #: ../../godmode/events/event_responses.editor.php:73 msgid "Edit event responses" @@ -38813,13 +39997,13 @@ msgid "New window" msgstr "新しいウィンドウ" #: ../../godmode/events/event_responses.editor.php:175 -#: ../../include/class/AgentWizard.class.php:549 +#: ../../include/class/AgentWizard.class.php:558 #: ../../include/functions_snmp_browser.php:766 msgid "Local console" msgstr "ローカルコンソール" #: ../../godmode/events/event_responses.editor.php:192 -#: ../../include/class/AgentWizard.class.php:696 +#: ../../include/class/AgentWizard.class.php:742 msgid "Server to execute command" msgstr "コマンドを実行するサーバ" @@ -38833,83 +40017,110 @@ msgstr "表示コマンド" #: ../../godmode/events/event_responses.editor.php:204 msgid "" -"If enabled the command will be displayed to any user that can execute this event " -"response" +"If enabled the command will be displayed to any user that can execute this " +"event response" msgstr "" -"有効にすると、このイベント応答を実行できるすべてのユーザにコマンドが表示されます" +"有効にすると、このイベント応答を実行できるすべてのユーザにコマンドが表示されま" +"す" -#: ../../godmode/events/event_edit_filter.php:254 +#: ../../godmode/events/event_edit_filter.php:276 msgid "Update Filter" msgstr "フィルタ更新" -#: ../../godmode/events/event_edit_filter.php:256 +#: ../../godmode/events/event_edit_filter.php:278 msgid "Create Filter" msgstr "フィルタ作成" -#: ../../godmode/events/event_edit_filter.php:266 -#: ../../include/ajax/custom_fields.php:571 ../../include/ajax/custom_fields.php:618 -#: ../../include/ajax/custom_fields.php:662 ../../include/ajax/events.php:763 +#: ../../godmode/events/event_edit_filter.php:288 +#: ../../include/ajax/custom_fields.php:573 +#: ../../include/ajax/custom_fields.php:620 +#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:782 msgid "Filter name" msgstr "フィルタ名" -#: ../../godmode/events/event_edit_filter.php:269 +#: ../../godmode/events/event_edit_filter.php:291 msgid "Save in group" msgstr "保存グループ" -#: ../../godmode/events/event_edit_filter.php:269 -msgid "This group will be use to restrict the visibility of this filter with ACLs" +#: ../../godmode/events/event_edit_filter.php:291 +msgid "" +"This group will be use to restrict the visibility of this filter with ACLs" msgstr "このグループは、ACL でフィルタの表示を制限するのに利用されます" -#: ../../godmode/events/event_edit_filter.php:419 +#: ../../godmode/events/event_edit_filter.php:453 msgid "Choose between the users who have validated an event. " msgstr "イベントを承諾したユーザを選択します。 " -#: ../../godmode/events/event_edit_filter.php:441 ../../operation/events/events.php:1629 +#: ../../godmode/events/event_edit_filter.php:477 +msgid "Owner." +msgstr "所有者" + +#: ../../godmode/events/event_edit_filter.php:489 +#: ../../operation/events/events.php:1708 msgid "All events" msgstr "全イベント一覧表示" -#: ../../godmode/events/event_edit_filter.php:442 ../../operation/events/events.php:1630 -#: ../../operation/events/events.php:2233 +#: ../../godmode/events/event_edit_filter.php:490 +#: ../../operation/events/events.php:1709 ../../operation/events/events.php:2375 msgid "Group events" msgstr "グルーピング・回数表示" -#: ../../godmode/events/event_edit_filter.php:607 ../../operation/events/events.php:1842 +#: ../../godmode/events/event_edit_filter.php:491 +#: ../../include/ajax/heatmap.ajax.php:78 ../../operation/events/events.php:1710 +msgid "Group agents" +msgstr "グループエージェント" + +#: ../../godmode/events/event_edit_filter.php:492 +#: ../../operation/events/events.php:1711 +msgid "Group extra id" +msgstr "グループ追加 ID" + +#: ../../godmode/events/event_edit_filter.php:658 +#: ../../operation/events/events.php:1984 msgid "Filter alert events" msgstr "アラートイベントフィルター" -#: ../../godmode/events/event_edit_filter.php:608 ../../operation/events/events.php:1843 +#: ../../godmode/events/event_edit_filter.php:659 +#: ../../operation/events/events.php:1985 msgid "Only alert events" msgstr "アラートイベントのみ" -#: ../../godmode/events/event_edit_filter.php:635 ../../operation/events/events.php:1731 +#: ../../godmode/events/event_edit_filter.php:686 +#: ../../operation/events/events.php:1855 msgid "Extra ID" msgstr "拡張 ID" -#: ../../godmode/events/event_edit_filter.php:641 +#: ../../godmode/events/event_edit_filter.php:692 msgid "Custom data filter type" msgstr "カスタムデータフィルタタイプ" -#: ../../godmode/events/event_edit_filter.php:644 +#: ../../godmode/events/event_edit_filter.php:695 msgid "Filter custom data by name field" msgstr "名前フィールドでカスタムデータをフィルタ" -#: ../../godmode/events/event_edit_filter.php:645 +#: ../../godmode/events/event_edit_filter.php:696 msgid "Filter custom data by value field" msgstr "値フィールドでカスタムデータをフィルタ" -#: ../../godmode/events/event_edit_filter.php:655 +#: ../../godmode/events/event_edit_filter.php:706 #: ../../godmode/events/custom_events.php:119 #: ../../include/functions_reporting_html.php:1069 #: ../../include/functions_reporting_html.php:1330 -#: ../../include/functions_reporting_html.php:2546 ../../include/ajax/events.php:1757 -#: ../../include/functions_events.php:221 ../../include/functions_events.php:323 +#: ../../include/functions_reporting_html.php:2557 +#: ../../include/ajax/events.php:1725 ../../include/functions_events.php:221 +#: ../../include/functions_events.php:323 msgid "Custom data" msgstr "カスタムデータ" -#: ../../godmode/events/event_edit_filter.php:659 +#: ../../godmode/events/event_edit_filter.php:710 msgid "Id souce event" msgstr "ソースイベントID" +#: ../../godmode/events/event_edit_filter.php:735 +#: ../../operation/events/events.php:256 +msgid "Metaconsola" +msgstr "メタコンソール" + #: ../../godmode/events/event_responses.list.php:32 msgid "No responses found" msgstr "応答がありません" @@ -38926,49 +40137,56 @@ msgstr "前のイベントからフィールドをロード" msgid "Event fields will be loaded. Do you want to continue?" msgstr "イベントフィールドが読み込まれます。続けますか?" -#: ../../godmode/events/custom_events.php:94 ../../include/functions_events.php:238 +#: ../../godmode/events/custom_events.php:94 +#: ../../include/functions_events.php:238 msgid "Event Id" msgstr "イベント ID" -#: ../../godmode/events/custom_events.php:95 ../../mobile/operation/events.php:237 -#: ../../include/functions_events.php:241 +#: ../../godmode/events/custom_events.php:95 +#: ../../mobile/operation/events.php:237 ../../include/functions_events.php:241 msgid "Event Name" msgstr "イベント名" #: ../../godmode/events/custom_events.php:97 -#: ../../include/class/SatelliteAgent.class.php:127 +#: ../../include/class/SatelliteAgent.class.php:146 msgid "Agent Name" msgstr "エージェント名" -#: ../../godmode/events/custom_events.php:98 ../../include/functions_events.php:320 +#: ../../godmode/events/custom_events.php:98 +#: ../../include/functions_events.php:320 msgid "Agent IP" msgstr "エージェント IP" -#: ../../godmode/events/custom_events.php:103 ../../include/functions_events.php:265 +#: ../../godmode/events/custom_events.php:103 +#: ../../include/functions_events.php:265 msgid "Event Type" msgstr "イベントタイプ" #: ../../godmode/events/custom_events.php:104 -#: ../../include/class/ModuleTemplates.class.php:1207 -#: ../../include/class/AgentWizard.class.php:1195 -#: ../../include/class/AgentWizard.class.php:4047 ../../include/functions_events.php:268 +#: ../../include/class/ModuleTemplates.class.php:1208 +#: ../../include/class/AgentWizard.class.php:1278 +#: ../../include/class/AgentWizard.class.php:4170 +#: ../../include/functions_events.php:268 msgid "Module Name" msgstr "モジュール名" -#: ../../godmode/events/custom_events.php:110 ../../include/functions_events.php:286 +#: ../../godmode/events/custom_events.php:110 +#: ../../include/functions_events.php:286 msgid "Extra Id" msgstr "追加 ID" -#: ../../godmode/events/custom_events.php:114 ../../include/functions_events.php:298 +#: ../../godmode/events/custom_events.php:114 +#: ../../include/functions_events.php:298 msgid "Server Name" msgstr "サーバ名" -#: ../../godmode/events/custom_events.php:117 ../../include/functions_events.php:316 +#: ../../godmode/events/custom_events.php:117 +#: ../../include/functions_events.php:316 msgid "Severity mini" msgstr "重要度(縮小表示)" -#: ../../godmode/events/custom_events.php:118 ../../include/functions_events.php:307 -#: ../../include/functions_events.php:4769 +#: ../../godmode/events/custom_events.php:118 +#: ../../include/functions_events.php:307 ../../include/functions_events.php:4890 msgid "Module custom ID" msgstr "モジュールカスタム ID" @@ -39028,164 +40246,173 @@ msgstr "CSV ファイルから読み込んだ内容が不正です: %s" #: ../../godmode/wizards/HostDevices.class.php:391 msgid "" -"This network scan task has been already defined. Please edit it or create a new one." +"This network scan task has been already defined. Please edit it or create a " +"new one." msgstr "" -"このネットワークスキャンタスクはすでに定義済です。既存のものを編集するか新たに作成して" -"ください。" +"このネットワークスキャンタスクはすでに定義済です。既存のものを編集するか新たに" +"作成してください。" #: ../../godmode/wizards/HostDevices.class.php:433 msgid "You must provide a valid network." msgstr "正しいネットワークを指定する必要があります。" #: ../../godmode/wizards/HostDevices.class.php:483 -#: ../../godmode/wizards/HostDevices.class.php:595 +#: ../../godmode/wizards/HostDevices.class.php:597 #: ../../include/class/CustomNetScan.class.php:222 msgid "Failed to find network scan task." msgstr "ネットワークスキャンタスクを見つけられませんでした。" -#: ../../godmode/wizards/HostDevices.class.php:700 +#: ../../godmode/wizards/HostDevices.class.php:702 #, php-format msgid "\"%s\" features" msgstr "\"%s\" 機能" -#: ../../godmode/wizards/HostDevices.class.php:728 +#: ../../godmode/wizards/HostDevices.class.php:730 #: ../../include/class/CustomNetScan.class.php:403 msgid "Internal error, please re-run this wizard." msgstr "内部エラー。このウィザードを再実行してください。" -#: ../../godmode/wizards/HostDevices.class.php:813 +#: ../../godmode/wizards/HostDevices.class.php:815 #: ../../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 +#: ../../godmode/wizards/HostDevices.class.php:870 msgid "Use CSV file definition" msgstr "CSV ファイルの定義を利用" -#: ../../godmode/wizards/HostDevices.class.php:869 +#: ../../godmode/wizards/HostDevices.class.php:871 msgid "Define targets using csv o network definition." msgstr "CSV またはネットワーク定義を利用して対象を定義" -#: ../../godmode/wizards/HostDevices.class.php:887 +#: ../../godmode/wizards/HostDevices.class.php:889 msgid "Networks (csv)" msgstr "ネットワーク (CSV)" -#: ../../godmode/wizards/HostDevices.class.php:888 +#: ../../godmode/wizards/HostDevices.class.php:890 msgid "" -"You can upload a CSV file. Each line must contain a network in IP/MASK format. For " -"instance: 192.168.1.1/32" +"You can upload a CSV file. Each line must contain a network in IP/MASK format. " +"For instance: 192.168.1.1/32" msgstr "" -"CSV ファイルをアップロードできます。各行には、IP/MASK 形式のネットワークが含まれている" -"必要があります。例: 192.168.1.1/32" +"CSV ファイルをアップロードできます。各行には、IP/MASK 形式のネットワークが含ま" +"れている必要があります。例: 192.168.1.1/32" -#: ../../godmode/wizards/HostDevices.class.php:900 +#: ../../godmode/wizards/HostDevices.class.php:902 msgid "Networks (current)" msgstr "ネットワーク (現在)" -#: ../../godmode/wizards/HostDevices.class.php:901 +#: ../../godmode/wizards/HostDevices.class.php:903 msgid "Please upload a new file to overwrite this content." msgstr "この内容を上書きするために新たなファイルをアップロードしてください。" -#: ../../godmode/wizards/HostDevices.class.php:917 +#: ../../godmode/wizards/HostDevices.class.php:919 msgid "" "You can specify networks or fully qualified domain names of a specific host, " -"separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname.artica.es" +"separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname." +"artica.es" msgstr "" "特定のホストのネットワーク名または FQDN 名をカンマで区切って指定できます。例: " "192.168.50.0/24,192.168.60.0/24, hostname.artica.es" -#: ../../godmode/wizards/HostDevices.class.php:1047 +#: ../../godmode/wizards/HostDevices.class.php:1051 msgid "Filter by opened ports" msgstr "開いているポートでフィルタ" -#: ../../godmode/wizards/HostDevices.class.php:1049 +#: ../../godmode/wizards/HostDevices.class.php:1053 msgid "" -"Targets will be scanned if at least one of defined ports (comma separated) is open." +"Targets will be scanned if at least one of defined ports (comma separated) is " +"open." msgstr "" -"定義されたポート(カンマ区切り)の少なくとも 1つが開いている場合、対象がスキャンされま" -"す。" +"定義されたポート(カンマ区切り)の少なくとも 1つが開いている場合、対象がスキャン" +"されます。" -#: ../../godmode/wizards/HostDevices.class.php:1062 +#: ../../godmode/wizards/HostDevices.class.php:1066 msgid "Auto discover known hardware" msgstr "既知のハードウェアの自動検出" -#: ../../godmode/wizards/HostDevices.class.php:1064 +#: ../../godmode/wizards/HostDevices.class.php:1068 msgid "" -"Targets will be monitorized based on its Private Enterprise Number. Requires " -"SNMP." +"Targets will be monitorized based on its Private Enterprise Number. " +"Requires SNMP." msgstr "" -"対象は、プライベートエンタープライズ番号 に基づいて監視されます。 SNMP が必要" -"です。" +"対象は、プライベートエンタープライズ番号 に基づいて監視されます。 SNMP " +"が必要です。" -#: ../../godmode/wizards/HostDevices.class.php:1079 +#: ../../godmode/wizards/HostDevices.class.php:1083 msgid "Module Host Alive will be added to discovered agents by default." msgstr "" -"モジュール Host Alive が検出されたエージェントにデフォルトで追加されます。" +"モジュール Host Alive が検出されたエージェントにデフォルトで追加されま" +"す。" -#: ../../godmode/wizards/HostDevices.class.php:1127 +#: ../../godmode/wizards/HostDevices.class.php:1131 #, php-format msgid "" -"Configured networks could generate %d agents, your license only allows %d, 'review " -"results' is mandatory." +"Configured networks could generate %d agents, your license only allows %d, " +"'review results' is mandatory." msgstr "" -"設定されたネットワークは %d エージェントを生成する可能性がありますが、ライセンスは %d " -"までです。'結果の確認' は必須です。" +"設定されたネットワークは %d エージェントを生成する可能性がありますが、ライセン" +"スは %d までです。'結果の確認' は必須です。" -#: ../../godmode/wizards/HostDevices.class.php:1135 +#: ../../godmode/wizards/HostDevices.class.php:1139 #: ../../godmode/wizards/DiscoveryTaskList.class.php:910 msgid "Review results" msgstr "結果確認" -#: ../../godmode/wizards/HostDevices.class.php:1137 +#: ../../godmode/wizards/HostDevices.class.php:1141 msgid "Targets must be validated by user before create agents." msgstr "エージェントを作成する前に、ユーザが対象を検証する必要があります。" -#: ../../godmode/wizards/HostDevices.class.php:1163 +#: ../../godmode/wizards/HostDevices.class.php:1167 msgid "Apply autoconfiguration rules" msgstr "自動設定ルールの適用" -#: ../../godmode/wizards/HostDevices.class.php:1165 +#: ../../godmode/wizards/HostDevices.class.php:1169 msgid "" -"System is able to auto configure detected host & devices by applying your defined " -"configuration rules." +"System is able to auto configure detected host & devices by applying your " +"defined configuration rules." msgstr "" -"システムは、定義された設定ルールを適用することにより、検出されたホストとデバイスを自動" -"設定できます。" +"システムは、定義された設定ルールを適用することにより、検出されたホストとデバイ" +"スを自動設定できます。" -#: ../../godmode/wizards/HostDevices.class.php:1181 +#: ../../godmode/wizards/HostDevices.class.php:1185 msgid "SNMP enabled" msgstr "SNMP 有効化" -#: ../../godmode/wizards/HostDevices.class.php:1223 +#: ../../godmode/wizards/HostDevices.class.php:1226 +msgid "Skip non-enabled interfaces" +msgstr "未有効化インタフェースをスキップ" + +#: ../../godmode/wizards/HostDevices.class.php:1245 msgid "SNMP communities to try with" msgstr "処理実行時の SNMP コミュニティ" -#: ../../godmode/wizards/HostDevices.class.php:1225 +#: ../../godmode/wizards/HostDevices.class.php:1247 msgid "" -"You can specify several values, separated by commas, for example: public,mysecret,1234" +"You can specify several values, separated by commas, for example: public," +"mysecret,1234" msgstr "カンマ区切りで複数の値を指定できます。例: public,mysecret,1234" -#: ../../godmode/wizards/HostDevices.class.php:1353 +#: ../../godmode/wizards/HostDevices.class.php:1374 msgid "OS detection" msgstr "OSの検出" -#: ../../godmode/wizards/HostDevices.class.php:1365 +#: ../../godmode/wizards/HostDevices.class.php:1386 msgid "Name resolution" msgstr "名前解決" -#: ../../godmode/wizards/HostDevices.class.php:1376 +#: ../../godmode/wizards/HostDevices.class.php:1397 msgid "Parent detection" msgstr "親の検出" -#: ../../godmode/wizards/HostDevices.class.php:1387 +#: ../../godmode/wizards/HostDevices.class.php:1408 msgid "Parent recursion" msgstr "親の再帰検出" -#: ../../godmode/wizards/HostDevices.class.php:1398 +#: ../../godmode/wizards/HostDevices.class.php:1419 msgid "VLAN enabled" msgstr "VLAN 有効" -#: ../../godmode/wizards/HostDevices.class.php:1409 +#: ../../godmode/wizards/HostDevices.class.php:1430 msgid "WMI enabled" msgstr "WMI 有効" @@ -39218,6 +40445,11 @@ msgstr "自動検出サーバが無効です" msgid "Task type" msgstr "タスクタイプ" +#: ../../godmode/wizards/DiscoveryTaskList.class.php:611 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367 +msgid "Updated at" +msgstr "更新日時" + #: ../../godmode/wizards/DiscoveryTaskList.class.php:667 msgid "This action will rescan the target networks." msgstr "対象ネットワークを再スキャンします。" @@ -39311,6 +40543,7 @@ msgid "View summary" msgstr "概要表示" #: ../../godmode/wizards/DiscoveryTaskList.class.php:943 +#: ../../operation/agentes/pandora_networkmap.editor.php:214 msgid "View map" msgstr "マップ表示" @@ -39414,10 +40647,6 @@ msgstr "SNMP 応答" msgid "Responding WMI" msgstr "WMI 応答" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1454 -msgid "Task completed." -msgstr "タスク完了" - #: ../../godmode/wizards/DiscoveryTaskList.class.php:1456 msgid "This task has never executed" msgstr "このタスクは一度も実行されていません" @@ -39431,8 +40660,8 @@ msgid "" "Please ensure instances or regions are being monitorized and 'scan and general " "monitoring' is enabled." msgstr "" -"インスタンスまたはリージョンが監視されており、'スキャンおよび一般的な監視' が有効に" -"なっていることを確認してください。" +"インスタンスまたはリージョンが監視されており、'スキャンおよび一般的な監視' が有" +"効になっていることを確認してください。" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1530 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1672 @@ -39529,12 +40758,16 @@ msgstr "モジュールの状態とアラート発報回数のリセット" msgid "Claim back SNMP modules" msgstr "SNMP モジュールに戻す" +#: ../../godmode/servers/servers.build_table.php:246 +msgid "Manage satellite hosts" +msgstr "サテライトホスト管理" + #: ../../godmode/servers/modificar_server.php:34 msgid "Update Server" msgstr "サーバ情報の更新" -#: ../../godmode/servers/modificar_server.php:40 ../../godmode/servers/plugin.php:346 -#: ../../godmode/servers/plugin.php:845 +#: ../../godmode/servers/modificar_server.php:40 +#: ../../godmode/servers/plugin.php:346 ../../godmode/servers/plugin.php:824 msgid "Standard" msgstr "標準" @@ -39559,38 +40792,37 @@ msgid "Standard editor" msgstr "標準エディタ" #: ../../godmode/servers/modificar_server.php:133 -#: ../../godmode/servers/modificar_server.php:140 msgid "Advanced editor" msgstr "高度なエディタ" -#: ../../godmode/servers/modificar_server.php:147 +#: ../../godmode/servers/modificar_server.php:153 msgid "Remote Configuration" msgstr "リモート設定" -#: ../../godmode/servers/modificar_server.php:156 +#: ../../godmode/servers/modificar_server.php:162 msgid "Dynamic search" msgstr "動的検索" -#: ../../godmode/servers/modificar_server.php:168 +#: ../../godmode/servers/modificar_server.php:176 #, php-format msgid "%s servers" msgstr "%s サーバ" -#: ../../godmode/servers/modificar_server.php:177 -#: ../../godmode/servers/modificar_server.php:188 +#: ../../godmode/servers/modificar_server.php:185 +#: ../../godmode/servers/modificar_server.php:196 msgid "Successfully action" msgstr "アクションに成功しました。" -#: ../../godmode/servers/modificar_server.php:219 +#: ../../godmode/servers/modificar_server.php:227 msgid "Server updated successfully" msgstr "サーバを更新しました。" -#: ../../godmode/servers/modificar_server.php:221 +#: ../../godmode/servers/modificar_server.php:229 msgid "There was a problem updating the server" msgstr "サーバの更新に失敗しました。" -#: ../../godmode/servers/plugin_registration.php:59 ../../godmode/servers/plugin.php:290 -#: ../../godmode/servers/plugin.php:617 +#: ../../godmode/servers/plugin_registration.php:59 +#: ../../godmode/servers/plugin.php:290 ../../godmode/servers/plugin.php:596 msgid "To manage plugin you must activate centralized management" msgstr "プラグインを管理するには、中央管理を有効化する必要があります。" @@ -39601,11 +40833,11 @@ msgstr "プラグイン登録" #: ../../godmode/servers/plugin_registration.php:76 #, php-format msgid "" -"This console is not manager of this environment, please manage this feature from " -"feature from %s." +"This console is not manager of this environment, please manage this feature " +"from feature from %s." msgstr "" -"このコンソールはこの環境のマネージャではありません。%s の機能からこの機能を管理してく" -"ださい。" +"このコンソールはこの環境のマネージャではありません。%s の機能からこの機能を管理" +"してください。" #: ../../godmode/servers/plugin_registration.php:95 msgid "Plugin Registration" @@ -39668,10 +40900,11 @@ msgstr "ネットワークコンポーネント" msgid "Plugin update" msgstr "プラグインの更新" -#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:636 +#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:615 msgid "" "This console is not manager of this environment,\n" -" \t\tplease manage this feature from centralized manager console (Metaconsole)." +" \t\tplease manage this feature from centralized manager console " +"(Metaconsole)." msgstr "" "このコンソールは、この環境における管理コンソールではありません。\n" " \t\tこの機能は中央管理コンソール(メタコンソール)から管理してください。" @@ -39680,7 +40913,7 @@ msgstr "" msgid "Plugin type" msgstr "プラグインタイプ" -#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:847 +#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:826 msgid "Nagios" msgstr "Nagios" @@ -39690,9 +40923,10 @@ msgstr "最大タイムアウト" #: ../../godmode/servers/plugin.php:352 msgid "" -"This value only will be applied if is minor than the server general configuration " -"plugin timeout" -msgstr "全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。" +"This value only will be applied if is minor than the server general " +"configuration plugin timeout" +msgstr "" +"全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。" #: ../../godmode/servers/plugin.php:352 msgid "If you set a 0 seconds timeout, the server plugin timeout will be used" @@ -39703,109 +40937,99 @@ msgid "Plugin command" msgstr "プラグインコマンド" #: ../../godmode/servers/plugin.php:401 -msgid "Specify interpreter and plugin path. The server needs permissions to run it." +msgid "" +"Specify interpreter and plugin path. The server needs permissions to run it." msgstr "" -"インタプリタとプラグインのパスを指定します。サーバでそれを実行する権限が必要です。" +"インタプリタとプラグインのパスを指定します。サーバでそれを実行する権限が必要で" +"す。" -#: ../../godmode/servers/plugin.php:413 +#: ../../godmode/servers/plugin.php:410 msgid "Plug-in parameters" msgstr "プラグインパラメータ" -#: ../../godmode/servers/plugin.php:505 +#: ../../godmode/servers/plugin.php:492 #: ../../include/class/ManageNetScanScripts.class.php:667 msgid "Hide value" msgstr "値を隠す" -#: ../../godmode/servers/plugin.php:506 +#: ../../godmode/servers/plugin.php:493 #: ../../include/class/ManageNetScanScripts.class.php:669 msgid "This field will show up as dots like a password" msgstr "このフィールドは、パスワードのようにドットで表示されます。" -#: ../../godmode/servers/plugin.php:581 ../../godmode/servers/plugin.php:586 +#: ../../godmode/servers/plugin.php:560 ../../godmode/servers/plugin.php:565 msgid "Parameters macros" msgstr "パラメータマクロ" -#: ../../godmode/servers/plugin.php:623 +#: ../../godmode/servers/plugin.php:602 #, php-format msgid "Plug-ins registered on %s" msgstr "%s に登録されているプラグイン" -#: ../../godmode/servers/plugin.php:645 +#: ../../godmode/servers/plugin.php:624 msgid "You need to create your own plugins with Windows compatibility" msgstr "Windows に対応したプラグインを作成する必要があります" -#: ../../godmode/servers/plugin.php:711 +#: ../../godmode/servers/plugin.php:690 msgid "Problem updating plugin" msgstr "プラグインの更新に失敗しました。" -#: ../../godmode/servers/plugin.php:713 +#: ../../godmode/servers/plugin.php:692 msgid "Plugin updated successfully" msgstr "プラグインを更新しました。" -#: ../../godmode/servers/plugin.php:771 +#: ../../godmode/servers/plugin.php:750 msgid "Problem creating plugin" msgstr "プラグインの作成に失敗しました。" -#: ../../godmode/servers/plugin.php:773 +#: ../../godmode/servers/plugin.php:752 msgid "Plugin created successfully" msgstr "プラグインを作成しました。" -#: ../../godmode/servers/plugin.php:785 +#: ../../godmode/servers/plugin.php:764 msgid "Problem deleting plugin" msgstr "プラグインの削除に失敗しました。" -#: ../../godmode/servers/plugin.php:787 ../../godmode/servers/plugin.php:799 +#: ../../godmode/servers/plugin.php:766 ../../godmode/servers/plugin.php:778 msgid "Plugin deleted successfully" msgstr "プラグインを削除しました。" -#: ../../godmode/servers/plugin.php:884 +#: ../../godmode/servers/plugin.php:864 msgid "All the modules that are using this plugin will be deleted" msgstr "このプラグインを利用しているすべてのモジュールが削除されます" -#: ../../godmode/servers/plugin.php:901 +#: ../../godmode/servers/plugin.php:882 msgid "There are no plugins in the system" msgstr "プラグインがありません。" -#: ../../godmode/servers/plugin.php:915 +#: ../../godmode/servers/plugin.php:896 #, php-format msgid "List of modules and components created by \"%s\" " msgstr "\"%s\" にて作成されたモジュールおよびコンポーネントの一覧 " -#: ../../godmode/servers/plugin.php:1021 ../../godmode/servers/plugin.php:1037 +#: ../../godmode/servers/plugin.php:1005 msgid "Some modules or components are using the plugin" msgstr "いくつかのモジュールまたはコンポーネントがプラグインを利用しています" -#: ../../godmode/servers/plugin.php:1022 +#: ../../godmode/servers/plugin.php:1006 msgid "" -"The modules or components should be updated manually or using the bulk operations for " -"plugins after this change" +"The modules or components should be updated manually or using the bulk " +"operations for plugins after this change" msgstr "" -"モジュールまたはコンポーネントは手動で更新するか、変更後にプラグインの一括操作を使う必" -"要があります。" +"モジュールまたはコンポーネントは手動で更新するか、変更後にプラグインの一括操作" +"を使う必要があります。" -#: ../../godmode/servers/plugin.php:1024 +#: ../../godmode/servers/plugin.php:1008 msgid "Are you sure you want to perform this action?" msgstr "この処理を実行してもよろしいですか。" -#: ../../godmode/servers/plugin.php:1038 -msgid "Are you sure you want to unlock this item?" -msgstr "このアイテムをロック解除してもよろしいですか。" - -#: ../../godmode/servers/plugin.php:1058 +#: ../../godmode/servers/plugin.php:1017 msgid "" -"The plugin command cannot be updated because some modules or components are using the " -"plugin." +"The plugin macros cannot be updated because some modules or components are " +"using the plugin" msgstr "" -"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグインコマ" -"ンドを更新できません。" - -#: ../../godmode/servers/plugin.php:1064 -msgid "" -"The plugin macros cannot be updated because some modules or components are using the " -"plugin" -msgstr "" -"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグインマク" -"ロは更新できません。" +"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグ" +"インマクロは更新できません。" #: ../../godmode/servers/discovery.php:188 msgid "You must create a task first" @@ -39839,11 +41063,11 @@ msgstr "タグを削除できません" #: ../../godmode/tag/tag.php:195 #, php-format msgid "" -"This node is configured with centralized mode. All tags information is read only. Go " -"to %s to manage it." +"This node is configured with centralized mode. All tags information is read " +"only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。すべてのタグ情報は読み取り専用です。管理" -"するには %s に移動します。" +"このノードは中央管理モードで設定されています。すべてのタグ情報は読み取り専用で" +"す。管理するには %s に移動します。" #: ../../godmode/tag/tag.php:277 msgid "Tag name" @@ -39934,11 +41158,11 @@ msgstr "カテゴリ設定" #: ../../godmode/category/category.php:108 #, php-format msgid "" -"This node is configured with centralized mode. All categories information is read " -"only. Go to %s to manage it." +"This node is configured with centralized mode. All categories information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。すべてのカテゴリ情報は読み取り専用です。" -"管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。すべてのカテゴリ情報は読み取り専" +"用です。管理するには %s に移動します。" #: ../../godmode/category/category.php:123 msgid "Error deleting category" @@ -39956,7 +41180,8 @@ msgstr "カテゴリ名" msgid "No categories found" msgstr "カテゴリがありません" -#: ../../godmode/category/category.php:239 ../../godmode/category/edit_category.php:171 +#: ../../godmode/category/category.php:239 +#: ../../godmode/category/edit_category.php:171 msgid "Create category" msgstr "カテゴリの作成" @@ -40031,17 +41256,17 @@ msgstr "Pandora FMS %s - ビルド %s" #: ../../mobile/include/system.class.php:156 msgid "" -"Access to this page is restricted to authorized users only, please contact your " -"system administrator if you should need help." +"Access to this page is restricted to authorized users only, please contact " +"your system administrator if you should need help." msgstr "" -"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な場合" -"は、システム管理者に連絡してください。" +"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要" +"な場合は、システム管理者に連絡してください。" #: ../../mobile/include/system.class.php:156 #, php-format msgid "" -"Please remember that any attempts to access this page will be recorded on the %s " -"System Database." +"Please remember that any attempts to access this page will be recorded on the " +"%s System Database." msgstr "このページへのアクセスは、%s システムデータベースに記録されます。" #: ../../mobile/include/ui.class.php:120 @@ -40091,7 +41316,8 @@ msgstr "折り返しが不正です" msgid "User cannot log in into this console, please contact administrator" msgstr "ユーザはこのコンソールにログインできません。管理者に連絡してください。" -#: ../../mobile/include/user.class.php:287 ../../mobile/include/user.class.php:302 +#: ../../mobile/include/user.class.php:287 +#: ../../mobile/include/user.class.php:302 #: ../../mobile/include/user.class.php:309 msgid "Double authentication failed" msgstr "二段階認証に失敗しました" @@ -40128,7 +41354,8 @@ msgstr "ユーザ" msgid "password" msgstr "パスワード" -#: ../../mobile/include/user.class.php:491 ../../mobile/include/user.class.php:492 +#: ../../mobile/include/user.class.php:491 +#: ../../mobile/include/user.class.php:492 msgid "Authenticator code" msgstr "認証コード" @@ -40193,7 +41420,7 @@ msgid "Tag: %s" msgstr "タグ: %s" #: ../../mobile/operation/home.php:66 ../../mobile/operation/visualmaps.php:184 -#: ../../operation/search_results.php:145 ../../operation/search_main.php:70 +#: ../../operation/search_results.php:146 ../../operation/search_main.php:70 msgid "Visual consoles" msgstr "ビジュアルコンソール" @@ -40205,7 +41432,7 @@ msgstr "エージェントがありません" msgid "Modules by status" msgstr "状態ごとのモジュール" -#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:831 +#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:824 msgid "Events (24h)" msgstr "イベント (24時間)" @@ -40223,7 +41450,7 @@ msgstr "%sによる発報アラート" msgid "Last Fired" msgstr "直近の発報" -#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2434 +#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2406 msgid "No alerts" msgstr "アラートなし" @@ -40263,12 +41490,14 @@ msgstr "アラート表示" msgid "Show Events" msgstr "イベント表示" -#: ../../mobile/operation/module_graph.php:428 ../../operation/agentes/stat_win.php:377 +#: ../../mobile/operation/module_graph.php:428 +#: ../../operation/agentes/stat_win.php:377 #: ../../operation/agentes/stat_win.php:439 msgid "Time compare (Separated)" msgstr "時間比較 (分割)" -#: ../../mobile/operation/module_graph.php:444 ../../operation/agentes/stat_win.php:317 +#: ../../mobile/operation/module_graph.php:444 +#: ../../operation/agentes/stat_win.php:317 msgid "Show unknown graph" msgstr "不明グラフ表示" @@ -40276,10 +41505,12 @@ msgstr "不明グラフ表示" msgid "Time range (hours)" msgstr "時間範囲 (時間)" -#: ../../mobile/operation/module_graph.php:461 ../../operation/agentes/stat_win.php:289 +#: ../../mobile/operation/module_graph.php:461 +#: ../../operation/agentes/stat_win.php:289 #: ../../operation/agentes/stat_win.php:408 -#: ../../operation/agentes/interface_traffic_graph_win.php:181 -#: ../../operation/agentes/graphs.php:207 ../../operation/agentes/exportdata.php:318 +#: ../../operation/agentes/interface_traffic_graph_win.php:183 +#: ../../operation/agentes/graphs.php:207 +#: ../../operation/agentes/exportdata.php:318 msgid "Begin date" msgstr "開始日時" @@ -40291,27 +41522,30 @@ msgstr "グラフ更新" msgid "Error get the graph" msgstr "グラフ生成エラー" -#: ../../mobile/operation/events.php:450 ../../include/functions_reporting_html.php:1108 +#: ../../mobile/operation/events.php:450 +#: ../../include/functions_reporting_html.php:1108 #: ../../include/functions_reporting_html.php:1359 -#: ../../include/functions_reporting_html.php:2571 -#: ../../include/functions_events.php:2485 ../../include/functions_events.php:4434 -#: ../../operation/events/events.php:689 +#: ../../include/functions_reporting_html.php:2582 +#: ../../include/functions_events.php:2569 +#: ../../include/functions_events.php:4547 ../../operation/events/events.php:749 msgid "New event" msgstr "新規イベント" -#: ../../mobile/operation/events.php:455 ../../include/functions_reporting_html.php:1097 +#: ../../mobile/operation/events.php:455 +#: ../../include/functions_reporting_html.php:1097 #: ../../include/functions_reporting_html.php:1364 -#: ../../include/functions_reporting_html.php:2576 -#: ../../include/functions_events.php:2490 ../../include/functions_events.php:4440 -#: ../../operation/events/events.php:702 +#: ../../include/functions_reporting_html.php:2587 +#: ../../include/functions_events.php:2574 +#: ../../include/functions_events.php:4553 ../../operation/events/events.php:762 msgid "Event validated" msgstr "承諾済" -#: ../../mobile/operation/events.php:460 ../../include/functions_reporting_html.php:1102 +#: ../../mobile/operation/events.php:460 +#: ../../include/functions_reporting_html.php:1102 #: ../../include/functions_reporting_html.php:1369 -#: ../../include/functions_reporting_html.php:2581 -#: ../../include/functions_events.php:2495 ../../include/functions_events.php:4446 -#: ../../operation/events/events.php:714 +#: ../../include/functions_reporting_html.php:2592 +#: ../../include/functions_events.php:2579 +#: ../../include/functions_events.php:4559 ../../operation/events/events.php:774 msgid "Event in process" msgstr "処理中イベント" @@ -40327,11 +41561,11 @@ msgstr "DB 接続エラー。" msgid "Event detail" msgstr "イベント詳細" -#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4587 +#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4700 msgid "Event ID" msgstr "イベントID" -#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:4689 +#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:4810 msgid "Acknowledged by" msgstr "承諾者" @@ -40353,10 +41587,12 @@ msgid "Preset Filters" msgstr "定義済フィルタ" #: ../../mobile/operation/events.php:1144 -#: ../../include/functions_reporting_html.php:6091 -#: ../../include/functions_reporting_html.php:6250 -#: ../../include/functions_reporting.php:2138 ../../include/functions_reporting.php:2428 -#: ../../include/functions_events.php:2409 ../../include/functions_events.php:2412 +#: ../../include/functions_reporting_html.php:6126 +#: ../../include/functions_reporting_html.php:6285 +#: ../../include/functions_reporting.php:2184 +#: ../../include/functions_reporting.php:2559 +#: ../../include/functions_events.php:2493 +#: ../../include/functions_events.php:2496 msgid "No events" msgstr "イベントがありません。" @@ -40389,14 +41625,23 @@ msgstr "時間: %s" msgid "Last activity" msgstr "最近の操作" +#: ../../include/php_to_js_values.php:27 +msgid "Generating content" +msgstr "コンテンツ生成中" + +#: ../../include/php_to_js_values.php:28 +msgid "Generating content, please wait" +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." +"\t\t\t\t\ta text to replace '(_VALUE_)' and the value of the module will be " +"printed at the end." msgstr "" "'ラベル' フィールドを利用するには、'(_VALUE_)'を\n" -"\t\t\t\t\t置き換えるテキストを書きます。最終的にはモジュールの値が表示されます。" +"\t\t\t\t\t置き換えるテキストを書きます。最終的にはモジュールの値が表示されま" +"す。" #: ../../include/functions_visual_map_editor.php:107 #: ../../include/functions_visual_map_editor.php:133 @@ -40415,8 +41660,10 @@ 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 "背景色を変更するには、ラベルエディタの上でマウスのウィールをスクロースします" +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 @@ -40458,25 +41705,25 @@ msgid "Enable link" msgstr "リンクを有効にする" #: ../../include/functions_visual_map_editor.php:350 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:518 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508 msgid "White" msgstr "白" #: ../../include/functions_visual_map_editor.php:351 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:519 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509 msgid "Black" msgstr "黒" #: ../../include/functions_visual_map_editor.php:352 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:465 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:520 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510 msgid "Transparent" msgstr "透過" #: ../../include/functions_visual_map_editor.php:378 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:499 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402 msgid "Grid color" msgstr "グリッドの色" @@ -40485,32 +41732,31 @@ msgid "Data image" msgstr "データ画像" #: ../../include/functions_visual_map_editor.php:503 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:258 msgid "Resume data color" msgstr "データの色を戻す" #: ../../include/functions_visual_map_editor.php:517 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:269 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274 msgid "24h" msgstr "24時間" #: ../../include/functions_visual_map_editor.php:518 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:271 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276 msgid "8h" msgstr "8時間" #: ../../include/functions_visual_map_editor.php:519 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:272 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277 msgid "2h" msgstr "2時間" #: ../../include/functions_visual_map_editor.php:520 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:273 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278 msgid "1h" msgstr "1時間" #: ../../include/functions_visual_map_editor.php:524 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282 msgid "Max. Time" msgstr "最大時間" @@ -40531,14 +41777,16 @@ msgid "Height proportional" msgstr "高さに比例" #: ../../include/functions_visual_map_editor.php:688 +#: ../../include/functions_visual_map.php:4190 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 -msgid "Circular porgress bar" -msgstr "円進捗バー" +#: ../../include/rest-api/models/VisualConsole/Item.php:2124 +msgid "Circular progress bar" +msgstr "円形進捗バー" #: ../../include/functions_visual_map_editor.php:689 -#: ../../include/functions_visual_map.php:4242 +#: ../../include/functions_visual_map.php:4195 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 -#: ../../include/rest-api/models/VisualConsole/Item.php:2127 +#: ../../include/rest-api/models/VisualConsole/Item.php:2128 msgid "Circular progress bar (interior)" msgstr "円進捗バー(内部)" @@ -40563,12 +41811,12 @@ 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)" +"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" @@ -40583,7 +41831,7 @@ msgid "To value" msgstr "終了値" #: ../../include/functions_visual_map_editor.php:815 -#: ../../include/rest-api/index.php:363 +#: ../../include/rest-api/index.php:376 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:530 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487 @@ -40597,7 +41845,8 @@ 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" +"It allows the element to be superimposed to the rest of items of the visual " +"console" msgstr "要素をビジュアルコンソールの残りの項目に重ね合わせることができます。" #: ../../include/functions_visual_map_editor.php:824 @@ -40611,35 +41860,36 @@ msgstr "最新の値を表示" #: ../../include/functions_visual_map_editor.php:934 msgid "For use the original image file size, set 0 width and 0 height." -msgstr "オリジナルの画像サイズを利用するためには、幅と高さを 0 に設定してください。" +msgstr "" +"オリジナルの画像サイズを利用するためには、幅と高さを 0 に設定してください。" #: ../../include/functions_visual_map_editor.php:974 -#: ../../include/rest-api/models/VisualConsole/Item.php:2433 +#: ../../include/rest-api/models/VisualConsole/Item.php:2439 msgid "Linked visual console" msgstr "リンクされたビジュアルコンソール" #: ../../include/functions_visual_map_editor.php:1081 -#: ../../include/rest-api/models/VisualConsole/Item.php:2484 +#: ../../include/rest-api/models/VisualConsole/Item.php:2490 msgid "By status weight" msgstr "状態ウエイトごと" #: ../../include/functions_visual_map_editor.php:1082 -#: ../../include/rest-api/models/VisualConsole/Item.php:2485 +#: ../../include/rest-api/models/VisualConsole/Item.php:2491 msgid "By critical elements" msgstr "障害要素ごと" #: ../../include/functions_visual_map_editor.php:1097 -#: ../../include/rest-api/models/VisualConsole/Item.php:2492 +#: ../../include/rest-api/models/VisualConsole/Item.php:2498 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:2483 +#: ../../include/rest-api/models/VisualConsole/Item.php:2489 msgid "By default" msgstr "デフォルト" #: ../../include/functions_visual_map_editor.php:1122 -#: ../../include/rest-api/models/VisualConsole/Item.php:2508 +#: ../../include/rest-api/models/VisualConsole/Item.php:2514 msgid "Linked visual console weight" msgstr "リンクされたビジュアルコンソールのウエイト" @@ -40648,20 +41898,22 @@ msgid "Lines haven't advanced options" msgstr "拡張オプションがありません" #: ../../include/functions_visual_map_editor.php:1206 -#: ../../include/rest-api/models/VisualConsole/Item.php:2188 +#: ../../include/rest-api/models/VisualConsole/Item.php:2189 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." +"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:2201 +#: ../../include/rest-api/models/VisualConsole/Item.php:2202 msgid "Cache expiration" msgstr "キャッシュ有効期限" @@ -40674,12 +41926,12 @@ msgid "Click end point
of the line" msgstr "線の終了場所
をクリックしてください" #: ../../include/functions_visual_map_editor.php:1390 -#: ../../operation/visual_console/view.php:316 +#: ../../operation/visual_console/view.php:318 msgid "Serialized pie graph" msgstr "連続円グラフ" #: ../../include/functions_visual_map_editor.php:1391 -#: ../../operation/visual_console/view.php:321 +#: ../../operation/visual_console/view.php:323 msgid "Bars Graph" msgstr "棒グラフ" @@ -40781,7 +42033,8 @@ 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." @@ -40791,30 +42044,33 @@ msgstr "変更を保存しました。" msgid "Could not be save." msgstr "保存できません。" -#: ../../include/graphs/export_data.php:88 ../../include/graphs/export_data.php:154 +#: ../../include/graphs/export_data.php:91 +#: ../../include/graphs/export_data.php:157 msgid "An error occured exporting the data" msgstr "データエクスポートエラー" -#: ../../include/graphs/functions_gd.php:183 ../../include/graphs/functions_gd.php:466 -#: ../../include/functions_graph.php:2903 ../../include/functions_graph.php:2951 +#: ../../include/graphs/functions_gd.php:183 +#: ../../include/graphs/functions_gd.php:466 +#: ../../include/functions_graph.php:2775 ../../include/functions_graph.php:2823 msgid "Out of limits" msgstr "範囲外" -#: ../../include/graphs/functions_flot.php:365 +#: ../../include/graphs/functions_flot.php:370 msgid "Cancel zoom" msgstr "ズーム中止" -#: ../../include/graphs/functions_flot.php:367 +#: ../../include/graphs/functions_flot.php:372 msgid "Warning and Critical thresholds" msgstr "警告と障害の閾値" -#: ../../include/graphs/functions_flot.php:372 +#: ../../include/graphs/functions_flot.php:377 msgid "Overview graph" msgstr "概要グラフ" -#: ../../include/graphs/functions_flot.php:509 -#: ../../include/functions_reporting_html.php:659 -#: ../../include/functions_reporting_html.php:4576 +#: ../../include/graphs/functions_flot.php:514 +#: ../../include/functions_reporting_html.php:660 +#: ../../include/functions_reporting_html.php:4596 +#: ../../include/ajax/events.php:1260 ../../include/functions_graph.php:4836 #: ../../include/functions_treeview.php:315 msgid "No data" msgstr "データがありません" @@ -40827,16 +42083,18 @@ msgstr "SNMPトラップサーバ" msgid "Correlation server" msgstr "相関サーバ" -#: ../../include/functions_servers.php:712 ../../include/functions_servers.php:1314 +#: ../../include/functions_servers.php:712 +#: ../../include/functions_servers.php:1314 msgid "Enterprise ICMP server" msgstr "エンタープライズ ICMP サーバ" -#: ../../include/functions_servers.php:725 ../../include/functions_servers.php:1317 +#: ../../include/functions_servers.php:725 +#: ../../include/functions_servers.php:1317 msgid "Enterprise SNMP server" msgstr "エンタープライズSNMPサーバ" #: ../../include/functions_servers.php:738 -#: ../../include/class/AgentWizard.class.php:1267 +#: ../../include/class/AgentWizard.class.php:1350 msgid "Enterprise Satellite server" msgstr "Enterprise サテライトサーバ" @@ -40856,7 +42114,8 @@ msgstr "同期サーバ" msgid "Wux server" msgstr "Wux サーバ" -#: ../../include/functions_servers.php:803 ../../include/functions_servers.php:1344 +#: ../../include/functions_servers.php:803 +#: ../../include/functions_servers.php:1344 msgid "Log server" msgstr "ログサーバ" @@ -40876,48 +42135,44 @@ msgstr "予測サーバ" msgid "Satellite server" msgstr "サテライトサーバ" -#: ../../include/functions_servers.php:1353 -msgid "Transactional server" -msgstr "トランザクションサーバ" - -#: ../../include/functions_reporting_html.php:109 +#: ../../include/functions_reporting_html.php:110 msgid "Label: " msgstr "ラベル: " -#: ../../include/functions_reporting_html.php:584 +#: ../../include/functions_reporting_html.php:585 msgid "Time Failed" msgstr "障害時間" -#: ../../include/functions_reporting_html.php:588 +#: ../../include/functions_reporting_html.php:589 msgid "Downtime" msgstr "停止時間" #: ../../include/functions_reporting_html.php:999 -#: ../../include/functions_reporting_html.php:2413 -#: ../../include/functions_reporting_html.php:4458 -#: ../../include/functions_reporting_html.php:4995 +#: ../../include/functions_reporting_html.php:2424 +#: ../../include/functions_reporting_html.php:4478 +#: ../../include/functions_reporting_html.php:5015 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367 msgid "Min Value" msgstr "最小値" #: ../../include/functions_reporting_html.php:1000 -#: ../../include/functions_reporting_html.php:2414 -#: ../../include/functions_reporting_html.php:4459 -#: ../../include/functions_reporting_html.php:4996 +#: ../../include/functions_reporting_html.php:2425 +#: ../../include/functions_reporting_html.php:4479 +#: ../../include/functions_reporting_html.php:5016 msgid "Average Value" msgstr "平均値" #: ../../include/functions_reporting_html.php:1001 -#: ../../include/functions_reporting_html.php:2415 -#: ../../include/functions_reporting_html.php:4456 -#: ../../include/functions_reporting_html.php:4998 +#: ../../include/functions_reporting_html.php:2426 +#: ../../include/functions_reporting_html.php:4476 +#: ../../include/functions_reporting_html.php:5018 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366 msgid "Max Value" msgstr "最大値" #: ../../include/functions_reporting_html.php:1056 #: ../../include/functions_reporting_html.php:1064 -#: ../../include/functions_reporting_html.php:2543 +#: ../../include/functions_reporting_html.php:2554 msgid "Val. by" msgstr "承諾ユーザ" @@ -40954,180 +42209,186 @@ msgstr "セカンダリグループ" msgid "Remote conf." msgstr "リモート設定" -#: ../../include/functions_reporting_html.php:2189 +#: ../../include/functions_reporting_html.php:1831 +#: ../../include/functions_inventory.php:885 +#: ../../include/functions_inventory.php:948 +msgid "Added" +msgstr "追加済み" + +#: ../../include/functions_reporting_html.php:1842 +#: ../../include/functions_inventory.php:891 +#: ../../include/functions_inventory.php:956 +#: ../../include/functions_filemanager.php:342 +#: ../../include/functions_filemanager.php:359 +msgid "Deleted" +msgstr "削除しました" + +#: ../../include/functions_reporting_html.php:2198 msgid "Cell turns grey when the module is in 'not initialize' status" msgstr "青色のセルは、不明状態を示します。" -#: ../../include/functions_reporting_html.php:2479 -#: ../../include/functions_reporting_html.php:5565 +#: ../../include/functions_reporting_html.php:2490 +#: ../../include/functions_reporting_html.php:5604 msgid "Monitors" msgstr "モニタ項目" -#: ../../include/functions_reporting_html.php:2498 +#: ../../include/functions_reporting_html.php:2509 msgid "Events (not validated)" msgstr "イベント (未承諾)" -#: ../../include/functions_reporting_html.php:2664 +#: ../../include/functions_reporting_html.php:2675 msgid "Events validated by user" msgstr "ユーザで分類したイベント" -#: ../../include/functions_reporting_html.php:2681 -#: ../../include/functions_reporting_html.php:5854 +#: ../../include/functions_reporting_html.php:2692 +#: ../../include/functions_reporting_html.php:5893 msgid "Events by severity" msgstr "重要度ごとのイベント" -#: ../../include/functions_reporting_html.php:2698 +#: ../../include/functions_reporting_html.php:2709 msgid "Amount events validated" msgstr "承諾済みイベントの割合" -#: ../../include/functions_reporting_html.php:3122 +#: ../../include/functions_reporting_html.php:3135 msgid "Total summary" msgstr "全体概要" -#: ../../include/functions_reporting_html.php:3129 +#: ../../include/functions_reporting_html.php:3142 msgid "No alerts fired" msgstr "アラート未発報" -#: ../../include/functions_reporting_html.php:3220 +#: ../../include/functions_reporting_html.php:3233 #, php-format msgid "Interface '%s' throughput graph" msgstr "インタフェース '%s' スループットグラフ" -#: ../../include/functions_reporting_html.php:3224 +#: ../../include/functions_reporting_html.php:3237 msgid "Mac" msgstr "Mac" -#: ../../include/functions_reporting_html.php:3225 +#: ../../include/functions_reporting_html.php:3238 msgid "Actual status" msgstr "現在の状態" -#: ../../include/functions_reporting_html.php:3589 -#: ../../include/functions_reporting_html.php:3591 +#: ../../include/functions_reporting_html.php:3606 +#: ../../include/functions_reporting_html.php:3608 msgid "Empty modules" msgstr "モジュールなし" -#: ../../include/functions_reporting_html.php:3598 +#: ../../include/functions_reporting_html.php:3615 msgid "Warning
Critical" msgstr "警告
障害" -#: ../../include/functions_reporting_html.php:4071 +#: ../../include/functions_reporting_html.php:4090 msgid "Time Not Init Module" msgstr "未初期化モジュール時間" -#: ../../include/functions_reporting_html.php:4082 +#: ../../include/functions_reporting_html.php:4101 msgid "% Ok" msgstr "正常%" -#: ../../include/functions_reporting_html.php:4159 +#: ../../include/functions_reporting_html.php:4178 msgid "Checks Uknown" msgstr "不明確認数" -#: ../../include/functions_reporting_html.php:4198 -#: ../../include/functions_reporting_html.php:4345 -#: ../../include/functions_reporting_html.php:4670 -#: ../../include/functions_reporting_html.php:4676 +#: ../../include/functions_reporting_html.php:4217 +#: ../../include/functions_reporting_html.php:4364 +#: ../../include/functions_reporting_html.php:4690 +#: ../../include/functions_reporting_html.php:4696 msgid "Primary" msgstr "プライマリ" -#: ../../include/functions_reporting_html.php:5110 -#: ../../include/functions_reporting.php:11585 -#: ../../include/functions_reporting.php:11606 +#: ../../include/functions_reporting_html.php:5130 +#: ../../include/functions_reporting.php:11900 +#: ../../include/functions_reporting.php:11921 msgid "Alert level" msgstr "アラートレベル" -#: ../../include/functions_reporting_html.php:5339 +#: ../../include/functions_reporting_html.php:5378 #, php-format msgid "Agents in group: %s" msgstr "グループに含まれるエージェント: %s" -#: ../../include/functions_reporting_html.php:5441 +#: ../../include/functions_reporting_html.php:5480 msgid "Last failure" msgstr "最新の障害" -#: ../../include/functions_reporting_html.php:5531 +#: ../../include/functions_reporting_html.php:5570 msgid "N/A(*)" msgstr "N/A(*)" -#: ../../include/functions_reporting_html.php:5779 -#: ../../include/functions_reporting.php:11817 +#: ../../include/functions_reporting_html.php:5818 +#: ../../include/functions_reporting.php:12132 msgid "Monitor checks" msgstr "モニタ項目" -#: ../../include/functions_reporting_html.php:5786 -#: ../../include/functions_reporting.php:11836 +#: ../../include/functions_reporting_html.php:5825 +#: ../../include/functions_reporting.php:12151 msgid "Total agents and monitors" msgstr "全エージェントと監視項目" -#: ../../include/functions_reporting_html.php:5805 -#: ../../include/functions_reporting_html.php:5810 +#: ../../include/functions_reporting_html.php:5844 +#: ../../include/functions_reporting_html.php:5849 msgid "Node overview" msgstr "ノードの概要" -#: ../../include/functions_reporting_html.php:5830 -#: ../../include/functions_reporting_html.php:5842 +#: ../../include/functions_reporting_html.php:5869 +#: ../../include/functions_reporting_html.php:5881 msgid "Critical events" msgstr "障害イベント" -#: ../../include/functions_reporting_html.php:5833 -#: ../../include/functions_reporting_html.php:5844 +#: ../../include/functions_reporting_html.php:5872 +#: ../../include/functions_reporting_html.php:5883 msgid "Warning events" msgstr "警告イベント" -#: ../../include/functions_reporting_html.php:5836 -#: ../../include/functions_reporting_html.php:5846 +#: ../../include/functions_reporting_html.php:5875 +#: ../../include/functions_reporting_html.php:5885 msgid "OK events" msgstr "正常イベント" -#: ../../include/functions_reporting_html.php:5839 -#: ../../include/functions_reporting_html.php:5848 +#: ../../include/functions_reporting_html.php:5878 +#: ../../include/functions_reporting_html.php:5887 msgid "Unknown events" msgstr "不明イベント" -#: ../../include/functions_reporting_html.php:5864 +#: ../../include/functions_reporting_html.php:5903 msgid "Important Events by Criticity" msgstr "重要度ごとのイベント" -#: ../../include/functions_reporting_html.php:5890 +#: ../../include/functions_reporting_html.php:5929 #, php-format msgid "Last activity in %s console" msgstr "%s コンソールの最新の操作" -#: ../../include/functions_reporting_html.php:5981 -#: ../../include/functions_reporting_html.php:6123 +#: ../../include/functions_reporting_html.php:6016 +#: ../../include/functions_reporting_html.php:6158 msgid "Events info (1hr.)" msgstr "イベント情報 (1時間)" -#: ../../include/functions_reporting_html.php:6280 +#: ../../include/functions_reporting_html.php:6315 msgid "This SLA has been affected by the following scheduled downtimes" msgstr "このSLAは、次の計画停止の影響を受けています" -#: ../../include/functions_reporting_html.php:6281 +#: ../../include/functions_reporting_html.php:6316 msgid "" -"If the duration of the scheduled downtime is less than 5 minutes it will not be " -"represented in the graph" +"If the duration of the scheduled downtime is less than 5 minutes it will not " +"be represented in the graph" msgstr "計画停止の期間が 5分未満の場合、グラフには表示されません。" -#: ../../include/functions_reporting_html.php:6288 +#: ../../include/functions_reporting_html.php:6323 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380 msgid "Dates" msgstr "日付" -#: ../../include/functions_reporting_html.php:6319 +#: ../../include/functions_reporting_html.php:6354 msgid "This item is affected by a malformed scheduled downtime" msgstr "このアイテムは、不正な形式の計画停止の影響を受けます" -#: ../../include/functions_reporting_html.php:6319 +#: ../../include/functions_reporting_html.php:6354 msgid "Go to the scheduled 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:640 msgid "s" msgstr "s" @@ -41142,7 +42403,7 @@ msgstr "M" #: ../../include/functions.php:491 ../../include/functions.php:643 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:259 -#: ../../include/rest-api/models/VisualConsole/Item.php:2036 +#: ../../include/rest-api/models/VisualConsole/Item.php:2037 msgid "Y" msgstr "Y" @@ -41158,632 +42419,647 @@ msgstr "h" msgid "N" msgstr "N" -#: ../../include/functions.php:1023 ../../include/functions.php:1269 -#: ../../include/functions.php:1303 ../../include/functions_graph.php:3473 -#: ../../include/functions_graph.php:3474 ../../include/functions_graph.php:5056 -#: ../../include/functions_incidents.php:34 ../../include/functions_incidents.php:75 -#: ../../include/functions_events.php:3006 +#: ../../include/functions.php:1069 ../../include/functions.php:1315 +#: ../../include/functions.php:1349 ../../include/functions_graph.php:3318 +#: ../../include/functions_graph.php:3320 ../../include/functions_graph.php:4848 +#: ../../include/functions_incidents.php:34 +#: ../../include/functions_incidents.php:75 +#: ../../include/functions_events.php:3069 +#: ../../operation/visual_console/view.php:433 msgid "Maintenance" msgstr "メンテナンス" -#: ../../include/functions.php:1027 ../../include/functions.php:1270 -#: ../../include/functions.php:1307 ../../include/functions_graph.php:3478 -#: ../../include/functions_graph.php:3479 ../../include/functions_graph.php:5060 -#: ../../include/functions_events.php:3010 +#: ../../include/functions.php:1073 ../../include/functions.php:1316 +#: ../../include/functions.php:1353 ../../include/functions_graph.php:3324 +#: ../../include/functions_graph.php:3326 ../../include/functions_graph.php:4852 +#: ../../include/functions_events.php:3073 msgid "Informational" msgstr "情報" -#: ../../include/functions.php:1043 ../../include/functions.php:1272 -#: ../../include/functions.php:1323 ../../include/functions_graph.php:3488 -#: ../../include/functions_graph.php:3489 ../../include/functions_graph.php:5076 +#: ../../include/functions.php:1089 ../../include/functions.php:1318 +#: ../../include/functions.php:1369 ../../include/functions_graph.php:3336 +#: ../../include/functions_graph.php:3338 ../../include/functions_graph.php:4868 msgid "Minor" msgstr "マイナー" -#: ../../include/functions.php:1047 ../../include/functions.php:1274 -#: ../../include/functions.php:1327 ../../include/functions_graph.php:3498 -#: ../../include/functions_graph.php:3499 ../../include/functions_graph.php:5080 +#: ../../include/functions.php:1093 ../../include/functions.php:1320 +#: ../../include/functions.php:1373 ../../include/functions_graph.php:3348 +#: ../../include/functions_graph.php:3350 ../../include/functions_graph.php:4872 msgid "Major" msgstr "メジャー" -#: ../../include/functions.php:1222 ../../include/functions_events.php:2926 +#: ../../include/functions.php:1268 ../../include/functions_events.php:2989 msgid "Monitor Critical" msgstr "障害" -#: ../../include/functions.php:1223 ../../include/functions_events.php:2930 +#: ../../include/functions.php:1269 ../../include/functions_events.php:2993 msgid "Monitor Warning" msgstr "警告" -#: ../../include/functions.php:1224 ../../include/functions_events.php:2934 +#: ../../include/functions.php:1270 ../../include/functions_events.php:2997 msgid "Monitor Normal" msgstr "正常" -#: ../../include/functions.php:1226 +#: ../../include/functions.php:1272 msgid "Monitor Unknown" msgstr "不明状態" -#: ../../include/functions.php:1229 ../../include/functions_events.php:2710 -#: ../../include/functions_events.php:2942 +#: ../../include/functions.php:1275 ../../include/functions_events.php:2773 +#: ../../include/functions_events.php:3005 msgid "Alert recovered" msgstr "復旧したアラート" -#: ../../include/functions.php:1230 ../../include/functions_events.php:2758 -#: ../../include/functions_events.php:2946 +#: ../../include/functions.php:1276 ../../include/functions_events.php:2821 +#: ../../include/functions_events.php:3009 msgid "Alert ceased" msgstr "停止されたアラート" -#: ../../include/functions.php:1231 ../../include/functions_events.php:2950 +#: ../../include/functions.php:1277 ../../include/functions_events.php:3013 msgid "Alert manual validation" msgstr "承諾されたアラート" -#: ../../include/functions.php:1233 +#: ../../include/functions.php:1279 msgid "Agent created" msgstr "エージェント作成" -#: ../../include/functions.php:1234 ../../include/functions_events.php:2954 +#: ../../include/functions.php:1280 ../../include/functions_events.php:3017 msgid "Recon host detected" msgstr "自動検出" -#: ../../include/functions.php:1237 ../../include/functions_events.php:2754 -#: ../../include/functions_events.php:2966 +#: ../../include/functions.php:1283 ../../include/functions_events.php:2817 +#: ../../include/functions_events.php:3029 msgid "Configuration change" msgstr "設定変更" -#: ../../include/functions.php:1354 ../../include/functions.php:1384 +#: ../../include/functions.php:1400 ../../include/functions.php:1430 msgid "ALERT FIRED" msgstr "アラート発報" -#: ../../include/functions.php:1357 ../../include/functions.php:1394 -#: ../../include/functions_modules.php:4126 ../../include/class/Tree.class.php:646 -#: ../../include/lib/Module.php:567 ../../operation/agentes/status_monitor.php:1641 -#: ../../operation/agentes/status_monitor.php:1649 +#: ../../include/functions.php:1403 ../../include/functions.php:1440 +#: ../../include/functions_modules.php:4223 +#: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:567 +#: ../../operation/agentes/status_monitor.php:1669 +#: ../../operation/agentes/status_monitor.php:1682 msgid "NO DATA" msgstr "データがありません" -#: ../../include/functions.php:2694 +#: ../../include/functions.php:2740 #, php-format msgid "%s seconds" msgstr "%s 秒" -#: ../../include/functions.php:2697 ../../include/functions.php:2698 +#: ../../include/functions.php:2743 ../../include/functions.php:2744 #, php-format msgid "%s minutes" msgstr "%s 分" -#: ../../include/functions.php:2706 ../../include/functions.php:2707 +#: ../../include/functions.php:2752 ../../include/functions.php:2753 #, php-format msgid "%s months" msgstr "%s ヶ月" -#: ../../include/functions.php:2709 ../../include/functions.php:2710 +#: ../../include/functions.php:2755 ../../include/functions.php:2756 #, php-format msgid "%s years" msgstr "%s 年" -#: ../../include/functions.php:2712 +#: ../../include/functions.php:2758 msgid "Default values will be used" msgstr "デフォルト値を利用します" -#: ../../include/functions.php:2897 ../../include/functions.php:2902 +#: ../../include/functions.php:2943 ../../include/functions.php:2948 msgid "The file exceeds the maximum size" msgstr "ファイルサイズが上限を超えています。" -#: ../../include/functions.php:2898 +#: ../../include/functions.php:2944 msgid "" -"Please check this PHP runtime variable values:
  upload_max_filesize (currently "
+"Please check this PHP runtime variable values: 
  upload_max_filesize "
+"(currently "
 msgstr "PHP 実行時の変数値を確認してください: 
 upload_max_filesize(現在"
 
-#: ../../include/functions.php:2906
+#: ../../include/functions.php:2952
 msgid "The uploaded file was only partially uploaded"
 msgstr "ファイルは部分的にのみアップロードされました"
 
-#: ../../include/functions.php:2910
+#: ../../include/functions.php:2956
 msgid "No file was uploaded"
 msgstr "ファイルがアップロードされませんでした"
 
-#: ../../include/functions.php:2914
+#: ../../include/functions.php:2960
 msgid "Missing a temporary folder"
 msgstr "テンポラリフォルダがありません"
 
-#: ../../include/functions.php:2918
+#: ../../include/functions.php:2964
 msgid "Failed to write file to disk"
 msgstr "ファイルのディスクへの書き込みに失敗しました"
 
-#: ../../include/functions.php:2922
+#: ../../include/functions.php:2968
 msgid "File upload stopped by extension"
 msgstr "拡張によりファイルのアップロードが停止されました"
 
-#: ../../include/functions.php:2926
+#: ../../include/functions.php:2972
 msgid "Unknown upload error"
 msgstr "不明なアップロードエラー"
 
-#: ../../include/functions.php:3037
+#: ../../include/functions.php:3083
 msgid "No data found to export"
 msgstr "エクスポートするデータがありません"
 
-#: ../../include/functions.php:3358 ../../operation/gis_maps/render_view.php:149
+#: ../../include/functions.php:3404 ../../operation/gis_maps/render_view.php:149
 msgid "5 seconds"
 msgstr "5 秒"
 
-#: ../../include/functions.php:3359 ../../operation/gis_maps/render_view.php:150
+#: ../../include/functions.php:3405 ../../operation/gis_maps/render_view.php:150
 msgid "10 seconds"
 msgstr "10 秒"
 
-#: ../../include/functions.php:3360
+#: ../../include/functions.php:3406
 msgid "15 seconds"
 msgstr "15秒"
 
-#: ../../include/functions.php:3361 ../../include/ajax/heatmap.ajax.php:50
-#: ../../include/class/AgentsAlerts.class.php:804 ../../operation/heatmap.php:171
+#: ../../include/functions.php:3407 ../../include/ajax/heatmap.ajax.php:50
+#: ../../include/class/AgentsAlerts.class.php:804 ../../operation/heatmap.php:175
 #: ../../operation/gis_maps/render_view.php:151
 msgid "30 seconds"
 msgstr "30 秒"
 
-#: ../../include/functions.php:3362 ../../include/ajax/heatmap.ajax.php:51
-#: ../../include/class/AgentsAlerts.class.php:805 ../../operation/heatmap.php:172
+#: ../../include/functions.php:3408 ../../include/ajax/heatmap.ajax.php:51
+#: ../../include/class/AgentsAlerts.class.php:805 ../../operation/heatmap.php:176
 #: ../../operation/gis_maps/render_view.php:152
 msgid "1 minute"
 msgstr "1 分"
 
-#: ../../include/functions.php:3363 ../../include/class/AgentsAlerts.class.php:806
+#: ../../include/functions.php:3409
+#: ../../include/class/AgentsAlerts.class.php:806
 #: ../../operation/gis_maps/render_view.php:153
 msgid "2 minutes"
 msgstr "2 分"
 
-#: ../../include/functions.php:3364 ../../include/ajax/heatmap.ajax.php:53
-#: ../../include/ajax/module.php:198 ../../include/class/AgentsAlerts.class.php:807
-#: ../../operation/heatmap.php:174 ../../operation/gis_maps/render_view.php:154
+#: ../../include/functions.php:3410 ../../include/ajax/heatmap.ajax.php:53
+#: ../../include/ajax/module.php:205
+#: ../../include/class/AgentsAlerts.class.php:807 ../../operation/heatmap.php:178
+#: ../../operation/gis_maps/render_view.php:154
 msgid "5 minutes"
 msgstr "5 分"
 
-#: ../../include/functions.php:3365
+#: ../../include/functions.php:3411
 msgid "15 minutes"
 msgstr "15 分"
 
-#: ../../include/functions.php:3366 ../../include/ajax/module.php:199
+#: ../../include/functions.php:3412 ../../include/ajax/module.php:206
 msgid "30 minutes"
 msgstr "30 分"
 
-#: ../../include/functions.php:3881
+#: ../../include/functions.php:3927
 msgid "Summatory series"
 msgstr "合計シリーズ"
 
-#: ../../include/functions.php:3885
+#: ../../include/functions.php:3931
 msgid "Average series"
 msgstr "平均シリーズ"
 
-#: ../../include/functions.php:3913 ../../include/functions.php:3932
-#: ../../include/functions.php:3946 ../../include/functions.php:3968
-#: ../../include/functions.php:4049 ../../include/functions.php:4121
+#: ../../include/functions.php:3959 ../../include/functions.php:3978
+#: ../../include/functions.php:3992 ../../include/functions.php:4014
+#: ../../include/functions.php:4095 ../../include/functions.php:4172
 msgid "Unit "
 msgstr "単位 "
 
-#: ../../include/functions.php:3994 ../../include/functions.php:4059
+#: ../../include/functions.php:4040 ../../include/functions.php:4105
 msgid "Min:"
 msgstr "最小:"
 
-#: ../../include/functions.php:4001 ../../include/functions.php:4066
+#: ../../include/functions.php:4047 ../../include/functions.php:4114
 msgid "Max:"
 msgstr "最大:"
 
-#: ../../include/functions.php:4008 ../../include/functions.php:4073
+#: ../../include/functions.php:4054 ../../include/functions.php:4123
 msgid "Avg:"
 msgstr "平均:"
 
-#: ../../include/functions.php:4118 ../../include/functions.php:4126
+#: ../../include/functions.php:4169 ../../include/functions.php:4177
 msgid "of module"
 msgstr "のモジュール"
 
-#: ../../include/functions.php:4143
+#: ../../include/functions.php:4196
 msgid "Projection"
 msgstr "投影"
 
-#: ../../include/functions.php:5963
+#: ../../include/functions.php:6039
 msgid "Testing Pandora FMS email"
 msgstr "Pandora FMS メールのテスト"
 
-#: ../../include/functions.php:5976
+#: ../../include/functions.php:6052
 msgid ""
-"This is an email test sent from Pandora FMS. If you can read this, your configuration "
-"works."
+"This is an email test sent from Pandora FMS. If you can read this, your "
+"configuration works."
 msgstr ""
-"これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は機能し"
-"ています。"
+"これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は"
+"機能しています。"
 
-#: ../../include/functions.php:6210 ../../include/class/ConsoleSupervisor.php:1493
-#: ../../include/class/ConsoleSupervisor.php:1517
-#: ../../include/class/ConsoleSupervisor.php:1546
+#: ../../include/functions.php:6286
+#: ../../include/class/ConsoleSupervisor.php:1490
+#: ../../include/class/ConsoleSupervisor.php:1514
+#: ../../include/class/ConsoleSupervisor.php:1543
 #: ../../include/class/ConsoleSupervisor.php:1624
 #, php-format
 msgid "Not recommended '%s' value in PHP configuration"
 msgstr "PHP 設定における値 '%s' はおすすめしません"
 
-#: ../../include/functions.php:6211
+#: ../../include/functions.php:6287
 msgid "Recommended value is: -1"
 msgstr "推奨値は -1 です"
 
-#: ../../include/functions.php:6212 ../../include/class/ConsoleSupervisor.php:1552
+#: ../../include/functions.php:6288
+#: ../../include/class/ConsoleSupervisor.php:1549
 #: ../../include/class/ConsoleSupervisor.php:1630
 msgid ""
 "Please, change it on your PHP configuration file (php.ini) or contact with "
 "administrator"
 msgstr "PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。"
 
-#: ../../include/functions.php:6213 ../../general/login_help_dialog.php:96
+#: ../../include/functions.php:6289 ../../general/login_help_dialog.php:96
 #: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:142
 msgid "Documentation"
 msgstr "ドキュメント"
 
-#: ../../include/functions_cron.php:481
+#: ../../include/functions_cron.php:492
 msgid "Scheduled jobs"
 msgstr "スケジュールされたジョブ"
 
-#: ../../include/functions_api.php:125
+#: ../../include/functions_api.php:126
 msgid "Not `set`, `get` or `help` operation selected."
 msgstr "`set`, `get` または `help` 操作が選択されていません。"
 
-#: ../../include/functions_api.php:135
+#: ../../include/functions_api.php:136
 msgid "This operation does not exist."
 msgstr "この操作は存在しません。"
 
-#: ../../include/functions_api.php:145
+#: ../../include/functions_api.php:146
 msgid "The Id does not exist in database."
 msgstr "データベースに ID が存在しません。"
 
-#: ../../include/functions_api.php:155
+#: ../../include/functions_api.php:156
 msgid "This operation can not be used in cluster elements."
 msgstr "クラスタ要素ではこの操作は使えません。"
 
-#: ../../include/functions_api.php:165
+#: ../../include/functions_api.php:166
 msgid "The user has not enough permissions for perform this action."
 msgstr "このアクションを実行するための十分な権限がありません。"
 
-#: ../../include/functions_api.php:185
+#: ../../include/functions_api.php:186
 msgid ""
-"This console is not the environment administrator. Please, manage this feature from "
-"centralized manager console (Metaconsole)."
+"This console is not the environment administrator. Please, manage this feature "
+"from centralized manager console (Metaconsole)."
 msgstr ""
-"このコンソールは環境管理者ではありません。 この機能は、中央管理コンソール(メタコンソー"
-"ル)から管理してください。"
+"このコンソールは環境管理者ではありません。 この機能は、中央管理コンソール(メタ"
+"コンソール)から管理してください。"
 
-#: ../../include/functions_api.php:195
+#: ../../include/functions_api.php:196
 msgid "Auth error"
 msgstr "認証エラー"
 
-#: ../../include/functions_api.php:1463
-msgid "The agent could not be modified. For security reasons, use a group other than 0."
+#: ../../include/functions_api.php:1524
+msgid ""
+"The agent could not be modified. For security reasons, use a group other than "
+"0."
 msgstr ""
-"エージェントを編集できませんでした。セキュリティ上の理由により 0 以外のグループを利用"
-"してください。"
+"エージェントを編集できませんでした。セキュリティ上の理由により 0 以外のグループ"
+"を利用してください。"
 
-#: ../../include/functions_api.php:1818
+#: ../../include/functions_api.php:1879
 #, php-format
 msgid "Updated %d/%d agents"
 msgstr "%d/%d エージェントを更新しました"
 
-#: ../../include/functions_api.php:1826
+#: ../../include/functions_api.php:1887
 msgid "Agent updated."
 msgstr "エージェントを更新しました。"
 
-#: ../../include/functions_api.php:2017
+#: ../../include/functions_api.php:2076
 msgid "Could not create OS"
 msgstr "OS を作成できませんでした"
 
-#: ../../include/functions_api.php:2056
+#: ../../include/functions_api.php:2113
 msgid "Could not update OS"
 msgstr "OS を更新できませんでした"
 
-#: ../../include/functions_api.php:2257
+#: ../../include/functions_api.php:2314
 msgid "The agent was successfully deleted"
 msgstr "エージェントを削除しました"
 
-#: ../../include/functions_api.php:3752
+#: ../../include/functions_api.php:3822
 msgid "Network module updated."
 msgstr "ネットワークモジュールを更新しました。"
 
-#: ../../include/functions_api.php:4048
+#: ../../include/functions_api.php:4118
 msgid "Plugin module updated."
 msgstr "プラグインモジュールを更新しました。"
 
-#: ../../include/functions_api.php:4404
+#: ../../include/functions_api.php:4474
 #, php-format
 msgid "Synthetic module created ID: %s"
 msgstr "合成モジュールが作成したID: %s"
 
-#: ../../include/functions_api.php:4557
+#: ../../include/functions_api.php:4627
 msgid "Synthetic module created ID: "
 msgstr "統合モジュールを作成しました。ID: "
 
-#: ../../include/functions_api.php:4674
+#: ../../include/functions_api.php:4744
 msgid "Data module updated."
 msgstr "データモジュールを更新しました。"
 
-#: ../../include/functions_api.php:5047
+#: ../../include/functions_api.php:5117
 msgid "SNMP module updated."
 msgstr "SNMPモジュールを更新しました。"
 
-#: ../../include/functions_api.php:5654
+#: ../../include/functions_api.php:5716
 msgid "Error creating alert template. Id_group cannot be left blank."
 msgstr ""
-"アラートテンプレートの作成中にエラーが発生しました。 id_group は空白にできません。"
+"アラートテンプレートの作成中にエラーが発生しました。 id_group は空白にできませ"
+"ん。"
 
-#: ../../include/functions_api.php:5668
+#: ../../include/functions_api.php:5730
 msgid ""
-"Error creating alert template. Invalid id_group or the user has not enough permission "
-"to make this action."
+"Error creating alert template. Invalid id_group or the user has not enough "
+"permission to make this action."
 msgstr ""
-"アラートテンプレートの作成中にエラーが発生しました。 id_group が無効であるか、ユーザに"
-"このアクションを実行するための十分な権限がありません。"
+"アラートテンプレートの作成中にエラーが発生しました。 id_group が無効であるか、"
+"ユーザにこのアクションを実行するための十分な権限がありません。"
 
-#: ../../include/functions_api.php:5814
+#: ../../include/functions_api.php:5874
 msgid ""
-"Error updating alert template. Invalid id_group or the user has not enough permission "
-"to make this action."
+"Error updating alert template. Invalid id_group or the user has not enough "
+"permission to make this action."
 msgstr ""
-"アラートテンプレートの更新中にエラーが発生しました。 id_group が無効であるか、ユーザに"
-"このアクションを実行するための十分な権限がありません。"
+"アラートテンプレートの更新中にエラーが発生しました。 id_group が無効であるか、"
+"ユーザにこのアクションを実行するための十分な権限がありません。"
 
-#: ../../include/functions_api.php:5898
+#: ../../include/functions_api.php:5958
 msgid "Successful update of the alert template"
 msgstr "アラートテンプレートを更新しました"
 
-#: ../../include/functions_api.php:5946
+#: ../../include/functions_api.php:6004
 msgid "Error deleting alert template. Id_template doesn't exist."
 msgstr "アラートテンプレート削除エラー。id_template が存在しません。"
 
-#: ../../include/functions_api.php:5975
+#: ../../include/functions_api.php:6033
 msgid "Successful delete of alert template."
 msgstr "アラートテンプレートを削除しました。"
 
-#: ../../include/functions_api.php:6395 ../../include/functions_api.php:12222
-#: ../../include/functions_api.php:12288 ../../include/functions_api.php:12569
-#: ../../include/functions_api.php:12649
+#: ../../include/functions_api.php:6453 ../../include/functions_api.php:11971
+#: ../../include/functions_api.php:12037 ../../include/functions_api.php:12318
+#: ../../include/functions_api.php:12398
 #, php-format
 msgid "%d agents affected"
 msgstr "%d エージェントに影響します"
 
-#: ../../include/functions_api.php:6541
+#: ../../include/functions_api.php:6599
 msgid "Correct deleting of module template."
 msgstr "モジュールテンプレートの削除内容を修正してください。"
 
-#: ../../include/functions_api.php:6649
+#: ../../include/functions_api.php:6707
 msgid "Successful delete of module template."
 msgstr "モジュールテンプレートを削除しました。"
 
-#: ../../include/functions_api.php:6682
+#: ../../include/functions_api.php:6740
 msgid "Error validating alert. Id_template cannot be left blank."
 msgstr "アラート承諾エラー。id_template は空にできません。"
 
-#: ../../include/functions_api.php:6690
+#: ../../include/functions_api.php:6748
 msgid "Error validating alert. Id_agent cannot be left blank."
 msgstr "アラート承諾エラー。id_agent は空にできません。"
 
-#: ../../include/functions_api.php:6698
+#: ../../include/functions_api.php:6756
 msgid "Error validating alert. Id_module cannot be left blank."
 msgstr "アラート承諾エラー。id_module は空にできません。"
 
-#: ../../include/functions_api.php:6769
+#: ../../include/functions_api.php:6827
 msgid "Error validating alert. Specified alert does not exist."
 msgstr "アラート承諾エラー。指定のアラートが存在しません。"
 
-#: ../../include/functions_api.php:6780
+#: ../../include/functions_api.php:6838
 msgid "Error validating alert"
 msgstr "アラート承諾エラー"
 
-#: ../../include/functions_api.php:6854
+#: ../../include/functions_api.php:6912
 #, php-format
 msgid "Correct validation of all alerts (total %d)."
 msgstr "全アラートの承諾をしました(合計 %d)。"
 
-#: ../../include/functions_api.php:6948
+#: ../../include/functions_api.php:7006
 msgid "Correct validation of all policy alerts."
 msgstr "全ポリシーアラートを承諾しました。"
 
-#: ../../include/functions_api.php:6990
+#: ../../include/functions_api.php:7048
 msgid ""
-"Error stopping downtime. Periodical and running scheduled downtime cannot be stopped."
+"Error stopping downtime. Periodical and running scheduled downtime cannot be "
+"stopped."
 msgstr ""
-"計画停止の停止中にエラーが発生しました。 定期実行かつ実行中の計画停止を停止することは"
-"できません。"
+"計画停止の停止中にエラーが発生しました。 定期実行かつ実行中の計画停止を停止する"
+"ことはできません。"
 
-#: ../../include/functions_api.php:7003
+#: ../../include/functions_api.php:7061
 msgid "Downtime stopped."
 msgstr "計画停止を中断しました。"
 
-#: ../../include/functions_api.php:7485
+#: ../../include/functions_api.php:7541
 msgid "and this modules are doesn't exists or not applicable a this agents: "
 msgstr "これらのモジュールが存在しないかまたはエージェントに適用できません : "
 
-#: ../../include/functions_api.php:7489
+#: ../../include/functions_api.php:7545
 msgid "and this agents are generate problems: "
 msgstr "これらのエージェントでエラーです : "
 
-#: ../../include/functions_api.php:7493
+#: ../../include/functions_api.php:7549
 msgid "and this agents with ids are doesn't exists: "
 msgstr "これらのエージェントIDは存在しません : "
 
-#: ../../include/functions_api.php:7641
+#: ../../include/functions_api.php:7697
 msgid "Planned downtime updated"
 msgstr "計画停止を更新しました"
 
-#: ../../include/functions_api.php:7717
+#: ../../include/functions_api.php:7772
 msgid " Agents deleted"
 msgstr " エージェントを削除しました"
 
-#: ../../include/functions_api.php:7798
+#: ../../include/functions_api.php:7852
 msgid " Agents added"
 msgstr " エージェントを追加しました"
 
-#: ../../include/functions_api.php:7918
+#: ../../include/functions_api.php:7970
 msgid "Data policy module updated."
 msgstr "データポリシーモジュールを更新しました。"
 
-#: ../../include/functions_api.php:8151
+#: ../../include/functions_api.php:8199
 msgid "Network policy module updated."
 msgstr "ネットワークポリシーモジュールを更新しました。"
 
-#: ../../include/functions_api.php:8408
+#: ../../include/functions_api.php:8452
 msgid "Plugin policy module updated."
 msgstr "プラグインポリシーモジュールを更新しました。"
 
-#: ../../include/functions_api.php:8917
+#: ../../include/functions_api.php:8957
 msgid "SNMP policy module updated."
 msgstr "SNMPポリシーモジュールを更新しました。"
 
-#: ../../include/functions_api.php:9262
+#: ../../include/functions_api.php:9292
 msgid "Successful deletion"
 msgstr "削除しました"
 
-#: ../../include/functions_api.php:9578
+#: ../../include/functions_api.php:9614
 msgid "User created."
 msgstr "ユーザを作成しました"
 
-#: ../../include/functions_api.php:9673
+#: ../../include/functions_api.php:9707
 msgid "User updated."
 msgstr "ユーザを更新しました。"
 
-#: ../../include/functions_api.php:9752
+#: ../../include/functions_api.php:9784
 msgid "Enabled user."
 msgstr "ユーザを有効化しました。"
 
-#: ../../include/functions_api.php:9760
+#: ../../include/functions_api.php:9792
 msgid "Disabled user."
 msgstr "ユーザを無効化しました。"
 
-#: ../../include/functions_api.php:10057
+#: ../../include/functions_api.php:10087
 #, php-format
 msgid "Template have been inserted in %d agents."
 msgstr "%d エージェントにテンプレートを挿入しました。"
 
-#: ../../include/functions_api.php:10229
+#: ../../include/functions_api.php:10263
 msgid "XML file was generated successfully in path: "
 msgstr "次のパスに XML ファイルを生成しました: "
 
-#: ../../include/functions_api.php:10369
+#: ../../include/functions_api.php:10403
 #, php-format
 msgid "Module has been created in %d agents."
 msgstr "%d エージェントにモジュールを作成しました。"
 
-#: ../../include/functions_api.php:10499
+#: ../../include/functions_api.php:10531
 #, php-format
 msgid "Action has been set for %d agents."
 msgstr "%d エージェントにアクションを設定しました。"
 
-#: ../../include/functions_api.php:11812
+#: ../../include/functions_api.php:11571
 msgid "User deleted."
 msgstr "ユーザを削除しました。"
 
-#: ../../include/functions_api.php:11873
+#: ../../include/functions_api.php:11630
 msgid "User profile added."
 msgstr "ユーザプロファイルを追加しました。"
 
-#: ../../include/functions_api.php:11940
+#: ../../include/functions_api.php:11695
 msgid "User profile deleted."
 msgstr "ユーザプロファイルを削除しました。"
 
-#: ../../include/functions_api.php:12229
+#: ../../include/functions_api.php:11978
 msgid "Module disabled successfully."
 msgstr "モジュールを無効化しました。"
 
-#: ../../include/functions_api.php:12231
+#: ../../include/functions_api.php:11980
 msgid "The module could not be disabled."
 msgstr "モジュールを無効化できませんでした。"
 
-#: ../../include/functions_api.php:12295
+#: ../../include/functions_api.php:12044
 msgid "Module enabled successfully."
 msgstr "モジュールを有効化しました。"
 
-#: ../../include/functions_api.php:12297
+#: ../../include/functions_api.php:12046
 msgid "The module could not be enabled."
 msgstr "モジュールを有効化できませんでした。"
 
-#: ../../include/functions_api.php:12345 ../../include/functions_api.php:12398
+#: ../../include/functions_api.php:12094 ../../include/functions_api.php:12147
 msgid "The alert could not be disabled."
 msgstr "アラートを無効化できませんでえした。"
 
-#: ../../include/functions_api.php:12445 ../../include/functions_api.php:12498
+#: ../../include/functions_api.php:12194 ../../include/functions_api.php:12247
 msgid "The alert could not be enabled."
 msgstr "アラートを有効化できませんでした。"
 
-#: ../../include/functions_api.php:13750
+#: ../../include/functions_api.php:13524
 msgid "Enabled agent."
 msgstr "エージェントを有効化しました"
 
-#: ../../include/functions_api.php:13758
+#: ../../include/functions_api.php:13532
 msgid "Disabled agent."
 msgstr "エージェントを無効化しました"
 
-#: ../../include/functions_api.php:14737
+#: ../../include/functions_api.php:14511
 msgid "Metaconsole and the licenses of all nodes were updated."
 msgstr "メタコンソールと全ノードのライセンスを更新しました。"
 
-#: ../../include/functions_api.php:14739
+#: ../../include/functions_api.php:14513
 #, php-format
 msgid "Metaconsole license updated but %d of %d node failed to sync."
-msgstr "メタコンソールライセンスを更新しましたが、%d/%d ノードの同期に失敗しました。"
+msgstr ""
+"メタコンソールライセンスを更新しましたが、%d/%d ノードの同期に失敗しました。"
 
-#: ../../include/functions_api.php:14742
+#: ../../include/functions_api.php:14516
 msgid "This function is for metaconsole only."
 msgstr "この機能はメタコンソールのみです。"
 
-#: ../../include/functions_api.php:15127 ../../include/functions_api.php:15198
+#: ../../include/functions_api.php:14906 ../../include/functions_api.php:14977
 msgid "Successfully deleted."
 msgstr "削除しました。"
 
-#: ../../include/functions_api.php:15157
+#: ../../include/functions_api.php:14936
 msgid "The user cannot access the cluster."
 msgstr "ユーザがクラスタにアクセスできません。"
 
-#: ../../include/functions_api.php:16043
+#: ../../include/functions_api.php:15822
 msgid "Event filter successfully created."
 msgstr "イベントフィルタを作成しました。"
 
-#: ../../include/functions_api.php:16276
+#: ../../include/functions_api.php:16055
 msgid "Event filter successfully updated."
 msgstr "イベントフィルタを更新しました。"
 
-#: ../../include/functions_api.php:16317
+#: ../../include/functions_api.php:16096
 msgid "Event filter successfully deleted."
 msgstr "イベントフィルタを削除しました。"
 
-#: ../../include/functions_api.php:16633
+#: ../../include/functions_api.php:16412
 msgid "Validated traps."
 msgstr "トラップを承諾しました。"
 
-#: ../../include/functions_api.php:16660
+#: ../../include/functions_api.php:16439
 msgid "Deleted traps."
 msgstr "トラップを削除しました。"
 
-#: ../../include/functions_api.php:16853
+#: ../../include/functions_api.php:16632
 #, php-format
 msgid "Successfully updated module/alert count in id agent %d."
 msgstr "エージェント ID %d のモジュール/アラートカウントを更新しました。"
 
-#: ../../include/functions_api.php:16855
+#: ../../include/functions_api.php:16634
 msgid "Successfully updated module/alert count in all agents"
 msgstr "全エージェントのモジュール/アラートカウントを更新しました。"
 
-#: ../../include/functions_api.php:17307
+#: ../../include/functions_api.php:17108
 #, php-format
 msgid "Successfully added to delete pending id agent %d to id policy %d."
 msgstr "削除保留エージェント ID %d をポリシー ID %d に追加しました。"
 
-#: ../../include/functions_api.php:17496
+#: ../../include/functions_api.php:17297
 msgid "Error enable/disable discovery task. Id_user cannot be left blank."
 msgstr "自動検出タスクの有効化/無効化エラー。id_user は空にできません。"
 
-#: ../../include/functions_api.php:17504
-msgid "Error enable/disable discovery task. Enable/disable value cannot be left blank."
-msgstr "自動検出タスクの有効化/無効化エラー。有効化/無効化の設定は空にできません。"
+#: ../../include/functions_api.php:17305
+msgid ""
+"Error enable/disable discovery task. Enable/disable value cannot be left blank."
+msgstr ""
+"自動検出タスクの有効化/無効化エラー。有効化/無効化の設定は空にできません。"
 
-#: ../../include/functions_api.php:17529
+#: ../../include/functions_api.php:17330
 msgid "Error in discovery task enabling/disabling."
 msgstr "自動検出タスクの有効化/無効化エラー。"
 
-#: ../../include/functions_api.php:17537
+#: ../../include/functions_api.php:17338
 msgid "Enabled discovery task."
 msgstr "自動検出タスクを有効化しました。"
 
-#: ../../include/functions_api.php:17545
+#: ../../include/functions_api.php:17346
 msgid "Disabled discovery task."
 msgstr "自動検出タスクを無効化しました。"
 
@@ -41791,7 +43067,8 @@ msgstr "自動検出タスクを無効化しました。"
 msgid "Radial dynamic"
 msgstr "放射状で動的"
 
-#: ../../include/functions_networkmap.php:1307 ../../include/functions_maps.php:38
+#: ../../include/functions_networkmap.php:1307
+#: ../../include/functions_maps.php:38
 msgid "Topology"
 msgstr "トポロジ"
 
@@ -41811,12 +43088,13 @@ msgstr "新たな動的マップの作成"
 msgid "Create a new radial dynamic map"
 msgstr "放射状の動的マップを新規作成"
 
-#: ../../include/functions_networkmap.php:2068 ../../include/functions_maps.php:73
-#: ../../include/functions_planned_downtimes.php:966
+#: ../../include/functions_networkmap.php:2068
+#: ../../include/functions_maps.php:73
+#: ../../include/functions_planned_downtimes.php:967
 msgid "Copy of "
 msgstr "コピー: "
 
-#: ../../include/functions_networkmap.php:3404
+#: ../../include/functions_networkmap.php:3508
 msgid "Map not found."
 msgstr "マップがありません。"
 
@@ -41826,7 +43104,8 @@ 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"
+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
@@ -41841,21 +43120,24 @@ 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"
+"\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 "先に進む前に、次のリンクからアプリケーションをインストールする必要があります。"
+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_register.php:188
+#: ../../include/ajax/double_auth.ajax.php:299
+#: ../../include/functions_register.php:188
 msgid "Continue"
 msgstr "続ける"
 
@@ -41869,7 +43151,8 @@ msgstr "プライベートコードを生成しました"
 
 #: ../../include/ajax/double_auth.ajax.php:287
 msgid "Before continue, you should create a new entry into the authenticator app"
-msgstr "次に進む前に、認証アプリケーションに新たなエントリーを作成する必要があります。"
+msgstr ""
+"次に進む前に、認証アプリケーションに新たなエントリーを作成する必要があります。"
 
 #: ../../include/ajax/double_auth.ajax.php:297
 msgid "Refresh code"
@@ -41899,14 +43182,10 @@ msgstr "正しいコードです。終了します。"
 msgid "The code is valid, but it was an error saving the data"
 msgstr "正しいコードですが、データの保存でエラーが発生しました。"
 
-#: ../../include/ajax/heatmap.ajax.php:52 ../../operation/heatmap.php:173
+#: ../../include/ajax/heatmap.ajax.php:52 ../../operation/heatmap.php:177
 msgid "3 minutes"
 msgstr "3 分"
 
-#: ../../include/ajax/heatmap.ajax.php:78 ../../operation/events/events.php:1631
-msgid "Group agents"
-msgstr "グループエージェント"
-
 #: ../../include/ajax/heatmap.ajax.php:79
 msgid "Group modules by tag"
 msgstr "タグでモジュールをグループ化"
@@ -41915,25 +43194,29 @@ msgstr "タグでモジュールをグループ化"
 msgid "Group modules by module group"
 msgstr "モジュールグループでモジュールをグループ化"
 
-#: ../../include/ajax/heatmap.ajax.php:97
+#: ../../include/ajax/heatmap.ajax.php:81
+msgid "Group modules by agents"
+msgstr "エージェントごとのモジュールグループ"
+
+#: ../../include/ajax/heatmap.ajax.php:98
 msgid "Show groups"
 msgstr "グループ表示"
 
-#: ../../include/ajax/alert_list.ajax.php:289 ../../include/ajax/alert_list.ajax.php:314
-#: ../../include/ajax/module.php:970
+#: ../../include/ajax/alert_list.ajax.php:289
+#: ../../include/ajax/alert_list.ajax.php:314 ../../include/ajax/module.php:983
 msgid "Force execution"
 msgstr "確認の強制(再)実行"
 
-#: ../../include/ajax/alert_list.ajax.php:289 ../../include/ajax/alert_list.ajax.php:314
-#: ../../include/ajax/module.php:970
+#: ../../include/ajax/alert_list.ajax.php:289
+#: ../../include/ajax/alert_list.ajax.php:314 ../../include/ajax/module.php:983
 msgid "F."
 msgstr "F."
 
 #: ../../include/ajax/alert_list.ajax.php:341
-#: ../../operation/agentes/alerts_status.php:365
-#: ../../operation/agentes/alerts_status.php:366
-#: ../../operation/agentes/alerts_status.php:406
-#: ../../operation/agentes/alerts_status.php:407
+#: ../../operation/agentes/alerts_status.php:374
+#: ../../operation/agentes/alerts_status.php:375
+#: ../../operation/agentes/alerts_status.php:415
+#: ../../operation/agentes/alerts_status.php:416
 msgid "No alerts found"
 msgstr "該当するアラートがありません。"
 
@@ -41967,46 +43250,46 @@ msgstr "ポリシー作成に失敗しました"
 msgid "Policy created succesfully"
 msgstr "ポリシーを作成しました"
 
-#: ../../include/ajax/module.php:207
+#: ../../include/ajax/module.php:214
 msgid "3 months"
 msgstr "3ヵ月"
 
-#: ../../include/ajax/module.php:210
+#: ../../include/ajax/module.php:217
 msgid "2 years"
 msgstr "2年"
 
-#: ../../include/ajax/module.php:211
+#: ../../include/ajax/module.php:218
 msgid "3 years"
 msgstr "3 年"
 
-#: ../../include/ajax/module.php:223 ../../operation/agentes/datos_agente.php:194
+#: ../../include/ajax/module.php:230 ../../operation/agentes/datos_agente.php:194
 msgid "Choose a time from now"
 msgstr "現在からさかのぼって表示する期間を選択"
 
-#: ../../include/ajax/module.php:249 ../../operation/agentes/datos_agente.php:197
+#: ../../include/ajax/module.php:256 ../../operation/agentes/datos_agente.php:197
 msgid "Specify time range"
 msgstr "時間範囲指定"
 
-#: ../../include/ajax/module.php:307
+#: ../../include/ajax/module.php:314
 msgid "Exact phrase"
 msgstr "完全なフレーズ"
 
-#: ../../include/ajax/module.php:399 ../../operation/agentes/stat_win.php:491
-#: ../../operation/agentes/interface_traffic_graph_win.php:308
+#: ../../include/ajax/module.php:406 ../../operation/agentes/stat_win.php:491
+#: ../../operation/agentes/interface_traffic_graph_win.php:310
 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."
+"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 の技術情報' の章を確認してください。"
+"Pandora FMS では、データは圧縮されて保存されます。 データベースの可視化、グラ"
+"フ、または CSV エクスポートデータは、実行時に解釈されるため一致しません。 ド"
+"キュメントの 'Pandora FMS の技術情報' の章を確認してください。"
 
-#: ../../include/ajax/module.php:1304
+#: ../../include/ajax/module.php:1317
 msgid "Any monitors aren't with this filter."
 msgstr "このフィルタに合うモニタ項目がありません。"
 
-#: ../../include/ajax/module.php:1306
+#: ../../include/ajax/module.php:1319
 msgid "This agent doesn't have any active monitors."
 msgstr "エージェントに有効な監視がありません。"
 
@@ -42014,191 +43297,197 @@ msgstr "エージェントに有効な監視がありません。"
 msgid "Current interval"
 msgstr "現在の間隔"
 
-#: ../../include/ajax/custom_fields.php:460 ../../include/ajax/custom_fields.php:513
+#: ../../include/ajax/custom_fields.php:462
+#: ../../include/ajax/custom_fields.php:515
 msgid "Modules normal"
 msgstr "正常状態のモジュール"
 
-#: ../../include/ajax/custom_fields.php:471
+#: ../../include/ajax/custom_fields.php:473
 msgid "Modules critical"
 msgstr "障害状態のモジュール"
 
-#: ../../include/ajax/custom_fields.php:482
+#: ../../include/ajax/custom_fields.php:484
 msgid "Modules warning"
 msgstr "警告状態のモジュール"
 
-#: ../../include/ajax/custom_fields.php:492
+#: ../../include/ajax/custom_fields.php:494
 msgid "Modules unknown"
 msgstr "不明状態のモジュール"
 
-#: ../../include/ajax/custom_fields.php:503
+#: ../../include/ajax/custom_fields.php:505
 msgid "Modules no init"
 msgstr "未初期化モジュール"
 
-#: ../../include/ajax/custom_fields.php:545
+#: ../../include/ajax/custom_fields.php:547
 msgid "New Filter"
 msgstr "新規フィルタ"
 
-#: ../../include/ajax/custom_fields.php:552
+#: ../../include/ajax/custom_fields.php:554
 msgid "Existing Filter"
 msgstr "既存フィルタ"
 
-#: ../../include/ajax/custom_fields.php:700
+#: ../../include/ajax/custom_fields.php:702
 msgid "Delete filter"
 msgstr "フィルタの削除"
 
-#: ../../include/ajax/custom_fields.php:750
+#: ../../include/ajax/custom_fields.php:752
 msgid "Filter name already exists in the bbdd"
 msgstr "データベースにフィルタがすでに存在します"
 
-#: ../../include/ajax/custom_fields.php:762
+#: ../../include/ajax/custom_fields.php:764
 msgid "Please, select a custom field"
 msgstr "カスタムフィールドを選択してください"
 
-#: ../../include/ajax/custom_fields.php:790
+#: ../../include/ajax/custom_fields.php:792
 msgid "Success create filter."
 msgstr "フィルタを作成しました。"
 
-#: ../../include/ajax/custom_fields.php:797
+#: ../../include/ajax/custom_fields.php:799
 msgid "Error create filter."
 msgstr "フィルタ作成エラー。"
 
-#: ../../include/ajax/custom_fields.php:822 ../../include/ajax/custom_fields.php:895
+#: ../../include/ajax/custom_fields.php:824
+#: ../../include/ajax/custom_fields.php:897
 msgid "please, select a filter"
 msgstr "フィルタを選択してください。"
 
-#: ../../include/ajax/custom_fields.php:838
+#: ../../include/ajax/custom_fields.php:840
 msgid "please, select a custom field"
 msgstr "カスタムフィールドを選択してください。"
 
-#: ../../include/ajax/custom_fields.php:864
+#: ../../include/ajax/custom_fields.php:866
 msgid "Success update filter."
 msgstr "フィルタを更新しました。"
 
-#: ../../include/ajax/custom_fields.php:871
+#: ../../include/ajax/custom_fields.php:873
 msgid "Error update filter."
 msgstr "フィルタ更新エラー。"
 
-#: ../../include/ajax/custom_fields.php:914
+#: ../../include/ajax/custom_fields.php:916
 msgid "Success delete filter."
 msgstr "フィルタを削除しました。"
 
-#: ../../include/ajax/custom_fields.php:921
+#: ../../include/ajax/custom_fields.php:923
 msgid "Error delete filter."
 msgstr "フィルタ削除エラー。"
 
-#: ../../include/ajax/events.php:95
+#: ../../include/ajax/events.php:96
 msgid "Failed to retrieve comments"
 msgstr "コメントを取得できませんでした"
 
-#: ../../include/ajax/events.php:748
+#: ../../include/ajax/events.php:767
 msgid "New filter"
 msgstr "新規フィルタ"
 
-#: ../../include/ajax/events.php:766
+#: ../../include/ajax/events.php:785
 msgid "Save in Group"
 msgstr "保存グループ"
 
-#: ../../include/ajax/events.php:802
+#: ../../include/ajax/events.php:821
 msgid "Overwrite filter"
 msgstr "フィルタの上書き"
 
-#: ../../include/ajax/events.php:873
+#: ../../include/ajax/events.php:892
 msgid "Filter name cannot be left blank"
 msgstr "フィルタ名は空にできません"
 
-#: ../../include/ajax/events.php:1328
+#: ../../include/ajax/events.php:1243
+msgid "unauthorized"
+msgstr "未認証"
+
+#: ../../include/ajax/events.php:1349
 msgid "Error executing response"
 msgstr "応答の実行エラー"
 
-#: ../../include/ajax/events.php:1705
+#: ../../include/ajax/events.php:1673
 msgid "Related"
 msgstr "関連"
 
-#: ../../include/ajax/events.php:1717
+#: ../../include/ajax/events.php:1685
 msgid "Agent fields"
 msgstr "エージェントフィールド"
 
-#: ../../include/ajax/events.php:1855
+#: ../../include/ajax/events.php:1823
 msgid "Error adding comment"
 msgstr "コメント追加エラー"
 
-#: ../../include/ajax/events.php:1862
+#: ../../include/ajax/events.php:1830
 msgid "Comment added successfully"
 msgstr "コメントを追加しました"
 
-#: ../../include/ajax/events.php:1869
+#: ../../include/ajax/events.php:1837
 msgid "Error changing event status"
 msgstr "イベント状態変更エラー"
 
-#: ../../include/ajax/events.php:1876
+#: ../../include/ajax/events.php:1844
 msgid "Event status changed successfully"
 msgstr "イベントの状態を変更しました"
 
-#: ../../include/ajax/events.php:1883
+#: ../../include/ajax/events.php:1851
 msgid "Error changing event owner"
 msgstr "イベント所有者変更エラー"
 
-#: ../../include/ajax/events.php:1890
+#: ../../include/ajax/events.php:1858
 msgid "Event owner changed successfully"
 msgstr "イベントの所有者を変更しました"
 
-#: ../../include/ajax/events.php:1897
+#: ../../include/ajax/events.php:1865
 msgid "Error deleting event"
 msgstr "イベントの削除エラー"
 
-#: ../../include/ajax/events.php:2023
+#: ../../include/ajax/events.php:1991
 msgid "Show all Events 24h"
 msgstr "24h以内の全イベント表示"
 
-#: ../../include/ajax/events.php:2113
+#: ../../include/ajax/events.php:2085
 msgid "These commands will apply to all selected events"
 msgstr "これらのコマンドは、選択したすべてのイベントに適用されます。"
 
-#: ../../include/ajax/events.php:2175
+#: ../../include/ajax/events.php:2147
 msgid "Total number of events in this node reached"
 msgstr "このノードのイベントの総数に達しました"
 
-#: ../../include/ajax/events.php:2209
+#: ../../include/ajax/events.php:2181
 msgid "Total Events per node"
 msgstr "ノードごとの全イベント"
 
-#: ../../include/ajax/events.php:2263 ../../operation/events/events.php:1470
+#: ../../include/ajax/events.php:2235 ../../operation/events/events.php:1549
 msgid "Events list"
 msgstr "イベント一覧"
 
-#: ../../include/ajax/events.php:2274
+#: ../../include/ajax/events.php:2246
 msgid "Console configuration"
 msgstr "コンソール設定"
 
-#: ../../include/ajax/events.php:2281
+#: ../../include/ajax/events.php:2253
 msgid "Set condition"
 msgstr "状態設定"
 
-#: ../../include/ajax/events.php:2288 ../../operation/events/sound_events.php:192
+#: ../../include/ajax/events.php:2260 ../../operation/events/sound_events.php:192
 msgid "All new events"
 msgstr "全新規イベント"
 
-#: ../../include/ajax/events.php:2325 ../../operation/events/sound_events.php:229
-msgid "Time Sound"
-msgstr "タイムサウンド"
+#: ../../include/ajax/events.php:2297
+msgid "Sound duration"
+msgstr "音の長さ設定"
 
-#: ../../include/ajax/events.php:2356
+#: ../../include/ajax/events.php:2328
 msgid "Sound melody"
 msgstr "サウンドメロディ"
 
-#: ../../include/ajax/events.php:2370
+#: ../../include/ajax/events.php:2342
 msgid "Test sound"
 msgstr "サウンドテスト"
 
-#: ../../include/ajax/events.php:2394
+#: ../../include/ajax/events.php:2366
 msgid "Discovered alerts"
 msgstr "検出されたアラート"
 
-#: ../../include/ajax/events.php:2401
+#: ../../include/ajax/events.php:2373
 msgid "No alerts discovered"
 msgstr "アラートが検出されません"
 
-#: ../../include/ajax/events.php:2406
+#: ../../include/ajax/events.php:2378
 msgid "Congrats! there’s nothing to show"
 msgstr "おめでとうございます! 表示するものはありません"
 
@@ -42207,31 +43496,41 @@ msgid "Time container lapse"
 msgstr "時間コンテナの経過"
 
 #: ../../include/functions_agents.php:1009
-msgid "There was an error copying the agent configuration, the copy has been cancelled"
+msgid ""
+"There was an error copying the agent configuration, the copy has been cancelled"
 msgstr "エージェントの設定コピーに失敗しました。コピーを中止します。"
 
-#: ../../include/functions_agents.php:2966 ../../include/functions_agents.php:3005
+#: ../../include/functions_agents.php:2966
+#: ../../include/functions_agents.php:3005
 #: ../../include/functions_agents.php:3076
 msgid "No Monitors"
 msgstr "モニタ項目なし"
 
-#: ../../include/functions_agents.php:2974 ../../include/functions_agents.php:3029
-#: ../../include/functions_agents.php:3084 ../../include/functions_reporting.php:12606
+#: ../../include/functions_agents.php:2974
+#: ../../include/functions_agents.php:3029
+#: ../../include/functions_agents.php:3084
+#: ../../include/functions_reporting.php:12921
 msgid "At least one module in CRITICAL status"
 msgstr "一つ以上のモジュールが致命的な状態です。"
 
-#: ../../include/functions_agents.php:2980 ../../include/functions_agents.php:3039
-#: ../../include/functions_agents.php:3092 ../../include/functions_reporting.php:12613
+#: ../../include/functions_agents.php:2980
+#: ../../include/functions_agents.php:3039
+#: ../../include/functions_agents.php:3092
+#: ../../include/functions_reporting.php:12928
 msgid "At least one module in WARNING status"
 msgstr "一つ以上のモジュールが警告状態です。"
 
-#: ../../include/functions_agents.php:2986 ../../include/functions_agents.php:3049
-#: ../../include/functions_agents.php:3100 ../../include/functions_reporting.php:12620
+#: ../../include/functions_agents.php:2986
+#: ../../include/functions_agents.php:3049
+#: ../../include/functions_agents.php:3100
+#: ../../include/functions_reporting.php:12935
 msgid "At least one module is in UKNOWN status"
 msgstr "一つ以上のモジュールが不明な状態です。"
 
-#: ../../include/functions_agents.php:2992 ../../include/functions_agents.php:3059
-#: ../../include/functions_agents.php:3108 ../../include/functions_reporting.php:12627
+#: ../../include/functions_agents.php:2992
+#: ../../include/functions_agents.php:3059
+#: ../../include/functions_agents.php:3108
+#: ../../include/functions_reporting.php:12942
 msgid "All Monitors OK"
 msgstr "全モニタ項目が正常"
 
@@ -42239,10 +43538,19 @@ msgstr "全モニタ項目が正常"
 msgid "Alert fired on agent"
 msgstr "エージェントでアラート発報"
 
-#: ../../include/functions_agents.php:4010
+#: ../../include/functions_agents.php:4031
 msgid "Dialog response time"
 msgstr "ダイアログ応答時間"
 
+#: ../../include/functions_inventory.php:115
+#: ../../include/functions_inventory.php:868
+msgid "No changes found"
+msgstr "変更がありません"
+
+#: ../../include/functions_inventory.php:214
+msgid "Get CSV file"
+msgstr "CSV ファイルを取得"
+
 #: ../../include/functions_plugins.php:58
 #, php-format
 msgid "Failed to erase module %d: %s"
@@ -42275,10 +43583,11 @@ msgstr "チケット表示"
 
 #: ../../include/functions_integriaims.php:307
 msgid ""
-"API request failed. Please check Integria IMS' access credentials in Pandora setup."
+"API request failed. Please check Integria IMS' access credentials in Pandora "
+"setup."
 msgstr ""
-"API リクエストが失敗しました。 Pandora セットアップで Integria IMS のアクセス認証情報"
-"を確認してください。"
+"API リクエストが失敗しました。 Pandora セットアップで Integria IMS のアクセス認"
+"証情報を確認してください。"
 
 #: ../../include/functions_integriaims.php:557
 msgid "File successfully added"
@@ -42292,90 +43601,71 @@ msgstr "ファイルを追加できませんでした"
 msgid "File has an invalid extension"
 msgstr "ファイルの拡張子が不正です"
 
-#: ../../include/functions_modules.php:4053
+#: ../../include/functions_modules.php:4150
 msgid "Realtime SNMP graph"
 msgstr "リアルタイム SNMP グラフ"
 
-#: ../../include/functions_modules.php:4118
+#: ../../include/functions_modules.php:4215
 msgid "ALL"
 msgstr "すべて"
 
-#: ../../include/functions_modules.php:4134
+#: ../../include/functions_modules.php:4231
 msgid "NOT NORMAL"
 msgstr "非正常"
 
-#: ../../include/auth/mysql.php:319 ../../include/auth/mysql.php:347
-msgid "Problems with configuration permissions. Please contact with Administrator"
+#: ../../include/auth/mysql.php:305 ../../include/auth/mysql.php:333
+msgid ""
+"Problems with configuration permissions. Please contact with Administrator"
 msgstr "パーミッション設定に問題があります。管理者に連絡してください。"
 
-#: ../../include/auth/mysql.php:334 ../../include/auth/mysql.php:397
-#: ../../include/auth/mysql.php:412 ../../include/auth/mysql.php:443
+#: ../../include/auth/mysql.php:320 ../../include/auth/mysql.php:383
+#: ../../include/auth/mysql.php:398 ../../include/auth/mysql.php:429
 msgid "User not found in database or incorrect password"
 msgstr "データベース上にユーザが存在しないかパスワードが不正です"
 
-#: ../../include/auth/mysql.php:360
+#: ../../include/auth/mysql.php:346
 msgid ""
-"Ooops User not found in \n"
+"Ooops User not found in\n"
 "\t\t\t\tdatabase or incorrect password"
 msgstr ""
 "データベースにユーザがいないか\n"
 "\t\t\t\tパスワードが不正です。"
 
-#: ../../include/auth/mysql.php:718
+#: ../../include/auth/mysql.php:769
 msgid "Could not changes password on remote pandora"
 msgstr "リモートの pandora のパスワードを変更できません"
 
-#: ../../include/auth/mysql.php:766
+#: ../../include/auth/mysql.php:854
 msgid "Your installation of PHP does not support LDAP"
 msgstr "インストールされている PHP が LDAP に対応していません"
 
-#: ../../include/api.php:237
+#: ../../include/api.php:257
 msgid "User or group not specified"
 msgstr "ユーザまたはグループが指定されていません"
 
-#: ../../include/api.php:238
+#: ../../include/api.php:258
 msgid "User, group not specified"
 msgstr "ユーザ、グループが指定されていません"
 
-#: ../../include/api.php:269
+#: ../../include/api.php:289
 msgid "User, group or profile not specified"
 msgstr "ユーザ、グループまたは、プロファイルが指定されていません"
 
-#: ../../include/api.php:270
+#: ../../include/api.php:290
 msgid "User, group or profile status not specified"
 msgstr "ユーザ、グループまたは、プロファイルの状態が指定されていません"
 
-#: ../../include/functions_graph.php:1089 ../../include/functions_reporting.php:4665
-#: ../../include/functions_reporting.php:4708
-msgid "No data to display within the selected interval"
-msgstr "選択した期間では表示するデータがありません"
-
-#: ../../include/functions_graph.php:2635
+#: ../../include/functions_graph.php:2608
 msgid "Not fired alerts"
 msgstr "未発報アラート"
 
-#: ../../include/functions_graph.php:2654 ../../include/functions_graph.php:2790
-#: ../../include/functions_graph.php:2888 ../../include/functions_graph.php:3858
-#: ../../include/functions_reporting.php:1931 ../../include/functions_reporting.php:2186
-#: ../../include/functions_reporting.php:2201 ../../include/functions_reporting.php:2229
-#: ../../include/functions_reporting.php:2261 ../../include/functions_reporting.php:3820
-#: ../../include/functions_reporting.php:4188 ../../include/functions_reporting.php:4216
-#: ../../include/functions_reporting.php:4248 ../../include/functions_reporting.php:5221
-#: ../../include/functions_reporting.php:10852
-#: ../../include/functions_reporting.php:10880
-#: ../../include/functions_reporting.php:10912
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:514
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:479
-msgid "other"
-msgstr "その他"
-
-#: ../../include/functions_graph.php:3395 ../../include/functions_ui.php:3815
-#: ../../include/functions_events.php:108 ../../include/functions_events.php:2742
-#: ../../operation/events/events.php:608
+#: ../../include/functions_graph.php:3236 ../../include/functions_ui.php:3837
+#: ../../include/functions_events.php:108 ../../include/functions_events.php:2805
+#: ../../operation/events/events.php:668
 msgid "SYSTEM"
 msgstr "システム"
 
-#: ../../include/functions_graph.php:5459
+#: ../../include/functions_graph.php:5251
 msgid "Main node"
 msgstr "メインノード"
 
@@ -42400,7 +43690,8 @@ msgstr "アラートの読み込みで問題が発生しました。"
 msgid "Go to alerts edition"
 msgstr "アラートの編集へ行く"
 
-#: ../../include/functions_treeview.php:564 ../../operation/agentes/agent_fields.php:24
+#: ../../include/functions_treeview.php:564
+#: ../../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"
@@ -42415,43 +43706,43 @@ msgstr "他のIPアドレス"
 msgid "Next agent contact"
 msgstr "次の接続予定"
 
-#: ../../include/functions_treeview.php:703
-msgid "Edit cluster"
-msgstr "クラスタ編集"
+#: ../../include/functions_treeview.php:697
+msgid "Go to cluster edition"
+msgstr "クラスタ編集へ行く"
 
-#: ../../include/functions_treeview.php:707
+#: ../../include/functions_treeview.php:700
 msgid "Go to agent edition"
 msgstr "エージェントの編集へ行く"
 
-#: ../../include/functions_treeview.php:719
+#: ../../include/functions_treeview.php:712
 msgid "Agent data"
 msgstr "エージェントデータ"
 
-#: ../../include/functions_treeview.php:750
+#: ../../include/functions_treeview.php:743
 #: ../../operation/agentes/estado_generalagente.php:471
 msgid "Position (Long, Lat)"
 msgstr "位置 (経度、緯度)"
 
-#: ../../include/functions_treeview.php:767
+#: ../../include/functions_treeview.php:760
 #: ../../operation/agentes/estado_generalagente.php:513
 msgid "Timezone Offset"
 msgstr "タイムゾーンオフセット"
 
-#: ../../include/functions_treeview.php:799
+#: ../../include/functions_treeview.php:792
 msgid "Advanced information"
 msgstr "拡張情報"
 
-#: ../../include/functions_treeview.php:812
+#: ../../include/functions_treeview.php:805
 msgid "Agent access rate (24h)"
 msgstr "エージェントアクセス頻度(過去24時間)"
 
-#: ../../include/functions_treeview.php:878
-#: ../../operation/agentes/pandora_networkmap.view.php:1234
-#: ../../operation/agentes/estado_generalagente.php:720
+#: ../../include/functions_treeview.php:871
+#: ../../operation/agentes/pandora_networkmap.view.php:1277
+#: ../../operation/agentes/estado_generalagente.php:735
 msgid "Interface traffic"
 msgstr "インタフェーストラフィック"
 
-#: ../../include/functions_treeview.php:901
+#: ../../include/functions_treeview.php:894
 msgid "Interface information"
 msgstr "インタフェース情報"
 
@@ -42539,14 +43830,10 @@ msgstr "コマンド管理"
 msgid "Manage export targets"
 msgstr "エクスポートターゲット管理"
 
-#: ../../include/functions_menu.php:525 ../../operation/menu.php:138
+#: ../../include/functions_menu.php:525 ../../operation/menu.php:142
 msgid "SNMP trap generator"
 msgstr "SNMPトラップジェネレータ"
 
-#: ../../include/functions_menu.php:526 ../../operation/menu.php:127
-msgid "SNMP console"
-msgstr "SNMPコンソール"
-
 #: ../../include/functions_menu.php:528
 msgid "Manage incident"
 msgstr "インシデント管理"
@@ -42559,45 +43846,100 @@ msgstr "グループ管理"
 msgid "Administration"
 msgstr "システム管理"
 
-#: ../../include/functions_incidents.php:29 ../../include/functions_incidents.php:55
+#: ../../include/functions_menu.php:817 ../../include/functions_ui.php:287
+msgid "Information"
+msgstr "情報"
+
+#: ../../include/functions_menu.php:819 ../../include/functions_menu.php:961
+#: ../../include/class/Diagnostics.class.php:243
+msgid "System Info"
+msgstr "システム情報"
+
+#: ../../include/functions_menu.php:820
+msgid "PHP System"
+msgstr "PHP システム"
+
+#: ../../include/functions_menu.php:835
+msgid "MR version"
+msgstr "MR バージョン"
+
+#: ../../include/functions_menu.php:841
+msgid "Update manager"
+msgstr "アップデートマネージャ"
+
+#: ../../include/functions_menu.php:842
+msgid "System report"
+msgstr "システムレポート"
+
+#: ../../include/functions_menu.php:858
+#: ../../include/class/Diagnostics.class.php:235
+msgid "Database health status"
+msgstr "データベースの正常性状態"
+
+#: ../../include/functions_menu.php:888
+#: ../../include/class/Diagnostics.class.php:239
+msgid "Database status info"
+msgstr "データベースステータス情報"
+
+#: ../../include/functions_menu.php:926
+#: ../../include/class/Diagnostics.class.php:252
+#, php-format
+msgid "Tables fragmentation in the %s database"
+msgstr "%s データベースにおけるテーブルのフラグメンテーション"
+
+#: ../../include/functions_menu.php:1012
+msgid "PHP system"
+msgstr "PHP システム"
+
+#: ../../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_incidents.php:30
+#: ../../include/functions_incidents.php:59
 #: ../../include/functions_netflow.php:1845
 msgid "Low"
 msgstr "低い"
 
-#: ../../include/functions_incidents.php:31 ../../include/functions_incidents.php:63
+#: ../../include/functions_incidents.php:31
+#: ../../include/functions_incidents.php:63
 #: ../../include/functions_netflow.php:1846
 msgid "Medium"
 msgstr "中くらい"
 
-#: ../../include/functions_incidents.php:32 ../../include/functions_incidents.php:67
+#: ../../include/functions_incidents.php:32
+#: ../../include/functions_incidents.php:67
 msgid "Serious"
 msgstr "深刻"
 
-#: ../../include/functions_incidents.php:33 ../../include/functions_incidents.php:71
+#: ../../include/functions_incidents.php:33
+#: ../../include/functions_incidents.php:71
 msgid "Very serious"
 msgstr "とても深刻"
 
-#: ../../include/functions_incidents.php:95 ../../include/functions_incidents.php:116
+#: ../../include/functions_incidents.php:95
+#: ../../include/functions_incidents.php:116
 msgid "Active incidents"
 msgstr "アクティブ"
 
-#: ../../include/functions_incidents.php:96 ../../include/functions_incidents.php:120
+#: ../../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
+#: ../../include/functions_incidents.php:97
+#: ../../include/functions_incidents.php:124
 msgid "Rejected incidents"
 msgstr "却下"
 
-#: ../../include/functions_incidents.php:98 ../../include/functions_incidents.php:128
+#: ../../include/functions_incidents.php:98
+#: ../../include/functions_incidents.php:128
 msgid "Expired incidents"
 msgstr "期限切れ"
 
-#: ../../include/functions_incidents.php:99 ../../include/functions_incidents.php:132
+#: ../../include/functions_incidents.php:99
+#: ../../include/functions_incidents.php:132
 msgid "Closed incidents"
 msgstr "終了"
 
@@ -42607,11 +43949,12 @@ msgstr "トポロジグループ"
 
 #: ../../include/help/clippy/topology_group.php:35
 msgid ""
-"Please note that group topology maps do not show the parent relationship between "
-"nodes, it only shows the group parentship and the agent distribution inside them. "
+"Please note that group topology maps do not show the parent relationship "
+"between nodes, it only shows the group parentship and the agent distribution "
+"inside them. "
 msgstr ""
-"グループトポロジマップはノード間の親子関係を表示しないことに注意してください。グループ"
-"の親子関係とその中にあるエージェントのみを表示します。 "
+"グループトポロジマップはノード間の親子関係を表示しないことに注意してください。"
+"グループの親子関係とその中にあるエージェントのみを表示します。 "
 
 #: ../../include/help/clippy/homepage.php:75
 msgid "Hi, can I help you?"
@@ -42620,12 +43963,13 @@ 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."
+"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 で基本的なタスクを実行するか、私を閉じて次からは私に会わないようにすること"
-"ができます。"
+"私の自己紹介をさせてください。私は %s の迷惑なアシスタント、パンドリンです。 私"
+"の手順に従って %s で基本的なタスクを実行するか、私を閉じて次からは私に会わない"
+"ようにすることができます。"
 
 #: ../../include/help/clippy/homepage.php:75
 msgid "Close this wizard and don't open it again."
@@ -42646,7 +43990,8 @@ msgstr "障害モジュールで email によるアラートを作成します
 
 #: ../../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."
+msgid ""
+"The first thing you have to do is to setup the e-mail config on the %s Server."
 msgstr "最初に実行すべきは、%s サーバでの e-mail 設定です。"
 
 #: ../../include/help/clippy/homepage.php:190
@@ -42663,71 +44008,77 @@ 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."
+"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."
+"Please note that you have your agent setup to do not add new modules coming "
+"from the data XML."
 msgstr ""
-"エージェント設定で、XML で送られてくる新たなモジュールが追加されないようになっているこ"
-"とに注意してください。"
+"エージェント設定で、XML で送られてくる新たなモジュールが追加されないようになっ"
+"ていることに注意してください。"
 
 #: ../../include/help/clippy/modules_not_learning_mode.php:46
 msgid ""
 "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)."
+"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 で送られます)。"
+"ローカルプラグインがあるかまたは、手動で新たなモジュールを設定ファイルに追加し"
+"た場合は、インタフェースで手動作成するまでエージェントに反映されないということ"
+"を意味します(正しい名前とタイプは XML で送られます)。"
 
 #: ../../include/help/clippy/modules_not_learning_mode.php:46
 msgid ""
-"You should use the \"normal\" mode (non learn) only when you don't intend to add more "
-"modules to the agent."
+"You should use the \"normal\" mode (non learn) only when you don't intend to "
+"add more modules to the agent."
 msgstr ""
-"エージェントにモジュールを追加したくない時のみ、\"通常\"モード(学習しない)を使います。"
+"エージェントにモジュールを追加したくない時のみ、\"通常\"モード(学習しない)を使"
+"います。"
 
 #: ../../include/help/clippy/operation_agentes_ver_agente.php:35
 msgid ""
-"The last step is to check the alert created. Click on the round icon to force the "
-"action execution and after a few minutes you will receive the alert in your email."
+"The 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 サーバを再起動します。"
+msgid ""
+"And restart your pandora server to read again general configuration tokens."
+msgstr ""
+"そして、設定ファイルを再読み込みするために pandora サーバを再起動します。"
 
 #: ../../include/help/clippy/godmode_alerts_alert_actions.php:35
 msgid ""
-"Let me show you how to create an email action: Click on Create button and fill the "
-"form showed in the following screen."
+"Let me show you how to create an email action: Click on Create button and fill "
+"the form showed in the following screen."
 msgstr ""
-"email アクションの作成方法をお見せします。作成ボタンをクリックし次の画面に表示される"
-"フォームに入力します。"
+"email アクションの作成方法をお見せします。作成ボタンをクリックし次の画面に表示"
+"されるフォームに入力します。"
 
 #: ../../include/help/clippy/godmode_alerts_alert_actions.php:49
 msgid ""
-"Now, you have to go to the monitors list and look for a critical module to apply the "
-"alert."
+"Now, you have to go to the monitors list and look for a critical module to "
+"apply the alert."
 msgstr "ここで、監視一覧へ行き、アラートを適用する障害モジュールを探します。"
 
 #: ../../include/help/clippy/godmode_alerts_alert_actions.php:54
 msgid ""
-"Click on the arrow to drop down the Monitoring submenu and select Monitor Detail."
+"Click on the arrow to drop down the Monitoring submenu and select Monitor "
+"Detail."
 msgstr ""
-"モニタリングサブメニューをドロップダウンするために矢印をクリックしてモニタ詳細を選択し"
-"ます。"
+"モニタリングサブメニューをドロップダウンするために矢印をクリックしてモニタ詳細"
+"を選択します。"
 
 #: ../../include/help/clippy/agent_out_of_limits.php:35
 msgid "Agent contact date passed it's ETA!."
@@ -42735,11 +44086,13 @@ 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."
+"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."
@@ -42767,18 +44120,18 @@ 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."
+"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時間以上(実行や設定に問題がある等で)未初期化"
-"モジュールが放置された場合は、システムにより自動的に削除されます。未初期化モジュール"
-"は、メインがメインに表示されません。エージェント管理のモジュール管理画面でのみ参照や編"
-"集ができます。"
+"モジュール作成後、最初の実行がされていない場合にこれが発生します。通常は数秒で"
+"初期化されメイン画面で参照できるようになります。24時間以上(実行や設定に問題があ"
+"る等で)未初期化モジュールが放置された場合は、システムにより自動的に削除されま"
+"す。未初期化モジュールは、メインがメインに表示されません。エージェント管理のモ"
+"ジュール管理画面でのみ参照や編集ができます。"
 
 #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34
 msgid "Fill the name of your action."
@@ -42786,43 +44139,46 @@ 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)."
+"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フィルタ(アラート作成のためにこのグループのユーザが"
-"あなたのアクションを利用できます)を選択してください。"
+"ドロップダウンリストのグループと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."
+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."
+"In the first field enter the email address/addresses where you want to receive "
+"the email alerts separated with comas ( , ) or white spaces."
 msgstr ""
-"最初のフィールドにメールでアラートを受け取りたい email アドレスを入力してください。カ"
-"ンマ(,)またはスペース区切りで複数指定できます。"
+"最初のフィールドにメールでアラートを受け取りたい email アドレスを入力してくださ"
+"い。カンマ(,)またはスペース区切りで複数指定できます。"
 
 #: ../../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."
+"In the \"Subject\"  field  you can use the macros _agent_ or _module_ for each "
+"name."
 msgstr ""
-"\"Subject\" フィールドでは、それぞれの名前を表す _agent_ または _module_ マクロが利用"
-"できます。"
+"\"Subject\" フィールドでは、それぞれの名前を表す _agent_ または _module_ マクロ"
+"が利用できます。"
 
 #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61
 msgid ""
-"In the text field, you can also use macros. Get more information about the macros by "
-"clicking on the help icon."
+"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."
@@ -42834,25 +44190,27 @@ 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."
+"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 データとの間で影響が"
-"あるということに注意してください。エージェントから送られてくるデータや設定のうち、デー"
-"タおよび説明以外、たとえば障害や警告の閾値、モジュールグループ、最小・最大の値、タグな"
-"どは、コンソールに設定されているものが優先されます。"
+"ここに表示される情報は、エージェントが情報を収集し送ってくる 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."
+"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."
@@ -42865,7 +44223,8 @@ 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."
@@ -42877,7 +44236,8 @@ msgstr "そしてボタンをクリックします。"
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75
 msgid "Now you must create the module. Don't worry, i'll teach you ."
-msgstr "ここでモジュールを作成する必要があります。心配はいりません。お教えします。"
+msgstr ""
+"ここでモジュールを作成する必要があります。心配はいりません。お教えします。"
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79
 msgid "Now we are going to fill the form."
@@ -42905,14 +44265,15 @@ msgstr "そしてこのボタンをクリックするだけで終了です。"
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114
 msgid ""
-"Congrats! Your module has been created. 
and the status color is blue.
That color means that the module hasn't been executed for the first time. In " -"the next seconds, if there is no problem, the status color will turn into red " -"or green." +"Congrats! Your module has been created.
and the status color is blue." +"
That color means that the module hasn't been executed for the first " +"time. In the next seconds, if there is no problem, the status color will turn " +"into red or green." msgstr "" -"おめでとうございます! モジュールが作成されました。
そして、状態の色は で" -"す。
この色は、モジュールの初回実行が完了していないことを意味しています。問題が" -"なければ数秒のうちに状態の色がまたはに変わります。" +"おめでとうございます! モジュールが作成されました。
そして、状態の色は " +"青です。
この色は、モジュールの初回実行が完了していないことを意味して" +"います。問題がなければ数秒のうちに状態の色がまたはに変わりま" +"す。" #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 msgid "Click on alerts tab and then fill the form to add an alert." @@ -42936,8 +44297,10 @@ 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 "作成したアラートのテストをするには、メイン画面へ行き目のタブをクリックします。" +"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." @@ -42945,15 +44308,15 @@ msgstr "実行キュー" #: ../../include/help/clippy/server_queued_modules.php:35 msgid "" -"You have too much items in the processing queue. This can happen if your server is " -"too loaded and/or not properly configured. This could be something temporal, or a " -"bottleneck. One possible solution is increase number of server threads, but you " -"should consider getting support about this." +"You have too much items in the processing queue. This can happen if your " +"server is too loaded and/or not properly configured. This could be something " +"temporal, or a bottleneck. One possible solution is increase number of server " +"threads, but you should consider getting support about this." msgstr "" -"キューにたくさんの処理が溜まっています。サーバに多くの処理を定義しすぎているか、または" -"サーバが正しく設定されていません。これは一時的なものかもしれませんが、ボトルネックにな" -"ります。一つの解決策としてはサーバのスレッド数を増やすことです。しかし、これについては" -"支援を得ることを考慮した方がよいでしょう。" +"キューにたくさんの処理が溜まっています。サーバに多くの処理を定義しすぎている" +"か、またはサーバが正しく設定されていません。これは一時的なものかもしれません" +"が、ボトルネックになります。一つの解決策としてはサーバのスレッド数を増やすこと" +"です。しかし、これについては支援を得ることを考慮した方がよいでしょう。" #: ../../include/help/clippy/servers_down.php:35 msgid "All servers down" @@ -42961,11 +44324,12 @@ 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." +"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 "" -"サーバを起動してください。コマンドラインから、\"sudo /etc/init.d/pandora_server " -"restart\" を実行します。root のパスワードが必要です。" +"サーバを起動してください。コマンドラインから、\"sudo /etc/init.d/" +"pandora_server restart\" を実行します。root のパスワードが必要です。" #: ../../include/help/clippy/interval_agent_min.php:35 msgid "Interval Agent." @@ -42973,42 +44337,47 @@ 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." +"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秒未満にすることはお勧めしないということに注意してくださ" -"い。これは、サーバのパフォーマンスに重大な影響を及ぼします。例えば、1分間隔で 200エー" -"ジェントがある場合は、5分間隔で 1000エージェントがあるのと同じです。おそらく短時間の応" -"答が必要になるため、不明モジュールが多くなりサーバへのインパクトは大きくなるでしょう。" +"エージェントの監視間隔を 300秒未満にすることはお勧めしないということに注意して" +"ください。これは、サーバのパフォーマンスに重大な影響を及ぼします。例えば、1分間" +"隔で 200エージェントがある場合は、5分間隔で 1000エージェントがあるのと同じで" +"す。おそらく短時間の応答が必要になるため、不明モジュールが多くなりサーバへのイ" +"ンパクトは大きくなるでしょう。" #: ../../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." +"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." +"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." +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:" @@ -43018,8 +44387,9 @@ msgstr "タスクメールの設定は、Enterprise 設定にあります:" msgid "Please check if the email configuration is correct." msgstr "メール設定が正しいか確認してください。" -#: ../../include/functions_profile.php:188 ../../operation/users/user_edit.php:814 -#: ../../operation/users/user_edit.php:823 +#: ../../include/functions_profile.php:188 +#: ../../operation/users/user_edit.php:886 +#: ../../operation/users/user_edit.php:895 msgid "Profiles/Groups assigned to this user" msgstr "このユーザに割り当てるプロファイル/グループの組み合わせ" @@ -43039,10 +44409,6 @@ msgstr "上位の TCP プロトコル" msgid "Top UDP protocols" msgstr "上位の UDP プロトコル" -#: ../../include/functions_ui.php:287 -msgid "Information" -msgstr "情報" - #: ../../include/functions_ui.php:465 msgid "Request successfully processed" msgstr "要求された処理を実行しました。" @@ -43053,7 +44419,8 @@ msgstr "要求された処理の実行に失敗しました。" #: ../../include/functions_ui.php:625 msgid "" -"Is possible that this view uses part of information which your user has not access" +"Is possible that this view uses part of information which your user has not " +"access" msgstr "あなたのユーザでアクセスできない情報の一部を利用している可能性があります" #: ../../include/functions_ui.php:874 @@ -43062,17 +44429,19 @@ msgstr "ソフトウェア" #: ../../include/functions_ui.php:1361 msgid "The alert would fire when the value is over " -msgstr "取得した値が 以上になったら、アラートを発生させます。" +msgstr "" +"取得した値が 以上になったら、アラートを発生させます。" #: ../../include/functions_ui.php:1366 msgid "The alert would fire when the value is under " -msgstr "取得した値が 未満になったら、アラートを発生させます。" +msgstr "" +"取得した値が 未満になったら、アラートを発生させます。" #: ../../include/functions_ui.php:1381 msgid "Unknown option." msgstr "不明なオプション。" -#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2410 +#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2470 msgid "the Flexible Monitoring System" msgstr "the Flexible Monitoring System" @@ -43081,88 +44450,88 @@ msgstr "the Flexible Monitoring System" msgid "Total items: %s" msgstr "全アイテム数: %s" -#: ../../include/functions_ui.php:2540 +#: ../../include/functions_ui.php:2544 msgid "Unknown type" msgstr "不明なタイプ" -#: ../../include/functions_ui.php:3443 +#: ../../include/functions_ui.php:3447 msgid "No matching records found" msgstr "マッチするレコードが見つかりません" -#: ../../include/functions_ui.php:3444 +#: ../../include/functions_ui.php:3448 msgid "No data available in table" msgstr "テーブルにデータがありません" -#: ../../include/functions_ui.php:3536 ../../include/functions_ui.php:3537 +#: ../../include/functions_ui.php:3543 ../../include/functions_ui.php:3544 msgid "Export current page to CSV" msgstr "現在のページを CSV へエクスポート" -#: ../../include/functions_ui.php:3806 ../../include/functions_events.php:75 -#: ../../include/functions_events.php:101 ../../operation/events/events.php:599 -#: ../../operation/events/events.php:663 +#: ../../include/functions_ui.php:3828 ../../include/functions_events.php:75 +#: ../../include/functions_events.php:101 ../../operation/events/events.php:659 +#: ../../operation/events/events.php:723 msgid "ALERT" msgstr "アラート" -#: ../../include/functions_ui.php:3884 ../../include/functions_events.php:167 -#: ../../operation/events/events.php:523 +#: ../../include/functions_ui.php:3906 ../../include/functions_events.php:167 +#: ../../operation/events/events.php:583 msgid "MAINTENANCE" msgstr "メンテナンス" -#: ../../include/functions_ui.php:3889 ../../include/functions_events.php:170 -#: ../../operation/events/events.php:528 +#: ../../include/functions_ui.php:3911 ../../include/functions_events.php:170 +#: ../../operation/events/events.php:588 msgid "INFORMATIONAL" msgstr "情報" -#: ../../include/functions_ui.php:3909 ../../include/functions_events.php:176 -#: ../../operation/events/events.php:538 +#: ../../include/functions_ui.php:3931 ../../include/functions_events.php:176 +#: ../../operation/events/events.php:598 msgid "MINOR" msgstr "マイナー" -#: ../../include/functions_ui.php:3914 ../../include/functions_events.php:173 -#: ../../operation/events/events.php:533 +#: ../../include/functions_ui.php:3936 ../../include/functions_events.php:173 +#: ../../operation/events/events.php:593 msgid "MAJOR" msgstr "メジャー" -#: ../../include/functions_ui.php:4728 ../../include/functions_html.php:930 -#: ../../include/functions_html.php:3399 ../../include/functions_html.php:3891 -#: ../../include/functions_reporting.php:11657 -#: ../../include/functions_reporting.php:11814 -#: ../../include/functions_reporting.php:11828 -#: ../../include/functions_reporting.php:14167 -#: ../../include/functions_reporting.php:14242 +#: ../../include/functions_ui.php:4755 ../../include/functions_html.php:930 +#: ../../include/functions_html.php:3392 ../../include/functions_html.php:3884 +#: ../../include/functions_reporting.php:11972 +#: ../../include/functions_reporting.php:12129 +#: ../../include/functions_reporting.php:12143 +#: ../../include/functions_reporting.php:14482 +#: ../../include/functions_reporting.php:14557 msgid "Enterprise version not installed" msgstr "Enterprise 版がインストールされていません" -#: ../../include/functions_ui.php:5110 +#: ../../include/functions_ui.php:5137 msgid "Type at least two characters to search." msgstr "2文字以上入力するとマッチするエージェント名が検索されます" -#: ../../include/functions_ui.php:6049 +#: ../../include/functions_ui.php:6076 msgid "Unhandled error" msgstr "処理できないエラー" -#: ../../include/functions_ui.php:6050 +#: ../../include/functions_ui.php:6077 msgid "An unhandled error occurs" msgstr "処理できないエラーが発生しました" -#: ../../include/functions_ui.php:6321 +#: ../../include/functions_ui.php:6348 #, php-format msgid "" -"These controls are using the timezone of the system (%s) instead of yours (%s). The " -"difference with your time zone in hours is %s." +"These controls are using the timezone of the system (%s) instead of yours " +"(%s). The difference with your time zone in hours is %s." msgstr "" -"これらのコントロールは、システムのタイムゾーン(%s)を利用します。ユーザのタイムゾーン" -"(%s)ではありません。ユーザのタイムゾーンとの違いは %s です。" +"これらのコントロールは、システムのタイムゾーン(%s)を利用します。ユーザのタイム" +"ゾーン(%s)ではありません。ユーザのタイムゾーンとの違いは %s です。" -#: ../../include/functions_ui.php:6642 +#: ../../include/functions_ui.php:6684 msgid "Execute query" msgstr "クエリの実行" -#: ../../include/functions_ui.php:6664 +#: ../../include/functions_ui.php:6706 msgid "Results" msgstr "結果" -#: ../../include/functions_ui.php:6728 +#: ../../include/functions_ui.php:6770 msgid "Show password" msgstr "パスワードを表示" @@ -43173,37 +44542,32 @@ msgstr "パスワードを表示" msgid "Last value: " msgstr "最新の値: " -#: ../../include/functions_visual_map.php:2632 +#: ../../include/functions_visual_map.php:2634 msgid "Agent successfully added to layout" msgstr "エージェントが追加されました。" -#: ../../include/functions_visual_map.php:2824 +#: ../../include/functions_visual_map.php:2826 msgid "Modules successfully added to layout" msgstr "モジュールが追加されました。" -#: ../../include/functions_visual_map.php:3157 +#: ../../include/functions_visual_map.php:3108 msgid "Agents successfully added to layout" msgstr "レイアウトにエージェントを追加しました" -#: ../../include/functions_visual_map.php:3553 +#: ../../include/functions_visual_map.php:3504 msgid "Cannot load the visualmap" msgstr "ビジュアルマップを読み込めません" -#: ../../include/functions_visual_map.php:4222 -#: ../../include/rest-api/models/VisualConsole/Item.php:2107 +#: ../../include/functions_visual_map.php:4175 +#: ../../include/rest-api/models/VisualConsole/Item.php:2108 msgid "Bars graph" msgstr "棒グラフ" -#: ../../include/functions_visual_map.php:4232 -#: ../../include/rest-api/models/VisualConsole/Item.php:2115 +#: ../../include/functions_visual_map.php:4185 +#: ../../include/rest-api/models/VisualConsole/Item.php:2116 msgid "Percentile bar" msgstr "パーセント(バー)" -#: ../../include/functions_visual_map.php:4237 -#: ../../include/rest-api/models/VisualConsole/Item.php:2123 -msgid "Circular progress bar" -msgstr "円形進捗バー" - #: ../../include/functions_clippy.php:152 #, php-format msgid "%s assistant" @@ -43245,11 +44609,11 @@ msgstr "変化発生" msgid "Not normal status" msgstr "非正常状態" -#: ../../include/functions_alerts.php:1685 +#: ../../include/functions_alerts.php:1688 msgid "No actions defined" msgstr "アクションが定義されていません" -#: ../../include/functions_alerts.php:2658 +#: ../../include/functions_alerts.php:2665 msgid "Alert and command group does not match" msgstr "アラートとコマンドグループが一致しません" @@ -43346,26 +44710,30 @@ msgstr "Enterprise 文字列/IP でのグループ" msgid "Error connecting to database %s at %s." msgstr "データベース %s@%s への接続エラー。" -#: ../../include/functions_db.php:1900 +#: ../../include/functions_db.php:1941 msgid "Database debug" msgstr "DBのデバッグ" -#: ../../include/functions_db.php:1917 +#: ../../include/functions_db.php:1958 msgid "SQL sentence" msgstr "SQL 構文" -#: ../../include/functions_db.php:1919 +#: ../../include/functions_db.php:1960 msgid "Rows" msgstr "行" -#: ../../include/functions_db.php:1920 +#: ../../include/functions_db.php:1961 msgid "Saved" msgstr "保存" -#: ../../include/functions_db.php:1921 +#: ../../include/functions_db.php:1962 msgid "Time (ms)" msgstr "時間 (ミリ秒)" +#: ../../include/functions_users.php:916 +msgid "NONE" +msgstr "なし" + #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438 msgid "Add new range" msgstr "新しい範囲を追加" @@ -43375,24 +44743,24 @@ msgid "Current ranges" msgstr "現在の範囲" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:217 -#: ../../include/rest-api/models/VisualConsole/Item.php:1994 +#: ../../include/rest-api/models/VisualConsole/Item.php:1995 msgid "width" msgstr "幅" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:227 -#: ../../include/rest-api/models/VisualConsole/Item.php:2004 +#: ../../include/rest-api/models/VisualConsole/Item.php:2005 msgid "height" msgstr "高さ" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:249 -#: ../../include/rest-api/models/VisualConsole/Item.php:2026 +#: ../../include/rest-api/models/VisualConsole/Item.php:2027 msgid "X" msgstr "X" #: ../../include/rest-api/models/VisualConsole/Items/Box.php:273 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:499 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950 -#: ../../include/rest-api/models/VisualConsole/Item.php:2063 +#: ../../include/rest-api/models/VisualConsole/Item.php:2064 msgid "Show on top" msgstr "上に表示" @@ -43416,20 +44784,20 @@ msgstr "最新の値を表示" msgid "Avg Value" msgstr "平均値" -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:390 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:648 msgid "Graph Type" msgstr "グラフタイプ" -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:275 msgid "12h" msgstr "12時間" -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:295 msgid "Legend color" msgstr "凡例の色" -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:662 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:376 #: ../../include/lib/Dashboard/Widgets/single_graph.php:336 msgid "Show legend" @@ -43438,8 +44806,8 @@ msgstr "凡例を表示" #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280 -#: ../../include/rest-api/models/VisualConsole/View.php:712 -#: ../../include/rest-api/models/VisualConsole/View.php:791 +#: ../../include/rest-api/models/VisualConsole/View.php:713 +#: ../../include/rest-api/models/VisualConsole/View.php:792 msgid "Failed to connect to node" msgstr "ノードへの接続に失敗しました" @@ -43470,111 +44838,117 @@ msgstr "アイテムタイプが不正です [" msgid "Item type has no getFormInputs method [" msgstr "アイテムタイプに getFormInputs メソッドがありません [" -#: ../../include/rest-api/models/VisualConsole/View.php:729 +#: ../../include/rest-api/models/VisualConsole/View.php:730 msgid "NetworkLink from" msgstr "次からのネットワークリンク" -#: ../../include/rest-api/models/VisualConsole/View.php:733 -#: ../../include/rest-api/models/VisualConsole/View.php:812 +#: ../../include/rest-api/models/VisualConsole/View.php:734 +#: ../../include/rest-api/models/VisualConsole/View.php:813 #, php-format msgid "Interface %s status" msgstr "インタフェース %s の状態" -#: ../../include/rest-api/models/VisualConsole/View.php:738 -#: ../../include/rest-api/models/VisualConsole/View.php:817 +#: ../../include/rest-api/models/VisualConsole/View.php:739 +#: ../../include/rest-api/models/VisualConsole/View.php:818 #: ../../operation/agentes/interface_traffic_graph_win.php:78 msgid "In" msgstr "入力" -#: ../../include/rest-api/models/VisualConsole/View.php:739 -#: ../../include/rest-api/models/VisualConsole/View.php:818 +#: ../../include/rest-api/models/VisualConsole/View.php:740 +#: ../../include/rest-api/models/VisualConsole/View.php:819 #: ../../operation/agentes/interface_traffic_graph_win.php:79 msgid "Out" msgstr "出力" -#: ../../include/rest-api/models/VisualConsole/View.php:808 +#: ../../include/rest-api/models/VisualConsole/View.php:809 msgid "NetworkLink to" msgstr "次へのネットワークリンク" -#: ../../include/rest-api/models/VisualConsole/View.php:860 +#: ../../include/rest-api/models/VisualConsole/View.php:861 #, php-format msgid "Failed to generate charts: %s" msgstr "グラフ生成に失敗しました: %s" -#: ../../include/rest-api/models/VisualConsole/Item.php:1964 +#: ../../include/rest-api/models/VisualConsole/Item.php:1965 msgid "Label position" msgstr "ラベルの位置" -#: ../../include/rest-api/models/VisualConsole/Item.php:2051 +#: ../../include/rest-api/models/VisualConsole/Item.php:2052 msgid "Link enabled" msgstr "リンクが有効" -#: ../../include/rest-api/models/VisualConsole/Item.php:2093 +#: ../../include/rest-api/models/VisualConsole/Item.php:2094 msgid "Static graph" msgstr "状態を表すアイコン" -#: ../../include/rest-api/models/VisualConsole/Item.php:2111 +#: ../../include/rest-api/models/VisualConsole/Item.php:2112 msgid "Event History Graph" msgstr "イベント履歴グラフ" -#: ../../include/rest-api/models/VisualConsole/Item.php:2119 +#: ../../include/rest-api/models/VisualConsole/Item.php:2120 msgid "Percentile bubble" msgstr "パーセンタイルバブル" -#: ../../include/rest-api/models/VisualConsole/Item.php:2584 -#: ../../include/rest-api/models/VisualConsole/Item.php:2585 +#: ../../include/rest-api/models/VisualConsole/Item.php:2590 +#: ../../include/rest-api/models/VisualConsole/Item.php:2591 msgid "Image Vc" msgstr "Vc 画像" -#: ../../include/functions_notifications.php:807 +#: ../../include/functions_notifications.php:806 msgid "Subtype customization" msgstr "サブタイプのカスタマイズ" -#: ../../include/functions_notifications.php:834 +#: ../../include/functions_notifications.php:833 msgid "Notified users" msgstr "通知されたユーザ" -#: ../../include/functions_notifications.php:834 +#: ../../include/functions_notifications.php:833 msgid "Notified groups" msgstr "通知されたグループ" -#: ../../include/functions_notifications.php:835 +#: ../../include/functions_notifications.php:834 msgid "Add users" msgstr "ユーザ追加" -#: ../../include/functions_notifications.php:835 +#: ../../include/functions_notifications.php:834 msgid "Add groups" msgstr "グループ追加" -#: ../../include/functions_notifications.php:836 +#: ../../include/functions_notifications.php:835 msgid "Delete users" msgstr "ユーザ削除" -#: ../../include/functions_notifications.php:836 +#: ../../include/functions_notifications.php:835 msgid "Delete groups" msgstr "グループ削除" -#: ../../include/functions_notifications.php:941 +#: ../../include/functions_notifications.php:940 msgid "Remove elements" msgstr "要素削除" -#: ../../include/functions_notifications.php:1058 +#: ../../include/functions_notifications.php:1057 msgid "Click here to get more information" msgstr "詳細についてはこちらをクリックしてください" -#: ../../include/functions_reports.php:638 ../../include/functions_reports.php:642 -#: ../../include/functions_reports.php:647 ../../include/functions_reports.php:653 -#: ../../include/functions_reports.php:660 ../../include/functions_reports.php:664 -#: ../../include/functions_reports.php:668 ../../include/functions_reports.php:675 -#: ../../include/functions_reports.php:681 ../../include/functions_reports.php:686 -#: ../../include/functions_groups.php:123 ../../include/functions_groups.php:187 -#: ../../operation/search_results.php:119 ../../operation/agentes/ver_agente.php:1560 +#: ../../include/functions_reports.php:638 +#: ../../include/functions_reports.php:642 +#: ../../include/functions_reports.php:647 +#: ../../include/functions_reports.php:653 +#: ../../include/functions_reports.php:660 +#: ../../include/functions_reports.php:664 +#: ../../include/functions_reports.php:668 +#: ../../include/functions_reports.php:675 +#: ../../include/functions_reports.php:681 +#: ../../include/functions_reports.php:686 ../../include/functions_groups.php:123 +#: ../../include/functions_groups.php:187 ../../operation/search_results.php:120 +#: ../../operation/agentes/ver_agente.php:1590 msgid "Graphs" msgstr "グラフ" -#: ../../include/functions_reports.php:639 ../../include/functions_reports.php:1090 -#: ../../include/functions_reporting.php:10288 -#: ../../include/functions_reporting.php:10448 +#: ../../include/functions_reports.php:639 +#: ../../include/functions_reports.php:1090 +#: ../../include/functions_reporting.php:10535 +#: ../../include/functions_reporting.php:10695 msgid "Simple graph" msgstr "単一グラフ" @@ -43594,7 +44968,8 @@ msgstr "モジュールヒストグラムグラフ" msgid "IPAM networks" msgstr "IPAM ネットワーク" -#: ../../include/functions_reports.php:724 ../../include/functions_reports.php:728 +#: ../../include/functions_reports.php:724 +#: ../../include/functions_reports.php:728 msgid "Forecasting" msgstr "予測" @@ -43626,11 +45001,16 @@ msgstr "データの並び" msgid "Historical Data" msgstr "保存データ" -#: ../../include/functions_reports.php:770 ../../include/functions_reports.php:776 -#: ../../include/functions_reports.php:782 ../../include/functions_reports.php:788 -#: ../../include/functions_reports.php:794 ../../include/functions_reports.php:801 -#: ../../include/functions_reports.php:808 ../../include/functions_reports.php:814 -#: ../../include/functions_reports.php:818 ../../include/functions_reports.php:823 +#: ../../include/functions_reports.php:770 +#: ../../include/functions_reports.php:776 +#: ../../include/functions_reports.php:782 +#: ../../include/functions_reports.php:788 +#: ../../include/functions_reports.php:794 +#: ../../include/functions_reports.php:801 +#: ../../include/functions_reports.php:808 +#: ../../include/functions_reports.php:814 +#: ../../include/functions_reports.php:818 +#: ../../include/functions_reports.php:823 #: ../../include/functions_reports.php:829 msgid "Grouped" msgstr "グループ化" @@ -43647,7 +45027,8 @@ msgstr "ネットワークインタフェース" msgid "Custom Render" msgstr "カスタムレンダリング" -#: ../../include/functions_reports.php:834 ../../include/functions_reports.php:838 +#: ../../include/functions_reports.php:834 +#: ../../include/functions_reports.php:838 msgid "Text/HTML " msgstr "テキスト/HTML " @@ -43687,11 +45068,13 @@ msgstr "グループイベントレポート" msgid "Inventory changes" msgstr "インベントリ変更" -#: ../../include/functions_reports.php:906 ../../include/functions_reporting.php:6589 +#: ../../include/functions_reports.php:906 +#: ../../include/functions_reporting.php:6817 msgid "Agent configuration" msgstr "エージェント設定" -#: ../../include/functions_reports.php:910 ../../include/functions_reporting.php:4850 +#: ../../include/functions_reports.php:910 +#: ../../include/functions_reporting.php:5126 msgid "Group configuration" msgstr "グループ設定" @@ -43711,7 +45094,8 @@ msgstr "ネットワーク設定変更" msgid "Macro" msgstr "マクロ" -#: ../../include/functions_reports.php:1088 ../../include/functions_reports.php:1217 +#: ../../include/functions_reports.php:1088 +#: ../../include/functions_reports.php:1217 #: ../../include/functions_reports.php:1237 msgid "Sql" msgstr "SQL" @@ -43724,7 +45108,7 @@ msgstr "グラフ SQL" msgid "Please select an item from this list." msgstr "この一覧からアイテムを選択してください。" -#: ../../include/functions_html.php:621 ../../include/functions_html.php:5996 +#: ../../include/functions_html.php:621 ../../include/functions_html.php:5991 msgid "Please select..." msgstr "選択してください..." @@ -43736,37 +45120,37 @@ msgstr "エージェント検索タイプ" msgid "Type to search modules" msgstr "モジュール検索タイプ" -#: ../../include/functions_html.php:1677 +#: ../../include/functions_html.php:1674 msgid "Only common modules" msgstr "共通モジュールのみ" -#: ../../include/functions_html.php:2123 +#: ../../include/functions_html.php:2107 msgid "weeks" msgstr "週" -#: ../../include/functions_html.php:2285 +#: ../../include/functions_html.php:2278 msgid "Month day" msgstr "日にち" -#: ../../include/functions_html.php:2287 +#: ../../include/functions_html.php:2280 msgid "Week day" msgstr "曜日" -#: ../../include/functions_html.php:4664 +#: ../../include/functions_html.php:4657 msgid "Type at least two characters to search the module." msgstr "モジュールを検索するには、少なくとも二文字入力してください。" -#: ../../include/functions_html.php:4825 ../../index.php:521 ../../index.php:803 -#: ../../index.php:877 +#: ../../include/functions_html.php:4818 ../../index.php:524 ../../index.php:807 +#: ../../index.php:881 #, php-format msgid "%s cannot verify the origin of the request. Try again, please." msgstr "%s はリクエストを確認できません。 もう一度やり直してください。" -#: ../../include/functions_html.php:5751 +#: ../../include/functions_html.php:5746 msgid "Type at least two characters to search the user." msgstr "ユーザを検索するには、少なくとも 2文字入力してください。" -#: ../../include/functions_html.php:6140 +#: ../../include/functions_html.php:6135 msgid "Primary group cannot be secondary too." msgstr "プライマリグループはセカンダリにできません。" @@ -43784,10 +45168,11 @@ msgstr "%s インスタンスを正常に設定するには、次の情報を入 #: ../../include/functions_register.php:165 msgid "" -"Must have the same time zone as the system or database to avoid mismatches of time." +"Must have the same time zone as the system or database to avoid mismatches of " +"time." msgstr "" -"時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする必要があ" -"ります。" +"時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする" +"必要があります。" #: ../../include/functions_register.php:171 msgid "E-mail for receiving alerts" @@ -43803,11 +45188,14 @@ msgstr "基本メールを設定しなくて良いですか?" #: ../../include/functions_register.php:207 msgid "" -"You could change this options later in \"alert actions\" and setting your account." +"You could change this options later in \"alert actions\" and setting your " +"account." msgstr "" -"このオプションは、後で \"アラートアクション\" とアカウントの設定で変更できます。" +"このオプションは、後で \"アラートアクション\" とアカウントの設定で変更できま" +"す。" #: ../../include/functions_massive_operations.php:165 +#: ../../include/class/SatelliteAgent.class.php:198 msgid "Show agents" msgstr "エージェント表示" @@ -43820,8 +45208,8 @@ msgid "Failed updated: User is not admin." msgstr "更新失敗: ユーザは管理者ではありません。" #: ../../include/functions_config.php:188 -msgid "phantomjs config directory" -msgstr "phantomjs 設定ディレクトリ" +msgid "Chromium config directory" +msgstr "Chromium 設定ディレクトリ" #: ../../include/functions_config.php:204 msgid "SSL cert path" @@ -43835,7 +45223,7 @@ msgstr "証明書利用" msgid "Integria inventory" msgstr "Integria インベントリ" -#: ../../include/functions_config.php:248 ../../include/functions_config.php:1739 +#: ../../include/functions_config.php:248 ../../include/functions_config.php:1778 msgid "Integria API password" msgstr "Integria API パスワード" @@ -43894,386 +45282,420 @@ msgstr "監査ログ有効化" msgid "Module Custom ID read only" msgstr "モジュールカスタム ID の読み出し専用" -#: ../../include/functions_config.php:419 +#: ../../include/functions_config.php:424 msgid "Replication DB host" msgstr "複製 DB ホスト" -#: ../../include/functions_config.php:423 +#: ../../include/functions_config.php:428 msgid "Replication DB database" msgstr "複製データベース" -#: ../../include/functions_config.php:427 +#: ../../include/functions_config.php:432 msgid "Replication DB user" msgstr "複製 DB ユーザ" -#: ../../include/functions_config.php:431 +#: ../../include/functions_config.php:436 msgid "Replication DB password" msgstr "複製 DB パスワード" -#: ../../include/functions_config.php:435 +#: ../../include/functions_config.php:440 msgid "Replication DB port" msgstr "複製 DB ポート" -#: ../../include/functions_config.php:439 +#: ../../include/functions_config.php:444 msgid "Metaconsole agent cache" msgstr "メタコンソールエージェントキャッシュ" -#: ../../include/functions_config.php:447 +#: ../../include/functions_config.php:452 msgid "Enable Update Manager" msgstr "アップデートマネージャの有効化" -#: ../../include/functions_config.php:451 +#: ../../include/functions_config.php:456 msgid "Ipam Ocuppied Manager Critical" msgstr "IPAM 障害占有管理" -#: ../../include/functions_config.php:455 +#: ../../include/functions_config.php:460 msgid "Ipam Ocuppied Manager Warning" msgstr "IPAM 警告占有管理" -#: ../../include/functions_config.php:628 +#: ../../include/functions_config.php:629 +msgid "Ldap search timeout" +msgstr "LDAP 検索タイムアウト" + +#: ../../include/functions_config.php:645 msgid "Secontary start TLS" msgstr "セカンダリ TLS の開始" -#: ../../include/functions_config.php:744 +#: ../../include/functions_config.php:761 msgid "Saml profile parameters" msgstr "SAML プロファイルパラメータ" -#: ../../include/functions_config.php:760 +#: ../../include/functions_config.php:777 msgid "2FA all users" msgstr "全ユーザの二段階認証" -#: ../../include/functions_config.php:767 +#: ../../include/functions_config.php:784 msgid "Session timeout forced to 90 minutes" msgstr "セッションタイムアウトを 90分に強制" -#: ../../include/functions_config.php:830 +#: ../../include/functions_config.php:804 +msgid "Event purge" +msgstr "イベント削除" + +#: ../../include/functions_config.php:840 msgid "Max. days before autodisable deletion" msgstr "自動無効化エージェントの保持日数" -#: ../../include/functions_config.php:834 +#: ../../include/functions_config.php:844 msgid "Item limit for realtime reports)" msgstr "リアルタイムレポートのアイテム制限" -#: ../../include/functions_config.php:866 +#: ../../include/functions_config.php:876 msgid "Big Operatiopn Step to purge old data" msgstr "古いデータ削除のための大きな操作ステップ" -#: ../../include/functions_config.php:900 +#: ../../include/functions_config.php:910 msgid "Max execution event response" msgstr "最大実行イベント応答" -#: ../../include/functions_config.php:908 +#: ../../include/functions_config.php:918 msgid "SNMP walk binary path" msgstr "snmpwalk バイナリパス" -#: ../../include/functions_config.php:912 +#: ../../include/functions_config.php:922 msgid "SNMP walk binary path (fallback for v1)" msgstr "snmpwalk バイナリパス (v1 フォールバック)" -#: ../../include/functions_config.php:916 +#: ../../include/functions_config.php:926 msgid "Default WMI Binary" msgstr "デフォルト WMI バイナリ" -#: ../../include/functions_config.php:1019 +#: ../../include/functions_config.php:936 +msgid "SNMP Interface Agent Wizard" +msgstr "SNMP インタフェースエージェントウィザード" + +#: ../../include/functions_config.php:1020 msgid "Show QR code header" msgstr "QR コードヘッダー表示" -#: ../../include/functions_config.php:1047 +#: ../../include/functions_config.php:1048 msgid "Custom logo white background" msgstr "白背景カスタムロゴ" -#: ../../include/functions_config.php:1075 +#: ../../include/functions_config.php:1076 msgid "Custom title header" msgstr "カスタムタイトルヘッダ" -#: ../../include/functions_config.php:1079 +#: ../../include/functions_config.php:1080 msgid "Custom subtitle header" msgstr "カスタムサブタイトルヘッダ" -#: ../../include/functions_config.php:1103 ../../include/functions_config.php:1143 +#: ../../include/functions_config.php:1104 +#: ../../include/functions_config.php:1144 msgid "Custom Docs url" msgstr "カスタムドキュメントURL" -#: ../../include/functions_config.php:1107 ../../include/functions_config.php:1147 +#: ../../include/functions_config.php:1108 +#: ../../include/functions_config.php:1148 msgid "Custom support url" msgstr "カスタムサポートURL" -#: ../../include/functions_config.php:1119 +#: ../../include/functions_config.php:1120 msgid "Custom logo metaconsole (white background)" msgstr "メタコンソールカスタムロゴ(白背景)" -#: ../../include/functions_config.php:1123 +#: ../../include/functions_config.php:1124 msgid "Custom logo login metaconsole" msgstr "メタコンソールログインカスタムロゴ" -#: ../../include/functions_config.php:1127 +#: ../../include/functions_config.php:1128 msgid "Custom splash login metaconsole" msgstr "カスタムスプラッシュログイン メタコンソール" -#: ../../include/functions_config.php:1131 +#: ../../include/functions_config.php:1132 msgid "Custom title1 login metaconsole" msgstr "カスタムタイトル1 メタコンソールログイン" -#: ../../include/functions_config.php:1135 +#: ../../include/functions_config.php:1136 msgid "Custom title2 login metaconsole" msgstr "カスタムタイトル2 メタコンソールログイン" -#: ../../include/functions_config.php:1139 +#: ../../include/functions_config.php:1140 msgid "Login background metaconsole" msgstr "メタコンソールログイン背景" -#: ../../include/functions_config.php:1163 +#: ../../include/functions_config.php:1164 msgid "Default line favourite_view for the Visual Console" msgstr "ビジュアルコンソールのデフォルトお気に入り" -#: ../../include/functions_config.php:1167 +#: ../../include/functions_config.php:1168 msgid "Default line menu items for the Visual Console" msgstr "ビジュアルコンソールのデフォルトメニューアイテム" -#: ../../include/functions_config.php:1179 +#: ../../include/functions_config.php:1180 msgid "Default line menu items for the Services" msgstr "サービス用のデフォルトラインメニューアイテム" -#: ../../include/functions_config.php:1211 +#: ../../include/functions_config.php:1212 msgid "Show units in values report" msgstr "値のレポートに単位を表示" -#: ../../include/functions_config.php:1219 +#: ../../include/functions_config.php:1220 msgid "Autohidden menu" msgstr "メニューを自動的に隠す" -#: ../../include/functions_config.php:1223 +#: ../../include/functions_config.php:1224 msgid "visual_animation" msgstr "ビジュアルアニメーション" -#: ../../include/functions_config.php:1231 +#: ../../include/functions_config.php:1232 msgid "Fixed graph" msgstr "グラフの固定" -#: ../../include/functions_config.php:1239 +#: ../../include/functions_config.php:1240 msgid "Paginate module" msgstr "モジュール画面分割" -#: ../../include/functions_config.php:1243 +#: ../../include/functions_config.php:1244 #: ../../include/class/ExternalTools.class.php:303 msgid "Custom graphviz directory" msgstr "カスタム graphviz ディレクトリ" -#: ../../include/functions_config.php:1251 +#: ../../include/functions_config.php:1252 msgid "Shortened module graph data" msgstr "短縮モジュールグラフデータ" -#: ../../include/functions_config.php:1259 +#: ../../include/functions_config.php:1260 msgid "Show empty groups in group view." msgstr "グループ表示に空のグループを表示する" -#: ../../include/functions_config.php:1267 +#: ../../include/functions_config.php:1268 msgid "Default type of module charts." msgstr "モジュールグラフのデフォルトタイプ" -#: ../../include/functions_config.php:1271 +#: ../../include/functions_config.php:1272 msgid "Default Number of elements in Custom Graph." msgstr "カスタムグラフのデフォルト要素数" -#: ../../include/functions_config.php:1275 +#: ../../include/functions_config.php:1276 msgid "Default type of interface charts." msgstr "インタフェースグラフのデフォルトタイプ" -#: ../../include/functions_config.php:1291 +#: ../../include/functions_config.php:1292 msgid "Display lateral menus with left click" msgstr "クリックでサイドメニューを表示" -#: ../../include/functions_config.php:1300 +#: ../../include/functions_config.php:1301 msgid "Service item padding size" msgstr "サービス要素の間隔" -#: ../../include/functions_config.php:1305 +#: ../../include/functions_config.php:1306 msgid "Default percentil" msgstr "デフォルトのパーセンテージ" -#: ../../include/functions_config.php:1309 +#: ../../include/functions_config.php:1310 msgid "Default full scale (TIP)" msgstr "デフォルトフルスケール(TIP)" -#: ../../include/functions_config.php:1313 +#: ../../include/functions_config.php:1314 msgid "Default soft graphs" msgstr "デフォルトグラフソフト" -#: ../../include/functions_config.php:1317 +#: ../../include/functions_config.php:1318 msgid "Default zoom graphs" msgstr "デフォルトグラフ拡大率" -#: ../../include/functions_config.php:1326 +#: ../../include/functions_config.php:1327 msgid "Default height of the chart image" msgstr "グラフ画像のデフォルトの高さ" -#: ../../include/functions_config.php:1348 +#: ../../include/functions_config.php:1349 msgid "Add the custom post process" msgstr "カスタム保存倍率を追加" -#: ../../include/functions_config.php:1356 +#: ../../include/functions_config.php:1357 msgid "Delete the custom post process" msgstr "カスタム保存倍率を削除" -#: ../../include/functions_config.php:1410 +#: ../../include/functions_config.php:1411 msgid "Add custom module unit" msgstr "カスタムモジュール単位追加" -#: ../../include/functions_config.php:1416 +#: ../../include/functions_config.php:1417 msgid "Delete custom module unit" msgstr "カスタムモジュール単位削除" -#: ../../include/functions_config.php:1509 +#: ../../include/functions_config.php:1474 +msgid "Thousand separator" +msgstr "桁区切り記号" + +#: ../../include/functions_config.php:1519 msgid "IP ElasticSearch server" msgstr "ElasticSearch サーバ IP" -#: ../../include/functions_config.php:1513 +#: ../../include/functions_config.php:1523 msgid "Port ElasticSearch server" msgstr "ElasticSearch サーバポート番号" -#: ../../include/functions_config.php:1576 +#: ../../include/functions_config.php:1570 +msgid "Enable history trap" +msgstr "ヒストリトラップの有効化" + +#: ../../include/functions_config.php:1590 msgid "Enable history database advanced" msgstr "ヒストリデータベース詳細の有効化" -#: ../../include/functions_config.php:1584 +#: ../../include/functions_config.php:1599 msgid "String Days" msgstr "文字列日数" -#: ../../include/functions_config.php:1679 +#: ../../include/functions_config.php:1615 +msgid "Trap Days" +msgstr "トラップ日数" + +#: ../../include/functions_config.php:1623 +msgid "Trap history purge" +msgstr "ヒストリトラップ削除" + +#: ../../include/functions_config.php:1695 +msgid "Historical database traps purge" +msgstr "ヒストリデータベーストラップ削除" + +#: ../../include/functions_config.php:1718 msgid "eHorus user login" msgstr "eHorus ユーザログイン" -#: ../../include/functions_config.php:1691 +#: ../../include/functions_config.php:1730 msgid "eHorus API hostname" msgstr "eHorus API ホスト名" -#: ../../include/functions_config.php:1695 +#: ../../include/functions_config.php:1734 msgid "eHorus API port" msgstr "eHorus API ポート" -#: ../../include/functions_config.php:1699 +#: ../../include/functions_config.php:1738 msgid "eHorus request timeout" msgstr "eHorus リクエストタイムアウト" -#: ../../include/functions_config.php:1703 +#: ../../include/functions_config.php:1742 msgid "eHorus id custom field" msgstr "eHorus id カスタムフィールド" -#: ../../include/functions_config.php:1709 +#: ../../include/functions_config.php:1748 msgid "Integria user login" msgstr "Integria ユーザログイン" -#: ../../include/functions_config.php:1717 +#: ../../include/functions_config.php:1756 msgid "Integria user" msgstr "Integria ユーザ" -#: ../../include/functions_config.php:1721 +#: ../../include/functions_config.php:1760 msgid "Integria password" msgstr "Integria パスワード" -#: ../../include/functions_config.php:1735 +#: ../../include/functions_config.php:1774 msgid "integria API hostname" msgstr "Integria API ホスト名" -#: ../../include/functions_config.php:1743 +#: ../../include/functions_config.php:1782 msgid "Integria request timeout" msgstr "Integria 要求タイムアウト" -#: ../../include/functions_config.php:1747 +#: ../../include/functions_config.php:1786 msgid "Integria default group" msgstr "Integria デフォルトグループ" -#: ../../include/functions_config.php:1751 +#: ../../include/functions_config.php:1790 msgid "Integria custom response default group" msgstr "Integria カスタム応答デフォルトグループ" -#: ../../include/functions_config.php:1755 +#: ../../include/functions_config.php:1794 msgid "Integria default priority" msgstr "Integria デフォルト優先順位" -#: ../../include/functions_config.php:1759 +#: ../../include/functions_config.php:1798 msgid "Integria custom response default priority" msgstr "Integria カスタム応答デフォルト優先順位" -#: ../../include/functions_config.php:1763 +#: ../../include/functions_config.php:1802 msgid "Integria default creator" msgstr "Integria デフォルト作成者" -#: ../../include/functions_config.php:1767 +#: ../../include/functions_config.php:1806 msgid "Integria default owner" msgstr "Integria デフォルト所有者" -#: ../../include/functions_config.php:1771 +#: ../../include/functions_config.php:1810 msgid "Integria custom response default owner" msgstr "Integria カスタム応答デフォルト所有者" -#: ../../include/functions_config.php:1775 +#: ../../include/functions_config.php:1814 msgid "Integria default ticket type" msgstr "Integria デフォルトチケットタイプ" -#: ../../include/functions_config.php:1779 +#: ../../include/functions_config.php:1818 msgid "Integria custom response default ticket type" msgstr "Integria カスタム応答デフォルトチケットタイプ" -#: ../../include/functions_config.php:1783 +#: ../../include/functions_config.php:1822 msgid "Integria default ticket status" msgstr "Integria デフォルトチケット状態" -#: ../../include/functions_config.php:1787 +#: ../../include/functions_config.php:1826 msgid "Integria custom response default ticket status" msgstr "Integria カスタム応答デフォルトチケット状態" -#: ../../include/functions_config.php:1791 +#: ../../include/functions_config.php:1830 msgid "Integria default ticket title" msgstr "Integria デフォルトチケットタイトル" -#: ../../include/functions_config.php:1795 +#: ../../include/functions_config.php:1834 msgid "Integria custom response default ticket title" msgstr "Integria カスタム応答デフォルトチケットタイトル" -#: ../../include/functions_config.php:1799 +#: ../../include/functions_config.php:1838 msgid "Integria default ticket content" msgstr "Integria デフォルトチケット内容" -#: ../../include/functions_config.php:1803 +#: ../../include/functions_config.php:1842 msgid "Integria custom response default ticket content" msgstr "Integria カスタム応答デフォルトチケット内容" -#: ../../include/functions_config.php:1809 +#: ../../include/functions_config.php:1848 msgid "Module Library User" msgstr "モジュールライブラリユーザ" -#: ../../include/functions_config.php:1813 +#: ../../include/functions_config.php:1852 msgid "Module Library Password" msgstr "モジュールライブラリパスワード" -#: ../../include/functions_config.php:1819 +#: ../../include/functions_config.php:1858 msgid "WebSocket bind address" msgstr "WebSocket 待受アドレス" -#: ../../include/functions_config.php:1823 +#: ../../include/functions_config.php:1862 msgid "WebSocket port" msgstr "WebSocket ポート" -#: ../../include/functions_config.php:1846 +#: ../../include/functions_config.php:1885 #, php-format -msgid "Failed updated: the next values cannot update:
-%s" +msgid "Update failed. The next values could not be updated:
-%s" msgstr "更新失敗: 次の値は更新できません:
-%s" -#: ../../include/functions_config.php:2406 +#: ../../include/functions_config.php:2466 #: ../../operation/agentes/networkmap.dinamic.php:226 msgid "Pandora FMS" msgstr "Pandora FMS" -#: ../../include/functions_config.php:2414 +#: ../../include/functions_config.php:2474 msgid "PandoraFMS Metaconsole" msgstr "Pandora FMS メタコンソール" -#: ../../include/functions_config.php:2418 +#: ../../include/functions_config.php:2478 msgid "Centralized operation console" msgstr "中央操作コンソール" -#: ../../include/functions_config.php:2422 +#: ../../include/functions_config.php:2482 msgid "PANDORA FMS" msgstr "PANDORA FMS" @@ -44305,7 +45727,8 @@ msgstr "平均バイト/パケット" msgid "Area graph" msgstr "塗り潰しグラフ" -#: ../../include/functions_netflow.php:1184 ../../operation/agentes/exportdata.php:378 +#: ../../include/functions_netflow.php:1184 +#: ../../operation/agentes/exportdata.php:378 msgid "Data table" msgstr "データの表示" @@ -44317,7 +45740,8 @@ msgstr "トップ N 接続" msgid "Circular mesh" msgstr "円形メッシュ" -#: ../../include/functions_netflow.php:1187 ../../include/functions_netflow.php:1452 +#: ../../include/functions_netflow.php:1187 +#: ../../include/functions_netflow.php:1452 msgid "Host detailed traffic" msgstr "ホストの詳細トラフィック" @@ -44352,7 +45776,8 @@ msgstr "nfdump バイナリ (%s) が見つかりません!" #: ../../include/functions_netflow.php:1830 msgid "Make sure nfdump version 1.6.8 or newer is installed!" -msgstr "nfdump のバージョン 1.6.8 以上がインストールされていることを確認してください!" +msgstr "" +"nfdump のバージョン 1.6.8 以上がインストールされていることを確認してください!" #: ../../include/functions_netflow.php:1847 msgid "High" @@ -44378,7 +45803,7 @@ msgstr "モジュールアラート" #: ../../include/class/ConfigPEN.class.php:428 #: ../../include/class/ConfigPEN.class.php:597 -#: ../../include/class/ModuleTemplates.class.php:1074 +#: ../../include/class/ModuleTemplates.class.php:1075 msgid "PEN" msgstr "PEN" @@ -44428,886 +45853,931 @@ msgstr "この PEN を削除してもよろしいですか?" msgid "Register new manufacturer" msgstr "新たな製造元を登録" -#: ../../include/class/SatelliteAgent.class.php:128 +#: ../../include/class/SatelliteAgent.class.php:147 msgid "IP Adrress" msgstr "IP アドレス" -#: ../../include/class/SatelliteAgent.class.php:194 +#: ../../include/class/SatelliteAgent.class.php:154 +msgid "Only deleted" +msgstr "削除のみ" + +#: ../../include/class/SatelliteAgent.class.php:155 +msgid "Only added" +msgstr "追加のみ" + +#: ../../include/class/SatelliteAgent.class.php:255 msgid "Add host" msgstr "ホストを追加" -#: ../../include/class/SatelliteAgent.class.php:352 +#: ../../include/class/SatelliteAgent.class.php:511 msgid "Agent address" msgstr "エージェントアドレス" -#: ../../include/class/SatelliteAgent.class.php:396 -#: ../../include/class/SatelliteAgent.class.php:417 +#: ../../include/class/SatelliteAgent.class.php:555 +msgid "Error saving agent. The address already exists" +msgstr "エージェント保存エラー。アドレスがすでに使われています。" + +#: ../../include/class/SatelliteAgent.class.php:560 +msgid "Error saving agent. The Name already exists" +msgstr "エージェント保存エラー。名前がすでに使われています。" + +#: ../../include/class/SatelliteAgent.class.php:565 msgid "Error saving agent" msgstr "エージェント保存エラー" -#: ../../include/class/SatelliteAgent.class.php:398 -#: ../../include/class/SatelliteAgent.class.php:419 +#: ../../include/class/SatelliteAgent.class.php:567 +#: ../../include/class/SatelliteAgent.class.php:609 +#: ../../include/class/SatelliteAgent.class.php:610 +#: ../../include/class/SatelliteAgent.class.php:654 +#: ../../include/class/SatelliteAgent.class.php:655 msgid "Host " msgstr "ホスト" -#: ../../include/class/SatelliteAgent.class.php:674 +#: ../../include/class/SatelliteAgent.class.php:602 +msgid "Error delete agent" +msgstr "エージェント削除エラー" + +#: ../../include/class/SatelliteAgent.class.php:602 +msgid "Error add agent" +msgstr "エージェント追加エラー" + +#: ../../include/class/SatelliteAgent.class.php:646 +msgid "Error disable agent" +msgstr "エージェント無効化エラー" + +#: ../../include/class/SatelliteAgent.class.php:646 +msgid "Error enable agent" +msgstr "エージェント有効化エラー" + +#: ../../include/class/SatelliteAgent.class.php:1128 msgid "Add agent to satellite" msgstr "サテライトにエージェントを追加" -#: ../../include/class/HelpFeedBack.class.php:104 +#: ../../include/class/SatelliteAgent.class.php:1278 +msgid "Disable / Enable Agents" +msgstr "エージェント無効化 / 有効化" + +#: ../../include/class/SatelliteAgent.class.php:1278 +msgid "Delete / create Agents" +msgstr "エージェント削除 / 作成" + +#: ../../include/class/SatelliteAgent.class.php:1360 +msgid "These agents could not be deleted. They must first be enabled" +msgstr "これらのエージェントは削除できません。最初に有効化する必要があります。" + +#: ../../include/class/SatelliteAgent.class.php:1385 +msgid "These agents could not be disabled. They must first be created" +msgstr "これらのエージェントは削除できません。最初に作成する必要があります。" + +#: ../../include/class/HelpFeedBack.class.php:105 msgid "Browser not compatible." msgstr "ブラウザに互換性がありません。" -#: ../../include/class/HelpFeedBack.class.php:147 +#: ../../include/class/HelpFeedBack.class.php:148 msgid "Suggestion" msgstr "提案" -#: ../../include/class/HelpFeedBack.class.php:158 +#: ../../include/class/HelpFeedBack.class.php:159 msgid "Something is wrong" msgstr "何かおかしいです" -#: ../../include/class/HelpFeedBack.class.php:171 -#: ../../include/class/Diagnostics.class.php:1894 +#: ../../include/class/HelpFeedBack.class.php:172 +#: ../../include/class/Diagnostics.class.php:1902 msgid "What happened?" msgstr "何が発生しましたか?" -#: ../../include/class/HelpFeedBack.class.php:181 +#: ../../include/class/HelpFeedBack.class.php:182 msgid "Your Email" msgstr "あなたのメールアドレス" -#: ../../include/class/HelpFeedBack.class.php:198 +#: ../../include/class/HelpFeedBack.class.php:199 msgid "Submit" msgstr "実行" -#: ../../include/class/HelpFeedBack.class.php:213 -#: ../../include/class/Diagnostics.class.php:1967 ../../general/header.php:356 +#: ../../include/class/HelpFeedBack.class.php:214 +#: ../../include/class/Diagnostics.class.php:1975 ../../general/header.php:356 #: ../../general/header.php:358 msgid "Feedback" msgstr "フィードバック" -#: ../../include/class/HelpFeedBack.class.php:253 +#: ../../include/class/HelpFeedBack.class.php:254 msgid "[pandorafms wiki] New suggestion" msgstr "[pandorafms wiki] 新規提案" -#: ../../include/class/HelpFeedBack.class.php:255 +#: ../../include/class/HelpFeedBack.class.php:256 msgid "[pandorafms wiki] New report" msgstr "[pandorafms wiki] 新規レポート" -#: ../../include/class/HelpFeedBack.class.php:261 +#: ../../include/class/HelpFeedBack.class.php:262 msgid "Please provide your email address, we promise not to bother you" -msgstr "あなたのメールアドレスを入力してください。お邪魔しないことをお約束します。" +msgstr "" +"あなたのメールアドレスを入力してください。お邪魔しないことをお約束します。" -#: ../../include/class/HelpFeedBack.class.php:309 +#: ../../include/class/HelpFeedBack.class.php:310 msgid "Something went wrong while sending the report." msgstr "レポート送信時に異常が発生しました。" -#: ../../include/class/HelpFeedBack.class.php:360 +#: ../../include/class/HelpFeedBack.class.php:361 msgid "Your report had been successfully sent to Artica." msgstr "レポートを Artica へ送信しました。" -#: ../../include/class/HelpFeedBack.class.php:360 +#: ../../include/class/HelpFeedBack.class.php:361 msgid "Thank you!" msgstr "ありがとうございます!" -#: ../../include/class/Diagnostics.class.php:157 +#: ../../include/class/Diagnostics.class.php:158 #, php-format msgid "%s Diagnostic tool" msgstr "%s 診断ツール" -#: ../../include/class/Diagnostics.class.php:222 +#: ../../include/class/Diagnostics.class.php:223 #, php-format msgid "Info status %s" msgstr "情報ステータス %s" -#: ../../include/class/Diagnostics.class.php:226 +#: ../../include/class/Diagnostics.class.php:227 msgid "PHP setup" msgstr "PHP 設定" -#: ../../include/class/Diagnostics.class.php:234 -msgid "Database health status" -msgstr "データベースの正常性状態" - -#: ../../include/class/Diagnostics.class.php:238 -msgid "Database status info" -msgstr "データベースステータス情報" - -#: ../../include/class/Diagnostics.class.php:242 -msgid "System Info" -msgstr "システム情報" - -#: ../../include/class/Diagnostics.class.php:246 +#: ../../include/class/Diagnostics.class.php:247 msgid "MySQL Performance metrics" msgstr "MySQLパフォーマンスメトリック" -#: ../../include/class/Diagnostics.class.php:251 -#, php-format -msgid "Tables fragmentation in the %s database" -msgstr "%s データベースにおけるテーブルのフラグメンテーション" - -#: ../../include/class/Diagnostics.class.php:257 +#: ../../include/class/Diagnostics.class.php:258 #, php-format msgid "%s logs dates" msgstr "%s ログ状態" -#: ../../include/class/Diagnostics.class.php:261 +#: ../../include/class/Diagnostics.class.php:262 #, php-format msgid "%s Licence Information" msgstr "%s ライセンス情報" -#: ../../include/class/Diagnostics.class.php:265 -#: ../../include/class/Diagnostics.class.php:1251 +#: ../../include/class/Diagnostics.class.php:266 +#: ../../include/class/Diagnostics.class.php:1254 msgid "Status of the attachment folder" msgstr "添付フォルダの状態" -#: ../../include/class/Diagnostics.class.php:269 +#: ../../include/class/Diagnostics.class.php:270 msgid "Information from the tagente_datos table" msgstr "tagente_datos テーブルからの情報" -#: ../../include/class/Diagnostics.class.php:273 +#: ../../include/class/Diagnostics.class.php:274 #, php-format msgid "%s server threads" msgstr "%s サーバスレッド" -#: ../../include/class/Diagnostics.class.php:277 +#: ../../include/class/Diagnostics.class.php:278 msgid "SQL show engine innodb status" msgstr "innodb エンジンの状態を表示します" -#: ../../include/class/Diagnostics.class.php:325 +#: ../../include/class/Diagnostics.class.php:326 msgid "Graph of the Agents Unknown module." msgstr "エージェント不明モジュールグラフ" -#: ../../include/class/Diagnostics.class.php:332 +#: ../../include/class/Diagnostics.class.php:333 msgid "Graph of the Database Maintenance module." msgstr "データベースメンテナンスモジュールグラフ" -#: ../../include/class/Diagnostics.class.php:339 +#: ../../include/class/Diagnostics.class.php:340 msgid "Graph of the Free Disk Spool Dir module." msgstr "スプールディレクトリディスクの空き容量モジュールグラフ" -#: ../../include/class/Diagnostics.class.php:345 +#: ../../include/class/Diagnostics.class.php:346 msgid "Graph of the Free RAM module." msgstr "メモリ空き容量モジュールグラフ" -#: ../../include/class/Diagnostics.class.php:351 +#: ../../include/class/Diagnostics.class.php:352 msgid "Graph of the Queued Modules module." msgstr "モジュールキューのモジュールグラフ" -#: ../../include/class/Diagnostics.class.php:357 +#: ../../include/class/Diagnostics.class.php:358 msgid "Graph of the Status module." msgstr "状態モジュールグラフ" -#: ../../include/class/Diagnostics.class.php:363 +#: ../../include/class/Diagnostics.class.php:364 msgid "Graph of the System Load AVG module." msgstr "システムロードアベレージモジュールグラフ" -#: ../../include/class/Diagnostics.class.php:370 +#: ../../include/class/Diagnostics.class.php:371 msgid "Graph of the Execution Time module." msgstr "実行時間モジュールグラフ" -#: ../../include/class/Diagnostics.class.php:379 +#: ../../include/class/Diagnostics.class.php:380 msgid "Graphs modules that represent the self-monitoring system" msgstr "自己監視システムモジュールグラフ" -#: ../../include/class/Diagnostics.class.php:436 +#: ../../include/class/Diagnostics.class.php:437 #, php-format msgid "%s Build" msgstr "%s ビルド" -#: ../../include/class/Diagnostics.class.php:440 +#: ../../include/class/Diagnostics.class.php:441 #, php-format msgid "%s Version" msgstr "%s バージョン" -#: ../../include/class/Diagnostics.class.php:444 +#: ../../include/class/Diagnostics.class.php:445 msgid "Minor Release" msgstr "マイナーリリース" -#: ../../include/class/Diagnostics.class.php:448 +#: ../../include/class/Diagnostics.class.php:449 msgid "Homedir" msgstr "ホームディレクトリ" -#: ../../include/class/Diagnostics.class.php:452 +#: ../../include/class/Diagnostics.class.php:453 msgid "HomeUrl" msgstr "ホームURL" -#: ../../include/class/Diagnostics.class.php:456 +#: ../../include/class/Diagnostics.class.php:457 msgid "Enterprise installed" msgstr "Enterprise インストール済" -#: ../../include/class/Diagnostics.class.php:457 +#: ../../include/class/Diagnostics.class.php:458 msgid "true" msgstr "はい" -#: ../../include/class/Diagnostics.class.php:457 +#: ../../include/class/Diagnostics.class.php:458 msgid "false" msgstr "いいえ" -#: ../../include/class/Diagnostics.class.php:460 +#: ../../include/class/Diagnostics.class.php:461 msgid "Update Key" msgstr "アップデートキー" -#: ../../include/class/Diagnostics.class.php:464 +#: ../../include/class/Diagnostics.class.php:465 msgid "Updating code path" msgstr "アップデートコードパス" -#: ../../include/class/Diagnostics.class.php:468 +#: ../../include/class/Diagnostics.class.php:469 msgid "Current Update #" msgstr "現在のアップデート #" -#: ../../include/class/Diagnostics.class.php:492 +#: ../../include/class/Diagnostics.class.php:493 msgid "PHP Version" msgstr "PHPバージョン" -#: ../../include/class/Diagnostics.class.php:496 +#: ../../include/class/Diagnostics.class.php:497 msgid "PHP Max execution time" msgstr "PHP 最大実行時間" -#: ../../include/class/Diagnostics.class.php:500 +#: ../../include/class/Diagnostics.class.php:501 msgid "PHP Max input time" msgstr "PHP 最大入力時間" -#: ../../include/class/Diagnostics.class.php:504 +#: ../../include/class/Diagnostics.class.php:505 msgid "PHP Memory limit" msgstr "PHP メモリ制限" -#: ../../include/class/Diagnostics.class.php:508 +#: ../../include/class/Diagnostics.class.php:509 msgid "Session cookie lifetime" msgstr "セッションクッキー有効期間" -#: ../../include/class/Diagnostics.class.php:557 +#: ../../include/class/Diagnostics.class.php:558 msgid "Total groups" msgstr "全グループ数" -#: ../../include/class/Diagnostics.class.php:561 +#: ../../include/class/Diagnostics.class.php:562 msgid "Total module data records" msgstr "全モジュールデータ記録数" -#: ../../include/class/Diagnostics.class.php:565 +#: ../../include/class/Diagnostics.class.php:566 msgid "Total agent access record" msgstr "全エージェントアクセス記録数" -#: ../../include/class/Diagnostics.class.php:573 +#: ../../include/class/Diagnostics.class.php:574 msgid "Total traps" msgstr "全トラップ数" -#: ../../include/class/Diagnostics.class.php:577 +#: ../../include/class/Diagnostics.class.php:578 msgid "Total users" msgstr "全ユーザ数" -#: ../../include/class/Diagnostics.class.php:581 +#: ../../include/class/Diagnostics.class.php:582 msgid "Total sessions" msgstr "全セッション数" -#: ../../include/class/Diagnostics.class.php:620 +#: ../../include/class/Diagnostics.class.php:621 msgid "Pandora DB has never been executed" msgstr "Pandora DB が一度も実行されていません" -#: ../../include/class/Diagnostics.class.php:627 +#: ../../include/class/Diagnostics.class.php:628 msgid "Ago" msgstr "前" -#: ../../include/class/Diagnostics.class.php:634 +#: ../../include/class/Diagnostics.class.php:635 msgid "Total unknown agents" msgstr "全不明エージェント数" -#: ../../include/class/Diagnostics.class.php:638 +#: ../../include/class/Diagnostics.class.php:639 msgid "Total not-init modules" msgstr "全未初期化モジュール数" -#: ../../include/class/Diagnostics.class.php:642 +#: ../../include/class/Diagnostics.class.php:643 msgid "Pandora DB Last run" msgstr "最後の Pandora DB 実行" -#: ../../include/class/Diagnostics.class.php:674 +#: ../../include/class/Diagnostics.class.php:675 msgid "DB Schema Version (first installed)" msgstr "DB スキーマバージョン(初回インストール時)" -#: ../../include/class/Diagnostics.class.php:678 +#: ../../include/class/Diagnostics.class.php:679 msgid "DB Schema Version (actual)" msgstr "DB スキーマバージョン(現在)" -#: ../../include/class/Diagnostics.class.php:682 +#: ../../include/class/Diagnostics.class.php:683 msgid "DB Schema Build" msgstr "DB スキーマビルド" -#: ../../include/class/Diagnostics.class.php:686 +#: ../../include/class/Diagnostics.class.php:687 msgid "DB Size" msgstr "DB サイズ" -#: ../../include/class/Diagnostics.class.php:726 +#: ../../include/class/Diagnostics.class.php:727 msgid "RAM" msgstr "メモリ" -#: ../../include/class/Diagnostics.class.php:730 +#: ../../include/class/Diagnostics.class.php:731 msgid "Os" msgstr "OS" -#: ../../include/class/Diagnostics.class.php:738 -#: ../../include/class/Diagnostics.class.php:756 -#: ../../include/class/NetworkMap.class.php:2909 +#: ../../include/class/Diagnostics.class.php:739 +#: ../../include/class/Diagnostics.class.php:757 +#: ../../include/class/NetworkMap.class.php:3042 msgid "Ip" msgstr "IP" -#: ../../include/class/Diagnostics.class.php:784 +#: ../../include/class/Diagnostics.class.php:785 msgid "InnoDB buffer pool size" msgstr "InnoDB buffer pool size" -#: ../../include/class/Diagnostics.class.php:788 +#: ../../include/class/Diagnostics.class.php:789 #, php-format -msgid "It has to be 40% of the server memory not recommended to be greater or less" -msgstr "サーバメモリの40%である必要があり、これを超えたり下回ることは推奨されません。" +msgid "" +"It has to be 40% of the server memory not recommended to be greater or less" +msgstr "" +"サーバメモリの40%である必要があり、これを超えたり下回ることは推奨されません。" -#: ../../include/class/Diagnostics.class.php:793 +#: ../../include/class/Diagnostics.class.php:794 msgid "InnoDB file per table" msgstr "InnoDB" -#: ../../include/class/Diagnostics.class.php:796 -#: ../../include/class/Diagnostics.class.php:868 +#: ../../include/class/Diagnostics.class.php:797 +#: ../../include/class/Diagnostics.class.php:869 msgid "Recommended ON" msgstr "ON を推奨" -#: ../../include/class/Diagnostics.class.php:800 +#: ../../include/class/Diagnostics.class.php:801 msgid "InnoDB flush log at trx-commit" msgstr "InnoDB flush log at trx-commit" -#: ../../include/class/Diagnostics.class.php:803 +#: ../../include/class/Diagnostics.class.php:804 #, php-format msgid "Recommended Value %d" msgstr "推奨値 %d" -#: ../../include/class/Diagnostics.class.php:807 +#: ../../include/class/Diagnostics.class.php:808 msgid "InnoDB lock wait timeout" msgstr "InnoDB lock wait timeout" -#: ../../include/class/Diagnostics.class.php:810 -#: ../../include/class/Diagnostics.class.php:817 -#: ../../include/class/Diagnostics.class.php:824 -#: ../../include/class/Diagnostics.class.php:831 -#: ../../include/class/Diagnostics.class.php:838 -#: ../../include/class/Diagnostics.class.php:847 -#: ../../include/class/Diagnostics.class.php:854 -#: ../../include/class/Diagnostics.class.php:861 -#: ../../include/class/Diagnostics.class.php:875 -#: ../../include/class/Diagnostics.class.php:882 -#: ../../include/class/Diagnostics.class.php:889 -#: ../../include/class/Diagnostics.class.php:903 -#: ../../include/class/Diagnostics.class.php:910 +#: ../../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:839 +#: ../../include/class/Diagnostics.class.php:848 +#: ../../include/class/Diagnostics.class.php:855 +#: ../../include/class/Diagnostics.class.php:862 +#: ../../include/class/Diagnostics.class.php:876 +#: ../../include/class/Diagnostics.class.php:883 +#: ../../include/class/Diagnostics.class.php:890 +#: ../../include/class/Diagnostics.class.php:904 +#: ../../include/class/Diagnostics.class.php:911 msgid "Min. Recommended Value" msgstr "最小推奨値" -#: ../../include/class/Diagnostics.class.php:814 +#: ../../include/class/Diagnostics.class.php:815 msgid "InnoDB log buffer size" msgstr "InnoDB log buffer size" -#: ../../include/class/Diagnostics.class.php:821 +#: ../../include/class/Diagnostics.class.php:822 msgid "InnoDB log file size" msgstr "InnoDB log file size" -#: ../../include/class/Diagnostics.class.php:828 +#: ../../include/class/Diagnostics.class.php:829 msgid "Maximun allowed packet" msgstr "Maximun allowed packet" -#: ../../include/class/Diagnostics.class.php:835 +#: ../../include/class/Diagnostics.class.php:836 msgid "Maximun connections" msgstr "Maximun connections" -#: ../../include/class/Diagnostics.class.php:840 +#: ../../include/class/Diagnostics.class.php:841 msgid "conections" msgstr "接続" -#: ../../include/class/Diagnostics.class.php:844 +#: ../../include/class/Diagnostics.class.php:845 msgid "Query cache limit" msgstr "Query cache limit" -#: ../../include/class/Diagnostics.class.php:851 +#: ../../include/class/Diagnostics.class.php:852 msgid "Query cache min-res-unit" msgstr "Query cache min-res-unit" -#: ../../include/class/Diagnostics.class.php:858 +#: ../../include/class/Diagnostics.class.php:859 msgid "Query cache size" msgstr "Query cache size" -#: ../../include/class/Diagnostics.class.php:865 +#: ../../include/class/Diagnostics.class.php:866 msgid "Query cache type" msgstr "Query cache type" -#: ../../include/class/Diagnostics.class.php:872 +#: ../../include/class/Diagnostics.class.php:873 msgid "Read buffer size" msgstr "Read buffer size" -#: ../../include/class/Diagnostics.class.php:879 +#: ../../include/class/Diagnostics.class.php:880 msgid "Read rnd-buffer size" msgstr "Read rnd-buffer size" -#: ../../include/class/Diagnostics.class.php:886 +#: ../../include/class/Diagnostics.class.php:887 msgid "Sort buffer size" msgstr "Sort buffer size" -#: ../../include/class/Diagnostics.class.php:893 +#: ../../include/class/Diagnostics.class.php:894 msgid "Sql mode" msgstr "Sql mode" -#: ../../include/class/Diagnostics.class.php:896 +#: ../../include/class/Diagnostics.class.php:897 msgid "Must be empty" msgstr "空である必要があります" -#: ../../include/class/Diagnostics.class.php:900 +#: ../../include/class/Diagnostics.class.php:901 msgid "Thread cache size" msgstr "Thread cache size" -#: ../../include/class/Diagnostics.class.php:907 +#: ../../include/class/Diagnostics.class.php:908 msgid "Thread stack" msgstr "Thread stack" -#: ../../include/class/Diagnostics.class.php:970 -msgid "Table fragmentation is higher than recommended. They should be defragmented." +#: ../../include/class/Diagnostics.class.php:971 +msgid "" +"Table fragmentation is higher than recommended. They should be defragmented." msgstr "" -"テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要がありま" -"す。" +"テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要が" +"あります。" -#: ../../include/class/Diagnostics.class.php:974 +#: ../../include/class/Diagnostics.class.php:975 msgid "Table fragmentation is correct." msgstr "テーブルフラグメンテーションは正常です。" -#: ../../include/class/Diagnostics.class.php:983 +#: ../../include/class/Diagnostics.class.php:984 msgid "Tables fragmentation (maximum recommended value)" msgstr "テーブルフラグメンテーション(最大推奨値)" -#: ../../include/class/Diagnostics.class.php:988 +#: ../../include/class/Diagnostics.class.php:989 msgid "Tables fragmentation (current value)" msgstr "テーブルフラグメンテーション(現在の値)" -#: ../../include/class/Diagnostics.class.php:992 +#: ../../include/class/Diagnostics.class.php:993 msgid "Table fragmentation status" msgstr "テーブルフラグメンテーションの状態" -#: ../../include/class/Diagnostics.class.php:1027 +#: ../../include/class/Diagnostics.class.php:1028 msgid "Size server logs (current value)" msgstr "サーバログサイズ(現在の値)" -#: ../../include/class/Diagnostics.class.php:1031 +#: ../../include/class/Diagnostics.class.php:1032 msgid "Status server logs" msgstr "サーバログ状態" -#: ../../include/class/Diagnostics.class.php:1036 +#: ../../include/class/Diagnostics.class.php:1037 msgid "Size error logs (current value)" msgstr "エラーログサイズ(現在の値)" -#: ../../include/class/Diagnostics.class.php:1040 +#: ../../include/class/Diagnostics.class.php:1041 msgid "Status error logs" msgstr "エラーログ状態" -#: ../../include/class/Diagnostics.class.php:1045 +#: ../../include/class/Diagnostics.class.php:1046 msgid "Size console logs (current value)" msgstr "コンソールログサイズ(現在の値)" -#: ../../include/class/Diagnostics.class.php:1049 +#: ../../include/class/Diagnostics.class.php:1050 msgid "Status console logs" msgstr "コンソールログ状態" -#: ../../include/class/Diagnostics.class.php:1084 +#: ../../include/class/Diagnostics.class.php:1085 msgid "License capacity is less than 90 percent" msgstr "ライセンス容量は90%未満です" -#: ../../include/class/Diagnostics.class.php:1087 +#: ../../include/class/Diagnostics.class.php:1088 msgid "License capacity exceeds 90 percent" msgstr "ライセンス容量の90%を超えています" -#: ../../include/class/Diagnostics.class.php:1095 +#: ../../include/class/Diagnostics.class.php:1096 msgid "" -"The average of modules per agent is more than 40. You can have performance problems" +"The average of modules per agent is more than 40. You can have performance " +"problems" msgstr "" -"1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題が発生す" -"る可能性があります。" +"1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題" +"が発生する可能性があります。" -#: ../../include/class/Diagnostics.class.php:1100 +#: ../../include/class/Diagnostics.class.php:1101 msgid "The average of modules per agent is less than 40" msgstr "1エージェントあたりの平均モジュール数が 40未満です。" -#: ../../include/class/Diagnostics.class.php:1136 +#: ../../include/class/Diagnostics.class.php:1139 msgid "The system has no load" msgstr "システムに負荷がかかっていません" -#: ../../include/class/Diagnostics.class.php:1180 +#: ../../include/class/Diagnostics.class.php:1183 msgid "Network Management System" msgstr "ネットワーク管理システム" -#: ../../include/class/Diagnostics.class.php:1181 -#: ../../include/class/Diagnostics.class.php:1185 +#: ../../include/class/Diagnostics.class.php:1184 +#: ../../include/class/Diagnostics.class.php:1188 msgid "Off" msgstr "オフ" -#: ../../include/class/Diagnostics.class.php:1192 +#: ../../include/class/Diagnostics.class.php:1195 msgid "Status of agents capacity" msgstr "エージェントキャパシティの状態" -#: ../../include/class/Diagnostics.class.php:1197 +#: ../../include/class/Diagnostics.class.php:1200 msgid "Status of average modules per agent" msgstr "1エージェントごとの平均モジュール数の状態" -#: ../../include/class/Diagnostics.class.php:1203 +#: ../../include/class/Diagnostics.class.php:1206 msgid "Interval average of the network modules" msgstr "ネットワークモジュールの平均実行間隔" -#: ../../include/class/Diagnostics.class.php:1233 +#: ../../include/class/Diagnostics.class.php:1236 msgid "The attached folder contains more than 700 files." msgstr "attachment フォルダに 700以上のファイルがあります。" -#: ../../include/class/Diagnostics.class.php:1238 +#: ../../include/class/Diagnostics.class.php:1241 msgid "The attached folder contains less than 700 files." msgstr "attachment フォルダは 700未満のファイルがあります。" -#: ../../include/class/Diagnostics.class.php:1247 +#: ../../include/class/Diagnostics.class.php:1250 msgid "Total files in the attached folder" msgstr "attachment フォルダの全ファイル数" -#: ../../include/class/Diagnostics.class.php:1277 +#: ../../include/class/Diagnostics.class.php:1285 msgid "" -"The tagente_datos table contains too much data. A historical database is recommended." +"The tagente_datos table contains too much data. A historical database is " +"recommended." msgstr "" -"tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお勧めしま" -"す。" +"tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお" +"勧めします。" -#: ../../include/class/Diagnostics.class.php:1282 +#: ../../include/class/Diagnostics.class.php:1290 msgid "The tagente_datos table contains an acceptable amount of data." msgstr "tagente_datos テーブルのデータ量は適正です。" -#: ../../include/class/Diagnostics.class.php:1291 +#: ../../include/class/Diagnostics.class.php:1299 msgid "Total data in tagente_datos table" msgstr "tagente_datos テーブルの全データ量" -#: ../../include/class/Diagnostics.class.php:1295 +#: ../../include/class/Diagnostics.class.php:1303 msgid "Tagente_datos table status" msgstr "tagente_datos テーブルの状態" -#: ../../include/class/Diagnostics.class.php:1331 +#: ../../include/class/Diagnostics.class.php:1339 msgid "Threads" msgstr "スレッド" -#: ../../include/class/Diagnostics.class.php:1341 +#: ../../include/class/Diagnostics.class.php:1349 msgid "Total threads" msgstr "全スレッド数" -#: ../../include/class/Diagnostics.class.php:1348 +#: ../../include/class/Diagnostics.class.php:1356 msgid "Current pandora_server running threads" msgstr "現在の pandora_server 実行スレッド" -#: ../../include/class/Diagnostics.class.php:1352 +#: ../../include/class/Diagnostics.class.php:1360 msgid "" -"There's more pandora_server threads than configured, are you running multiple servers " -"simultaneusly?." +"There's more pandora_server threads than configured, are you running multiple " +"servers simultaneusly?." msgstr "" -"設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していませんか?" +"設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していま" +"せんか?" -#: ../../include/class/Diagnostics.class.php:1486 +#: ../../include/class/Diagnostics.class.php:1494 msgid "" -"Please check your Pandora Server setup and make sure that the database maintenance " -"daemon is running." +"Please check your Pandora Server setup and make sure that the database " +"maintenance daemon is running." msgstr "" -"Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作しているか確" -"認してください。" +"Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作して" +"いるか確認してください。" -#: ../../include/class/Diagnostics.class.php:1490 +#: ../../include/class/Diagnostics.class.php:1498 msgid "" -"It' is very important to keep the database up-to-date to get the best performance and " -"results in Pandora" +"It' is very important to keep the database up-to-date to get the best " +"performance and results in Pandora" msgstr "" -"Pandoraで最高のパフォーマンスと結果を得るには、データベースを最新の状態に保つことが非" -"常に重要です。" +"Pandoraで最高のパフォーマンスと結果を得るには、データベースを最新の状態に保つこ" +"とが非常に重要です。" -#: ../../include/class/Diagnostics.class.php:1752 +#: ../../include/class/Diagnostics.class.php:1760 msgid "You have more than 10 MB of logs" msgstr "10MB 以上のログがあります" -#: ../../include/class/Diagnostics.class.php:1755 +#: ../../include/class/Diagnostics.class.php:1763 msgid "You have less than 10 MB of logs" msgstr "ログは 10MB 未満です" -#: ../../include/class/Diagnostics.class.php:1922 +#: ../../include/class/Diagnostics.class.php:1930 msgid "Include installation data" msgstr "インストールデータを含む" -#: ../../include/class/Diagnostics.class.php:1959 +#: ../../include/class/Diagnostics.class.php:1967 msgid "Hello Feedback-Men" msgstr "こんにちは、フィードバックありがとうございます" -#: ../../include/class/Diagnostics.class.php:1969 +#: ../../include/class/Diagnostics.class.php:1977 msgid "Hello" msgstr "こんにちは" -#: ../../include/class/Diagnostics.class.php:1973 +#: ../../include/class/Diagnostics.class.php:1981 #, php-format msgid "User %s is reporting an issue in its %s experience" msgstr "ユーザ %s より、%s で発生した事象をレポートします" -#: ../../include/class/Diagnostics.class.php:1982 +#: ../../include/class/Diagnostics.class.php:1990 msgid "Find some files attached to this mail" msgstr "このメールに添付するファイル" -#: ../../include/class/Diagnostics.class.php:1985 +#: ../../include/class/Diagnostics.class.php:1993 msgid "PDF is the diagnostic information retrieved at report time" msgstr "PDF はレポート時に取得する診断情報を含みます" -#: ../../include/class/Diagnostics.class.php:1988 +#: ../../include/class/Diagnostics.class.php:1996 msgid "CSV contains the statuses of every product file" msgstr "CSV に各製品ファイルの状態を含みます" -#: ../../include/class/Diagnostics.class.php:1993 +#: ../../include/class/Diagnostics.class.php:2001 #, php-format msgid "" -"If you think this report must be escalated, feel free to forward this mail to \"%s\"" +"If you think this report must be escalated, feel free to forward this mail to " +"\"%s\"" msgstr "" -"この報告をエスカレーションする必要があると思われる場合は、このメールを \"%s\" へ転送し" -"てください。" +"この報告をエスカレーションする必要があると思われる場合は、このメールを \"%s\" " +"へ転送してください。" -#: ../../include/class/Diagnostics.class.php:1997 +#: ../../include/class/Diagnostics.class.php:2005 msgid "LEGAL WARNING" msgstr "法的な警告" -#: ../../include/class/Diagnostics.class.php:1999 +#: ../../include/class/Diagnostics.class.php:2007 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:2003 -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:2007 -msgid "If you have received this transmission in error, do not read it" -msgstr "もし、間違えてこの情報を受け取った場合は、読まないでください" +"この送信に含まれる情報は、上記の個人または団体での使用のみを目的とした機密情報" +"です。" #: ../../include/class/Diagnostics.class.php:2011 msgid "" -"Please immediately reply to the sender that you have received this communication in " -"error and then delete it" +"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:2015 +msgid "If you have received this transmission in error, do not read it" +msgstr "もし、間違えてこの情報を受け取った場合は、読まないでください" + +#: ../../include/class/Diagnostics.class.php:2019 +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:2090 +#: ../../include/class/Diagnostics.class.php:2098 msgid "Invalid cron task" msgstr "不正な cron タスク" -#: ../../include/class/Diagnostics.class.php:2091 +#: ../../include/class/Diagnostics.class.php:2099 msgid "Sending of information has been processed" msgstr "情報の送信処理が行われました" -#: ../../include/class/Diagnostics.class.php:2126 -#: ../../include/class/Diagnostics.class.php:2136 +#: ../../include/class/Diagnostics.class.php:2134 +#: ../../include/class/Diagnostics.class.php:2144 msgid "Diagnostics Info" msgstr "診断情報" -#: ../../include/class/Diagnostics.class.php:2244 -#: ../../include/class/Diagnostics.class.php:2254 +#: ../../include/class/Diagnostics.class.php:2252 +#: ../../include/class/Diagnostics.class.php:2262 msgid "PHP Info" msgstr "PHP Info" -#: ../../include/class/NetworkMap.class.php:2317 +#: ../../include/class/NetworkMap.class.php:2371 msgid "Failed to generate dotmap, please select different layout schema" -msgstr "ドットマップの生成に失敗しました。異なるレイアウトスキーマを選択してください。" +msgstr "" +"ドットマップの生成に失敗しました。異なるレイアウトスキーマを選択してください。" -#: ../../include/class/NetworkMap.class.php:2452 +#: ../../include/class/NetworkMap.class.php:2513 msgid "Failed to retrieve graph data." msgstr "グラフデータの取得に失敗しました。" -#: ../../include/class/NetworkMap.class.php:2663 +#: ../../include/class/NetworkMap.class.php:2797 msgid "Holding Area" msgstr "保持エリア" -#: ../../include/class/NetworkMap.class.php:2790 +#: ../../include/class/NetworkMap.class.php:2924 #, php-format msgid "Edit node %s" msgstr "ノード編集 %s" -#: ../../include/class/NetworkMap.class.php:2792 +#: ../../include/class/NetworkMap.class.php:2926 msgid "Show details and options" msgstr "詳細とオプションの表示" -#: ../../include/class/NetworkMap.class.php:2793 +#: ../../include/class/NetworkMap.class.php:2927 msgid "Add a interface link" msgstr "インタフェースリンクを追加" -#: ../../include/class/NetworkMap.class.php:2794 +#: ../../include/class/NetworkMap.class.php:2928 msgid "Set parent interface" msgstr "親インタフェースを設定" -#: ../../include/class/NetworkMap.class.php:2795 +#: ../../include/class/NetworkMap.class.php:2929 msgid "Set as children" msgstr "子に設定" -#: ../../include/class/NetworkMap.class.php:2796 +#: ../../include/class/NetworkMap.class.php:2930 msgid "Set parent" msgstr "親を設定" -#: ../../include/class/NetworkMap.class.php:2797 -#: ../../include/class/NetworkMap.class.php:2810 +#: ../../include/class/NetworkMap.class.php:2931 +#: ../../include/class/NetworkMap.class.php:2943 msgid "Abort the action of set relationship" msgstr "関係設定動作の中止" -#: ../../include/class/NetworkMap.class.php:2799 -#: ../../include/class/NetworkMap.class.php:3155 +#: ../../include/class/NetworkMap.class.php:2933 +#: ../../include/class/NetworkMap.class.php:3288 msgid "Add node" msgstr "ノード追加" -#: ../../include/class/NetworkMap.class.php:2800 +#: ../../include/class/NetworkMap.class.php:2934 msgid "Set center" msgstr "中心設定" -#: ../../include/class/NetworkMap.class.php:2802 -msgid "Refresh Holding area" -msgstr "保持エリアの更新" - -#: ../../include/class/NetworkMap.class.php:2803 -#: ../../include/class/NetworkMap.class.php:2806 +#: ../../include/class/NetworkMap.class.php:2936 +#: ../../include/class/NetworkMap.class.php:2939 msgid "Proceed" msgstr "実行" -#: ../../include/class/NetworkMap.class.php:2804 +#: ../../include/class/NetworkMap.class.php:2937 msgid "" -"Resetting the map will delete all customizations you have done, including manual " -"relationships between elements, new items, etc." +"Resetting the map will delete all customizations you have done, including " +"manual relationships between elements, new items, etc." msgstr "" -"マップリセットは、要素や新たなアイテム間の関連付けなど、行った全てのカスタマイズを削除" -"します。" +"マップリセットは、要素や新たなアイテム間の関連付けなど、行った全てのカスタマイ" +"ズを削除します。" -#: ../../include/class/NetworkMap.class.php:2808 +#: ../../include/class/NetworkMap.class.php:2941 msgid "Restart map" msgstr "マップリセット" -#: ../../include/class/NetworkMap.class.php:2809 +#: ../../include/class/NetworkMap.class.php:2942 msgid "Abort the interface relationship" msgstr "インタフェース関連付けの中止" -#: ../../include/class/NetworkMap.class.php:2827 -#: ../../include/class/NetworkMap.class.php:2876 +#: ../../include/class/NetworkMap.class.php:2960 +#: ../../include/class/NetworkMap.class.php:3009 msgid "Edit node" msgstr "ノード編集" -#: ../../include/class/NetworkMap.class.php:2837 -#: ../../include/class/NetworkMap.class.php:2886 +#: ../../include/class/NetworkMap.class.php:2970 +#: ../../include/class/NetworkMap.class.php:3019 msgid "Adresses" msgstr "アドレス" -#: ../../include/class/NetworkMap.class.php:2839 -#: ../../include/class/NetworkMap.class.php:2888 +#: ../../include/class/NetworkMap.class.php:2972 +#: ../../include/class/NetworkMap.class.php:3021 msgid "OS type" msgstr "OS 種別" -#: ../../include/class/NetworkMap.class.php:2846 -#: ../../include/class/NetworkMap.class.php:2847 -#: ../../include/class/NetworkMap.class.php:2895 -#: ../../include/class/NetworkMap.class.php:2896 +#: ../../include/class/NetworkMap.class.php:2979 +#: ../../include/class/NetworkMap.class.php:2980 +#: ../../include/class/NetworkMap.class.php:3028 +#: ../../include/class/NetworkMap.class.php:3029 msgid "Node Details" msgstr "ノード詳細" -#: ../../include/class/NetworkMap.class.php:2921 -#: ../../include/class/NetworkMap.class.php:2922 +#: ../../include/class/NetworkMap.class.php:3054 +#: ../../include/class/NetworkMap.class.php:3055 msgid "Interface Information (SNMP)" msgstr "インタフェース情報 (SNMP)" -#: ../../include/class/NetworkMap.class.php:2933 +#: ../../include/class/NetworkMap.class.php:3066 msgid "Shape" msgstr "形" -#: ../../include/class/NetworkMap.class.php:2936 +#: ../../include/class/NetworkMap.class.php:3069 msgid "Circle" msgstr "円" -#: ../../include/class/NetworkMap.class.php:2937 +#: ../../include/class/NetworkMap.class.php:3070 msgid "Square" msgstr "四角" -#: ../../include/class/NetworkMap.class.php:2938 +#: ../../include/class/NetworkMap.class.php:3071 msgid "Rhombus" msgstr "ひしがた" -#: ../../include/class/NetworkMap.class.php:2951 +#: ../../include/class/NetworkMap.class.php:3084 msgid "name node" msgstr "ノード名" -#: ../../include/class/NetworkMap.class.php:2969 -#: ../../include/class/NetworkMap.class.php:3272 +#: ../../include/class/NetworkMap.class.php:3102 +#: ../../include/class/NetworkMap.class.php:3405 msgid "name fictional node" msgstr "仮想ノード名" -#: ../../include/class/NetworkMap.class.php:2974 -#: ../../include/class/NetworkMap.class.php:3277 +#: ../../include/class/NetworkMap.class.php:3107 +#: ../../include/class/NetworkMap.class.php:3410 msgid "Networkmap to link" msgstr "リンクするネットワークマップ" -#: ../../include/class/NetworkMap.class.php:2986 +#: ../../include/class/NetworkMap.class.php:3119 msgid "Update fictional node" msgstr "仮想ノード更新" -#: ../../include/class/NetworkMap.class.php:2996 -#: ../../include/class/NetworkMap.class.php:2997 +#: ../../include/class/NetworkMap.class.php:3129 +#: ../../include/class/NetworkMap.class.php:3130 msgid "Node options" msgstr "ノードオプション" -#: ../../include/class/NetworkMap.class.php:3008 -#: ../../include/class/NetworkMap.class.php:3101 +#: ../../include/class/NetworkMap.class.php:3141 +#: ../../include/class/NetworkMap.class.php:3234 msgid "Node source" msgstr "ノードソース" -#: ../../include/class/NetworkMap.class.php:3009 -#: ../../include/class/NetworkMap.class.php:3102 +#: ../../include/class/NetworkMap.class.php:3142 +#: ../../include/class/NetworkMap.class.php:3235 msgid "Interface source" msgstr "インタフェースソース" -#: ../../include/class/NetworkMap.class.php:3010 -#: ../../include/class/NetworkMap.class.php:3103 +#: ../../include/class/NetworkMap.class.php:3143 +#: ../../include/class/NetworkMap.class.php:3236 msgid "Interface Target" msgstr "インタフェースターゲット" -#: ../../include/class/NetworkMap.class.php:3012 -#: ../../include/class/NetworkMap.class.php:3104 +#: ../../include/class/NetworkMap.class.php:3145 +#: ../../include/class/NetworkMap.class.php:3237 msgid "Node target" msgstr "ノードターゲット" -#: ../../include/class/NetworkMap.class.php:3013 +#: ../../include/class/NetworkMap.class.php:3146 msgid "E." msgstr "E." -#: ../../include/class/NetworkMap.class.php:3075 +#: ../../include/class/NetworkMap.class.php:3208 msgid "There are not relations" msgstr "関連付がありません。" -#: ../../include/class/NetworkMap.class.php:3143 +#: ../../include/class/NetworkMap.class.php:3276 msgid "Add interface link" msgstr "インタフェースリンクを追加" -#: ../../include/class/NetworkMap.class.php:3174 -#: ../../include/class/NetworkMap.class.php:3196 -#: ../../include/class/NetworkMap.class.php:3197 -#: ../../include/class/NetworkMap.class.php:3247 -#: ../../include/class/NetworkMap.class.php:3259 -#: ../../include/class/NetworkMap.class.php:3300 +#: ../../include/class/NetworkMap.class.php:3307 +#: ../../include/class/NetworkMap.class.php:3329 +#: ../../include/class/NetworkMap.class.php:3330 +#: ../../include/class/NetworkMap.class.php:3380 +#: ../../include/class/NetworkMap.class.php:3392 +#: ../../include/class/NetworkMap.class.php:3433 msgid "Add agent node" msgstr "エージェントノード追加" -#: ../../include/class/NetworkMap.class.php:3258 +#: ../../include/class/NetworkMap.class.php:3391 msgid "Add agent node (filter by group)" msgstr "エージェントノード追加 (グループによるフィルタ)" -#: ../../include/class/NetworkMap.class.php:3289 +#: ../../include/class/NetworkMap.class.php:3422 msgid "Add fictional node" msgstr "仮想ノード追加" -#: ../../include/class/NetworkMap.class.php:3299 +#: ../../include/class/NetworkMap.class.php:3432 msgid "Add fictional point" msgstr "仮想ポイント追加" -#: ../../include/class/NetworkMap.class.php:3513 +#: ../../include/class/NetworkMap.class.php:3516 +#: ../../operation/visual_console/legacy_public_view.php:198 +#: ../../operation/visual_console/legacy_view.php:339 +msgid "Until refresh" +msgstr "リフレッシュまで" + +#: ../../include/class/NetworkMap.class.php:3675 msgid "Open Minimap" msgstr "ミニマップを開く" -#: ../../include/class/NetworkMap.class.php:3519 +#: ../../include/class/NetworkMap.class.php:3681 msgid "Hide Labels" msgstr "ラベルを隠す" @@ -45352,7 +46822,8 @@ msgstr "名前またはスクリプトのフルパスは空にできません" #: ../../include/class/ManageNetScanScripts.class.php:255 #: ../../include/class/ManageNetScanScripts.class.php:342 msgid "Problem deleting Net scan Scripts, Not selected script" -msgstr "ネットスキャンスクリプトの削除に失敗しました。スクリプトが選択されていません" +msgstr "" +"ネットスキャンスクリプトの削除に失敗しました。スクリプトが選択されていません" #: ../../include/class/ManageNetScanScripts.class.php:310 msgid "Problem updating" @@ -45387,109 +46858,250 @@ msgstr "スクリプトのフルパス" msgid "Not a valid JSON: %s" msgstr "不正な JSON: %s" -#: ../../include/class/CredentialStore.class.php:621 +#: ../../include/class/CredentialStore.class.php:622 msgid "Key identifier is required" msgstr "鍵の識別子が必要です" -#: ../../include/class/CredentialStore.class.php:623 +#: ../../include/class/CredentialStore.class.php:624 msgid "You must select a group where store this key!" msgstr "この鍵を保存するグループを選択する必要があります。" -#: ../../include/class/CredentialStore.class.php:625 +#: ../../include/class/CredentialStore.class.php:626 msgid "You must specify a product type" msgstr "製品タイプを指定する必要があります" -#: ../../include/class/CredentialStore.class.php:627 +#: ../../include/class/CredentialStore.class.php:628 msgid "You must specify a username and/or password" msgstr "ユーザ名およびパスワードを指定する必要があります" -#: ../../include/class/CredentialStore.class.php:629 +#: ../../include/class/CredentialStore.class.php:630 msgid "Identifier with forbidden characters. Check the documentation." msgstr "禁止文字を含む識別子。ドキュメントを確認してください。" -#: ../../include/class/CredentialStore.class.php:742 +#: ../../include/class/CredentialStore.class.php:780 msgid "identifier cannot be empty" msgstr "識別子は空にできません" -#: ../../include/class/CredentialStore.class.php:785 +#: ../../include/class/CredentialStore.class.php:823 #, php-format -msgid "Database encryption is not enabled. Credentials will be stored in plaintext. %s" -msgstr "データベースの暗号化が無効です。認証情報がプレーンテキストで保存されます。%s" +msgid "" +"Database encryption is not enabled. Credentials will be stored in plaintext. %s" +msgstr "" +"データベースの暗号化が無効です。認証情報がプレーンテキストで保存されます。%s" -#: ../../include/class/CredentialStore.class.php:804 -#: ../../include/class/CredentialStore.class.php:937 +#: ../../include/class/CredentialStore.class.php:842 +#: ../../include/class/CredentialStore.class.php:975 msgid "Product" msgstr "製品" -#: ../../include/class/CredentialStore.class.php:869 +#: ../../include/class/CredentialStore.class.php:907 msgid "Add key" msgstr "鍵を追加" -#: ../../include/class/CredentialStore.class.php:960 +#: ../../include/class/CredentialStore.class.php:988 +msgid "WMI" +msgstr "WMI" + +#: ../../include/class/CredentialStore.class.php:989 +#: ../../include/class/SnmpConsole.class.php:231 +#: ../../operation/snmpconsole/snmp_statistics.php:102 +#: ../../operation/menu.php:147 +msgid "SNMP" +msgstr "SNMP" + +#: ../../include/class/CredentialStore.class.php:1000 msgid "Extra (2)" msgstr "拡張 (2)" -#: ../../include/class/CredentialStore.class.php:970 -#: ../../include/class/CredentialStore.class.php:1141 +#: ../../include/class/CredentialStore.class.php:1010 +#: ../../include/class/CredentialStore.class.php:1329 msgid "Access key ID" msgstr "アクセスキー ID" -#: ../../include/class/CredentialStore.class.php:971 -#: ../../include/class/CredentialStore.class.php:1142 +#: ../../include/class/CredentialStore.class.php:1011 +#: ../../include/class/CredentialStore.class.php:1330 msgid "Secret access key" msgstr "シークレットアクセスキー" -#: ../../include/class/CredentialStore.class.php:977 -#: ../../include/class/CredentialStore.class.php:994 +#: ../../include/class/CredentialStore.class.php:1017 +#: ../../include/class/CredentialStore.class.php:1047 msgid "Account ID" msgstr "アカウント ID" -#: ../../include/class/CredentialStore.class.php:978 -#: ../../include/class/CredentialStore.class.php:1149 +#: ../../include/class/CredentialStore.class.php:1018 +#: ../../include/class/CredentialStore.class.php:1337 msgid "Application secret" msgstr "アプリケーションシークレット" -#: ../../include/class/CredentialStore.class.php:979 -#: ../../include/class/CredentialStore.class.php:1150 +#: ../../include/class/CredentialStore.class.php:1019 +#: ../../include/class/CredentialStore.class.php:1338 msgid "Tenant or domain name" msgstr "テナントまたはドメイン名" -#: ../../include/class/CredentialStore.class.php:980 -#: ../../include/class/CredentialStore.class.php:1151 +#: ../../include/class/CredentialStore.class.php:1020 +#: ../../include/class/CredentialStore.class.php:1339 msgid "Subscription id" msgstr "サブスクリプション ID" -#: ../../include/class/CredentialStore.class.php:984 -#: ../../include/class/CredentialStore.class.php:1167 +#: ../../include/class/CredentialStore.class.php:1024 +#: ../../include/class/CredentialStore.class.php:1355 msgid "Auth JSON" msgstr "認証 JSON" -#: ../../include/class/CredentialStore.class.php:1148 +#: ../../include/class/CredentialStore.class.php:1138 +msgid "1" +msgstr "1" + +#: ../../include/class/CredentialStore.class.php:1139 +msgid "2" +msgstr "2" + +#: ../../include/class/CredentialStore.class.php:1140 +msgid "2c" +msgstr "2c" + +#: ../../include/class/CredentialStore.class.php:1141 +msgid "3" +msgstr "3" + +#: ../../include/class/CredentialStore.class.php:1158 +#: ../../include/class/CredentialStore.class.php:1447 +msgid "Authenticated and non-private method" +msgstr "認証あり、暗号化なし" + +#: ../../include/class/CredentialStore.class.php:1159 +#: ../../include/class/CredentialStore.class.php:1449 +msgid "Authenticated and private method" +msgstr "認証あり、暗号化あり" + +#: ../../include/class/CredentialStore.class.php:1160 +#: ../../include/class/CredentialStore.class.php:1451 +msgid "Non-authenticated and non-private method" +msgstr "認証なし、暗号化なし" + +#: ../../include/class/CredentialStore.class.php:1168 +#: ../../include/class/CredentialStore.class.php:1464 +#: ../../include/class/AgentWizard.class.php:907 +msgid "User authentication" +msgstr "ユーザ認証" + +#: ../../include/class/CredentialStore.class.php:1203 +#: ../../include/class/CredentialStore.class.php:1498 +#: ../../include/class/AgentWizard.class.php:936 +msgid "Password authentication" +msgstr "パスワード認証" + +#: ../../include/class/CredentialStore.class.php:1336 msgid "Client ID" msgstr "クライアントID" -#: ../../include/class/CredentialStore.class.php:1157 +#: ../../include/class/CredentialStore.class.php:1345 msgid "Account ID." msgstr "アカウント ID" -#: ../../include/class/CredentialStore.class.php:1243 +#: ../../include/class/CredentialStore.class.php:1670 msgid "Register new key into keystore" msgstr "キーストアへ新たな鍵を登録" -#: ../../include/class/CredentialStore.class.php:1247 +#: ../../include/class/CredentialStore.class.php:1674 msgid "Update key" msgstr "鍵の更新" -#: ../../include/class/AuditLog.class.php:136 +#: ../../include/class/SnmpConsole.class.php:262 +msgid "Refresh every" +msgstr "更新周期" + +#: ../../include/class/SnmpConsole.class.php:274 +msgid "SNMP Traps" +msgstr "SNMP トラップ" + +#: ../../include/class/SnmpConsole.class.php:340 +msgid "Trap subtype" +msgstr "トラップサブタイプ" + +#: ../../include/class/SnmpConsole.class.php:354 +#: ../../include/functions_reporting.php:5786 +#: ../../include/functions_reporting.php:5803 +#: ../../include/functions_reporting.php:5820 +msgid "Not triggered" +msgstr "未発報" + +#: ../../include/class/SnmpConsole.class.php:355 +msgid "Triggered" +msgstr "発報" + +#: ../../include/class/SnmpConsole.class.php:372 +#: ../../include/class/SnmpConsole.class.php:521 +#: ../../include/class/SnmpConsole.class.php:795 +#: ../../include/functions_reporting.php:2361 +#: ../../include/functions_reporting.php:4493 +#: ../../include/functions_reporting.php:11196 +msgid "Not validated" +msgstr "未承諾" + +#: ../../include/class/SnmpConsole.class.php:373 +#: ../../include/class/SnmpConsole.class.php:512 +#: ../../include/class/SnmpConsole.class.php:805 +#: ../../include/functions_reporting.php:2360 +#: ../../include/functions_reporting.php:4492 +#: ../../include/functions_reporting.php:11195 +#: ../../include/functions_events.php:2546 +#: ../../include/functions_events.php:3128 +#: ../../include/functions_events.php:3400 +#: ../../include/functions_events.php:3409 +#: ../../include/functions_events.php:3416 +#: ../../include/functions_events.php:3423 +msgid "Validated" +msgstr "承諾済み" + +#: ../../include/class/SnmpConsole.class.php:454 +msgid "Group by Enterprise String/IP" +msgstr "Enterprise 文字列/IP ごとのグループ" + +#: ../../include/class/SnmpConsole.class.php:817 +#: ../../operation/snmpconsole/snmp_statistics.php:197 +msgid "View agent details" +msgstr "エージェント概要の参照" + +#: ../../include/class/SnmpConsole.class.php:1363 +msgid "Count:" +msgstr "件数:" + +#: ../../include/class/SnmpConsole.class.php:1363 +msgid "First trap:" +msgstr "最初のトラップ:" + +#: ../../include/class/SnmpConsole.class.php:1363 +msgid "Last trap:" +msgstr "最新のトラップ:" + +#: ../../include/class/SnmpConsole.class.php:1401 +msgid "Type:" +msgstr "タイプ:" + +#: ../../include/class/SnmpConsole.class.php:1415 +msgid "Enterprise String:" +msgstr "Enterprise文字列:" + +#: ../../include/class/SnmpConsole.class.php:1424 +#: ../../include/class/SnmpConsole.class.php:1438 +msgid "Variable bindings:" +msgstr "バインド変数:" + +#: ../../include/class/SnmpConsole.class.php:1434 +msgid "See more details" +msgstr "詳細表示" + +#: ../../include/class/AuditLog.class.php:135 #, php-format msgid "%s audit" msgstr "%s 監査" -#: ../../include/class/AuditLog.class.php:136 +#: ../../include/class/AuditLog.class.php:135 msgid "Review Logs" msgstr "ログ一覧" -#: ../../include/class/AuditLog.class.php:149 +#: ../../include/class/AuditLog.class.php:148 msgid "System Audit log" msgstr "システム監査ログ" @@ -45550,15 +47162,15 @@ msgstr "検索するには Enter キーを押します" msgid "NetScan Custom" msgstr "カスタムネットスキャン" -#: ../../include/class/CustomNetScan.class.php:611 +#: ../../include/class/CustomNetScan.class.php:612 msgid "Recon script" msgstr "自動検出スクリプト" -#: ../../include/class/CustomNetScan.class.php:652 +#: ../../include/class/CustomNetScan.class.php:653 msgid "Explanation" msgstr "説明" -#: ../../include/class/CustomNetScan.class.php:668 +#: ../../include/class/CustomNetScan.class.php:669 msgid "macro_desc" msgstr "マクロの説明" @@ -45586,344 +47198,361 @@ msgstr "テンプレート %s を削除しました" msgid "Error deleting %s template" msgstr "%s テンプレートの削除エラー" -#: ../../include/class/ModuleTemplates.class.php:559 +#: ../../include/class/ModuleTemplates.class.php:560 msgid "Module successfully deleted" msgstr "モジュールを削除しました" -#: ../../include/class/ModuleTemplates.class.php:561 +#: ../../include/class/ModuleTemplates.class.php:562 msgid "Error deleting module" msgstr "モジュール削除エラー" -#: ../../include/class/ModuleTemplates.class.php:572 +#: ../../include/class/ModuleTemplates.class.php:573 msgid "Block successfully deleted" msgstr "ブロックを削除しました" -#: ../../include/class/ModuleTemplates.class.php:574 +#: ../../include/class/ModuleTemplates.class.php:575 msgid "Error deleting block" msgstr "ブロック削除エラー" -#: ../../include/class/ModuleTemplates.class.php:586 +#: ../../include/class/ModuleTemplates.class.php:587 msgid "All templates deleted" msgstr "全テンプレートを削除しました" -#: ../../include/class/ModuleTemplates.class.php:588 +#: ../../include/class/ModuleTemplates.class.php:589 msgid "Error deleting all templates" msgstr "全テンプレートの削除エラー" -#: ../../include/class/ModuleTemplates.class.php:597 +#: ../../include/class/ModuleTemplates.class.php:598 msgid "Selected templates deleted" msgstr "選択したテンプレートを削除しました" -#: ../../include/class/ModuleTemplates.class.php:599 +#: ../../include/class/ModuleTemplates.class.php:600 msgid "Error deleting selected templates" msgstr "選択したテンプレートの削除エラー" -#: ../../include/class/ModuleTemplates.class.php:611 +#: ../../include/class/ModuleTemplates.class.php:612 msgid "Something gone wrong. Please, try again" msgstr "何らかの問題が発生しました。もう一度試してください。" -#: ../../include/class/ModuleTemplates.class.php:662 +#: ../../include/class/ModuleTemplates.class.php:663 msgid "The modules is already added" msgstr "モジュールはすでに追加されています" -#: ../../include/class/ModuleTemplates.class.php:1111 -#: ../../include/class/ModuleTemplates.class.php:1383 +#: ../../include/class/ModuleTemplates.class.php:1112 +#: ../../include/class/ModuleTemplates.class.php:1384 msgid "Add components" msgstr "全コンポーネント" -#: ../../include/class/ModuleTemplates.class.php:1163 -#: ../../include/class/ModuleTemplates.class.php:1298 +#: ../../include/class/ModuleTemplates.class.php:1164 +#: ../../include/class/ModuleTemplates.class.php:1299 msgid "No module blocks for this profile" msgstr "このプロファイルにはモジュールブロックがありません" -#: ../../include/class/ModuleTemplates.class.php:1186 +#: ../../include/class/ModuleTemplates.class.php:1187 msgid "Delete this block" msgstr "このブロックを削除" -#: ../../include/class/ModuleTemplates.class.php:1188 +#: ../../include/class/ModuleTemplates.class.php:1189 msgid "Do you want delete this block?" msgstr "このブロックを削除しますか?" -#: ../../include/class/ModuleTemplates.class.php:1283 +#: ../../include/class/ModuleTemplates.class.php:1284 msgid "Delete this module" msgstr "このモジュールを削除" -#: ../../include/class/ModuleTemplates.class.php:1285 +#: ../../include/class/ModuleTemplates.class.php:1286 msgid "Do you want delete this module?" msgstr "このモジュールを削除しますか?" -#: ../../include/class/ModuleTemplates.class.php:1476 +#: ../../include/class/ModuleTemplates.class.php:1477 msgid "Do you want delete all templates?" msgstr "全テンプレートを削除しますか?" -#: ../../include/class/ModuleTemplates.class.php:1479 +#: ../../include/class/ModuleTemplates.class.php:1480 msgid "Do you want delete the selected templates?" msgstr "選択したテンプレートを削除しますか?" -#: ../../include/class/ConsoleSupervisor.php:839 +#: ../../include/class/ConsoleSupervisor.php:834 msgid "Limited mode." msgstr "制限モード" -#: ../../include/class/ConsoleSupervisor.php:851 +#: ../../include/class/ConsoleSupervisor.php:848 msgid "License is about to expire" msgstr "ライセンスの有効期限が近づいています" -#: ../../include/class/ConsoleSupervisor.php:854 +#: ../../include/class/ConsoleSupervisor.php:851 msgid "Support is about to expire" msgstr "サポートの有効期限が近づいています" -#: ../../include/class/ConsoleSupervisor.php:872 +#: ../../include/class/ConsoleSupervisor.php:869 msgid "Expired license" msgstr "ライセンス切れ" -#: ../../include/class/ConsoleSupervisor.php:873 +#: ../../include/class/ConsoleSupervisor.php:870 msgid "Your license has expired. Please, contact our sales department." msgstr "ライセンスが切れています。営業窓口までご連絡ください。" -#: ../../include/class/ConsoleSupervisor.php:875 +#: ../../include/class/ConsoleSupervisor.php:872 msgid "Support expired" msgstr "サポートの有効期限が切れています" -#: ../../include/class/ConsoleSupervisor.php:876 +#: ../../include/class/ConsoleSupervisor.php:873 msgid "This license is outside of support. Please, contact our sales department." msgstr "このライセンスはサポート外です。販売元の営業に連絡してください。" -#: ../../include/class/ConsoleSupervisor.php:957 +#: ../../include/class/ConsoleSupervisor.php:954 msgid "Attachment directory is not writable" msgstr "添付ファイルディレクトリ書き込み不可" -#: ../../include/class/ConsoleSupervisor.php:959 +#: ../../include/class/ConsoleSupervisor.php:956 #, php-format -msgid "Directory %s is not writable. Please, configure corresponding permissions." -msgstr "%s ディレクトリに書き込めません。対応するパーミッションの設定をしてください。" +msgid "" +"Directory %s is not writable. Please, configure corresponding permissions." +msgstr "" +"%s ディレクトリに書き込めません。対応するパーミッションの設定をしてください。" -#: ../../include/class/ConsoleSupervisor.php:979 +#: ../../include/class/ConsoleSupervisor.php:976 msgid "There are too many files in attachment directory" msgstr "添付ファイルディレクトリに多くのファイルがあります" -#: ../../include/class/ConsoleSupervisor.php:981 +#: ../../include/class/ConsoleSupervisor.php:978 #, php-format msgid "" -"There are more than %d files in attachment, consider cleaning up attachment directory " -"manually." +"There are more than %d files in attachment, consider cleaning up attachment " +"directory manually." msgstr "" -"attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリを手動で" -"整理することを検討してください。" +"attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリ" +"を手動で整理することを検討してください。" -#: ../../include/class/ConsoleSupervisor.php:1013 +#: ../../include/class/ConsoleSupervisor.php:1010 msgid "Remote configuration directory is not readable" msgstr "リモート設定ディレクトリが読めません" -#: ../../include/class/ConsoleSupervisor.php:1015 +#: ../../include/class/ConsoleSupervisor.php:1012 #, php-format -msgid "Remote configuration directory %s is not readable. Please, adjust configuration." +msgid "" +"Remote configuration directory %s is not readable. Please, adjust " +"configuration." msgstr "リモート設定ディレクトリ %s が読めません。設定を調整してください。" -#: ../../include/class/ConsoleSupervisor.php:1032 +#: ../../include/class/ConsoleSupervisor.php:1029 msgid "Remote configuration directory is not writable" msgstr "リモート設定ディレクトリに書けません" -#: ../../include/class/ConsoleSupervisor.php:1034 +#: ../../include/class/ConsoleSupervisor.php:1031 #, php-format -msgid "Remote configuration directory %s is not writable. Please, adjust configuration." +msgid "" +"Remote configuration directory %s is not writable. Please, adjust " +"configuration." msgstr "リモート設定ディレクトリ %s に書き込めません。設定を調整してください。" -#: ../../include/class/ConsoleSupervisor.php:1050 +#: ../../include/class/ConsoleSupervisor.php:1047 msgid "Remote collections directory is not writable" msgstr "リモートコレクションディレクトリに書き込めません" -#: ../../include/class/ConsoleSupervisor.php:1052 +#: ../../include/class/ConsoleSupervisor.php:1049 #, php-format msgid "Collections directory %s is not writable. Please, adjust configuration." msgstr "コレクションディレクトリ %s に書き込めません。設定を調整してください。" -#: ../../include/class/ConsoleSupervisor.php:1068 +#: ../../include/class/ConsoleSupervisor.php:1065 msgid "Remote md5 directory is not writable" msgstr "リモート md5 ディレクトリに書き込めません" -#: ../../include/class/ConsoleSupervisor.php:1070 +#: ../../include/class/ConsoleSupervisor.php:1067 #, php-format msgid "MD5 directory %s is not writable. Please, adjust configuration." msgstr "MDS ディレクトリ %s に書き込めません。設定を調整してください。" -#: ../../include/class/ConsoleSupervisor.php:1098 +#: ../../include/class/ConsoleSupervisor.php:1095 msgid "There are too much files in spool" msgstr "スプールに多くのファイルがあります" -#: ../../include/class/ConsoleSupervisor.php:1100 +#: ../../include/class/ConsoleSupervisor.php:1097 #, php-format -msgid "There are more than %d files in %s. Consider checking DataServer performance" +msgid "" +"There are more than %d files in %s. Consider checking DataServer performance" msgstr "" -"%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してくださ" -"い。" +"%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してく" +"ださい。" -#: ../../include/class/ConsoleSupervisor.php:1121 +#: ../../include/class/ConsoleSupervisor.php:1118 msgid "There are too many BADXML files in spool" msgstr "スプールに BADXML ファイルが大量にあります" -#: ../../include/class/ConsoleSupervisor.php:1123 +#: ../../include/class/ConsoleSupervisor.php:1120 #, php-format msgid "There are more than %d files in %s. Consider checking software agents." msgstr "" -"%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してください。" +"%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してくだ" +"さい。" -#: ../../include/class/ConsoleSupervisor.php:1210 +#: ../../include/class/ConsoleSupervisor.php:1207 #, php-format msgid "%s (%s) is lacking performance." msgstr "%s (%s) はパフォーマンスが低下しています。" -#: ../../include/class/ConsoleSupervisor.php:1278 +#: ../../include/class/ConsoleSupervisor.php:1275 msgid "No servers available." msgstr "サーバがありません。" -#: ../../include/class/ConsoleSupervisor.php:1279 +#: ../../include/class/ConsoleSupervisor.php:1276 msgid "" -"There are no servers registered in this console. Please, check installation guide." +"There are no servers registered in this console. Please, check installation " +"guide." msgstr "" -"コンソールに登録されたサーバがありません。インストールガイドを確認してください。" +"コンソールに登録されたサーバがありません。インストールガイドを確認してくださ" +"い。" -#: ../../include/class/ConsoleSupervisor.php:1324 +#: ../../include/class/ConsoleSupervisor.php:1321 #, php-format msgid "%s (%s) has crashed." msgstr "%s (%s) がクラッシュしました。" -#: ../../include/class/ConsoleSupervisor.php:1330 +#: ../../include/class/ConsoleSupervisor.php:1327 #, php-format msgid "%s (%s) has crashed, please check log files." msgstr "%s (%s) がクラッシュしました。ログファイルを確認してください。" -#: ../../include/class/ConsoleSupervisor.php:1337 +#: ../../include/class/ConsoleSupervisor.php:1334 #, php-format msgid "%s (%s) is not running." msgstr "%s (%s) が動作していません。" -#: ../../include/class/ConsoleSupervisor.php:1342 +#: ../../include/class/ConsoleSupervisor.php:1339 #, php-format msgid "" -"%s (%s) is not running. Please, check configuration file or remove this server from " -"server list." +"%s (%s) is not running. Please, check configuration file or remove this server " +"from server list." msgstr "" -"%s (%s) が動作していません。設定ファイルを確認するかこのサーバをサーバ一覧から削除して" -"ください。" +"%s (%s) が動作していません。設定ファイルを確認するかこのサーバをサーバ一覧から" +"削除してください。" -#: ../../include/class/ConsoleSupervisor.php:1394 +#: ../../include/class/ConsoleSupervisor.php:1391 msgid "No master servers found." msgstr "マスターサーバがありません。" -#: ../../include/class/ConsoleSupervisor.php:1395 +#: ../../include/class/ConsoleSupervisor.php:1392 msgid "" -"At least one server must be defined to run as master. Please, check documentation." +"At least one server must be defined to run as master. Please, check " +"documentation." msgstr "" -"少なくとも一つのサーバがマスターとして動作するように定義されている必要があります。ド" -"キュメントを確認してください。" +"少なくとも一つのサーバがマスターとして動作するように定義されている必要がありま" +"す。ドキュメントを確認してください。" -#: ../../include/class/ConsoleSupervisor.php:1450 +#: ../../include/class/ConsoleSupervisor.php:1447 msgid "PHP safe mode is enabled. Some features may not work properly" msgstr "PHP safe モードが有効です。いくつかの機能は正しく動作しません。" -#: ../../include/class/ConsoleSupervisor.php:1451 +#: ../../include/class/ConsoleSupervisor.php:1448 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)" +"To disable it, go to your PHP configuration file (php.ini) and put safe_mode = " +"Off (Do not forget to restart apache process after changes)" msgstr "" -"無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してください。" -"(変更後は apache プロセスの再起動を忘れないようにしてください)" +"無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してく" +"ださい。(変更後は apache プロセスの再起動を忘れないようにしてください)" -#: ../../include/class/ConsoleSupervisor.php:1469 +#: ../../include/class/ConsoleSupervisor.php:1466 #, php-format msgid "%s value in PHP configuration is not recommended" msgstr "PHP 設定の %s の値は、お勧めしません。" -#: ../../include/class/ConsoleSupervisor.php:1473 +#: ../../include/class/ConsoleSupervisor.php:1470 #, php-format msgid "Recommended value is %s" msgstr "推奨値は %s です" -#: ../../include/class/ConsoleSupervisor.php:1474 -#: ../../include/class/ConsoleSupervisor.php:1498 +#: ../../include/class/ConsoleSupervisor.php:1471 +#: ../../include/class/ConsoleSupervisor.php:1495 msgid "Unlimited" msgstr "無制限" -#: ../../include/class/ConsoleSupervisor.php:1475 +#: ../../include/class/ConsoleSupervisor.php:1472 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 プ" -"ロセスの再起動を忘れないようにしてください)" +"PHP 設定ファイル(php.ini)で変更もしくは、管理者に連絡してください。(設定後は " +"apache プロセスの再起動を忘れないようにしてください)" -#: ../../include/class/ConsoleSupervisor.php:1497 -#: ../../include/class/ConsoleSupervisor.php:1521 -#: ../../include/class/ConsoleSupervisor.php:1550 +#: ../../include/class/ConsoleSupervisor.php:1494 +#: ../../include/class/ConsoleSupervisor.php:1518 +#: ../../include/class/ConsoleSupervisor.php:1547 #: ../../include/class/ConsoleSupervisor.php:1628 #, php-format msgid "Recommended value is: %s" msgstr "推奨値: %s" -#: ../../include/class/ConsoleSupervisor.php:1499 -#: ../../include/class/ConsoleSupervisor.php:1523 -#: ../../include/class/ConsoleSupervisor.php:1570 +#: ../../include/class/ConsoleSupervisor.php:1496 +#: ../../include/class/ConsoleSupervisor.php:1520 +#: ../../include/class/ConsoleSupervisor.php:1567 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 プ" -"ロセスの再起動を忘れないでください)" +"PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。(変更後は " +"apache プロセスの再起動を忘れないでください)" -#: ../../include/class/ConsoleSupervisor.php:1522 -#: ../../include/class/ConsoleSupervisor.php:1551 +#: ../../include/class/ConsoleSupervisor.php:1519 +#: ../../include/class/ConsoleSupervisor.php:1548 #, php-format msgid "%s or greater" msgstr "%s または大きい" -#: ../../include/class/ConsoleSupervisor.php:1569 +#: ../../include/class/ConsoleSupervisor.php:1566 msgid "Problems with disable_functions in php.ini" msgstr "php.ini 内の disable_functions に問題があります" -#: ../../include/class/ConsoleSupervisor.php:1570 +#: ../../include/class/ConsoleSupervisor.php:1567 msgid "" "The variable disable_functions contains functions system() or exec() in PHP " "configuration file (php.ini)" msgstr "" -"PHP 設定ファイル(php.ini)内の変数 disable_functions に system() または exec() を含んで" -"います。" +"PHP 設定ファイル(php.ini)内の変数 disable_functions に system() または exec() " +"を含んでいます。" -#: ../../include/class/ConsoleSupervisor.php:1587 -msgid "PhantomJS is not installed" -msgstr "PhantomJS がインストールされていません" +#: ../../include/class/ConsoleSupervisor.php:1583 +msgid "chromium is not installed" +msgstr "chromium がインストールされていません" -#: ../../include/class/ConsoleSupervisor.php:1588 +#: ../../include/class/ConsoleSupervisor.php:1584 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:" +"To be able to create images of the graphs for PDFs, please install the " +"chromium extension. For that, it is necessary to follow these steps:" msgstr "" -"PDF でグラフイメージを作成できるようにするには、PhantomJS をインストールしてください。" -"それには、以下のステップを行う必要があります。" +"PDF でグラフイメージを作成できるようにするには、chromium 拡張をインストールして" +"ください。それには、以下のステップを行う必要があります。" #: ../../include/class/ConsoleSupervisor.php:1605 msgid "PHP UPDATE REQUIRED" msgstr "PHP のアップデートが必要です" -#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:30 +#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../general/php_message.php:30 msgid "" -"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or higher." +"For a correct operation of PandoraFMS, PHP must be updated to version 8.0 or " +"higher." msgstr "" -"Pandora FMS を正しく動作させるには、PHP をバージョン 7.0 以降に更新する必要がありま" -"す。" +"Pandora FMS を正しく動作させるには、PHP をバージョン 8.0 以降に更新する必要があ" +"ります。" -#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:31 +#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../general/php_message.php:31 msgid "Otherwise, functionalities will be lost." msgstr "そうしないと、機能が動作しません。" -#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:33 +#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../general/php_message.php:33 msgid "Report download in PDF format" msgstr "PDF フォーマットでのレポートダウンロード" -#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:34 +#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../general/php_message.php:34 msgid "Emails Sending" msgstr "メール送信" -#: ../../include/class/ConsoleSupervisor.php:1606 ../../general/php7_message.php:35 +#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../general/php_message.php:35 msgid "Metaconsole Collections" msgstr "メタコンソールコレクション" @@ -45933,7 +47562,8 @@ msgstr "ヒストリデータベースがありません" #: ../../include/class/ConsoleSupervisor.php:1673 msgid "" -"Historical database is enabled, though not accessible with the current configuration." +"Historical database is enabled, though not accessible with the current " +"configuration." msgstr "ヒストリデータベースが有効ですが、現在の設定でアクセスできません。" #: ../../include/class/ConsoleSupervisor.php:1716 @@ -45943,11 +47573,13 @@ msgstr "データベースメンテナンスにおける問題" #: ../../include/class/ConsoleSupervisor.php:1718 #, 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." +"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 でこのメンテナンスプロセスを実行す" -"る方法はドキュメントを確認してください。また、なるべく早く有効化してください。" +"データベースが 48時間メンテナンスされていません。%s でこのメンテナンスプロセス" +"を実行する方法はドキュメントを確認してください。また、なるべく早く有効化してく" +"ださい。" #: ../../include/class/ConsoleSupervisor.php:1778 msgid "Historical database maintenance problem." @@ -45956,12 +47588,13 @@ msgstr "ヒストリデータベースにおける問題" #: ../../include/class/ConsoleSupervisor.php:1780 #, 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." +"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 でこのメンテナンスプロセス" -"を実行する方法はドキュメントを確認してください。また、なるべく早く有効化してください。" +"ヒストリデータベースが 48時間メンテナンスされていません。%s でこのメンテナンス" +"プロセスを実行する方法はドキュメントを確認してください。また、なるべく早く有効" +"化してください。" #: ../../include/class/ConsoleSupervisor.php:1818 msgid "Historical database MR mismatch" @@ -45969,11 +47602,11 @@ msgstr "ヒストリデータベースの MR が一致していません" #: ../../include/class/ConsoleSupervisor.php:1819 msgid "" -"Your historical database is not using the same schema as the main DB. This could " -"produce anomalies while storing historical data." +"Your historical database is not using the same schema as the main DB. This " +"could produce anomalies while storing historical data." msgstr "" -"ヒストリデータベースで、メインの DB と異なるスキーマを利用しています。これにより、ヒス" -"トリデータの保存中に異常が発生する可能性があります。" +"ヒストリデータベースで、メインの DB と異なるスキーマを利用しています。これによ" +"り、ヒストリデータの保存中に異常が発生する可能性があります。" #: ../../include/class/ConsoleSupervisor.php:1859 msgid "Log collector cannot connect to ElasticSearch" @@ -46000,7 +47633,8 @@ msgid "" "A scheduled downtime is running. Some monitoring data won't be available while " "downtime is taking place." msgstr "" -"計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用できません。" +"計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用でき" +"ません。" #: ../../include/class/ConsoleSupervisor.php:2115 msgid "Downtime scheduled soon." @@ -46009,11 +47643,11 @@ msgstr "まもなく計画停止" #: ../../include/class/ConsoleSupervisor.php:2117 #, php-format msgid "" -"A scheduled downtime is going to be executed from %s to %s. Some monitoring data " -"won't be available while downtime is taking place." +"A scheduled downtime is going to be executed from %s to %s. Some monitoring " +"data won't be available while downtime is taking place." msgstr "" -"計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監視データ" -"は利用できません。" +"計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監" +"視データは利用できません。" #: ../../include/class/ConsoleSupervisor.php:2147 msgid "This instance is not registered in the Update manager section" @@ -46029,7 +47663,8 @@ msgstr "\"admin\" ユーザのデフォルトパスワードが変更されて #: ../../include/class/ConsoleSupervisor.php:2181 msgid "" -"Please, change the default password since it is a commonly reported vulnerability." +"Please, change the default password since it is a commonly reported " +"vulnerability." msgstr "脆弱性として通知されるため、デフォルトパスワードは変更してください。" #: ../../include/class/ConsoleSupervisor.php:2216 @@ -46038,11 +47673,11 @@ msgstr "デフォルトのフォントがありません" #: ../../include/class/ConsoleSupervisor.php:2217 msgid "" -"Your defined font doesn't exist or is not defined. Please, check font parameters in " -"your config" +"Your defined font doesn't exist or is not defined. Please, check font " +"parameters in your config" msgstr "" -"定義したフォントが存在しないかフォントが定義されていません。設定でフォントパラメータを" -"確認してください。" +"定義したフォントが存在しないかフォントが定義されていません。設定でフォントパラ" +"メータを確認してください。" #: ../../include/class/ConsoleSupervisor.php:2242 msgid "Developer mode is enabled" @@ -46051,12 +47686,12 @@ msgstr "開発モードが有効です" #: ../../include/class/ConsoleSupervisor.php:2244 #, 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" +"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 ファイル内にあります。" +"%s の \"develop_bypass\" モードが有効です。これは開発者モードであり、本番環境で" +"は無効化してください。この定義は、メインの index.php ファイル内にあります。" #: ../../include/class/ConsoleSupervisor.php:2268 msgid "Event storm protection is enabled." @@ -46064,11 +47699,11 @@ msgstr "イベントストーム保護が有効です。" #: ../../include/class/ConsoleSupervisor.php:2269 msgid "" -"Some events may get lost while this mode is enabled. The server must be restarted " -"after altering this setting." +"Some events may get lost while this mode is enabled. The server must be " +"restarted after altering this setting." msgstr "" -"このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変更した" -"後はサーバを再起動する必要があります。" +"このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変" +"更した後はサーバを再起動する必要があります。" #: ../../include/class/ConsoleSupervisor.php:2295 msgid "Failed to retrieve updates, please configure utility" @@ -46090,11 +47725,11 @@ msgstr "マイナーリリースがあります" #: ../../include/class/ConsoleSupervisor.php:2352 #, php-format msgid "" -"There is one or more minor releases available. .About minor release update." +"There is one or more minor releases available. .About minor release update." msgstr "" -"一つ以上のマイナーリリースがあります。.マイナーリリースアップデートについて。" +"一つ以上のマイナーリリースがあります。.マイナーリリースアップデートについて。" #: ../../include/class/ConsoleSupervisor.php:2380 msgid "Discovery relies on an appropriate cron setup." @@ -46119,8 +47754,8 @@ msgid "" "Server %s and this console have different versions. This might cause several " "malfunctions. Please, update this server." msgstr "" -"%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作が発生" -"する場合があります。 サーバを更新してください。" +"%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作" +"が発生する場合があります。 サーバを更新してください。" #: ../../include/class/ConsoleSupervisor.php:2565 msgid "AllowOverride is disabled" @@ -46137,12 +47772,12 @@ msgstr "Pandora FMS コンソールログの場所が変わりました" #: ../../include/class/ConsoleSupervisor.php:2638 #, 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." +"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 に古いログファ" -"イルがあります。 削除を検討してください。" +"Pandora FMS コンソールログは、新たな場所 %s/log に移りました。現在、%s に古いロ" +"グファイルがあります。 削除を検討してください。" #: ../../include/class/ConsoleSupervisor.php:2673 msgid "Pandora FMS audit log file changed location" @@ -46151,37 +47786,40 @@ msgstr "Pandora FMS 監査ログの場所が変わりました" #: ../../include/class/ConsoleSupervisor.php:2677 #, php-format msgid "" -"Pandora FMS audit log file has been moved to new location %s/log. Currently you have " -"an outdated and inoperative version of this file at %s. Please, consider deleting it." +"Pandora FMS audit log file has been moved to new location %s/log. Currently " +"you have an outdated and inoperative version of this file at %s. Please, " +"consider deleting it." msgstr "" -"Pandora FMS 監査ログは、新たな場所 %s/log に移りました。現在、%s に古いログファイルが" -"あります。 削除を検討してください。" +"Pandora FMS 監査ログは、新たな場所 %s/log に移りました。現在、%s に古いログファ" +"イルがあります。 削除を検討してください。" -#: ../../include/class/ConsoleSupervisor.php:2763 +#: ../../include/class/ConsoleSupervisor.php:2735 #, php-format msgid "Node %s sync queue length exceeded, " msgstr "ノード %s の同期キューの長さを超えました。" -#: ../../include/class/ConsoleSupervisor.php:2765 +#: ../../include/class/ConsoleSupervisor.php:2737 #, php-format msgid "" -"Synchronization queue lenght for node %s is %d items, this value should be 0 or lower " -"than %d, please check the queue status." +"Synchronization queue lenght for node %s is %d items, this value should be 0 " +"or lower than %d, please check the queue status." msgstr "" -"ノード %s の同期キューの長さは %d アイテムです。この値は、0 または %d 以下である必要が" -"あります。キューの状態を確認してください。" +"ノード %s の同期キューの長さは %d アイテムです。この値は、0 または %d 以下であ" +"る必要があります。キューの状態を確認してください。" -#: ../../include/class/ConsoleSupervisor.php:2818 +#: ../../include/class/ConsoleSupervisor.php:2790 #, php-format msgid "Node %s sync queue failed, " msgstr "ノード %s の同期キューが失敗しました。" -#: ../../include/class/ConsoleSupervisor.php:2820 +#: ../../include/class/ConsoleSupervisor.php:2792 #, php-format msgid "" -"Node %s cannot process synchronization queue due %s, please check the queue status." +"Node %s cannot process synchronization queue due %s, please check the queue " +"status." msgstr "" -"ノード %s は %s が原因で同期キューを処理できません。キューの状態を確認してください。" +"ノード %s は %s が原因で同期キューを処理できません。キューの状態を確認してくだ" +"さい。" #: ../../include/class/CalendarManager.class.php:161 msgid "Alert calendar list" @@ -46301,6 +47939,23 @@ msgstr "ネットワーク内のホストおよびデバイスの検出" msgid "If something is not working as expected, look for this icon and report!" msgstr "期待どおりに機能しない場合は、このアイコンとレポートを探してください!" +#: ../../include/class/SatelliteCollection.class.php:304 +msgid "Error adding collection" +msgstr "コレクション追加エラー" + +#: ../../include/class/SatelliteCollection.class.php:306 +#: ../../include/class/SatelliteCollection.class.php:325 +msgid "Collection " +msgstr "コレクション" + +#: ../../include/class/SatelliteCollection.class.php:323 +msgid "Error deleting collection" +msgstr "コレクション削除エラー" + +#: ../../include/class/SatelliteCollection.class.php:547 +msgid "Add collection" +msgstr "コレクション追加" + #: ../../include/class/WebServerModuleDebug.class.php:143 msgid "Performing query. Please wait." msgstr "クエリ実行中。お待ちください。" @@ -46317,138 +47972,131 @@ msgstr "実行エラー" msgid "Please, wait for a first execution of module" msgstr "モジュールの初回実行を待ってください" -#: ../../include/class/AgentWizard.class.php:456 +#: ../../include/class/AgentWizard.class.php:465 msgid "There are not defined Remote components for this performance." msgstr "この処理用に定義されたリモートコンポーネントはありません。" -#: ../../include/class/AgentWizard.class.php:575 +#: ../../include/class/AgentWizard.class.php:584 msgid "SNMP Walk" msgstr "snmpwalk" -#: ../../include/class/AgentWizard.class.php:580 +#: ../../include/class/AgentWizard.class.php:589 msgid "WMI Explorer" msgstr "WMI エクスプローラ" -#: ../../include/class/AgentWizard.class.php:654 +#: ../../include/class/AgentWizard.class.php:663 msgid "namespace" msgstr "名前空間" -#: ../../include/class/AgentWizard.class.php:824 -msgid "User authentication" -msgstr "ユーザ認証" - -#: ../../include/class/AgentWizard.class.php:853 -msgid "Password authentication" -msgstr "パスワード認証" - -#: ../../include/class/AgentWizard.class.php:1006 +#: ../../include/class/AgentWizard.class.php:1089 #, php-format msgid "The PEN (%s) is not registered." msgstr "PEN (%s) が登録されていません。" -#: ../../include/class/AgentWizard.class.php:1073 +#: ../../include/class/AgentWizard.class.php:1156 msgid "The SNMP Walk does not return anything with the received arguments." msgstr "snmpwalk が与えられた引数で何も返しません。" -#: ../../include/class/AgentWizard.class.php:1133 +#: ../../include/class/AgentWizard.class.php:1216 #, php-format msgid "The target host response with an error: %s" msgstr "対象ホストの応答がエラーです: %s" -#: ../../include/class/AgentWizard.class.php:1183 +#: ../../include/class/AgentWizard.class.php:1266 msgid "No selected modules" msgstr "モジュールが選択されていません" -#: ../../include/class/AgentWizard.class.php:1220 +#: ../../include/class/AgentWizard.class.php:1303 msgid "Module exists in policy" msgstr "モジュールがポリシーに存在します" -#: ../../include/class/AgentWizard.class.php:1230 +#: ../../include/class/AgentWizard.class.php:1313 msgid "Module exists in agent" msgstr "モジュールがエージェントに存在します" -#: ../../include/class/AgentWizard.class.php:1237 +#: ../../include/class/AgentWizard.class.php:1320 msgid "Module with the same name in the module creation list" msgstr "モジュール作成一覧に同じ名前のモジュールがあります" -#: ../../include/class/AgentWizard.class.php:1640 +#: ../../include/class/AgentWizard.class.php:1738 #, php-format msgid "Module \"%s\" exits in this policy" msgstr "モジュール \"%s\" がこのポリシーに存在します" -#: ../../include/class/AgentWizard.class.php:1742 -#: ../../include/class/AgentWizard.class.php:2170 +#: ../../include/class/AgentWizard.class.php:1840 +#: ../../include/class/AgentWizard.class.php:2277 #, php-format msgid "Module %s module_exec not configuration" msgstr "モジュール %s で module_exec を設定できません" -#: ../../include/class/AgentWizard.class.php:1898 -#: ../../include/class/AgentWizard.class.php:2345 +#: ../../include/class/AgentWizard.class.php:1996 +#: ../../include/class/AgentWizard.class.php:2452 #, php-format msgid "Module %s satellite execution not configuration" msgstr "モジュール %s でサテライト実行を設定できません" -#: ../../include/class/AgentWizard.class.php:1990 +#: ../../include/class/AgentWizard.class.php:2097 #, php-format msgid "Module \"%s\" problems insert in bbdd" msgstr "モジュール \"%s\" で DB へのインサートで問題があります" -#: ../../include/class/AgentWizard.class.php:1998 -#: ../../include/class/AgentWizard.class.php:2428 +#: ../../include/class/AgentWizard.class.php:2105 +#: ../../include/class/AgentWizard.class.php:2544 msgid "Modules created" msgstr "モジュールを作成しました" -#: ../../include/class/AgentWizard.class.php:2028 +#: ../../include/class/AgentWizard.class.php:2135 #, php-format msgid "Module \"%s\" exists in this agent" msgstr "モジュール \"%s” はこのエージェントに存在します" -#: ../../include/class/AgentWizard.class.php:2619 +#: ../../include/class/AgentWizard.class.php:2737 msgid "Select all filtered interfaces" msgstr "全フィルタ済インタフェースを選択" -#: ../../include/class/AgentWizard.class.php:2642 +#: ../../include/class/AgentWizard.class.php:2760 msgid "OperStatus UP" msgstr "OperStatus UP" -#: ../../include/class/AgentWizard.class.php:2653 +#: ../../include/class/AgentWizard.class.php:2771 msgid "AdminStatus UP" msgstr "AdminStatus UP" -#: ../../include/class/AgentWizard.class.php:3046 -#: ../../include/class/AgentWizard.class.php:3350 +#: ../../include/class/AgentWizard.class.php:3169 +#: ../../include/class/AgentWizard.class.php:3473 msgid "No information could be retrieved." msgstr "情報を取得できませんでした。" -#: ../../include/class/AgentWizard.class.php:3640 +#: ../../include/class/AgentWizard.class.php:3763 msgid "Create modules" msgstr "モジュール作成" -#: ../../include/class/AgentWizard.class.php:3949 +#: ../../include/class/AgentWizard.class.php:4072 msgid "Add general monitoring for all selected interfaces" msgstr "全フィルタ済インタフェースの一般的な監視を追加" -#: ../../include/class/AgentWizard.class.php:3970 -#: ../../include/class/AgentWizard.class.php:3971 -#: ../../include/class/AgentWizard.class.php:3990 -#: ../../include/class/AgentWizard.class.php:3991 +#: ../../include/class/AgentWizard.class.php:4093 +#: ../../include/class/AgentWizard.class.php:4094 +#: ../../include/class/AgentWizard.class.php:4113 +#: ../../include/class/AgentWizard.class.php:4114 msgid "Modules selected" msgstr "選択済モジュール" -#: ../../include/class/AgentWizard.class.php:4059 +#: ../../include/class/AgentWizard.class.php:4182 msgid "Module info" msgstr "モジュール情報" -#: ../../include/class/AgentWizard.class.php:4088 +#: ../../include/class/AgentWizard.class.php:4211 msgid "Current value" msgstr "現在の値" -#: ../../include/class/AgentWizard.class.php:5575 +#: ../../include/class/AgentWizard.class.php:5698 #, php-format msgid "The operation '%s' is not permitted. Review for remote components." -msgstr "'%s' の操作は許可されていません。リモートコンポーネントを確認してください。" +msgstr "" +"'%s' の操作は許可されていません。リモートコンポーネントを確認してください。" -#: ../../include/class/AgentWizard.class.php:5989 +#: ../../include/class/AgentWizard.class.php:6164 msgid "Modules about to be created" msgstr "作成しようとしているモジュール" @@ -46544,7 +48192,8 @@ msgstr "コマンドが失敗し、戻り値が返りました:" #: ../../include/class/ExternalTools.class.php:732 msgid "" -"Something went wrong while perform the execution. Please check the configuration." +"Something went wrong while perform the execution. Please check the " +"configuration." msgstr "実行中に何らかの問題が発生しました。設定を確認してください。" #: ../../include/class/ExternalTools.class.php:769 @@ -46625,473 +48274,460 @@ msgstr " エージェント" msgid " modules" msgstr " モジュール" -#: ../../include/functions_reporting.php:1519 +#: ../../include/functions_reporting.php:1520 msgid "Top N" msgstr "トップ N" -#: ../../include/functions_reporting.php:1705 +#: ../../include/functions_reporting.php:1706 msgid "Insuficient data" msgstr "不十分なデータ" -#: ../../include/functions_reporting.php:2018 +#: ../../include/functions_reporting.php:2072 msgid "Event Report Group" msgstr "イベントレポートグループ" -#: ../../include/functions_reporting.php:2066 +#: ../../include/functions_reporting.php:2102 msgid "Exclude " msgstr "除外 " -#: ../../include/functions_reporting.php:2244 ../../include/functions_reporting.php:4231 -#: ../../include/functions_reporting.php:10895 ../../include/functions_events.php:2462 -#: ../../include/functions_events.php:3065 ../../include/functions_events.php:3337 -#: ../../include/functions_events.php:3346 ../../include/functions_events.php:3353 -#: ../../include/functions_events.php:3360 ../../operation/snmpconsole/snmp_view.php:588 -#: ../../operation/snmpconsole/snmp_view.php:941 -#: ../../operation/snmpconsole/snmp_view.php:1234 -msgid "Validated" -msgstr "承諾済み" - -#: ../../include/functions_reporting.php:2245 ../../include/functions_reporting.php:4232 -#: ../../include/functions_reporting.php:10896 -#: ../../operation/snmpconsole/snmp_view.php:587 -#: ../../operation/snmpconsole/snmp_view.php:931 -#: ../../operation/snmpconsole/snmp_view.php:1243 -msgid "Not validated" -msgstr "未承諾" - -#: ../../include/functions_reporting.php:2312 +#: ../../include/functions_reporting.php:2443 msgid "Event Report Module" msgstr "イベントレポートモジュール" -#: ../../include/functions_reporting.php:3100 +#: ../../include/functions_reporting.php:3231 msgid "Agent/Modules" msgstr "エージェント/モジュール" -#: ../../include/functions_reporting.php:3197 +#: ../../include/functions_reporting.php:3328 msgid "Agent/Modules Status" msgstr "エージェント/モジュール状態" -#: ../../include/functions_reporting.php:3346 +#: ../../include/functions_reporting.php:3477 msgid "Exception - Everything" msgstr "例外 - 全て" -#: ../../include/functions_reporting.php:3352 +#: ../../include/functions_reporting.php:3483 #, php-format msgid "Exception - Modules over or equal to %s" msgstr "例外 - モジュールが %s 以上" -#: ../../include/functions_reporting.php:3355 +#: ../../include/functions_reporting.php:3486 #, php-format msgid "Modules over or equal to %s" msgstr "%s 以上のモジュール" -#: ../../include/functions_reporting.php:3360 +#: ../../include/functions_reporting.php:3491 #, php-format msgid "Exception - Modules under or equal to %s" msgstr "例外 - モジュールが %s 以下" -#: ../../include/functions_reporting.php:3363 +#: ../../include/functions_reporting.php:3494 #, php-format msgid "Modules under or equal to %s" msgstr "%s 以下のモジュール" -#: ../../include/functions_reporting.php:3368 +#: ../../include/functions_reporting.php:3499 #, php-format msgid "Exception - Modules under %s" msgstr "例外 - モジュールが %s 未満" -#: ../../include/functions_reporting.php:3371 +#: ../../include/functions_reporting.php:3502 #, php-format msgid "Modules under %s" msgstr "%s 未満のモジュール" -#: ../../include/functions_reporting.php:3376 +#: ../../include/functions_reporting.php:3507 #, php-format msgid "Exception - Modules over %s" msgstr "例外 - モジュールが %s より大きい" -#: ../../include/functions_reporting.php:3379 +#: ../../include/functions_reporting.php:3510 #, php-format msgid "Modules over %s" msgstr "%s を超えるモジュール" -#: ../../include/functions_reporting.php:3384 +#: ../../include/functions_reporting.php:3515 #, php-format msgid "Exception - Equal to %s" msgstr "例外 - %s と同じ" -#: ../../include/functions_reporting.php:3387 +#: ../../include/functions_reporting.php:3518 #, php-format msgid "Equal to %s" msgstr "%s と同じ" -#: ../../include/functions_reporting.php:3392 +#: ../../include/functions_reporting.php:3523 #, php-format msgid "Exception - Not equal to %s" msgstr "例外 - %s と異なる" -#: ../../include/functions_reporting.php:3395 +#: ../../include/functions_reporting.php:3526 #, php-format msgid "Not equal to %s" msgstr "%s と異なる" -#: ../../include/functions_reporting.php:3399 +#: ../../include/functions_reporting.php:3530 msgid "Exception - Modules at normal status" msgstr "例外 - モジュールが正常状態" -#: ../../include/functions_reporting.php:3400 +#: ../../include/functions_reporting.php:3531 msgid "Modules at normal status" msgstr "正常状態のモジュール" -#: ../../include/functions_reporting.php:3404 +#: ../../include/functions_reporting.php:3535 msgid "Exception - Modules at critical or warning status" msgstr "例外 - モジュールが障害または警告状態" -#: ../../include/functions_reporting.php:3405 +#: ../../include/functions_reporting.php:3536 msgid "Modules at critical or warning status" msgstr "障害または警告状態のモジュール" -#: ../../include/functions_reporting.php:3685 +#: ../../include/functions_reporting.php:3816 msgid "There are no Modules under those conditions." msgstr "これらの条件のモジュールはありません。" -#: ../../include/functions_reporting.php:3689 +#: ../../include/functions_reporting.php:3820 #, php-format msgid "There are no Modules over or equal to %s." msgstr "%s 以上のモジュールがありません。" -#: ../../include/functions_reporting.php:3693 +#: ../../include/functions_reporting.php:3824 #, php-format msgid "There are no Modules less or equal to %s." msgstr "%s 以下のモジュールがありません。" -#: ../../include/functions_reporting.php:3697 +#: ../../include/functions_reporting.php:3828 #, php-format msgid "There are no Modules less %s." msgstr "%s 未満のモジュールがありません。" -#: ../../include/functions_reporting.php:3701 +#: ../../include/functions_reporting.php:3832 #, php-format msgid "There are no Modules over %s." msgstr "%s を超えるモジュールがありません。" -#: ../../include/functions_reporting.php:3705 +#: ../../include/functions_reporting.php:3836 #, php-format msgid "There are no Modules equal to %s" msgstr "%s と同じモジュールがありません。" -#: ../../include/functions_reporting.php:3709 +#: ../../include/functions_reporting.php:3840 #, php-format msgid "There are no Modules not equal to %s" msgstr "%s と異なるモジュールがありません。" -#: ../../include/functions_reporting.php:3713 +#: ../../include/functions_reporting.php:3844 msgid "There are no Modules normal status" msgstr "正常状態のモジュールがありません" -#: ../../include/functions_reporting.php:3717 +#: ../../include/functions_reporting.php:3848 msgid "There are no Modules at critial or warning status" msgstr "障害または警告状態のモジュールはありません" -#: ../../include/functions_reporting.php:4068 +#: ../../include/functions_reporting.php:4276 msgid "Event Report Agent" msgstr "イベントレポートエージェント" -#: ../../include/functions_reporting.php:4419 +#: ../../include/functions_reporting.php:4695 msgid "Database Serialized" msgstr "データベースの並び" -#: ../../include/functions_reporting.php:4615 +#: ../../include/functions_reporting.php:4891 msgid "Last Value" msgstr "最新の値" -#: ../../include/functions_reporting.php:4939 +#: ../../include/functions_reporting.php:4941 +#: ../../include/functions_reporting.php:4984 +msgid "No data to display within the selected interval" +msgstr "選択した期間では表示するデータがありません" + +#: ../../include/functions_reporting.php:5215 msgid "Network interfaces report" msgstr "ネットワークインタフェースレポート" -#: ../../include/functions_reporting.php:5033 +#: ../../include/functions_reporting.php:5309 msgid "Custom render report" msgstr "カスタムレンダリングレポート" -#: ../../include/functions_reporting.php:5073 ../../include/functions_reporting.php:5099 -msgid "This query is insecure, it could apply unwanted modiffications on the schema" +#: ../../include/functions_reporting.php:5349 +#: ../../include/functions_reporting.php:5375 +msgid "" +"This query is insecure, it could apply unwanted modiffications on the schema" msgstr "このクエリは安全ではなく、スキーマに不要な変更を適用する可能性があります" -#: ../../include/functions_reporting.php:5330 +#: ../../include/functions_reporting.php:5554 msgid "The group has no agents or none of the agents has any network interface" msgstr "" -"グループにエージェントが無いか、ネットワークインタフェースのあるエージェントがありませ" -"ん" +"グループにエージェントが無いか、ネットワークインタフェースのあるエージェントが" +"ありません" -#: ../../include/functions_reporting.php:5351 +#: ../../include/functions_reporting.php:5579 msgid "bytes/s" msgstr "バイト/秒" -#: ../../include/functions_reporting.php:5558 ../../include/functions_reporting.php:5575 -#: ../../include/functions_reporting.php:5592 -msgid "Not triggered" -msgstr "未発報" - -#: ../../include/functions_reporting.php:6018 +#: ../../include/functions_reporting.php:6246 msgid "SQL Graph Vertical Bars" msgstr "SQL縦棒グラフ" -#: ../../include/functions_reporting.php:6022 +#: ../../include/functions_reporting.php:6250 msgid "SQL Graph Horizontal Bars" msgstr "SQL横棒グラフ" -#: ../../include/functions_reporting.php:6026 +#: ../../include/functions_reporting.php:6254 msgid "SQL Graph Pie" msgstr "SQL円グラフ" -#: ../../include/functions_reporting.php:6253 +#: ../../include/functions_reporting.php:6481 msgid "Netflow Area" msgstr "Netflow塗りつぶしグラフ" -#: ../../include/functions_reporting.php:6257 +#: ../../include/functions_reporting.php:6485 msgid "Netflow Summary" msgstr "Netflow 概要" -#: ../../include/functions_reporting.php:6261 +#: ../../include/functions_reporting.php:6489 msgid "Netflow Data" msgstr "Netflowデータ" -#: ../../include/functions_reporting.php:6269 +#: ../../include/functions_reporting.php:6497 msgid "Unknown report" msgstr "不明レポート" -#: ../../include/functions_reporting.php:6363 +#: ../../include/functions_reporting.php:6591 msgid "Prediction Date" msgstr "予測日時" -#: ../../include/functions_reporting.php:7268 +#: ../../include/functions_reporting.php:7510 msgid "" -"Illegal query: Due security restrictions, there are some tokens or words you cannot " -"use: *, delete, drop, alter, modify, password, pass, insert or update." +"Illegal query: Due security restrictions, there are some tokens or words you " +"cannot use: *, delete, drop, alter, modify, password, pass, insert or update." msgstr "" -"不正なクエリ: セキュリティ制限により、*, delete, drop, alter, modify, password, pass, " -"insert, update といったいくつかのトークンや単語は利用できません。" +"不正なクエリ: セキュリティ制限により、*, delete, drop, alter, modify, " +"password, pass, insert, update といったいくつかのトークンや単語は利用できませ" +"ん。" -#: ../../include/functions_reporting.php:8677 ../../include/functions_reporting.php:9395 +#: ../../include/functions_reporting.php:8924 +#: ../../include/functions_reporting.php:9642 msgid "No Address" msgstr "アドレスがありません" -#: ../../include/functions_reporting.php:9694 -msgid "The monitor have no data in this range of dates or monitor type is not numeric" +#: ../../include/functions_reporting.php:9941 +msgid "" +"The monitor have no data in this range of dates or monitor type is not numeric" msgstr "この日付範囲にデータが無いか、数値ではないタイプの監視項目です。" -#: ../../include/functions_reporting.php:9712 +#: ../../include/functions_reporting.php:9959 msgid "The monitor type is not numeric" msgstr "監視タイプは数値ではありません。" -#: ../../include/functions_reporting.php:10138 +#: ../../include/functions_reporting.php:10385 msgid "Maximum" msgstr "最大" -#: ../../include/functions_reporting.php:10216 +#: ../../include/functions_reporting.php:10463 msgid "Automatic combined graph" msgstr "自動結合グラフ" -#: ../../include/functions_reporting.php:11570 -#: ../../include/functions_reporting.php:11594 +#: ../../include/functions_reporting.php:11885 +#: ../../include/functions_reporting.php:11909 msgid "Server health" msgstr "サーバの正常性" -#: ../../include/functions_reporting.php:11570 +#: ../../include/functions_reporting.php:11885 #, php-format msgid "%d Downed servers" msgstr "停止サーバ数 %d" -#: ../../include/functions_reporting.php:11575 -#: ../../include/functions_reporting.php:11598 +#: ../../include/functions_reporting.php:11890 +#: ../../include/functions_reporting.php:11913 msgid "Monitor health" msgstr "モニタ項目の正常性" -#: ../../include/functions_reporting.php:11575 +#: ../../include/functions_reporting.php:11890 #, php-format msgid "%d Not Normal monitors" msgstr "非正常数 %d" -#: ../../include/functions_reporting.php:11575 -#: ../../include/functions_reporting.php:11599 +#: ../../include/functions_reporting.php:11890 +#: ../../include/functions_reporting.php:11914 msgid "of monitors up" msgstr "のモニタ項目が正常です。" -#: ../../include/functions_reporting.php:11580 -#: ../../include/functions_reporting.php:11602 +#: ../../include/functions_reporting.php:11895 +#: ../../include/functions_reporting.php:11917 msgid "Module sanity" msgstr "モジュール" -#: ../../include/functions_reporting.php:11580 +#: ../../include/functions_reporting.php:11895 #, php-format msgid "%d Not inited monitors" msgstr "未初期化数 %d" -#: ../../include/functions_reporting.php:11580 -#: ../../include/functions_reporting.php:11603 +#: ../../include/functions_reporting.php:11895 +#: ../../include/functions_reporting.php:11918 msgid "of total modules inited" msgstr "のモジュールが初期化済みです。" -#: ../../include/functions_reporting.php:11585 -#: ../../include/functions_reporting.php:12697 -#: ../../include/functions_reporting.php:12707 +#: ../../include/functions_reporting.php:11900 +#: ../../include/functions_reporting.php:13012 +#: ../../include/functions_reporting.php:13022 #, php-format msgid "%d Fired alerts" msgstr "アラート発報数 %d" -#: ../../include/functions_reporting.php:11585 -#: ../../include/functions_reporting.php:11607 +#: ../../include/functions_reporting.php:11900 +#: ../../include/functions_reporting.php:11922 msgid "of defined alerts not fired" msgstr "の定義済みアラートが未発生です。" -#: ../../include/functions_reporting.php:11679 +#: ../../include/functions_reporting.php:11994 msgid "Defined and fired alerts" msgstr "定義済・発報アラート" -#: ../../include/functions_reporting.php:11858 +#: ../../include/functions_reporting.php:12173 msgid "Defined users" msgstr "定義済ユーザ" -#: ../../include/functions_reporting.php:12554 +#: ../../include/functions_reporting.php:12869 msgid "Agent without data" msgstr "データの無いエージェント" -#: ../../include/functions_reporting.php:12693 +#: ../../include/functions_reporting.php:13008 #, php-format msgid "%d Normal modules" msgstr "正常モジュール数 %d" -#: ../../include/functions_reporting.php:12694 +#: ../../include/functions_reporting.php:13009 #, php-format msgid "%d Critical modules" msgstr "障害モジュール数 %d" -#: ../../include/functions_reporting.php:12695 +#: ../../include/functions_reporting.php:13010 #, php-format msgid "%d Warning modules" msgstr "警告モジュール数 %d" -#: ../../include/functions_reporting.php:12696 +#: ../../include/functions_reporting.php:13011 #, php-format msgid "%d Unknown modules" msgstr "不明モジュール数 %d" -#: ../../include/functions_reporting.php:12701 +#: ../../include/functions_reporting.php:13016 #, php-format msgid "%d Total agents" msgstr "全エージェント数 %d" -#: ../../include/functions_reporting.php:12702 +#: ../../include/functions_reporting.php:13017 #, php-format msgid "%d Normal agents" msgstr "正常エージェント数 %d" -#: ../../include/functions_reporting.php:12703 +#: ../../include/functions_reporting.php:13018 #, php-format msgid "%d Critical agents" msgstr "障害エージェント数 %d" -#: ../../include/functions_reporting.php:12704 +#: ../../include/functions_reporting.php:13019 #, php-format msgid "%d Warning agents" msgstr "警告エージェント数 %d" -#: ../../include/functions_reporting.php:12705 +#: ../../include/functions_reporting.php:13020 #, php-format msgid "%d Unknown agents" msgstr "不明エージェント数 %d" -#: ../../include/functions_reporting.php:12706 +#: ../../include/functions_reporting.php:13021 #, php-format msgid "%d not init agents" msgstr "%d 未初期化エージェント" -#: ../../include/functions_reporting.php:14134 +#: ../../include/functions_reporting.php:14449 msgid "Total running modules" msgstr "全実行中モジュール数" -#: ../../include/functions_reporting.php:14137 -#: ../../include/functions_reporting.php:14152 -#: ../../include/functions_reporting.php:14164 -#: ../../include/functions_reporting.php:14182 -#: ../../include/functions_reporting.php:14194 -#: ../../include/functions_reporting.php:14206 -#: ../../include/functions_reporting.php:14218 +#: ../../include/functions_reporting.php:14452 +#: ../../include/functions_reporting.php:14467 +#: ../../include/functions_reporting.php:14479 +#: ../../include/functions_reporting.php:14497 +#: ../../include/functions_reporting.php:14509 +#: ../../include/functions_reporting.php:14521 +#: ../../include/functions_reporting.php:14533 msgid "Ratio" msgstr "比率" -#: ../../include/functions_reporting.php:14137 -#: ../../include/functions_reporting.php:14152 -#: ../../include/functions_reporting.php:14164 -#: ../../include/functions_reporting.php:14182 -#: ../../include/functions_reporting.php:14194 -#: ../../include/functions_reporting.php:14206 -#: ../../include/functions_reporting.php:14218 +#: ../../include/functions_reporting.php:14452 +#: ../../include/functions_reporting.php:14467 +#: ../../include/functions_reporting.php:14479 +#: ../../include/functions_reporting.php:14497 +#: ../../include/functions_reporting.php:14509 +#: ../../include/functions_reporting.php:14521 +#: ../../include/functions_reporting.php:14533 msgid "Modules by second" msgstr "秒ごとのモジュール" -#: ../../include/functions_reporting.php:14149 +#: ../../include/functions_reporting.php:14464 msgid "Local modules" msgstr "ローカルモジュール数" -#: ../../include/functions_reporting.php:14159 +#: ../../include/functions_reporting.php:14474 msgid "Network modules" msgstr "ネットワークモジュール" -#: ../../include/functions_reporting.php:14178 +#: ../../include/functions_reporting.php:14493 msgid "Plugin modules" msgstr "プラグインモジュール" -#: ../../include/functions_reporting.php:14190 +#: ../../include/functions_reporting.php:14505 msgid "Prediction modules" msgstr "予測モジュール" -#: ../../include/functions_reporting.php:14202 +#: ../../include/functions_reporting.php:14517 msgid "WMI modules" msgstr "WMIモジュール" -#: ../../include/functions_reporting.php:14214 +#: ../../include/functions_reporting.php:14529 msgid "Web modules" msgstr "Webモジュール" -#: ../../include/functions_reporting.php:14252 +#: ../../include/functions_reporting.php:14567 #: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "サーバパフォーマンス" -#: ../../include/functions_reporting.php:14365 +#: ../../include/functions_reporting.php:14680 msgid "Start condition" msgstr "開始状態" -#: ../../include/functions_reporting.php:14365 +#: ../../include/functions_reporting.php:14680 msgid "Stop condition" msgstr "停止状態" -#: ../../include/functions_reporting.php:14375 +#: ../../include/functions_reporting.php:14690 msgid "Weekly:" msgstr "週次:" -#: ../../include/functions_reporting.php:14417 +#: ../../include/functions_reporting.php:14732 msgid "Monthly:" msgstr "月次:" -#: ../../include/functions_reporting.php:14418 +#: ../../include/functions_reporting.php:14733 msgid "From day" msgstr "開始日" -#: ../../include/functions_reporting.php:14419 +#: ../../include/functions_reporting.php:14734 msgid "To day" msgstr "終了日" -#: ../../include/functions_reporting.php:14972 +#: ../../include/functions_reporting.php:15283 msgid "Module Histogram Graph" msgstr "モジュールヒストグラム" -#: ../../include/functions_reporting.php:15364 +#: ../../include/functions_reporting.php:15646 msgid "Attached to this email there's a PDF file of the" msgstr "このメールには次の PDF ファイルが添付されます:" -#: ../../include/functions_reporting.php:15365 +#: ../../include/functions_reporting.php:15647 msgid "report" msgstr "レポート" @@ -47122,10 +48758,11 @@ msgstr "ファイルを解凍できませんでした" #: ../../include/functions_filemanager.php:211 msgid "" -"File size seems to be too large. Please check your php.ini configuration or contact " -"with the administrator" +"File size seems to be too large. Please check your php.ini configuration or " +"contact with the administrator" msgstr "" -"ファイルサイズが大きすぎます。php.ini の設定を確認するか管理者に相談してください。" +"ファイルサイズが大きすぎます。php.ini の設定を確認するか管理者に相談してくださ" +"い。" #: ../../include/functions_filemanager.php:260 msgid "File created correctly" @@ -47207,8 +48844,8 @@ msgstr "ディレクトリの作成" #: ../../include/functions_filemanager.php:834 msgid "The zip upload in this dir, easy to upload multiple files." msgstr "" -"このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロードも簡" -"単です。" +"このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロー" +"ドも簡単です。" #: ../../include/functions_filemanager.php:836 msgid "Decompress" @@ -47235,15 +48872,15 @@ msgstr "URLタグのポップアップウインドウを開くにはここをク msgid "Copy of %s" msgstr "%s のコピー" -#: ../../include/lib/Dashboard/Manager.php:989 +#: ../../include/lib/Dashboard/Manager.php:992 msgid "Error create or update dashboard" msgstr "ダッシュボードの作成または更新エラー" -#: ../../include/lib/Dashboard/Manager.php:1470 +#: ../../include/lib/Dashboard/Manager.php:1473 msgid "Icon image dashboard" msgstr "ダッシュボードアイコン画像" -#: ../../include/lib/Dashboard/Widget.php:459 +#: ../../include/lib/Dashboard/Widget.php:461 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:263 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:347 #: ../../include/lib/Dashboard/Widgets/reports.php:336 @@ -47251,18 +48888,18 @@ msgstr "ダッシュボードアイコン画像" msgid "Failed to connect to node %d" msgstr "ノード %d への接続に失敗しました" -#: ../../include/lib/Dashboard/Widget.php:474 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:640 +#: ../../include/lib/Dashboard/Widget.php:476 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:624 msgid "Please configure this widget before usage" msgstr "使用前にこのウィジェットを設定してください" -#: ../../include/lib/Dashboard/Widget.php:482 +#: ../../include/lib/Dashboard/Widget.php:484 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 #: ../../include/lib/Dashboard/Widgets/events_list.php:561 msgid "Widget cannot be loaded" msgstr "ウィジェットをロードできません" -#: ../../include/lib/Dashboard/Widget.php:482 +#: ../../include/lib/Dashboard/Widget.php:484 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 msgid "Please, configure the widget again to recover it" msgstr "復旧するためにウィジェットを設定しなおしてください" @@ -47324,7 +48961,7 @@ msgstr "pxでのラベルのテキストサイズ" #: ../../include/lib/Dashboard/Widgets/sla_percent.php:454 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:465 #: ../../include/lib/Dashboard/Widgets/events_list.php:528 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:665 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:649 msgid "You don't have access" msgstr "アクセスできません。" @@ -47339,15 +48976,20 @@ msgid "Block histogram" msgstr "棒グラフ" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:266 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:333 msgid "Font color" msgstr "フォントの色" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:361 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:464 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256 msgid "Agent / module" msgstr "エージェント / モジュール" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:551 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:699 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 msgid "Not found modules" msgstr "モジュールが見つかりません" @@ -47392,44 +49034,98 @@ msgstr "%s へようこそ" #: ../../include/lib/Dashboard/Widgets/example.php:249 msgid "This is an example of a dashboard widget. A widget may contain elements" -msgstr "ダッシュボードウィジェットの例です。ウィジェットに要素を入れることができます。" +msgstr "" +"ダッシュボードウィジェットの例です。ウィジェットに要素を入れることができます。" #: ../../include/lib/Dashboard/Widgets/example.php:250 -msgid "To add more elements, click on \"Add widgets\" on the top of this page." +msgid "" +"To add more elements, click on \"Add widgets\" on the top of this " +"page." msgstr "" -"要素を追加するには、このページの先頭で \"ウィジェットの追加\" をクリックしま" -"す。" +"要素を追加するには、このページの先頭で \"ウィジェットの追加\" をク" +"リックします。" #: ../../include/lib/Dashboard/Widgets/example.php:251 #: ../../include/lib/Dashboard/Widgets/example.php:253 msgid "" "To delete this message, click on the delete button on top right corner of this " "element." -msgstr "このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。" +msgstr "" +"このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。" #: ../../include/lib/Dashboard/Widgets/example.php:252 -msgid "To do so, just click on the title and drag and drop it to the desired place." -msgstr "そうするには、タイトルをクリックし置きたい場所へドラッグ&ドロップします。" +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/DataMatrix.php:174 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:199 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537 +msgid "Color tabs modules" +msgstr "モジュールカラータブ" + +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:289 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:345 +#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:285 +msgid "Format Data" +msgstr "フォーマットデータ" + +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:303 +msgid "Periodicity" +msgstr "周期" + +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:346 +#: ../../include/lib/Dashboard/Widgets/events_list.php:370 +msgid "Limit" +msgstr "制限" + +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:462 +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:613 +#, php-format +msgid "" +"The maximum number of modules to display is %d, please reconfigure the widget." +msgstr "" +"表示できるモジュールの最大数は %d です。ウィジェットを再設定してください。" + +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:666 +msgid "Data Matrix" +msgstr "データマトリックス" + #: ../../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/GroupedMeterGraphs.php:359 +msgid "Values" +msgstr "値" + +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:386 +msgid "Manual thresholds" +msgstr "手動閾値" + +#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:1027 +msgid "Grouped meter graphs" +msgstr "グループかされたメータグラフ" + #: ../../include/lib/Dashboard/Widgets/network_map.php:173 -#: ../../include/lib/Dashboard/Widgets/network_map.php:515 ../../operation/menu.php:166 +#: ../../include/lib/Dashboard/Widgets/network_map.php:515 +#: ../../operation/menu.php:175 msgid "Network map" msgstr "ネットワークマップ" #: ../../include/lib/Dashboard/Widgets/network_map.php:295 msgid "It is recommended to have only one such widget in the control panel." msgstr "" -"コントロールパネルには、このようなウィジェットを 1つだけ含めることをお勧めします。" +"コントロールパネルには、このようなウィジェットを 1つだけ含めることをお勧めしま" +"す。" #: ../../include/lib/Dashboard/Widgets/network_map.php:372 msgid "Introduce x-axis data. Right=positive Left=negative" @@ -47474,18 +49170,16 @@ msgstr "最新イベント一覧" msgid "Custom filters" msgstr "カスタムフィルタ" -#: ../../include/lib/Dashboard/Widgets/events_list.php:370 -msgid "Limit" -msgstr "制限" - #: ../../include/lib/Dashboard/Widgets/events_list.php:383 -#: ../../include/functions_events.php:3057 ../../include/functions_events.php:3063 -#: ../../include/functions_events.php:3085 +#: ../../include/functions_events.php:3120 +#: ../../include/functions_events.php:3126 +#: ../../include/functions_events.php:3148 msgid "All event" msgstr "全イベント" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 -#: ../../include/functions_events.php:3059 ../../include/functions_events.php:3093 +#: ../../include/functions_events.php:3122 +#: ../../include/functions_events.php:3156 msgid "Only validated" msgstr "承諾済み" @@ -47531,7 +49225,7 @@ msgid "Please, configure this widget before use" msgstr "利用前にウィジェットを設定してください" #: ../../include/lib/Dashboard/Widgets/module_value.php:175 -#: ../../include/lib/Dashboard/Widgets/module_value.php:471 +#: ../../include/lib/Dashboard/Widgets/module_value.php:473 msgid "Module value" msgstr "モジュールの値" @@ -47546,7 +49240,7 @@ 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 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:536 msgid "Top N events by module" msgstr "モジュールごとのトップ N イベント" @@ -47575,15 +49269,6 @@ msgstr "一つ以上のグループを選択してください。" msgid "There is not data to show." msgstr "表示するデータがありません。" -#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172 -#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537 -msgid "Color tabs modules" -msgstr "モジュールカラータブ" - -#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:285 -msgid "Format Data" -msgstr "フォーマットデータ" - #: ../../include/lib/Dashboard/Widgets/module_table_value.php:177 msgid "Show module value in a table" msgstr "表にモジュールの値を表示" @@ -47630,19 +49315,15 @@ msgid "" "ZOOM functionality is only available when there is only one such widget in the " "dashboard" msgstr "" -"ズーム機能は、ダッシュボードにそのようなウィジェットが 1つしかない場合にのみ使用できま" -"す。" - -#: ../../include/lib/Dashboard/Widgets/service_map.php:331 -msgid "Enable sunburst" -msgstr "サンバーストの有効化" +"ズーム機能は、ダッシュボードにそのようなウィジェットが 1つしかない場合にのみ使" +"用できます。" #: ../../include/lib/Dashboard/Widgets/service_map.php:390 msgid "Missing Service id" msgstr "サービス ID がありません" #: ../../include/lib/Dashboard/Widgets/agent_module.php:173 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:840 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:769 msgid "Agent/Module View" msgstr "エージェント/モジュール表示" @@ -47661,12 +49342,12 @@ msgid "This graph has been deleted." msgstr "このグラフは削除されました。" #: ../../include/lib/Dashboard/Widgets/custom_graph.php:358 -#: ../../operation/reporting/graph_viewer.php:376 +#: ../../operation/reporting/graph_viewer.php:348 msgid "Horizontal Bars" msgstr "水平バー" #: ../../include/lib/Dashboard/Widgets/custom_graph.php:359 -#: ../../operation/reporting/graph_viewer.php:377 +#: ../../operation/reporting/graph_viewer.php:349 msgid "Vertical Bars" msgstr "垂直バー" @@ -47722,47 +49403,52 @@ msgstr "モジュールの状態" msgid "" "The user doesn't have permission to read agents. Please contact with your %s " "administrator." -msgstr "ユーザにエージェントを参照する権限がありません。%s 管理者へ連絡してください。" +msgstr "" +"ユーザにエージェントを参照する権限がありません。%s 管理者へ連絡してください。" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:608 ../../operation/tree.php:423 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:608 +#: ../../operation/tree.php:423 msgid "Operating systems found" msgstr "オペレーティングシステムを見つけました" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:612 ../../operation/tree.php:426 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:612 +#: ../../operation/tree.php:426 msgid "Tags found" msgstr "タグを見つけました" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:616 ../../operation/tree.php:429 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:616 +#: ../../operation/tree.php:429 msgid "Module Groups found" msgstr "モジュールグループを見つけました" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:620 ../../operation/tree.php:432 -#: ../../operation/search_main.php:56 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:620 +#: ../../operation/tree.php:432 ../../operation/search_main.php:56 msgid "Modules found" msgstr "モジュールが見つかりました" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:625 ../../operation/tree.php:436 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:625 +#: ../../operation/tree.php:436 msgid "Groups found" msgstr "グループを見つけました" #: ../../include/lib/Dashboard/Widgets/top_n.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n.php:528 +#: ../../include/lib/Dashboard/Widgets/top_n.php:540 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." +"Case insensitive regular expression or string for module name. For example: ." +"*usage.* will match: cpu_usage, vram usage." msgstr "" -"モジュール名の大文字と小文字を区別しない正規表現または文字列。例えば、.*usage.* は " -"cpu_usage、vram usage にマッチします。" +"モジュール名の大文字と小文字を区別しない正規表現または文字列。例えば、.*usage." +"* は cpu_usage、vram usage にマッチします。" #: ../../include/lib/Dashboard/Widgets/top_n.php:280 msgid "Avg." msgstr "平均" -#: ../../include/lib/Dashboard/Widgets/top_n.php:448 +#: ../../include/lib/Dashboard/Widgets/top_n.php:456 msgid "There are no agents/modules found matching filter set" msgstr "フィルタセットにマッチするエージェント/モジュールが見つかりません" @@ -47779,10 +49465,123 @@ msgid "Digital" msgstr "デジタル" #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:502 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:501 msgid "Top N events by agent" msgstr "エージェントごとのトップ N イベント" +#: ../../include/lib/ClusterViewer/ClusterManager.php:224 +msgid "Cluster not found: " +msgstr "クラスタが見つかりません: " + +#: ../../include/lib/ClusterViewer/ClusterManager.php:233 +msgid "Cluster agent not found: " +msgstr "クラスタエージェントが見つかりません: " + +#: ../../include/lib/ClusterViewer/ClusterManager.php:270 +#, php-format +msgid "Error while deleting, reason: %s" +msgstr "削除中にエラーです。理由: %s" + +#: ../../include/lib/ClusterViewer/ClusterManager.php:278 +msgid "Cluster successfully deleted." +msgstr "クラスタを削除しました" + +#: ../../include/lib/ClusterViewer/ClusterManager.php:304 +#, php-format +msgid "Error while forcing, reason: %s" +msgstr "強制中にエラーです。理由: %s" + +#: ../../include/lib/ClusterViewer/ClusterManager.php:312 +msgid "Cluster successfully forced." +msgstr "クラスタを強制しました。" + +#: ../../include/lib/ClusterViewer/ClusterManager.php:568 +msgid "Not set" +msgstr "未設定" + +#: ../../include/lib/ClusterViewer/ClusterManager.php:578 +msgid "Active-Active" +msgstr "アクティブ-アクティブ" + +#: ../../include/lib/ClusterViewer/ClusterManager.php:580 +msgid "Active-Passive" +msgstr "アクティブ-スタンバイ" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:182 +msgid "Cluster already defined, please use another name." +msgstr "クラスタは定義済です。他の名前を利用してください。" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:779 +msgid "Cluster name" +msgstr "クラスタ名" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:780 +msgid "" +"An agent with the same name of the cluster will be created, as well a special " +"service with the same name" +msgstr "" +"クラスタと同じ名前のエージェントと、同じ名前の特別なサービスが作成されます" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:794 +msgid "Cluster type" +msgstr "クラスタタイプ" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:795 +msgid "" +"AA is a cluster where all members are working. In AP cluster only master " +"member is working" +msgstr "" +"アクティブ-アクティブは、すべてのメンバが稼働しているクラスタです。 アクティブ-" +"スタンバイクラスタでは、マスターのみが稼働しています" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:803 +msgid "Active - Active" +msgstr "アクティブ - アクティブ" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:804 +msgid "Active - Pasive" +msgstr "アクティブ - スタンバイ" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:824 +msgid "Target cluster agent will be stored under this group" +msgstr "対象のクラスタエージェントはこのグループに保存されます" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:841 +msgid "" +"You must select a Prediction Server to perform all cluster status calculations" +msgstr "" +"すべてのクラスタ状態計算を実行するには、予測サーバを選択する必要があります" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1037 +msgid "critical if" +msgstr "次の場合に障害" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1046 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1069 +#, php-format +msgid "% of balanced modules are down (equal or greater)." +msgstr "% (またはそれ以上)のバランスモジュールがダウンしています。" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1085 +msgid "Please, set thresholds for all active-passive modules" +msgstr "全アクティブ - スタンバイモジュールのしきい値を設定してください" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1096 +msgid "Please, set thresholds for all active-active modules" +msgstr "全アクティブ - アクティブモジュールのしきい値を設定してください" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1201 +msgid "Please, check all active-passive modules critical for this cluster" +msgstr "" +"このクラスタに重要な全アクティブ-スタンバイモジュールをチェックしてください" + +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1203 +msgid "" +"If a critical balanced module is going to critical status, then cluster will " +"be critical." +msgstr "" +"クリティカルバランスモジュールが障害状態なる場合、クラスタは障害になります。" + #: ../../include/lib/Core/DBMaintainer.php:174 #, php-format msgid "Connection problems: %s" @@ -47797,23 +49596,24 @@ msgstr "ビュー %s が見つかりません" msgid " error: Module has no agent assigned." msgstr " エラー: モジュールがエージェントに割り当てられていません" -#: ../../include/lib/Module.php:1039 +#: ../../include/lib/Module.php:1043 msgid "Module name empty." msgstr "モジュール名が空です。" -#: ../../include/lib/Module.php:1045 +#: ../../include/lib/Module.php:1049 msgid "Invalid characters in module name" msgstr "モジュール名に不正な文字が含まれています" -#: ../../include/lib/Module.php:1051 +#: ../../include/lib/Module.php:1055 msgid "Module already exists please select another name or agent." -msgstr "モジュールが既に存在します。他の名前またはエージェントを選択してください。" +msgstr "" +"モジュールが既に存在します。他の名前またはエージェントを選択してください。" -#: ../../include/lib/Module.php:1057 +#: ../../include/lib/Module.php:1061 msgid "Insufficent permissions to perform this action" msgstr "このアクションを実行するには権限が不十分です" -#: ../../include/lib/Module.php:1064 +#: ../../include/lib/Module.php:1068 #, php-format msgid "Error while processing: %s" msgstr "処理中にエラー: %s" @@ -47920,7 +49720,7 @@ msgid " to apply" msgstr " を適用" #: ../../include/functions_snmp_browser.php:1542 -#: ../../operation/snmpconsole/snmp_browser.php:541 +#: ../../operation/snmpconsole/snmp_browser.php:539 msgid "Create new policy" msgstr "新たなポリシーを作成" @@ -47928,6 +49728,14 @@ msgstr "新たなポリシーを作成" msgid "Undo" msgstr "元に戻す" +#: ../../include/chart_generator.php:113 ../../operation/agentes/stat_win.php:51 +#: ../../operation/agentes/stat_win.php:176 +#: ../../operation/agentes/realtime_win.php:51 +#: ../../operation/agentes/interface_traffic_graph_win.php:54 +#: ../../operation/inventory/inventory.php:206 +msgid "There was a problem connecting with the node" +msgstr "ノード接続で問題が発生しました" + #: ../../include/functions_groups.php:75 msgid "Alert Actions" msgstr "アラートアクション" @@ -47937,8 +49745,8 @@ msgid "Alert Templates" msgstr "アラートテンプレート" #: ../../include/functions_groups.php:107 -#: ../../operation/agentes/pandora_networkmap.editor.php:337 -#: ../../operation/agentes/pandora_networkmap.view.php:137 +#: ../../operation/agentes/pandora_networkmap.editor.php:355 +#: ../../operation/agentes/pandora_networkmap.view.php:174 msgid "Discovery task" msgstr "自動検出タスク" @@ -47986,246 +49794,251 @@ msgstr "エージェントモジュール" msgid "Module custom id" msgstr "モジュールカスタム ID" -#: ../../include/functions_events.php:1704 +#: ../../include/functions_events.php:1785 #, php-format msgid "Could not connect: %s" msgstr "接続できませんでした: %s" -#: ../../include/functions_events.php:2422 ../../operation/agentes/tactical.php:228 +#: ../../include/functions_events.php:2506 +#: ../../operation/agentes/tactical.php:229 msgid "Latest events" msgstr "最新のイベント" -#: ../../include/functions_events.php:2559 -msgid "Events -by module-" -msgstr "イベント -モジュールごと-" - -#: ../../include/functions_events.php:2565 ../../operation/agentes/tactical.php:245 -msgid "Event graph" -msgstr "イベントグラフ" - -#: ../../include/functions_events.php:2567 ../../operation/agentes/tactical.php:248 -msgid "Event graph by agent" -msgstr "エージェントごとのイベントグラフ" - -#: ../../include/functions_events.php:2706 +#: ../../include/functions_events.php:2769 msgid "Going to unknown" msgstr "不明状態になりました。" -#: ../../include/functions_events.php:2714 +#: ../../include/functions_events.php:2777 msgid "Alert manually validated" msgstr "アラートは承諾されました。" -#: ../../include/functions_events.php:2718 +#: ../../include/functions_events.php:2781 msgid "Going from critical to warning" msgstr "障害が警告状態になりました。" -#: ../../include/functions_events.php:2724 +#: ../../include/functions_events.php:2787 msgid "Going up to critical state" msgstr "障害状態に変わりました" -#: ../../include/functions_events.php:2730 +#: ../../include/functions_events.php:2793 msgid "Going up to normal state" msgstr "正常になりました。" -#: ../../include/functions_events.php:2734 +#: ../../include/functions_events.php:2797 msgid "Going down from normal to warning" msgstr "警告状態になりました。" -#: ../../include/functions_events.php:2746 +#: ../../include/functions_events.php:2809 msgid "Discovery server detected a new host" msgstr "自動検出サーバが新たなホストを検出しました" -#: ../../include/functions_events.php:2750 +#: ../../include/functions_events.php:2813 msgid "New agent created" msgstr "新しいエージェントが作成されました。" -#: ../../include/functions_events.php:2767 +#: ../../include/functions_events.php:2830 msgid "Unknown type:" msgstr "不明なタイプ" -#: ../../include/functions_events.php:3058 ../../include/functions_events.php:3089 +#: ../../include/functions_events.php:3121 +#: ../../include/functions_events.php:3152 msgid "Only new" msgstr "新規のみ" -#: ../../include/functions_events.php:3060 ../../include/functions_events.php:3097 +#: ../../include/functions_events.php:3123 +#: ../../include/functions_events.php:3160 msgid "Only in process" msgstr "処理中のみ" -#: ../../include/functions_events.php:3061 ../../include/functions_events.php:3101 +#: ../../include/functions_events.php:3124 +#: ../../include/functions_events.php:3164 msgid "Only not validated" msgstr "未承諾のみ" -#: ../../include/functions_events.php:3066 ../../include/functions_events.php:3336 -#: ../../include/functions_events.php:3345 +#: ../../include/functions_events.php:3129 +#: ../../include/functions_events.php:3399 +#: ../../include/functions_events.php:3408 msgid "In process" msgstr "処理中" -#: ../../include/functions_events.php:3067 +#: ../../include/functions_events.php:3130 msgid "Not Validated" msgstr "未承諾" -#: ../../include/functions_events.php:3259 +#: ../../include/functions_events.php:3322 msgid "Change owner" msgstr "所有者変更" -#: ../../include/functions_events.php:3321 +#: ../../include/functions_events.php:3384 msgid "Change status" msgstr "ステータス変更" -#: ../../include/functions_events.php:3415 ../../include/functions_events.php:4984 +#: ../../include/functions_events.php:3478 +#: ../../include/functions_events.php:5139 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314 msgid "Add comment" msgstr "コメントの追加" -#: ../../include/functions_events.php:3435 ../../include/functions_events.php:3439 -#: ../../operation/events/events.php:888 +#: ../../include/functions_events.php:3498 +#: ../../include/functions_events.php:3502 ../../operation/events/events.php:948 msgid "Delete event" msgstr "削除" -#: ../../include/functions_events.php:3459 +#: ../../include/functions_events.php:3522 msgid "Custom responses" msgstr "カスタム応答" -#: ../../include/functions_events.php:4015 +#: ../../include/functions_events.php:4128 msgid "Extended information" msgstr "拡張情報" -#: ../../include/functions_events.php:4046 +#: ../../include/functions_events.php:4159 msgid "There was an error connecting to the node" msgstr "ノードへの接続エラーが発生しました" -#: ../../include/functions_events.php:4067 +#: ../../include/functions_events.php:4180 msgid "Agent details" msgstr "エージェント詳細" -#: ../../include/functions_events.php:4081 +#: ../../include/functions_events.php:4194 msgid "This agent belongs to metaconsole, is not possible display it" msgstr "このエージェントはメタコンソールに属しており、表示できません" -#: ../../include/functions_events.php:4132 +#: ../../include/functions_events.php:4245 msgid "View custom fields" msgstr "カスタムフィールド表示" -#: ../../include/functions_events.php:4155 +#: ../../include/functions_events.php:4268 msgid "Module details" msgstr "モジュール詳細" -#: ../../include/functions_events.php:4171 +#: ../../include/functions_events.php:4284 msgid "No assigned" msgstr "未割当" -#: ../../include/functions_events.php:4255 ../../include/functions_events.php:4264 +#: ../../include/functions_events.php:4368 +#: ../../include/functions_events.php:4377 msgid "Go to data overview" msgstr "データ概要表示" -#: ../../include/functions_events.php:4380 +#: ../../include/functions_events.php:4493 #, php-format msgid "Invalid custom data: %s" msgstr "不正なカスタムデータ: %s" -#: ../../include/functions_events.php:4609 +#: ../../include/functions_events.php:4722 msgid "First event" msgstr "最初のイベント" -#: ../../include/functions_events.php:4609 +#: ../../include/functions_events.php:4725 msgid "Last event" msgstr "最後のイベント" -#: ../../include/functions_events.php:4693 +#: ../../include/functions_events.php:4814 msgid "Autovalidated" msgstr "自動承諾済" -#: ../../include/functions_events.php:4759 +#: ../../include/functions_events.php:4880 msgid "ID extra" msgstr "拡張 ID" -#: ../../include/functions_events.php:4833 +#: ../../include/functions_events.php:4988 msgid "There are no comments" msgstr "コメントがありません" -#: ../../include/functions_events.php:4897 ../../general/logon_ok.php:208 +#: ../../include/functions_events.php:5052 ../../general/logon_ok.php:208 msgid "by" msgstr "発行者:" -#: ../../include/functions_events.php:4994 +#: ../../include/functions_events.php:5149 msgid "" -"If event replication is ongoing, it won't be possible to enter comments here. This " -"option is only to allow local pandora users to see comments, but not to operate with " -"them. The operation, when event replication is enabled, must be done only in the " -"Metaconsole." +"If event replication is ongoing, it won't be possible to enter comments here. " +"This option is only to allow local pandora users to see comments, but not to " +"operate with them. The operation, when event replication is enabled, must be " +"done only in the Metaconsole." msgstr "" -"イベントの複製実行中は、ここにコメントを入力することはできません。 このオプションで" -"は、ローカルの pandora ユーザはコメントを表示することのみが可能で、コメントを操作する" -"ことはできません。 イベント複製が有効な場合は、操作はメタコンソールでのみ実行する必要" -"があります。" +"イベントの複製実行中は、ここにコメントを入力することはできません。 このオプショ" +"ンでは、ローカルの pandora ユーザはコメントを表示することのみが可能で、コメント" +"を操作することはできません。 イベント複製が有効な場合は、操作はメタコンソールで" +"のみ実行する必要があります。" -#: ../../include/functions_planned_downtimes.php:577 +#: ../../include/functions_events.php:5719 +#, php-format +msgid "Event # %d" +msgstr "イベント # %d" + +#: ../../include/functions_events.php:5722 +msgid "Executing command: " +msgstr "コマンド実行中: " + +#: ../../include/functions_planned_downtimes.php:578 msgid "Succesful stopped the Downtime" msgstr "計画停止を中止しました" -#: ../../include/functions_planned_downtimes.php:578 +#: ../../include/functions_planned_downtimes.php:579 msgid "Unsuccesful stopped the Downtime" msgstr "計画停止の中止に失敗しました" -#: ../../include/functions_planned_downtimes.php:733 +#: ../../include/functions_planned_downtimes.php:734 #, php-format msgid "Enabled %s elements from the downtime" msgstr "計画停止から %s 件の要素が有効になりました" -#: ../../include/functions_planned_downtimes.php:792 +#: ../../include/functions_planned_downtimes.php:793 msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" msgstr "" -"計画停止は、静観、エージェント無効化、エージェントアラート無効化のいずれかです。" +"計画停止は、静観、エージェント無効化、エージェントアラート無効化のいずれかで" +"す。" -#: ../../include/functions_planned_downtimes.php:797 +#: ../../include/functions_planned_downtimes.php:798 msgid "The execution must be once or periodically" msgstr "実行は、一回のみか定期的のいずれかです。" -#: ../../include/functions_planned_downtimes.php:802 +#: ../../include/functions_planned_downtimes.php:803 msgid "The periodicity must be weekly or monthly" msgstr "定期実行は週次または月次です。" -#: ../../include/functions_planned_downtimes.php:807 +#: ../../include/functions_planned_downtimes.php:808 msgid "There is no user with such id" msgstr "そのような ID のユーザがありません。" -#: ../../include/functions_planned_downtimes.php:812 +#: ../../include/functions_planned_downtimes.php:813 msgid "There is no group with such id" msgstr "そのような ID のグループがありません。" -#: ../../include/functions_planned_downtimes.php:817 +#: ../../include/functions_planned_downtimes.php:818 msgid "Date is wrong formatted" msgstr "日付のフォーマットが不正です" -#: ../../include/functions_planned_downtimes.php:924 +#: ../../include/functions_planned_downtimes.php:925 msgid "This scheduled downtime are executed now. Can't delete in this moment." msgstr "この計画停止は実行中です。このタイミングで削除できません。" -#: ../../include/functions_planned_downtimes.php:931 +#: ../../include/functions_planned_downtimes.php:932 msgid "Deleted this scheduled downtime successfully." msgstr "この計画停止を削除しました。" -#: ../../include/functions_planned_downtimes.php:933 +#: ../../include/functions_planned_downtimes.php:934 msgid "Problems for deleted this scheduled downtime." msgstr "この計画停止の削除で問題が発生しました。" -#: ../../include/functions_planned_downtimes.php:993 +#: ../../include/functions_planned_downtimes.php:994 msgid "Error adding agents to copied downtime" msgstr "コピーした計画停止へのエージェント追加エラー" -#: ../../include/functions_planned_downtimes.php:1016 +#: ../../include/functions_planned_downtimes.php:1017 msgid "Error adding module to copied downtime" msgstr "コピーした計画停止へのモジュール追加エラー" -#: ../../index.php:989 +#: ../../index.php:993 msgid "User doesn\\'t exist." msgstr "ユーザが存在しません。" -#: ../../index.php:1011 +#: ../../index.php:1015 msgid "User only can use the API." msgstr "ユーザは API のみ利用可能" -#: ../../index.php:1213 +#: ../../index.php:1217 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "メタコンソールの MR (%d) は、こちら (%d) と異なります" @@ -48298,119 +50111,99 @@ msgstr "モジュール検索" msgid "Tree search" msgstr "ツリー検索" -#: ../../operation/users/user_edit.php:156 +#: ../../operation/users/user_edit.php:31 +msgid "User detail editor" +msgstr "ユーザ情報の編集" + +#: ../../operation/users/user_edit.php:159 msgid "Current password of user is required to perform password change" msgstr "ユーザの現在のパスワードは変更する必要があります" -#: ../../operation/users/user_edit.php:158 +#: ../../operation/users/user_edit.php:161 msgid "Current password of user is not correct" msgstr "ユーザの現在のパスワードは正しくありません" -#: ../../operation/users/user_edit.php:162 -msgid "Passwords didn't match or other problem encountered while updating passwords" +#: ../../operation/users/user_edit.php:165 +msgid "" +"Passwords didn't match or other problem encountered while updating passwords" msgstr "パスワードが一致しない、または他の原因でパスワードの更新に失敗しました。" -#: ../../operation/users/user_edit.php:175 ../../operation/users/user_edit.php:190 +#: ../../operation/users/user_edit.php:178 +#: ../../operation/users/user_edit.php:197 msgid "Password successfully updated" msgstr "パスワードを更新しました。" -#: ../../operation/users/user_edit.php:185 ../../operation/users/user_edit.php:233 +#: ../../operation/users/user_edit.php:188 +#: ../../operation/users/user_edit.php:240 msgid "Error updating user info" msgstr "ユーザ情報の更新に失敗しました。" -#: ../../operation/users/user_edit.php:192 +#: ../../operation/users/user_edit.php:199 msgid "Skin successfully updated" msgstr "スキンを更新しました。" -#: ../../operation/users/user_edit.php:206 +#: ../../operation/users/user_edit.php:213 msgid "Please enter a valid email" msgstr "正しいメールアドレスを入力してください" -#: ../../operation/users/user_edit.php:208 +#: ../../operation/users/user_edit.php:215 msgid "Please enter a valid phone number" msgstr "正しい電話番号を入力してください" -#: ../../operation/users/user_edit.php:214 +#: ../../operation/users/user_edit.php:221 msgid "Error updating passwords: " msgstr "パスワード更新エラー: " -#: ../../operation/users/user_edit.php:238 +#: ../../operation/users/user_edit.php:245 msgid "Edit my User" msgstr "ユーザ編集" -#: ../../operation/users/user_edit.php:303 +#: ../../operation/users/user_edit.php:328 +msgid "" +"Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/conf." +"d/php.conf" +msgstr "" +"ディレクティブ HTTP_AUTHORIZATION=$1 が設定されていません。 /etc/httpd/conf.d/" +"php.conf に追加してください。" + +#: ../../operation/users/user_edit.php:377 msgid "Current password" msgstr "現在のパスワード" -#: ../../operation/users/user_edit.php:305 +#: ../../operation/users/user_edit.php:379 msgid "You cannot change your password under the current authentication scheme" msgstr "現在の認証スキームではパスワードを変更できません" -#: ../../operation/users/user_edit.php:320 +#: ../../operation/users/user_edit.php:394 msgid "If checkbox is clicked then block size global configuration is used" msgstr "チェックボックスをクリックすると、システム全体の設定が利用されます" -#: ../../operation/users/user_edit.php:414 +#: ../../operation/users/user_edit.php:478 +#: ../../operation/users/user_edit.php:487 +msgid "Theme" +msgstr "テーマ" + +#: ../../operation/users/user_edit.php:488 msgid "This change will only apply to nodes" msgstr "この変更はノードにのみ適用されます" -#: ../../operation/users/user_edit.php:451 -msgid "Event filter" -msgstr "イベントフィルタ" - -#: ../../operation/users/user_edit.php:522 -msgid "Autorefresh" -msgstr "自動更新" - -#: ../../operation/users/user_edit.php:523 -msgid "This will activate autorefresh in selected pages" -msgstr "選択したページで自動更新を有効にします" - -#: ../../operation/users/user_edit.php:558 -msgid "Full list of pages" -msgstr "全ページ一覧" - -#: ../../operation/users/user_edit.php:567 ../../operation/users/user_edit.php:568 -msgid "Push selected pages into autorefresh list" -msgstr "選択したページを自動更新にする" - -#: ../../operation/users/user_edit.php:576 ../../operation/users/user_edit.php:577 -msgid "Pop selected pages out of autorefresh list" -msgstr "選択したページを自動更新から外す" - -#: ../../operation/users/user_edit.php:582 -msgid "List of pages with autorefresh" -msgstr "自動更新ページ一覧" - -#: ../../operation/users/user_edit.php:591 -msgid "Time autorefresh" -msgstr "自動更新時間" - -#: ../../operation/users/user_edit.php:593 -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:712 +#: ../../operation/users/user_edit.php:784 msgid "eHorus user configuration" msgstr "eHorus ユーザ設定" -#: ../../operation/users/user_edit.php:717 +#: ../../operation/users/user_edit.php:789 msgid "eHorus user acces enabled" msgstr "eHorus ユーザアクセスの有効化" -#: ../../operation/users/user_edit.php:764 +#: ../../operation/users/user_edit.php:836 msgid "Integria user configuration" msgstr "Integria ユーザ設定" -#: ../../operation/users/user_edit.php:801 +#: ../../operation/users/user_edit.php:873 msgid "You can not change your user info under the current authentication scheme" msgstr "現在の認証スキームではユーザ情報を変更できません" -#: ../../operation/users/user_edit.php:878 +#: ../../operation/users/user_edit.php:950 msgid "This user doesn't have any assigned profile/group." msgstr "このユーザにはプロファイル・グループが割り当てられていません。" @@ -48421,7 +50214,7 @@ msgstr "ユーザ通知" #: ../../operation/users/user_edit_header.php:127 #: ../../operation/messages/message_list.php:86 -#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:475 +#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:485 msgid "Workspace" msgstr "ワークスペース" @@ -48445,26 +50238,48 @@ msgstr "見つかりませんでした。" #, php-format msgid "You can find more help in the wiki" msgstr "" -"追加のヘルプは wiki で見つけることができます" +"追加のヘルプは wiki で見つけることができ" +"ます" #: ../../operation/search_helps.php:32 msgid "Matches" msgstr "一致" -#: ../../operation/visual_console/view.php:387 +#: ../../operation/visual_console/view.php:389 msgid "Delete Item" msgstr "アイテム削除" -#: ../../operation/visual_console/view.php:393 +#: ../../operation/visual_console/view.php:395 msgid "Copy Item" msgstr "アイテムコピー" -#: ../../operation/visual_console/view.php:406 +#: ../../operation/visual_console/view.php:412 #: ../../operation/agentes/estado_generalagente.php:345 msgid "Force remote checks" msgstr "リモートチェックを強制する" -#: ../../operation/visual_console/view.php:734 +#: ../../operation/visual_console/view.php:770 +msgid "Are you sure you wish to set the visual console in maintenance mode" +msgstr "ビジュアルコンソールをメンテナンスモードにしてよろしいですか" + +#: ../../operation/visual_console/view.php:773 +#: ../../operation/visual_console/view.php:780 +msgid "Are you sure you wish to disable maintenance mode" +msgstr "メンテナンスモードを無効化してよろしいですか" + +#: ../../operation/visual_console/view.php:776 +msgid "The visual console was set to maintenance mode" +msgstr "ビジュアルコンソールはメンテナンスモードに設定されています。" + +#: ../../operation/visual_console/view.php:778 +msgid "ago by user" +msgstr "前、次のユーザによる: " + +#: ../../operation/visual_console/view.php:785 +msgid "Maintenance mode" +msgstr "メンテナンスモード" + +#: ../../operation/visual_console/view.php:846 msgid "Are you sure" msgstr "よろしいですか" @@ -48473,12 +50288,7 @@ msgstr "よろしいですか" msgid "QR code of the page" msgstr "ページの QR コード" -#: ../../operation/visual_console/legacy_public_view.php:198 -#: ../../operation/visual_console/legacy_view.php:339 -msgid "Until refresh" -msgstr "リフレッシュまで" - -#: ../../operation/search_results.php:67 +#: ../../operation/search_results.php:68 msgid "Global search" msgstr "グローバル検索" @@ -48492,26 +50302,31 @@ msgid "There was a problem locating the source of the graph" msgstr "グラフの場所に問題があります。" #: ../../operation/agentes/stat_win.php:267 -#: ../../operation/agentes/interface_traffic_graph_win.php:167 +#: ../../operation/agentes/interface_traffic_graph_win.php:169 msgid "Refresh time" msgstr "更新時間" -#: ../../operation/agentes/stat_win.php:278 ../../operation/agentes/graphs.php:222 +#: ../../operation/agentes/stat_win.php:278 +#: ../../operation/agentes/graphs.php:222 msgid "Show events" msgstr "イベント表示" -#: ../../operation/agentes/stat_win.php:299 ../../operation/agentes/graphs.php:224 +#: ../../operation/agentes/stat_win.php:299 +#: ../../operation/agentes/graphs.php:224 msgid "Show alerts" msgstr "アラート表示" -#: ../../operation/agentes/stat_win.php:307 ../../operation/agentes/stat_win.php:418 -#: ../../operation/agentes/interface_traffic_graph_win.php:207 +#: ../../operation/agentes/stat_win.php:307 +#: ../../operation/agentes/stat_win.php:418 +#: ../../operation/agentes/interface_traffic_graph_win.php:209 msgid "Begin time" msgstr "開始時間" -#: ../../operation/agentes/stat_win.php:325 ../../operation/agentes/stat_win.php:428 -#: ../../operation/agentes/interface_traffic_graph_win.php:213 -#: ../../operation/agentes/graphs.php:218 ../../operation/reporting/graph_viewer.php:360 +#: ../../operation/agentes/stat_win.php:325 +#: ../../operation/agentes/stat_win.php:428 +#: ../../operation/agentes/interface_traffic_graph_win.php:215 +#: ../../operation/agentes/graphs.php:218 +#: ../../operation/reporting/graph_viewer.php:332 msgid "Time range" msgstr "時間範囲" @@ -48520,7 +50335,7 @@ msgid "Zoom" msgstr "ズーム" #: ../../operation/agentes/stat_win.php:360 -#: ../../operation/agentes/interface_traffic_graph_win.php:227 +#: ../../operation/agentes/interface_traffic_graph_win.php:229 msgid "Show percentil" msgstr "パーセント表示" @@ -48529,30 +50344,30 @@ msgid "Show AVG/MAX/MIN data series in graph" msgstr "グラウに平均/最大/最小データを表示" #: ../../operation/agentes/stat_win.php:489 -#: ../../operation/agentes/interface_traffic_graph_win.php:306 +#: ../../operation/agentes/interface_traffic_graph_win.php:308 msgid "Graph configuration menu" msgstr "グラフ設定メニュー" -#: ../../operation/agentes/alerts_status.php:338 +#: ../../operation/agentes/alerts_status.php:347 msgid "No actions" msgstr "アクションがありません" -#: ../../operation/agentes/alerts_status.php:371 +#: ../../operation/agentes/alerts_status.php:380 #: ../../operation/agentes/estado_monitores.php:539 #: ../../operation/agentes/alerts_status.functions.php:160 msgid "Free text for search (*):" msgstr "検索文字列 (*):" -#: ../../operation/agentes/alerts_status.php:372 +#: ../../operation/agentes/alerts_status.php:381 #: ../../operation/agentes/alerts_status.functions.php:161 msgid "Filter by module name, template name or action name" msgstr "モジュール名、テンプレート名、アクション名によるフィルタ" -#: ../../operation/agentes/alerts_status.php:441 +#: ../../operation/agentes/alerts_status.php:450 msgid "Full list of alerts" msgstr "アラートのフィルタ一覧" -#: ../../operation/agentes/alerts_status.php:532 +#: ../../operation/agentes/alerts_status.php:541 msgid "You must select at least one alert." msgstr "少なくとも一つのアラートを選択する必要があります。" @@ -48595,9 +50410,9 @@ msgstr "手動位置設定" msgid "Invalid time specified" msgstr "時間が正しくありません。" -#: ../../operation/agentes/exportdata.csv.php:178 +#: ../../operation/agentes/exportdata.csv.php:181 #: ../../operation/agentes/exportdata.php:209 -#: ../../operation/agentes/exportdata.excel.php:161 +#: ../../operation/agentes/exportdata.excel.php:164 msgid "No modules specified" msgstr "モジュールが指定されていません。" @@ -48668,15 +50483,14 @@ msgid "Latest events for this agent" msgstr "このエージェントにおける最新イベント" #: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2266 +#: ../../operation/agentes/pandora_networkmap.view.php:2314 #: ../../operation/snmpconsole/snmp_statistics.php:45 #: ../../operation/snmpconsole/snmp_browser.php:56 -#: ../../operation/snmpconsole/snmp_view.php:118 msgid "Normal screen" msgstr "通常画面" #: ../../operation/agentes/networkmap.dinamic.php:126 -#: ../../operation/agentes/pandora_networkmap.view.php:2290 +#: ../../operation/agentes/pandora_networkmap.view.php:2342 msgid "List of networkmap" msgstr "ネットワークマップ一覧" @@ -48694,160 +50508,164 @@ msgstr "%s リアルタイムモジュールグラフ" msgid "Realtime extension is not enabled." msgstr "リアルタイム実行が無効です。" -#: ../../operation/agentes/pandora_networkmap.editor.php:205 +#: ../../operation/agentes/pandora_networkmap.editor.php:223 msgid "Network maps editor" msgstr "ネットワークマップエディタ" -#: ../../operation/agentes/pandora_networkmap.editor.php:324 -#: ../../operation/agentes/pandora_networkmap.view.php:127 +#: ../../operation/agentes/pandora_networkmap.editor.php:342 +#: ../../operation/agentes/pandora_networkmap.view.php:164 msgid "Position X" msgstr "X 位置" -#: ../../operation/agentes/pandora_networkmap.editor.php:326 -#: ../../operation/agentes/pandora_networkmap.view.php:129 +#: ../../operation/agentes/pandora_networkmap.editor.php:344 +#: ../../operation/agentes/pandora_networkmap.view.php:166 msgid "Position Y" msgstr "Y 位置" -#: ../../operation/agentes/pandora_networkmap.editor.php:329 -#: ../../operation/agentes/pandora_networkmap.view.php:132 +#: ../../operation/agentes/pandora_networkmap.editor.php:347 +#: ../../operation/agentes/pandora_networkmap.view.php:169 msgid "Zoom scale" msgstr "拡大スケール" -#: ../../operation/agentes/pandora_networkmap.editor.php:334 -#: ../../operation/agentes/pandora_networkmap.view.php:134 -msgid "Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +#: ../../operation/agentes/pandora_networkmap.editor.php:352 +#: ../../operation/agentes/pandora_networkmap.view.php:171 +msgid "" +"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" msgstr "拡大率を設定します。1=高解像度。数字には小数点を含めることができます。" -#: ../../operation/agentes/pandora_networkmap.editor.php:337 -#: ../../operation/agentes/pandora_networkmap.view.php:137 +#: ../../operation/agentes/pandora_networkmap.editor.php:355 +#: ../../operation/agentes/pandora_networkmap.view.php:174 msgid "CIDR IP mask" msgstr "CIDR IPマスク" -#: ../../operation/agentes/pandora_networkmap.editor.php:339 -#: ../../operation/agentes/pandora_networkmap.view.php:164 +#: ../../operation/agentes/pandora_networkmap.editor.php:357 +#: ../../operation/agentes/pandora_networkmap.view.php:201 msgid "Source from recon task" msgstr "自動検出タスクからのソース" -#: ../../operation/agentes/pandora_networkmap.editor.php:341 -#: ../../operation/agentes/pandora_networkmap.view.php:166 +#: ../../operation/agentes/pandora_networkmap.editor.php:359 +#: ../../operation/agentes/pandora_networkmap.view.php:203 msgid "" -"It is setted any recon task, the nodes get from the recontask IP mask instead from " -"the group." +"It is setted any recon task, the nodes get from the recontask IP mask instead " +"from the group." msgstr "" -"自動検出タスクで設定されます。ノードは、グループではなく自動検出タスクの IP マスクから" -"取得します。" +"自動検出タスクで設定されます。ノードは、グループではなく自動検出タスクの IP マ" +"スクから取得します。" -#: ../../operation/agentes/pandora_networkmap.editor.php:358 -#: ../../operation/agentes/pandora_networkmap.view.php:182 +#: ../../operation/agentes/pandora_networkmap.editor.php:376 +#: ../../operation/agentes/pandora_networkmap.view.php:219 msgid "Show only the task with the recon script \"SNMP L2 Recon\"." msgstr "自動検出スクリプト \"SNMP L2 Recon\" のタスクのみ表示。" -#: ../../operation/agentes/pandora_networkmap.editor.php:362 -#: ../../operation/agentes/pandora_networkmap.view.php:186 +#: ../../operation/agentes/pandora_networkmap.editor.php:380 +#: ../../operation/agentes/pandora_networkmap.view.php:223 msgid "Source from CIDR IP mask" msgstr "CIDR IPマスクからのソース" -#: ../../operation/agentes/pandora_networkmap.editor.php:365 +#: ../../operation/agentes/pandora_networkmap.editor.php:383 msgid "Source group" msgstr "複製元グループ" -#: ../../operation/agentes/pandora_networkmap.editor.php:382 +#: ../../operation/agentes/pandora_networkmap.editor.php:400 msgid "Source id group changed. All elements in networkmap will be lost." -msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" +msgstr "" +"ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" -#: ../../operation/agentes/pandora_networkmap.editor.php:387 -#: ../../operation/agentes/pandora_networkmap.view.php:198 +#: ../../operation/agentes/pandora_networkmap.editor.php:405 +#: ../../operation/agentes/pandora_networkmap.view.php:235 msgid "Don't show subgroups:" msgstr "サブグループを表示しない:" -#: ../../operation/agentes/pandora_networkmap.editor.php:405 -#: ../../operation/agentes/pandora_networkmap.view.php:232 +#: ../../operation/agentes/pandora_networkmap.editor.php:423 +#: ../../operation/agentes/pandora_networkmap.view.php:269 msgid "Method generation networkmap" msgstr "ネットワークマップ生成手法" -#: ../../operation/agentes/pandora_networkmap.editor.php:426 -#: ../../operation/agentes/pandora_networkmap.view.php:248 +#: ../../operation/agentes/pandora_networkmap.editor.php:444 +#: ../../operation/agentes/pandora_networkmap.view.php:285 msgid "Separation between nodes. By default 0.25" msgstr "ノード間の分離。デフォルトは 0.25 です。" -#: ../../operation/agentes/pandora_networkmap.editor.php:428 -#: ../../operation/agentes/pandora_networkmap.view.php:250 +#: ../../operation/agentes/pandora_networkmap.editor.php:446 +#: ../../operation/agentes/pandora_networkmap.view.php:287 msgid "Rank separation" msgstr "ランク分け" -#: ../../operation/agentes/pandora_networkmap.editor.php:429 -#: ../../operation/agentes/pandora_networkmap.view.php:251 +#: ../../operation/agentes/pandora_networkmap.editor.php:447 +#: ../../operation/agentes/pandora_networkmap.view.php:288 msgid "" -"Only flat and radial. Separation between arrows. By default 0.5 in flat and 1.0 in " -"radial" +"Only flat and radial. Separation between arrows. By default 0.5 in flat and " +"1.0 in radial" msgstr "" -"フラットおよびラジアルのみ。 矢印の間の分離です。 デフォルトでは、フラットが 0.5、ラジ" -"アルが 1.0 です。" +"フラットおよびラジアルのみ。 矢印の間の分離です。 デフォルトでは、フラットが " +"0.5、ラジアルが 1.0 です。" -#: ../../operation/agentes/pandora_networkmap.editor.php:431 -#: ../../operation/agentes/pandora_networkmap.view.php:253 +#: ../../operation/agentes/pandora_networkmap.editor.php:449 +#: ../../operation/agentes/pandora_networkmap.view.php:290 msgid "Min nodes dist" msgstr "最小ノード間隔" -#: ../../operation/agentes/pandora_networkmap.editor.php:432 -#: ../../operation/agentes/pandora_networkmap.view.php:254 +#: ../../operation/agentes/pandora_networkmap.editor.php:450 +#: ../../operation/agentes/pandora_networkmap.view.php:291 msgid "Only circular. Minimum separation between all nodes. By default 1.0" msgstr "円のみ。ノード間の最小距離です。デフォルトは 1.0 です。" -#: ../../operation/agentes/pandora_networkmap.editor.php:434 -#: ../../operation/agentes/pandora_networkmap.view.php:256 +#: ../../operation/agentes/pandora_networkmap.editor.php:452 +#: ../../operation/agentes/pandora_networkmap.view.php:293 msgid "Default ideal node separation" msgstr "デフォルトノード間距離" -#: ../../operation/agentes/pandora_networkmap.editor.php:435 -#: ../../operation/agentes/pandora_networkmap.view.php:257 +#: ../../operation/agentes/pandora_networkmap.editor.php:453 +#: ../../operation/agentes/pandora_networkmap.view.php:294 msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" msgstr "" -"fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 です。" +"fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 で" +"す。" -#: ../../operation/agentes/pandora_networkmap.editor.php:601 +#: ../../operation/agentes/pandora_networkmap.editor.php:632 msgid "Source id group changed. All elements in Networkmap will be lost" -msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" +msgstr "" +"ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" #: ../../operation/agentes/pandora_networkmap.php:139 -#: ../../operation/agentes/pandora_networkmap.php:374 +#: ../../operation/agentes/pandora_networkmap.php:377 msgid "Succesfully created" msgstr "作成しました" #: ../../operation/agentes/pandora_networkmap.php:215 -#: ../../operation/agentes/pandora_networkmap.php:507 +#: ../../operation/agentes/pandora_networkmap.php:514 msgid "Succesfully updated" msgstr "更新しました" -#: ../../operation/agentes/pandora_networkmap.php:532 +#: ../../operation/agentes/pandora_networkmap.php:539 msgid "Succesfully duplicate" msgstr "複製しました" -#: ../../operation/agentes/pandora_networkmap.php:546 +#: ../../operation/agentes/pandora_networkmap.php:553 msgid "Succesfully deleted" msgstr "削除しました" -#: ../../operation/agentes/pandora_networkmap.php:656 +#: ../../operation/agentes/pandora_networkmap.php:663 msgid "List of network maps" msgstr "ネットワークマップの一覧" -#: ../../operation/agentes/pandora_networkmap.php:776 +#: ../../operation/agentes/pandora_networkmap.php:787 msgid "Empty map" msgstr "空マップ" -#: ../../operation/agentes/pandora_networkmap.php:780 +#: ../../operation/agentes/pandora_networkmap.php:791 msgid "Pending to generate" msgstr "生成の保留" -#: ../../operation/agentes/pandora_networkmap.php:811 +#: ../../operation/agentes/pandora_networkmap.php:821 msgid "There are no maps defined." msgstr "定義済マップがありません。" -#: ../../operation/agentes/pandora_networkmap.php:818 +#: ../../operation/agentes/pandora_networkmap.php:828 msgid "Create network map" msgstr "ネットワークマップ作成" -#: ../../operation/agentes/pandora_networkmap.php:825 +#: ../../operation/agentes/pandora_networkmap.php:835 msgid "Create empty network map" msgstr "空のネットワークマップ作成" @@ -48856,11 +50674,11 @@ msgstr "空のネットワークマップ作成" msgid "%s Interface Graph" msgstr "%s インタフェースグラフ" -#: ../../operation/agentes/interface_traffic_graph_win.php:250 +#: ../../operation/agentes/interface_traffic_graph_win.php:252 msgid "Zoom factor" msgstr "ズーム倍率" -#: ../../operation/agentes/interface_traffic_graph_win.php:257 +#: ../../operation/agentes/interface_traffic_graph_win.php:259 msgid "Full" msgstr "フル" @@ -48934,10 +50752,11 @@ msgstr "メインデータベース" #: ../../operation/agentes/datos_agente.php:181 msgid "" -"Switch between the main database and the history database to retrieve module data" +"Switch between the main database and the history database to retrieve module " +"data" msgstr "" -"モジュールデータを検索するデータベースをメインデータベースとヒストリーデータベース間で" -"切り替えます。" +"モジュールデータを検索するデータベースをメインデータベースとヒストリーデータ" +"ベース間で切り替えます。" #: ../../operation/agentes/datos_agente.php:211 #: ../../operation/agentes/alerts_status.functions.php:118 @@ -48991,7 +50810,7 @@ msgstr "%s スナップショットデータ表示 (モジュール %s)" msgid "Current data at %s" msgstr "%s 時点のデータ" -#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:538 +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:548 msgid "Export data" msgstr "データのエクスポート" @@ -49045,38 +50864,38 @@ msgstr "状態なし" #: ../../operation/agentes/status_monitor.php:765 msgid "" -"If you check this option, those elements that do NOT meet any of the requirements " -"will be shown" +"If you check this option, those elements that do NOT meet any of the " +"requirements will be shown" msgstr "このオプションをチェックすると、どの要件も満たさない要素が表示されます" #: ../../operation/agentes/status_monitor.php:872 msgid "Show filters" msgstr "フィルタ表示" -#: ../../operation/agentes/status_monitor.php:1312 +#: ../../operation/agentes/status_monitor.php:1325 msgid "Data Type" msgstr "データのタイプ" -#: ../../operation/agentes/status_monitor.php:1431 -#: ../../operation/agentes/pandora_networkmap.view.php:1743 +#: ../../operation/agentes/status_monitor.php:1444 +#: ../../operation/agentes/pandora_networkmap.view.php:1786 msgid "(Adopt) " msgstr "(適用) " -#: ../../operation/agentes/status_monitor.php:1439 -#: ../../operation/agentes/pandora_networkmap.view.php:1751 +#: ../../operation/agentes/status_monitor.php:1452 +#: ../../operation/agentes/pandora_networkmap.view.php:1794 msgid "(Unlinked) (Adopt) " msgstr "(未リンク) (適用) " -#: ../../operation/agentes/status_monitor.php:1442 -#: ../../operation/agentes/pandora_networkmap.view.php:1754 +#: ../../operation/agentes/status_monitor.php:1455 +#: ../../operation/agentes/pandora_networkmap.view.php:1797 msgid "(Unlinked) " msgstr "(未リンク) " -#: ../../operation/agentes/status_monitor.php:1980 +#: ../../operation/agentes/status_monitor.php:2013 msgid "This group doesn't have any monitor" msgstr "該当するモニタ項目がありません。" -#: ../../operation/agentes/status_monitor.php:1982 +#: ../../operation/agentes/status_monitor.php:2015 msgid "Sorry no search parameters" msgstr "検索パラメータがありません" @@ -49102,9 +50921,11 @@ msgstr "モジュールの一覧" #: ../../operation/agentes/estado_monitores.php:182 msgid "" -"To see the list of modules paginated, enable this option in the Styles Configuration." +"To see the list of modules paginated, enable this option in the Styles " +"Configuration." msgstr "" -"モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化します。" +"モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化" +"します。" #: ../../operation/agentes/estado_monitores.php:518 msgid "Status:" @@ -49115,51 +50936,51 @@ msgid "Not Normal" msgstr "非正常" #: ../../operation/agentes/estado_monitores.php:540 -msgid "Search by module name, list matches." -msgstr "モジュール名による検索にマッチした一覧を表示" +msgid "Search by module name or alert name, list matches." +msgstr "モジュール名またはアラート名で検索し、一致したものを一覧表示します。" -#: ../../operation/agentes/pandora_networkmap.view.php:1611 +#: ../../operation/agentes/pandora_networkmap.view.php:1654 msgid "Success be updated." msgstr "更新しました。" -#: ../../operation/agentes/pandora_networkmap.view.php:1708 +#: ../../operation/agentes/pandora_networkmap.view.php:1751 msgid "Name: " msgstr "名前: " -#: ../../operation/agentes/pandora_networkmap.view.php:1758 +#: ../../operation/agentes/pandora_networkmap.view.php:1801 msgid "Policy: " msgstr "ポリシー: " -#: ../../operation/agentes/pandora_networkmap.view.php:1855 +#: ../../operation/agentes/pandora_networkmap.view.php:1898 msgid "Data: " msgstr "データ: " -#: ../../operation/agentes/pandora_networkmap.view.php:1857 -#: ../../operation/agentes/estado_generalagente.php:817 +#: ../../operation/agentes/pandora_networkmap.view.php:1900 +#: ../../operation/agentes/estado_generalagente.php:832 msgid "Last contact: " msgstr "最新の接続: " -#: ../../operation/agentes/ver_agente.php:1232 +#: ../../operation/agentes/ver_agente.php:1250 msgid "Sons" msgstr "子" -#: ../../operation/agentes/ver_agente.php:1582 +#: ../../operation/agentes/ver_agente.php:1612 msgid "Log Viewer" msgstr "ログビューア" -#: ../../operation/agentes/ver_agente.php:1621 +#: ../../operation/agentes/ver_agente.php:1651 msgid "Terminal" msgstr "端末" -#: ../../operation/agentes/ver_agente.php:1643 +#: ../../operation/agentes/ver_agente.php:1673 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:265 msgid "Remote configuration enabled" @@ -49185,22 +51006,31 @@ msgstr "エージェント情報" msgid "There is no GIS data." msgstr "GIS データがありません。" -#: ../../operation/agentes/estado_generalagente.php:598 +#: ../../operation/agentes/estado_generalagente.php:614 msgid "Agent access rate (Last 24h)" msgstr "エージェントアクセス頻度(直近 24時間)" -#: ../../operation/agentes/estado_generalagente.php:638 +#: ../../operation/agentes/estado_generalagente.php:654 msgid "Active incident on this agent" msgstr "このエージェントにおけるアクティブインシデント" -#: ../../operation/agentes/estado_generalagente.php:797 +#: ../../operation/agentes/estado_generalagente.php:812 msgid "Events info (24hr.)" msgstr "イベント情報 (24時間)" -#: ../../operation/agentes/estado_generalagente.php:942 +#: ../../operation/agentes/estado_generalagente.php:951 msgid "Interface information (SNMP)" msgstr "インタフェース情報 (SNMP)" +#: ../../operation/agentes/agent_inventory.php:73 +msgid "This agent has not modules inventory" +msgstr "このエージェントにはインベントリモジュールがありません" + +#: ../../operation/agentes/agent_inventory.php:193 +#: ../../operation/agentes/agent_inventory.php:194 +msgid "Diff view" +msgstr "差分表示" + #: ../../operation/agentes/alerts_status.functions.php:48 msgid "Alert(s) validated" msgstr "アラートを承諾しました。" @@ -49211,12 +51041,21 @@ msgstr "アラート処理エラー" #: ../../operation/agentes/alerts_status.functions.php:119 msgid "Filter by agent name, module name, template name or action name" -msgstr "エージェント名、モジュール名、テンプレート名および、アクション名でのフィルタ" +msgstr "" +"エージェント名、モジュール名、テンプレート名および、アクション名でのフィルタ" -#: ../../operation/agentes/tactical.php:201 +#: ../../operation/agentes/tactical.php:202 msgid "Report of State" msgstr "状態レポート" +#: ../../operation/agentes/tactical.php:246 +msgid "Event graph" +msgstr "イベントグラフ" + +#: ../../operation/agentes/tactical.php:251 +msgid "Event graph by agent" +msgstr "エージェントごとのイベントグラフ" + #: ../../operation/messages/message_list.php:46 #: ../../operation/messages/message_list.php:55 #: ../../operation/messages/message_edit.php:66 @@ -49355,26 +51194,27 @@ msgid "Select this checkbox to write interval instead a date." msgstr "日時の代わりに間隔を記載するにはこのチェックボックスを選択してください。" #: ../../operation/network/network_report.php:186 -#: ../../operation/network/network_report.php:233 +#: ../../operation/network/network_report.php:235 msgid "Flows" msgstr "フロー" #: ../../operation/network/network_report.php:197 -#: ../../operation/network/network_report.php:235 +#: ../../operation/network/network_report.php:237 msgid "Packets" msgstr "パケット" -#: ../../operation/network/network_report.php:256 +#: ../../operation/network/network_report.php:258 #, php-format msgid "Filtered by port %s. Click here to remove the filter." -msgstr "ポート %s によるフィルタ。フィルタを削除するにはこれをクリックしてください。" +msgstr "" +"ポート %s によるフィルタ。フィルタを削除するにはこれをクリックしてください。" -#: ../../operation/network/network_report.php:256 +#: ../../operation/network/network_report.php:258 #, 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:108 +#: ../../operation/network/network_usage_map.php:29 ../../operation/menu.php:112 msgid "Network usage map" msgstr "ネットワーク利用マップ" @@ -49460,7 +51300,7 @@ msgstr "現在のフィルタを更新" msgid "No filter selected" msgstr "フィルタが選択されていません" -#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:94 +#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:98 msgid "Netflow explorer" msgstr "Netflow エクスプローラ" @@ -49468,14 +51308,7 @@ msgstr "Netflow エクスプローラ" msgid "SNMP Statistics" msgstr "SNMP 統計" -#: ../../operation/snmpconsole/snmp_statistics.php:102 -#: ../../operation/snmpconsole/snmp_view.php:697 -#: ../../operation/snmpconsole/snmp_view.php:806 ../../operation/menu.php:143 -msgid "SNMP" -msgstr "SNMP" - #: ../../operation/snmpconsole/snmp_statistics.php:156 -#: ../../operation/snmpconsole/snmp_view.php:720 msgid "There are no SNMP traps in database" msgstr "SNMP トラップデータがありません。" @@ -49484,20 +51317,15 @@ msgid "Traps received by source" msgstr "ソースごとの受信トラップ" #: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../operation/snmpconsole/snmp_statistics.php:251 +#: ../../operation/snmpconsole/snmp_statistics.php:256 msgid "Number" msgstr "数" -#: ../../operation/snmpconsole/snmp_statistics.php:197 -#: ../../operation/snmpconsole/snmp_view.php:962 -msgid "View agent details" -msgstr "エージェント概要の参照" - -#: ../../operation/snmpconsole/snmp_statistics.php:237 +#: ../../operation/snmpconsole/snmp_statistics.php:242 msgid "Traps received by Enterprise String" msgstr "Enterprise文字列ごとの受信トラップ" -#: ../../operation/snmpconsole/snmp_statistics.php:250 +#: ../../operation/snmpconsole/snmp_statistics.php:255 msgid "Trap Enterprise String" msgstr "Enterprise文字列トラップ" @@ -49509,160 +51337,81 @@ msgstr "SNMP ブラウザ" msgid "Adding modules in progress" msgstr "モジュールを追加中" -#: ../../operation/snmpconsole/snmp_browser.php:552 +#: ../../operation/snmpconsole/snmp_browser.php:550 msgid "Create policy" msgstr "ポリシー作成" -#: ../../operation/snmpconsole/snmp_browser.php:644 +#: ../../operation/snmpconsole/snmp_browser.php:642 msgid "Are you sure you want add module?" msgstr "モジュールを追加しますか?" -#: ../../operation/snmpconsole/snmp_view.php:602 -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:628 -msgid "Search by trap type" -msgstr "トラップタイプによる検索" - -#: ../../operation/snmpconsole/snmp_view.php:652 -msgid "Group by Enterprise String/IP" -msgstr "Enterprise 文字列/IP ごとのグループ" - -#: ../../operation/snmpconsole/snmp_view.php:718 -msgid "There are no SNMP traps in database that contains this filter" -msgstr "このフィルタを含む SNMP トラップがデータベース内にありません。" - -#: ../../operation/snmpconsole/snmp_view.php:758 -msgid "Refresh every" -msgstr "更新周期" - -#: ../../operation/snmpconsole/snmp_view.php:770 -msgid "SNMP Traps" -msgstr "SNMP トラップ" - -#: ../../operation/snmpconsole/snmp_view.php:871 -msgid "Trap subtype" -msgstr "トラップサブタイプ" - -#: ../../operation/snmpconsole/snmp_view.php:1076 -msgid "Variable bindings:" -msgstr "バインド変数:" - -#: ../../operation/snmpconsole/snmp_view.php:1089 -msgid "See more details" -msgstr "詳細表示" - -#: ../../operation/snmpconsole/snmp_view.php:1101 -msgid "Enterprise String:" -msgstr "Enterprise文字列:" - -#: ../../operation/snmpconsole/snmp_view.php:1153 -msgid "Trap type:" -msgstr "トラップタイプ:" - -#: ../../operation/snmpconsole/snmp_view.php:1179 -msgid "Count:" -msgstr "件数:" - -#: ../../operation/snmpconsole/snmp_view.php:1183 -msgid "First trap:" -msgstr "最初のトラップ:" - -#: ../../operation/snmpconsole/snmp_view.php:1187 -msgid "Last trap:" -msgstr "最新のトラップ:" - -#: ../../operation/snmpconsole/snmp_view.php:1208 -msgid "No matching traps found" -msgstr "条件にマッチするトラップがありません。" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:47 ../../operation/menu.php:133 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:47 +#: ../../operation/menu.php:137 msgid "MIB uploader" msgstr "MIB アップローダ" #: ../../operation/snmpconsole/snmp_mib_uploader.php:86 msgid "" -"MIB files will be installed on the system. Please note that a MIB may depend on other " -"MIB. To customize trap definitions use the SNMP trap editor." +"MIB files will be installed on the system. Please note that a MIB may depend " +"on other MIB. To customize trap definitions use the SNMP trap editor." msgstr "" -"MIB ファイルがシステムにインストールされます。MIB は他の MIB に依存する可能性があるこ" -"とに注意してください。トラップの定義をカスタマイズするには、SNMP トラップエディタを" -"使ってください。" +"MIB ファイルがシステムにインストールされます。MIB は他の MIB に依存する可能性が" +"あることに注意してください。トラップの定義をカスタマイズするには、SNMP トラップ" +"エディタを使ってください。" -#: ../../operation/menu.php:98 +#: ../../operation/menu.php:102 msgid "Netflow Live View" msgstr "Netflow ライブビュー" -#: ../../operation/menu.php:128 +#: ../../operation/menu.php:132 msgid "SNMP browser" msgstr "SNMP ブラウザ" -#: ../../operation/menu.php:137 +#: ../../operation/menu.php:141 msgid "SNMP filters" msgstr "SNMP フィルタ" -#: ../../operation/menu.php:261 ../../operation/gis_maps/gis_map.php:35 +#: ../../operation/menu.php:274 ../../operation/gis_maps/gis_map.php:35 msgid "GIS Maps" msgstr "GIS マップ" -#: ../../operation/menu.php:266 +#: ../../operation/menu.php:279 msgid "List of Gis maps" msgstr "GISマップ一覧" -#: ../../operation/menu.php:417 +#: ../../operation/menu.php:430 msgid "RSS" msgstr "RSS" -#: ../../operation/menu.php:430 -msgid "Sound Console" -msgstr "サウンドコンソール" - -#: ../../operation/menu.php:433 -msgid "No alert" -msgstr "アラートなし" - -#: ../../operation/menu.php:434 -msgid "Silence alarm" -msgstr "サイレントアラーム" - -#: ../../operation/menu.php:442 ../../operation/events/sound_events.php:63 -msgid "Sound Events" -msgstr "サウンドイベント" - -#: ../../operation/menu.php:464 ../../operation/events/events.php:1504 +#: ../../operation/menu.php:474 ../../operation/events/events.php:1583 msgid "Sound Alerts" msgstr "サウンドアラート" -#: ../../operation/menu.php:487 +#: ../../operation/menu.php:497 msgid "Configure user notifications" msgstr "ユーザ通知設定" -#: ../../operation/menu.php:507 +#: ../../operation/menu.php:517 msgid "Integria IMS statistics" msgstr "Integria IMS 統計" -#: ../../operation/menu.php:508 +#: ../../operation/menu.php:518 msgid "Integria IMS ticket list" msgstr "Integria IMS チケット一覧" -#: ../../operation/menu.php:521 +#: ../../operation/menu.php:531 msgid "Messages List" msgstr "メッセージ一覧" -#: ../../operation/menu.php:522 +#: ../../operation/menu.php:532 msgid "New message" msgstr "新規メッセージ" -#: ../../operation/menu.php:544 +#: ../../operation/menu.php:554 msgid "Scheduled downtime" msgstr "計画停止" -#: ../../operation/menu.php:618 +#: ../../operation/menu.php:628 msgid "Tools" msgstr "ツール" @@ -49780,10 +51529,11 @@ msgid "Could not be updated in Integria IMS" msgstr "Integria IMS で更新できませんでした" #: ../../operation/incidents/configure_integriaims_incident.php:294 -msgid "This field corresponds to the Integria IMS user specified in Integria IMS setup" +msgid "" +"This field corresponds to the Integria IMS user specified in Integria IMS setup" msgstr "" -"このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対応しま" -"す" +"このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対" +"応します" #: ../../operation/incidents/configure_integriaims_incident.php:352 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206 @@ -49885,6 +51635,18 @@ msgstr "更新/開始" msgid "No tickets to show" msgstr "表示するチケットがありません" +#: ../../operation/inventory/inventory.php:292 +msgid "You must select at least one filter." +msgstr "少なくとも一つのフィルタを選択する必要があります。" + +#: ../../operation/inventory/inventory.php:441 +msgid "Order by agent" +msgstr "エージェントで並べ替え" + +#: ../../operation/inventory/inventory.php:485 +msgid "Export this list to CSV" +msgstr "この一覧を CSV へエクスポートする" + #: ../../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 @@ -49923,49 +51685,49 @@ msgid "Invalid date selected. Initial date must be before end date." msgstr "不正な日時です。開始日時は終了日時より前でなければいけません。" #: ../../operation/reporting/reporting_viewer.php:426 -#: ../../operation/reporting/graph_viewer.php:505 +#: ../../operation/reporting/graph_viewer.php:502 msgid "Invalid date selected" msgstr "不正なデータが選択されました。" #: ../../operation/reporting/custom_reporting.php:28 -#: ../../operation/reporting/graph_viewer.php:539 +#: ../../operation/reporting/graph_viewer.php:536 msgid "There are no defined reportings" msgstr "定義されたレポートがありません" -#: ../../operation/reporting/graph_viewer.php:335 -msgid "No data." -msgstr "データがありません。" - -#: ../../operation/reporting/graph_viewer.php:369 -#: ../../operation/reporting/graph_viewer.php:391 +#: ../../operation/reporting/graph_viewer.php:341 +#: ../../operation/reporting/graph_viewer.php:363 msgid "Graph defined" msgstr "定義済みグラフ" -#: ../../operation/reporting/graph_viewer.php:383 +#: ../../operation/reporting/graph_viewer.php:355 msgid "Equalize maxiddmum thresholds" msgstr "最大閾値を等しくする" -#: ../../operation/reporting/graph_viewer.php:383 +#: ../../operation/reporting/graph_viewer.php:355 msgid "" -"If an option is selected, all graphs will have the highest value from all modules " -"included in the graph as a maximum threshold" +"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:392 +#: ../../operation/reporting/graph_viewer.php:364 msgid "Zoom x1" msgstr "ズーム x1" -#: ../../operation/reporting/graph_viewer.php:393 +#: ../../operation/reporting/graph_viewer.php:365 msgid "Zoom x2" msgstr "ズーム x2" -#: ../../operation/reporting/graph_viewer.php:394 +#: ../../operation/reporting/graph_viewer.php:366 msgid "Zoom x3" msgstr "ズーム x3" -#: ../../operation/reporting/graph_viewer.php:513 +#: ../../operation/reporting/graph_viewer.php:400 +msgid "No data." +msgstr "データがありません。" + +#: ../../operation/reporting/graph_viewer.php:510 msgid "Custom graph viewer" msgstr "カスタムグラフ参照" @@ -49973,6 +51735,10 @@ msgstr "カスタムグラフ参照" msgid "Sound console" msgstr "サウンドコンソール" +#: ../../operation/events/sound_events.php:229 +msgid "Time Sound" +msgstr "タイムサウンド" + #: ../../operation/events/sound_events.php:256 msgid "Sounds" msgstr "サウンド" @@ -49989,157 +51755,177 @@ msgstr "API アクセスできる IP 一覧に入っていません。" msgid "The URL of your feed has bad hash." msgstr "フィードの URL に不正はハッシュがあります。" -#: ../../operation/events/events.php:794 +#: ../../operation/events/events.php:854 msgid "Validate events" msgstr "イベントの承諾" -#: ../../operation/events/events.php:811 +#: ../../operation/events/events.php:871 msgid "Validate event" msgstr "承諾" -#: ../../operation/events/events.php:846 +#: ../../operation/events/events.php:906 msgid "Change to in progress status" msgstr "進捗状況へ変更" -#: ../../operation/events/events.php:871 +#: ../../operation/events/events.php:931 msgid "Delete events" msgstr "イベントの削除" -#: ../../operation/events/events.php:1325 +#: ../../operation/events/events.php:1402 msgid "Event viewer" msgstr "イベントビューワ" -#: ../../operation/events/events.php:1372 +#: ../../operation/events/events.php:1449 msgid "History event list" msgstr "イベント一覧履歴" -#: ../../operation/events/events.php:1383 +#: ../../operation/events/events.php:1460 msgid "RSS Events" msgstr "RSS イベント" -#: ../../operation/events/events.php:1394 +#: ../../operation/events/events.php:1471 msgid "Export to CSV file" msgstr "CSV ファイルに書き出す" -#: ../../operation/events/events.php:1405 ../../operation/events/events.php:1453 +#: ../../operation/events/events.php:1482 ../../operation/events/events.php:1532 msgid "Sound events" msgstr "サウンドイベント" -#: ../../operation/events/events.php:1458 +#: ../../operation/events/events.php:1537 msgid "History" msgstr "履歴" -#: ../../operation/events/events.php:1533 +#: ../../operation/events/events.php:1612 msgid "Errors" msgstr "エラー" -#: ../../operation/events/events.php:1690 +#: ../../operation/events/events.php:1728 +msgid "Search for elements NOT containing given text." +msgstr "指定されたテキストを含まない要素を検索します。" + +#: ../../operation/events/events.php:1788 ../../operation/events/events.php:1810 +msgid "WARNING: This could cause a performace impact." +msgstr "警告: これは、パフォーマンスに影響を与える可能性があります。" + +#: ../../operation/events/events.php:1808 msgid "Search in secondary groups" msgstr "セカンダリグループで検索" -#: ../../operation/events/events.php:1880 +#: ../../operation/events/events.php:2022 msgid "Id source event" msgstr "ソースイベントID" -#: ../../operation/events/events.php:1938 +#: ../../operation/events/events.php:2080 msgid "From (date:time)" msgstr "開始 (日付:時間)" -#: ../../operation/events/events.php:1996 +#: ../../operation/events/events.php:2138 msgid "To (date:time)" msgstr "終了 (日付:時間)" -#: ../../operation/events/events.php:2007 +#: ../../operation/events/events.php:2149 msgid "Filter custom data by field name" msgstr "フィールド名でカスタムデータをフィルタ" -#: ../../operation/events/events.php:2008 +#: ../../operation/events/events.php:2150 msgid "Filter custom data by field value" msgstr "フィールドの値でカスタムデータをフィルタ" -#: ../../operation/events/events.php:2023 +#: ../../operation/events/events.php:2165 msgid "Custom data filter" msgstr "カスタムデータフィルタ" -#: ../../operation/events/events.php:2045 +#: ../../operation/events/events.php:2187 msgid "Custom data search" msgstr "カスタムデータ検索" -#: ../../operation/events/events.php:2170 +#: ../../operation/events/events.php:2312 msgid "Current filter" msgstr "現在のフィルタ" -#: ../../operation/events/events.php:2175 +#: ../../operation/events/events.php:2317 msgid "Not set." msgstr "未設定" -#: ../../operation/events/events.php:2188 +#: ../../operation/events/events.php:2330 msgid "Any status." msgstr "任意の状態" -#: ../../operation/events/events.php:2192 +#: ../../operation/events/events.php:2334 msgid "New events." msgstr "新規イベント" -#: ../../operation/events/events.php:2196 +#: ../../operation/events/events.php:2338 msgid "Validated." msgstr "承諾済" -#: ../../operation/events/events.php:2200 +#: ../../operation/events/events.php:2342 msgid "In proccess." msgstr "処理中" -#: ../../operation/events/events.php:2204 +#: ../../operation/events/events.php:2346 msgid "Not validated." msgstr "未承諾" -#: ../../operation/events/events.php:2216 +#: ../../operation/events/events.php:2358 msgid "Any time." msgstr "任意の時間" -#: ../../operation/events/events.php:2218 ../../operation/events/events.php:2795 +#: ../../operation/events/events.php:2360 ../../operation/events/events.php:2953 msgid "Last hour." msgstr "直近 1時間" -#: ../../operation/events/events.php:2220 +#: ../../operation/events/events.php:2362 #, php-format msgid "Last %d hours." msgstr "直近 %d 時間" -#: ../../operation/events/events.php:2228 +#: ../../operation/events/events.php:2370 msgid "Duplicated" msgstr "複数回数発生イベント" -#: ../../operation/events/events.php:2231 +#: ../../operation/events/events.php:2373 msgid "All events." msgstr "全イベント" -#: ../../operation/events/events.php:2235 +#: ../../operation/events/events.php:2377 msgid "Group agents." msgstr "グループエージェント" -#: ../../operation/events/events.php:2351 +#: ../../operation/events/events.php:2379 +msgid "Group extra id." +msgstr "グループ追加 ID" + +#: ../../operation/events/events.php:2471 +msgid "In progress selected" +msgstr "処理中を選択" + +#: ../../operation/events/events.php:2472 +msgid "Validate selected" +msgstr "選択したものを承諾" + +#: ../../operation/events/events.php:2505 msgid "Execute event response" msgstr "イベント応答の実行" -#: ../../operation/events/events.php:2364 +#: ../../operation/events/events.php:2518 #, php-format msgid "A maximum of %s event custom responses can be selected" msgstr "最大 %s イベントのカスタム応答を選択できます" -#: ../../operation/events/events.php:2369 +#: ../../operation/events/events.php:2523 msgid "Please, select an event" msgstr "イベントを選択してください" -#: ../../operation/events/events.php:2458 +#: ../../operation/events/events.php:2612 msgid "has at least" msgstr "は少なくとも次のイベント数あります:" -#: ../../operation/events/events.php:2460 +#: ../../operation/events/events.php:2614 msgid "events" msgstr "イベント" -#: ../../operation/events/events.php:2797 +#: ../../operation/events/events.php:2955 msgid "hours." msgstr "時間" @@ -50152,19 +51938,12 @@ msgstr "グループ ID" 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 +#: ../../general/first_task/incidents.php:31 +#: ../../general/first_task/incidents.php:46 msgid "Create Incidents" msgstr "インシデント作成" @@ -50172,29 +51951,30 @@ msgstr "インシデント作成" #, php-format msgid "" "Besides receiving and processing data to monitor systems or applications,\n" -"\t\t\tyou're also required to monitor possible incidents which might take place on " -"these subsystems within the system's monitoring process.\n" -"\t\t\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\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" +"different people could work on the same incident, sharing information and " +"files.\n" "\t\t" msgstr "" "システムまたはアプリケーションを監視するためのデータの受信と処理に加えて、\n" -"\t\t\tシステムの監視処理においてサブシステムで発生する可能性のあるインシデントを監視す" -"る必要があります。\n" -"\t\t\tそのため、%s チームは、すべてのユーザがインシデントを開くことができるインシデン" -"トマネージャを設計しました。\n" -"\t\t\tネットワークで何が起こっているかを説明し、必要に応じていつでもコメントやファイル" -"を更新します。\n" -"\t\t\tこのシステムにより、ユーザはチームとして動くことができます。さまざまな役割やワー" -"クフローシステム\n" -"\t\t\tにより、インシデントをあるグループから他のグループへ移動させたり、異なるグループ" -"のメンバーが一つの\n" +"\t\t\tシステムの監視処理においてサブシステムで発生する可能性のあるインシデント" +"を監視する必要があります。\n" +"\t\t\tそのため、%s チームは、すべてのユーザがインシデントを開くことができるイン" +"シデントマネージャを設計しました。\n" +"\t\t\tネットワークで何が起こっているかを説明し、必要に応じていつでもコメントや" +"ファイルを更新します。\n" +"\t\t\tこのシステムにより、ユーザはチームとして動くことができます。さまざまな役" +"割やワークフローシステム\n" +"\t\t\tにより、インシデントをあるグループから他のグループへ移動させたり、異なる" +"グループのメンバーが一つの\n" "\t\t\tインシデントに対して対応するなど、情報とファイルを共有します。\n" "\t\t" @@ -50209,21 +51989,22 @@ msgstr "自動検出タスクの作成" #: ../../general/first_task/recon_view.php:28 msgid "" "Discovery Task are used to find new elements in the network. \n" -"\t\tIf it detects any item, it will add that item to the monitoring, and if that item " -"it is already being monitored, then it will \n" -"\t\tignore it or will update its information.There are three types of detection: " -"Based on ICMP (pings), \n" -"\t\tSNMP (detecting the topology of networks and their " -"interfaces), and other customized \n" +"\t\tIf it detects any item, it will add that item to the monitoring, and if " +"that item it is already being monitored, then it will \n" +"\t\tignore it or will update its information.There are three types of " +"detection: Based on ICMP (pings), \n" +"\t\tSNMP (detecting the topology of networks " +"and their interfaces), and other customized \n" "\t\ttype. You can define your own customized recon script." msgstr "" "自動検出タスクは、ネットワーク内の新たな要素を検出するのに使います。\n" -"\t\tアイテムを検出すると、そのアイテムを監視に追加し、そのアイテムが既に監視されている" -"場合は、\n" -"\t\tそれを無視するか、その情報を更新します。検出には 3つのタイプがあります。 ICMP (ping)、\n" -"\t\t SNMP (ネットワークとそのインターフェースのトポロ" -"ジの検出)、その他 カスタマイズタイプです。\n" +"\t\tアイテムを検出すると、そのアイテムを監視に追加し、そのアイテムが既に監視さ" +"れている場合は、\n" +"\t\tそれを無視するか、その情報を更新します。検出には 3つのタイプがあります。" +" ICMP (ping)、\n" +"\t\t SNMP (ネットワークとそのインターフェース" +"のトポロジの検出)、その他 カスタマイズタイプで" +"す。\n" "\t\t独自の自動検出スクリプトを定義することができます。" #: ../../general/first_task/recon_view.php:37 @@ -50243,15 +52024,16 @@ msgid "" "With Pandora FMS Enterprise you can add high availability to your Pandora FMS " "installation by adding redundant MySQL servers" msgstr "" -"Pandora FMS Enterprise では、冗長構成の MySQL サーバを追加することにより、Pandora FMS " -"インストールに高可用性を追加できます" +"Pandora FMS Enterprise では、冗長構成の MySQL サーバを追加することにより、" +"Pandora FMS インストールに高可用性を追加できます" #: ../../general/first_task/HA_cluster_builder.php:50 msgid "" -"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster into a " -"Pandora FMS DB Cluster." +"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " +"into a Pandora FMS DB Cluster." msgstr "" -"\"新規ノード追加\" をクリックして、Pandora FMS DB クラスタへの登録を開始します。" +"\"新規ノード追加\" をクリックして、Pandora FMS DB クラスタへの登録を開始しま" +"す。" #: ../../general/first_task/HA_cluster_builder.php:59 msgid "Add new node" @@ -50265,23 +52047,25 @@ 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'." +"%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 ビジュアル" -"マップが処理するように設計したアイテムは、’静的画像'、'パーセントバー'、'モジュールグ" -"ラフ'、および '単純な値' です。" +"%s を使用すると、ユーザは視覚的なマップを作成できます。このマップ上で、各ユー" +"ザーは独自の監視マップを作成できます。以前のビジュアルコンソールエディターにも" +"良い点はありましたが、新しいビジュアルコンソールエディターははるかに実用的で" +"す。新しいビジュアルコンソールでは、GIMP のような描画アプリケーションの感覚と" +"タッチを模倣することに成功しています。また、'データ'、'プレビュー'、'ウィザー" +"ド'、'要素のリスト'、'エディタ' という名前の複数の要素に分割したタブにすること" +"で、エディターを簡素化しました。%s ビジュアルマップが処理するように設計したアイ" +"テムは、’静的画像'、'パーセントバー'、'モジュールグラフ'、および '単純な値' で" +"す。" #: ../../general/first_task/cluster_builder.php:46 msgid "There are no clusters defined yet." @@ -50294,7 +52078,8 @@ msgstr "クラスタ作成" #: ../../general/first_task/cluster_builder.php:57 msgid "" -"A cluster is a group of devices that provide the same service in high availability." +"A cluster is a group of devices that provide the same service in high " +"availability." msgstr "クラスタは、同一サービスの高可用性を提供するデバイスのグループです。" #: ../../general/first_task/cluster_builder.php:59 @@ -50303,30 +52088,32 @@ msgstr "どのようにサービス提供であるかに依存し、次の 2つ #: ../../general/first_task/cluster_builder.php:61 msgid "" -"Clusters to balance the service load: these are active - active (A/A) mode " -"clusters. It means that all the nodes (or machines that compose it) are working. They " -"must be working because if one stops working, it will overload the others." +"Clusters to balance the service load: these are active - active (A/A) " +"mode clusters. It means that all the nodes (or machines that compose it) are " +"working. They must be working because if one stops working, it will overload " +"the others." msgstr "" -"
サービス負荷分散クラスタ
:これらは、アクティブ-アクティブ(A/A)モードクラスタで" -"す。すべてのノード(構成するマシン)が動作していることを意味します。1台が停止しても動作" -"を継続しますが負荷は増えます。" +"
サービス負荷分散クラスタ:これらは、アクティブ-アクティブ(A/A)モードクラ" +"スタです。すべてのノード(構成するマシン)が動作していることを意味します。1台が停" +"止しても動作を継続しますが負荷は増えます。" #: ../../general/first_task/cluster_builder.php:63 msgid "" -"Clusters to guarantee service: these are active - passive (A/P) mode clusters. " -"It means that one of the nodes (or machines that make up the cluster) will be running " -"(primary) and another won't (secondary). When the primary goes down, the secondary " -"must take over and give the service instead. Although many of the elements of this " -"cluster are active-passive, it will also have active elements in both of them that " -"indicate that the passive node is \"online\", so that in the case of a service " -"failure in the master, the active node collects this information." +"Clusters to guarantee service: these are active - passive (A/P) mode " +"clusters. It means that one of the nodes (or machines that make up the " +"cluster) will be running (primary) and another won't (secondary). When the " +"primary goes down, the secondary must take over and give the service instead. " +"Although many of the elements of this cluster are active-passive, it will also " +"have active elements in both of them that indicate that the passive node is " +"\"online\", so that in the case of a service failure in the master, the active " +"node collects this information." msgstr "" -"サービス保証クラスタ:これらは、アクティブ-スタンバイモードクラスタです。一つの" -"ノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動作していません" -"(セカンダリ)。プライマリがダウンした場合、セカンダリがサービスを代わりに引き継ぎます。" -"このクラスタの要素の多くはアクティブ-スタンバイですが、スタンバイノードが「オンライ" -"ン」であることを示すアクティブな要素もあります。したがって、マスタのサービス障害の場" -"合、アクティブノードはこの情報を収集します。" +"サービス保証クラスタ:これらは、アクティブ-スタンバイモードクラスタです。" +"一つのノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動" +"作していません(セカンダリ)。プライマリがダウンした場合、セカンダリがサービスを" +"代わりに引き継ぎます。このクラスタの要素の多くはアクティブ-スタンバイですが、ス" +"タンバイノードが「オンライン」であることを示すアクティブな要素もあります。した" +"がって、マスタのサービス障害の場合、アクティブノードはこの情報を収集します。" #: ../../general/first_task/network_map.php:19 msgid "There are no network map defined yet." @@ -50350,8 +52137,8 @@ msgid "" "\t\t\t" msgstr "" "オープンソース版のネットワークマップもあります。\n" -"\t\t\t\t\t\t\t\tこの機能では、ノードとその関係、エージェント、モジュールおよびグループ" -"をユーザにグラフィカルに表示できます。\n" +"\t\t\t\t\t\t\t\tこの機能では、ノードとその関係、エージェント、モジュールおよび" +"グループをユーザにグラフィカルに表示できます。\n" "\t\t\t\t\t\t\t\tネットワークマップには 3つのタイプがあります。\n" "\t\t\t" @@ -50386,15 +52173,16 @@ msgstr "タグ作成" #: ../../general/first_task/tags.php:28 msgid "" "Access to modules can be configured by a tagging system.\n" -"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the chosen " -"modules.\n" -"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with certain " -"tags." +"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " +"chosen modules.\n" +"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " +"certain tags." msgstr "" "モジュールへのアクセスは、タグシステムによって設定できます。\n" -"\t\t\t\t\t\t\t\tタグはシステム上で構成され、選択したモジュールに割り当てられます。\n" -"\t\t\t\t\t\t\t\tこれによりユーザのアクセスは、特定のタグを持つモジュールに制限できま" -"す。" +"\t\t\t\t\t\t\t\tタグはシステム上で構成され、選択したモジュールに割り当てられま" +"す。\n" +"\t\t\t\t\t\t\t\tこれによりユーザのアクセスは、特定のタグを持つモジュールに制限" +"できます。" #: ../../general/first_task/omnishell.php:27 msgid "There is no command defined yet." @@ -50403,20 +52191,20 @@ 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." +"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 内のエージェントに対して構造化コマンドを実行できる Enterprise 版の機" -"能です。唯一の要件は、エージェントでリモート設定を有効にすることです。" +"Omnishell は、%s 内のエージェントに対して構造化コマンドを実行できる Enterprise " +"版の機能です。唯一の要件は、エージェントでリモート設定を有効にすることです。" #: ../../general/first_task/omnishell.php:42 msgid "" -"You can execute any command on as many agents you need, and check the execution on " -"all of them using the Omnishell Command View" +"You can execute any command on as many agents you need, and check the " +"execution on all of them using the Omnishell Command View" msgstr "" -"必要な数のエージェントでコマンドを実行できます。また、Omnishell コマンド表示を使用して" -"すべてのエージェントでの実行を確認できます。" +"必要な数のエージェントでコマンドを実行できます。また、Omnishell コマンド表示を" +"使用してすべてのエージェントでの実行を確認できます。" #: ../../general/first_task/omnishell.php:50 msgid "Define a command" @@ -50435,12 +52223,12 @@ msgstr "カスタムフィールド作成" #: ../../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'. " +"\t\t You're able to create custom fields by klicking on 'Administration' -> " +"'Manage monitoring' -> 'Manage custom fields'. " msgstr "" "カスタムフィールドは、エージェントの独自情報を記載できます。\n" -"\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールドを作成" -"できます。 " +"\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールド" +"を作成できます。 " #: ../../general/first_task/fields_manager.php:22 msgid "Fields Manager" @@ -50457,8 +52245,8 @@ msgid "" "'Manage monitoring' -> 'Manage custom fields'. " msgstr "" "カスタムフィールドは、エージェントの独自情報を記載できます。\n" -"\t\t\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールドを" -"作成できます。 " +"\t\t\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィー" +"ルドを作成できます。 " #: ../../general/first_task/fields_manager.php:34 msgid "Create Fields " @@ -50481,20 +52269,20 @@ msgstr "計画停止の作成" #, 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." +"\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このシステムは、エージェントを無効化することにより、停止時間中のアラートを" -"無効化するように設計されました。\n" -"\t\t\t\t\t\tエージェントが無効化されている場合、エージェントは情報を収集しません。 計" -"画停止期間中は、\n" -"\t\t\t\t\t\tレポートにおける停止時間には考慮されません。なぜなら、この間はエージェント" -"の情報が無いためです。" +"\t\t\t\t\t\tこのシステムは、エージェントを無効化することにより、停止時間中のア" +"ラートを無効化するように設計されました。\n" +"\t\t\t\t\t\tエージェントが無効化されている場合、エージェントは情報を収集しませ" +"ん。 計画停止期間中は、\n" +"\t\t\t\t\t\tレポートにおける停止時間には考慮されません。なぜなら、この間はエー" +"ジェントの情報が無いためです。" #: ../../general/first_task/snmp_filters.php:18 msgid "There are no SNMP filter defined yet." @@ -50512,22 +52300,22 @@ 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\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. " +"\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監視にはそれらの一部のみあれば十分です。Pandora FMS 3.2 以降では、不必要な負荷" -"をかけないように\n" -"\t\t\t\tトラップをフィルタすることができます。異なるフィルタを定義するには、’管理' -> " -"'SNMP管理コンソール' および \n" -"\t\t\t\t\"SNMP フィルタ' へ行ってください。複数トラップがサーバで自動的に除外され、一" -"つになります。 " +"\t\t\t\t監視にはそれらの一部のみあれば十分です。Pandora FMS 3.2 以降では、不必" +"要な負荷をかけないように\n" +"\t\t\t\tトラップをフィルタすることができます。異なるフィルタを定義するには、’管" +"理' -> 'SNMP管理コンソール' および \n" +"\t\t\t\t\"SNMP フィルタ' へ行ってください。複数トラップがサーバで自動的に除外さ" +"れ、一つになります。 " #: ../../general/first_task/service_list.php:19 msgid "There are no services defined yet." @@ -50540,27 +52328,30 @@ msgstr "サービス作成" #: ../../general/first_task/service_list.php:30 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." +"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 "" "サービスは、機能に基づき IT リソースをグループ化する手法です。\n" -"\t\t\t\t\t\t例えば、サービスは、あなたの公式ウェブサイト、CRMシステム、サポートアプリ" -"ケーション、プリンタなどです。\n" -"\t\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、ERP、ウェブ" -"サイトやその他さまざまなサービスを含めることができる論理的なグループです。\n" +"\t\t\t\t\t\t例えば、サービスは、あなたの公式ウェブサイト、CRMシステム、サポート" +"アプリケーション、プリンタなどです。\n" +"\t\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、" +"ERP、ウェブサイトやその他さまざまなサービスを含めることができる論理的なグループ" +"です。\n" "\t\t\t\t\t\t以下の例で、サービスがどのようなものかをより理解できるでしょう。\n" -"\t\t\t\t\t\t\tchip会社はウェブサイト経由で世界中にコンピュータを売っています。\n" -"\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門からなっ" -"ています。" +"\t\t\t\t\t\t\tchip会社はウェブサイト経由で世界中にコンピュータを売っていま" +"す。\n" +"\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門" +"からなっています。" #: ../../general/first_task/custom_graphs.php:19 msgid "There are no custom graphs defined yet." @@ -50578,47 +52369,19 @@ 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" +"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." +"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " +"graphs the user customizes by using one or more modules to do so." msgstr "" -"グラフは、%s によって収集されたデータをユーザが定義した一時的なスケールで表示するよう" -"に設計されています。\n" -"\t\t\t\t%s グラフはリアルタイムでデータを表示します。 オペレーターが必要とするタイミン" -"グで生成され、最新の状態を表示します。\n" -"\t\t\t\tグラフには 2つのタイプがあります。エージェントの自動生成されるグラフと、ユーザ" -"が 1つ以上のモジュールを使用してカスタマイズするグラフです。" - -#: ../../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" -"トランザクショングラフは、サービスを提供するために利用するインフラ内の異なる処理を表現" -"します。" +"グラフは、%s によって収集されたデータをユーザが定義した一時的なスケールで表示す" +"るように設計されています。\n" +"\t\t\t\t%s グラフはリアルタイムでデータを表示します。 オペレーターが必要とする" +"タイミングで生成され、最新の状態を表示します。\n" +"\t\t\t\tグラフには 2つのタイプがあります。エージェントの自動生成されるグラフ" +"と、ユーザが 1つ以上のモジュールを使用してカスタマイズするグラフです。" #: ../../general/first_task/collections.php:25 #: ../../general/first_task/collections.php:39 @@ -50627,31 +52390,34 @@ msgstr "コレクション作成" #: ../../general/first_task/collections.php:28 msgid "" -"A file collection is a group of files (e.g. scripts or executables) which are \n" -"\t\tautomatically copied to a specific directory of the agent (under Windows or " -"UNIX). The file collections allow to be propagated\n" +"A file collection is a group of files (e.g. scripts or executables) which " +"are \n" +"\t\tautomatically copied to a specific directory of the agent (under Windows " +"or UNIX). The file collections allow to be propagated\n" "\t\t along with the policies in order to be used by a group of agents, using a " "'package' of scripts and modules which use them.\n" "\t\tFirst we learn how to use the file collections in the agent's view, how to " "conduct it manually, agent by agent, without using collections,\n" -"\t\t and how to do the same thing by using policies.Our first task is to arrange a " -"compilation of files. In order to do this, please go to the agent's \n" +"\t\t and how to do the same thing by using policies.Our first task is to " +"arrange a compilation of files. In order to do this, please go to the " +"agent's \n" "\t\t administrator. Subsequently, we're going to see a 'sub option' called " -"'Collections'. Please click on it in order to create a new collection as we can see " -"on \n" +"'Collections'. Please click on it in order to create a new collection as we " +"can see on \n" "\t\t the picture below. " msgstr "" -"ファイルコレクションは、次のような(スクリプトや実行形式の)ファイルのグループです。\n" -"\t\t(WindowsまたはUNIXの)エージェントの特定のディレクトリに自動的にコピーされます。" -"ファイルコレクションは、\n" -"\t\tスクリプトとそれを使うモジュールのパッケージをエージェントのグループで使えるように" -"するためにポリシーでまとめることができます。\n" -"\t\t最初にエージェント表示画面でファイルコレクションの使い方を学びます。コレクションを" -"利用せずにエージェントごとに手動で\n" -"\t\t行う方法と、同じことをポリシーを使って行う方法があります。最初に行うことは、編集" -"ファイルの配置です。これを行うには、\n" -"\t\tエージェント管理画面へ行ってください。次に、\"コレクション\" というサブオプション" -"へ行きます。以下の画像で示すように、\n" +"ファイルコレクションは、次のような(スクリプトや実行形式の)ファイルのグループで" +"す。\n" +"\t\t(WindowsまたはUNIXの)エージェントの特定のディレクトリに自動的にコピーされま" +"す。ファイルコレクションは、\n" +"\t\tスクリプトとそれを使うモジュールのパッケージをエージェントのグループで使え" +"るようにするためにポリシーでまとめることができます。\n" +"\t\t最初にエージェント表示画面でファイルコレクションの使い方を学びます。コレク" +"ションを利用せずにエージェントごとに手動で\n" +"\t\t行う方法と、同じことをポリシーを使って行う方法があります。最初に行うこと" +"は、編集ファイルの配置です。これを行うには、\n" +"\t\tエージェント管理画面へ行ってください。次に、\"コレクション\" というサブオプ" +"ションへ行きます。以下の画像で示すように、\n" "\t\t新たなコレクションを作成するにはそれをクリックします。 " #: ../../general/header.php:77 @@ -50694,170 +52460,187 @@ msgstr "メモリ制限" msgid "Php version" msgstr "PHP バージョン" +#: ../../general/php_message.php:38 +msgid "Access Help" +msgstr "ヘルプを見る" + +#: ../../general/php_message.php:41 +msgid "Warning php version" +msgstr "php バージョン警告" + #: ../../general/alert_enterprise.php:107 #, php-format msgid "" -"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.

\n" -" Download " -"the official documentation" +"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.

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

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

\n" +" 公" +"式ドキュメントのダウンロード" #: ../../general/alert_enterprise.php:120 #, php-format msgid "" -"Access to this page is restricted to authorized users only, please contact system " -"administrator if you need assistance.

\n" -" Please know that all attempts to access this page are recorded in security logs " -"of %s System Database." +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance.

\n" +" Please know that all attempts to access this page are recorded in security " +"logs of %s System Database." msgstr "" -"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な場合は" -"システム管理者に連絡してください。

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

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

pandorafms.com" +"Do you want to consolidate all your system monitoring? Do you have many " +"systems, making it difficult to manage them in a comprehensive manner? Would " +"you like to deploy monitoring, alerts and even local plugins with a single " +"click? %s Enterprise Policies are exactly what you need; you'll save time, " +"effort and annoyances. More information pandorafms." +"com" msgstr "" -"すべてのシステム監視を統合したいですか? 多くのシステムがあり、それらを包括的な方法で" -"管理することが難しくありませんか? ワンクリックで監視、アラート、さらにはローカルプラ" -"グインを展開したいですか? %s Enterprise ポリシーはまさにあなたが必要とするものです。 " -"時間、労力、煩わしさを削減できます。 詳細は、 " -"pandorafms.com を参照してください。" +"すべてのシステム監視を統合したいですか? 多くのシステムがあり、それらを包括的な" +"方法で管理することが難しくありませんか? ワンクリックで監視、アラート、さらには" +"ローカルプラグインを展開したいですか? %s Enterprise ポリシーはまさにあなたが必" +"要とするものです。 時間、労力、煩わしさを削減できます。 詳細は、 pandorafms.com を参照してください。" #: ../../general/alert_enterprise.php:148 #, php-format msgid "" -"%s Enterprise also features event correlation. Through correlation you can generate " -"realtime alerts and / or new events based on logical rules. This allows you to " -"automate troubleshooting. If you know the value of working with events, event " -"correlation will take you to a new level." +"%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 は、イベント相関も備えています。 相関により、論理的なルールに基づいてリ" -"アルタイムのアラートや新しいイベントを生成できます。 これにより、トラブルシューティン" -"グを自動化できます。 イベントに応じた対応の受容性がわかっているのであれば、イベント相" -"関が新しい領域を提供します。" +"%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." +"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 版が最適です。" +"Enterprise 版でのレポート生成もより強力です。ウィザードがあり、PDF でメールを送" +"信するようにスケジュールを設定できます。また、顧客ごとにパーソナライズされたレ" +"ポートをすばやく作成するためのテンプレートシステムがあります。 顧客が作成したテ" +"ンプレートから独自のレポートを生成することもできます。 レポートがビジネスにとっ" +"て重要であるならば、%s Enterprise 版が最適です。" #: ../../general/alert_enterprise.php:156 msgid "These options are only effective on the Enterprise version." @@ -50865,80 +52648,85 @@ msgstr "これらのオプションは、Enterprise版でのみ有効です。" #: ../../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." +"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 "" -"警告: 自動更新後に操作が行われました。データの消失や操作性を含むシステムの問題が発生し" -"ている可能性があります。最新のバックアップを確認してください。オープンソース版はパッ" -"ケージを使って自動更新されます。保障やサポートはありません。プロフェッショナルサポート" -"や保証が必要な場合は、Enterprise版にアップデートしてください。" +"警告: 自動更新後に操作が行われました。データの消失や操作性を含むシステムの問題" +"が発生している可能性があります。最新のバックアップを確認してください。オープン" +"ソース版はパッケージを使って自動更新されます。保障やサポートはありません。プロ" +"フェッショナルサポートや保証が必要な場合は、Enterprise版にアップデートしてくだ" +"さい。" #: ../../general/alert_enterprise.php:164 msgid "" -"This system is heavily loaded. OpenSource version could get a lot more agents but " -"fine tuning requires knowledge and time. Checkout the Enterprise Version for a " -"professional supported system." +"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 "" -"このシステムは高負荷になっています。オープンソース版は多くのエージェントに対応できます" -"が、最適なチューニングのための知識と時間が必要です。プロフェッショナルサポートは、" -"Enterprise版を確認してください。" +"このシステムは高負荷になっています。オープンソース版は多くのエージェントに対応" +"できますが、最適なチューニングのための知識と時間が必要です。プロフェッショナル" +"サポートは、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." +"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 "" -"このシステムは、エージェントごとのモジュールが多すぎます。 オープンソース版は数千のモ" -"ジュールを管理できますが、エージェントあたり 100を超えるモジュールを使用することはお勧" -"めしません。 この設定では、エージェントごとに %d個のモジュールがあります。 プロフェッ" -"ショナルのサポートを受けられる、Enterprise 版を確認してください。" +"このシステムは、エージェントごとのモジュールが多すぎます。 オープンソース版は数" +"千のモジュールを管理できますが、エージェントあたり 100を超えるモジュールを使用" +"することはお勧めしません。 この設定では、エージェントごとに %d個のモジュールが" +"あります。 プロフェッショナルのサポートを受けられる、Enterprise 版を確認してく" +"ださい。" #: ../../general/alert_enterprise.php:177 msgid "" -"Too much remote modules has been detected on this system. OpenSource version could " -"manage thousands of modules, but performance is limited on high amount of SNMP or " -"ICMP request. Checkout the Enterprise Version for a professional supported system " -"with improved capacity on network monitoring, including distributed servers." +"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 "" -"このシステムで多くのリモートモジュールが検出されました。オープンソース版では数千のモ" -"ジュールを管理できますが、大量の SNMP や ICMP リクエストがある環境でのパフォーマンスは" -"限られています。プロフェッショナルサポートがあり、容量を改善したネットワーク監視や分散" -"監視ができる Enterprise版を確認してください。" +"このシステムで多くのリモートモジュールが検出されました。オープンソース版では数" +"千のモジュールを管理できますが、大量の 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." +"This system has too much events in the database. Checkout database purge " +"options. Checkout the Enterprise Version for a professional supported system." msgstr "" -"このシステムはデータベースに多くのイベントがあります。データベースの削除オプションを確" -"認してください。プロフェッショナルサポートは、Enterprise版を確認してください。" +"このシステムはデータベースに多くのイベントがあります。データベースの削除オプ" +"ションを確認してください。プロフェッショナルサポートは、Enterprise版を確認して" +"ください。" #: ../../general/alert_enterprise.php:185 msgid "" -"You have defined a high number of alerts, this may cause you performance problems in " -"the future. In the Enterprise version, you can use event correlation alerts to " -"simplify the alerting system and have easier administration and increased performance." +"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版では、イベント相関でアラートシステムを単純化でき、管理が簡単になりパ" -"フォーマンスが向上します。" +"アラートの定義数が多くあるため、将来的にパフォーマンスの問題が発生する可能性が" +"あります。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!" +"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 の機能を活用する方法を学んでく" -"ださい!" +"%s を初めて使用するのであれば、ソフトウェアの詳細を知るのに役立つリンクをいくつ" +"かお勧めします。 さまざまな監視ができますが、時間をかけて %s の機能を活用する方" +"法を学んでください!" #: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62 msgid "Online help" @@ -50987,14 +52775,15 @@ 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.

All actions, included failed login " -"attempts are logged in Pandora FMS System logs, and these can be reviewed by each " -"user, please report to admin any incident or malfunction." +"Either, your password or your login are incorrect. Please check your CAPS LOCK " +"key, username and password are case SeNSiTiVe.

All actions, included " +"failed login attempts are logged in Pandora FMS System logs, and these can be " +"reviewed by each user, please report to admin any incident or malfunction." msgstr "" -"パスワードまたはユーザ名が正しくありません。大文字・小文字を区別しますので、CAPS LOCK" -"キーを確認してください。

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

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

\n" -"\t\t\tPlease know that all attempts to access this page are recorded in security logs " -"of Pandora System Database" +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance.

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

\n" -"\t\t\tこのページへの全てのアクセスは、Pandora のシステムデータベースのセキュリティログ" -"に記録されます。" +"このページへのアクセスは認証されたユーザに限定されています。手助けが必要な場合" +"はシステム管理者へ連絡してください。

\n" +"\t\t\tこのページへの全てのアクセスは、Pandora のシステムデータベースのセキュリ" +"ティログに記録されます。" #: ../../general/mysqlerr.php:105 msgid "Database error" @@ -51027,19 +52816,19 @@ msgstr "データベースエラー" #: ../../general/mysqlerr.php:115 msgid "" -"Failure to connect to historical database, please check the configuration or contact " -"system administrator if you need assistance." +"Failure to connect to historical database, please check the configuration or " +"contact system administrator if you need assistance." msgstr "" -"ヒストリデータベースへの接続に失敗しました。構成を確認するか、支援が必要な場合はシステ" -"ム管理者に連絡してください。" +"ヒストリデータベースへの接続に失敗しました。構成を確認するか、支援が必要な場合" +"はシステム管理者に連絡してください。" #: ../../general/mysqlerr.php:117 msgid "" -"Failure to connect to Database server, please check the configuration file config.php " -"or contact system administrator if you need assistance." +"Failure to connect to Database server, please check the configuration file " +"config.php or contact system administrator if you need assistance." msgstr "" -"データベースサーバへの接続に失敗しました。設定ファイル config.php を確認するか、支援が" -"必要な場合はシステム管理者に連絡してください。" +"データベースサーバへの接続に失敗しました。設定ファイル config.php を確認する" +"か、支援が必要な場合はシステム管理者に連絡してください。" #: ../../general/login_page.php:54 #, php-format @@ -51060,10 +52849,11 @@ msgstr "詳細を表示" #: ../../general/login_page.php:347 msgid "" -"This node is configured with centralized mode. Go to metaconsole to reset the password" +"This node is configured with centralized mode. Go to metaconsole to reset the " +"password" msgstr "" -"このノードは集中モードで設定されています。 パスワードのリセットはメタコンソールで行い" -"ます。" +"このノードは集中モードで設定されています。 パスワードのリセットはメタコンソール" +"で行います。" #: ../../general/login_page.php:372 ../../general/login_page.php:375 #, php-format @@ -51084,11 +52874,11 @@ msgstr "メタコンソールの一元化ユーザ" #: ../../general/login_page.php:544 msgid "" -"This user does not have access on node, please enable node access on this user from " -"metaconsole." +"This user does not have access on node, please enable node access on this user " +"from metaconsole." msgstr "" -"このユーザはノードにアクセスできません。メタコンソールからこのユーザのノードアクセスを" -"有効にしてください。" +"このユーザはノードにアクセスできません。メタコンソールからこのユーザのノードア" +"クセスを有効にしてください。" #: ../../general/login_page.php:559 ../../general/login_page.php:561 #, php-format @@ -51097,13 +52887,14 @@ msgstr "%s データベースに問題があります" #: ../../general/login_page.php:565 msgid "" -"Cannot connect to the database, please check your database setup in the include/" -"config.php file.

\n" -"\t\tProbably your database, hostname, user or password values are incorrect or\n" +"Cannot connect to the database, please check your database setup in the " +"include/config.php file.

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

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

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

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

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

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

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

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

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

%s コンソールが include/config.php を見つけられないか、" +"ファイルのパーミッションが\n" +"\t\t\t不正で HTTP サーバがそれを読めません。この問題を修正するにはドキュメント" +"を確認してください。" #: ../../general/login_page.php:593 msgid "No configuration file found" @@ -51158,13 +52949,13 @@ msgstr "設定ファイルがありません" #, php-format msgid "" "%s Console cannot find include/config.php or this file has invalid\n" -"\t\tpermissions and HTTP server cannot read it. Please read documentation to fix this " -"problem." +"\t\tpermissions and HTTP server cannot read it. Please read documentation to " +"fix this problem." msgstr "" -"%s コンソールが include/config.php を見つけられないか、このファイルのパーミッ" -"ションが不正で\n" -"\t\tHTTP サーバがそれを読めません。この問題を修正するにはドキュメントを参照してくださ" -"い。" +"%s コンソールが include/config.php を見つけられないか、このファイルの" +"パーミッションが不正で\n" +"\t\tHTTP サーバがそれを読めません。この問題を修正するにはドキュメントを参照して" +"ください。" #: ../../general/login_page.php:607 #, php-format @@ -51178,13 +52969,14 @@ msgstr "インストーラが有効です" #: ../../general/login_page.php:613 #, php-format msgid "" -"For security reasons, normal operation is not possible until you delete installer " -"file.\n" +"For security reasons, normal operation is not possible until you delete " +"installer file.\n" "\t\tPlease delete the ./install.php file before running %s Console." msgstr "" -"セキュリティ上の理由により、インストーラファイルを削除するまで通常の操作はできませ" -"ん。\n" -"\t\t%s コンソールを実行する前に、./install.php ファイルを削除してください。" +"セキュリティ上の理由により、インストーラファイルを削除するまで通常の操作はでき" +"ません。\n" +"\t\t%s コンソールを実行する前に、./install.php ファイルを削除してくださ" +"い。" #: ../../general/login_page.php:620 msgid "Bad permission for include/config.php" @@ -51192,20 +52984,20 @@ msgstr "include/config.php のパーミッションが不正です" #: ../../general/login_page.php:622 msgid "" -"For security reasons, config.php must have restrictive permissions, and \"other" -"\" users\n" +"For security reasons, config.php 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 include/config.php file. Please do it, it is for your " -"security." +"\t\t(usually www-data or http daemon user), normal operation is not possible " +"until you change\n" +"\t\tpermissions for include/config.php file. Please do it, it is for " +"your security." msgstr "" -"セキュリティ上の理由により、config.php は制限したパーミッションでなければいけま" -"せん。\n" -"\t\t\"other\"ユーザが読み書きできなようにし、所有者(通常は www-data または http デーモ" -"ンのユーザ)\n" -"\t\tのみが書けるようにする必要があります。config.phpのパーミッションを変更する" -"まで\n" +"セキュリティ上の理由により、config.php は制限したパーミッションでなけれ" +"ばいけません。\n" +"\t\t\"other\"ユーザが読み書きできなようにし、所有者(通常は www-data または " +"http デーモンのユーザ)\n" +"\t\tのみが書けるようにする必要があります。config.phpのパーミッションを変" +"更するまで\n" "\t\t通常の操作はできません。セキュリティのために対応してください。" #: ../../general/login_page.php:630 @@ -51214,9 +53006,11 @@ msgstr "homedir の定義が不正です" #: ../../general/login_page.php:631 msgid "" -"In the config.php file in the variable $config[\"homedir\"] = add the correct path" +"In the config.php file in the variable $config[\"homedir\"] = add the correct " +"path" msgstr "" -"config.php ファイル内で、$config[\"homedir\"] = に正しいパスを設定してください。" +"config.php ファイル内で、$config[\"homedir\"] = に正しいパスを設定してくださ" +"い。" #: ../../general/login_page.php:635 msgid "Bad defined homeurl or homeurl_static" @@ -51227,8 +53021,8 @@ msgid "" "In the config.php file in the variable $config[\"homeurl\"] or " "$config[\"homeurl_static\"] = add the correct path" msgstr "" -"config.php ファイルで $config[\"homeurl\"] または $config[\"homeurl_static\"] に正しい" -"パスを設定してください。" +"config.php ファイルで $config[\"homeurl\"] または $config[\"homeurl_static\"] " +"に正しいパスを設定してください。" #: ../../general/pandora_help.php:23 #, php-format @@ -51242,11 +53036,270 @@ msgstr "ヘルプシステムエラー" #: ../../general/pandora_help.php:77 #, php-format msgid "" -"%s help system has been called with a help reference that currently don't exist. " -"There is no help content to show." +"%s help system has been called with a help reference that currently don't " +"exist. There is no help content to show." msgstr "" -"%s ヘルプシステムは、現在存在しないヘルプ参照で呼び出されました。 表示するヘルプコンテ" -"ンツはありません。" +"%s ヘルプシステムは、現在存在しないヘルプ参照で呼び出されました。 表示するヘル" +"プコンテンツはありません。" + +#~ msgid "Agents to move" +#~ msgstr "移動するエージェント" + +#~ msgid "Add agents to destination server" +#~ msgstr "対象サーバにエージェントを追加" + +#~ msgid "Remove agents to doesn't move to destination server" +#~ msgstr "送り先サーバへ移動させないエージェントを削除" + +#~ msgid "Phantomjs bin directory" +#~ msgstr "phantomjs バイナリディレクトリ" + +#~ msgid "Synchronization queue items warn detection" +#~ msgstr "同期キューアイテムの警告を検出" + +#~ msgid "Number of items in synchronization queue before be notified, per node" +#~ msgstr "ノードごとの通知前の同期キュー内のアイテム数" + +#~ msgid "Active events history" +#~ msgstr "アクティブイベント履歴" + +#~ msgid "PhantomJS cache cleanup " +#~ msgstr "PhantomJS キャッシュのクリーンアップ" + +#~ msgid "No scheduled" +#~ msgstr "スケジュールされていません" + +#~ msgid "Each week" +#~ msgstr "各週" + +#~ msgid "Each day" +#~ msgstr "それぞれの日" + +#~ msgid "Agents Management" +#~ msgstr "エージェント管理" + +#~ msgid "PhantomJS cache interval" +#~ msgstr "PhantomJS キャッシュ間隔" + +#~ msgid "Enable Sunburst" +#~ msgstr "サンバーストの有効化" + +#~ msgid "" +#~ "Enable/disable token (this will comment out the corresponding line in the " +#~ "configuration file)" +#~ msgstr "" +#~ "トークンの有効化/無効化 (これにより、設定ファイル内の対応する行がコメントア" +#~ "ウトされます)" + +#~ msgid "Enable (1) or disable (0) remote configuration" +#~ msgstr "リモート設定の有効化(1)または無効化(0)" + +#~ msgid "The phase does not have a defined script" +#~ msgstr "フェーズに定義済スクリプトがありません" + +#~ msgid "Edit Data" +#~ msgstr "データ編集" + +#~ msgid "Error in dependencies field" +#~ msgstr "依存フィールドでエラーです" + +#~ msgid "Error in enables field" +#~ msgstr "有効化フィールドでエラーです" + +#~ msgid "Transactions List" +#~ msgstr "トランザクション一覧" + +#~ msgid "Edit Transaction" +#~ msgstr "トランザクション編集" + +#~ msgid "Go back to phases list" +#~ msgstr "フェーズ一覧に戻る" + +#~ msgid "Transactional Map - Phase - " +#~ msgstr "トランザクションマップ - フェーズ - " + +#~ msgid "List of transactions" +#~ msgstr "トランザクション一覧" + +#~ msgid "Transactional Map" +#~ msgstr "トランザクションマップ" + +#~ msgid "Name can't be empty" +#~ msgstr "名前は空にできません" + +#~ msgid "Transaction name" +#~ msgstr "トランザクション名" + +#~ msgid "Running status" +#~ msgstr "実行状態" + +#~ msgid "Time spent" +#~ msgstr "経過時間" + +#~ msgid "Stopped" +#~ msgstr "停止" + +#~ msgid "Starting" +#~ msgstr "開始中" + +#~ msgid "Stopping" +#~ msgstr "停止中" + +#~ msgid "Edit phases" +#~ msgstr "フェーズ編集" + +#~ msgid "Go to `Status` module" +#~ msgstr "モジュールの状態へ行く" + +#~ msgid "Error in phases section" +#~ msgstr "フェーズセクションエラー" + +#~ msgid "Create Transaction" +#~ msgstr "トランザクション作成" + +#~ msgid "Edit main data" +#~ msgstr "メインデータ編集" + +#~ msgid "View Transaction" +#~ msgstr "トランザクション表示" + +#~ msgid "Return to windowed mode" +#~ msgstr "ウインドウモードへ戻る" + +#~ msgid "Transaction not found" +#~ msgstr "トランザクションが見つかりません" + +#~ msgid "Master lock file not found (No data to show)" +#~ msgstr "マスターロックファイルが見つかりません (表示するデータがありません)" + +#~ msgid "Transaction is stopped" +#~ msgstr "トランザクションが停止しました" + +#~ msgid "Error, please check the transaction phases" +#~ msgstr "エラー、トランザクションフェーズをチェックしてください" + +#~ msgid "Please, reset the transaction" +#~ msgstr "トランザクションをリセットしてください" + +#~ msgid "Successfully data updated" +#~ msgstr "データを更新しました" + +#~ msgid "Could not be data updated" +#~ msgstr "データを更新できませんでした" + +#~ msgid "Create Phase" +#~ msgstr "フェーズ作成" + +#~ msgid "Index" +#~ msgstr "目次" + +#~ msgid "Dependencies" +#~ msgstr "依存関係" + +#~ msgid "Enables" +#~ msgstr "有効" + +#~ msgid "Not valid dependencies field" +#~ msgstr "正しい依存フィールドではありません" + +#~ msgid "Not valid enables field" +#~ msgstr "正しい有効フィールドではありません" + +#~ msgid "Loop interval" +#~ msgstr "ループ間隔" + +#~ msgid "Transactional Map - Edit Transaction" +#~ msgstr "トランザクションマップ - トランザクション編集" + +#~ msgid "Transactional map" +#~ msgstr "トランザクションマップ" + +#~ msgid "

Type

" +#~ msgstr "

タイプ

" + +#~ msgid "Task completed." +#~ msgstr "タスク完了" + +#~ msgid "Are you sure you want to unlock this item?" +#~ msgstr "このアイテムをロック解除してもよろしいですか。" + +#~ msgid "" +#~ "The plugin command cannot be updated because some modules or components are " +#~ "using the plugin." +#~ msgstr "" +#~ "いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラ" +#~ "グインコマンドを更新できません。" + +#~ msgid "Circular porgress bar" +#~ msgstr "円進捗バー" + +#~ msgid "Transactional server" +#~ msgstr "トランザクションサーバ" + +#~ msgid "." +#~ msgstr "." + +#~ msgid "," +#~ msgstr "," + +#~ msgid "other" +#~ msgstr "その他" + +#~ msgid "Edit cluster" +#~ msgstr "クラスタ編集" + +#~ msgid "Refresh Holding area" +#~ msgstr "保持エリアの更新" + +#~ msgid "Enable sunburst" +#~ msgstr "サンバーストの有効化" + +#~ msgid "Events -by module-" +#~ msgstr "イベント -モジュールごと-" + +#~ 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アドレスで検索する必要があることに注意してくださ" +#~ "い。" + +#~ msgid "Search by trap type" +#~ msgstr "トラップタイプによる検索" + +#~ msgid "There are no SNMP traps in database that contains this filter" +#~ msgstr "このフィルタを含む SNMP トラップがデータベース内にありません。" + +#~ msgid "Trap type:" +#~ msgstr "トラップタイプ:" + +#~ msgid "No matching traps found" +#~ msgstr "条件にマッチするトラップがありません。" + +#~ msgid "There are no transactions defined yet." +#~ msgstr "トランザクションが定義されていません。" + +#~ msgid "Transactions" +#~ msgstr "トランザクション" + +#~ msgid "Create Transactions" +#~ msgstr "トランザクションの作成" + +#~ 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" +#~ "トランザクショングラフは、サービスを提供するために利用するインフラ内の異なる" +#~ "処理を表現します。" #~ msgid "Mode Cell" #~ msgstr "モードセル" @@ -51273,17 +53326,11 @@ msgstr "" #~ msgstr "処理中イベントは削除できません" #~ msgid "" -#~ "Event viewer is disabled due event replication. For more information, please " -#~ "contact with the administrator" +#~ "Event viewer is disabled due event replication. For more information, " +#~ "please contact with the administrator" #~ msgstr "" -#~ "イベントの複製のためイベント表示は無効化されています。より詳細は管理者に連絡してく" -#~ "ださい。" - -#~ msgid "In progress selected" -#~ msgstr "処理中を選択" - -#~ msgid "Validate selected" -#~ msgstr "選択したものを承諾" +#~ "イベントの複製のためイベント表示は無効化されています。より詳細は管理者に連絡" +#~ "してください。" #~ msgid "No filter loaded" #~ msgstr "フィルタが読み込まれていません" @@ -51313,10 +53360,11 @@ msgstr "" #~ msgstr "高度なオプション" #, php-format -#~ msgid "'Show events' is disabled because this %s node is set to event replication." +#~ msgid "" +#~ "'Show events' is disabled because this %s node is set to event replication." #~ msgstr "" -#~ "この %s ノードはイベントを複製するように設定されているため、’イベント表示' は無効で" -#~ "す。" +#~ "この %s ノードはイベントを複製するように設定されているため、’イベント表示' " +#~ "は無効です。" #~ msgid "Treshold" #~ msgstr "閾値" @@ -51337,8 +53385,8 @@ msgstr "" #~ msgstr "アップデートマネージャ" #~ msgid "" -#~ "Click " -#~ "here to start the registration process" +#~ "Click here to start the registration process" #~ msgstr "" #~ "登録処理を開始するには、 こちら をクリックしてください" @@ -51483,9 +53531,6 @@ msgstr "" #~ msgid "Custom events" #~ msgstr "カスタムイベント" -#~ msgid "Update manager" -#~ msgstr "アップデートマネージャ" - #~ msgid "Update Manager offline" #~ msgstr "オフラインアップデートマネージャ" @@ -51505,16 +53550,17 @@ msgstr "" #~ "This user has permissions to manage all. An admin user should not requiere " #~ "additional group permissions, except for using Enterprise ACL." #~ msgstr "" -#~ "このユーザはすべてを管理する権限があります。Enterprise ACL の利用を除いて、管理者" -#~ "ユーザは追加のグループパーミッション設定をすべきではありません。" +#~ "このユーザはすべてを管理する権限があります。Enterprise ACL の利用を除いて、" +#~ "管理者ユーザは追加のグループパーミッション設定をすべきではありません。" #~ msgid "" -#~ "This user has separated permissions to view data in his group agents, create " -#~ "incidents belong to his groups, add notes in another incidents, create personal " -#~ "assignments or reviews and other tasks, on different profiles" +#~ "This user has separated permissions to view data in his group agents, " +#~ "create incidents belong to his groups, add notes in another incidents, " +#~ "create personal assignments or reviews and other tasks, on different " +#~ "profiles" #~ msgstr "" -#~ "このユーザは、以下のプロファイル名およびグループ名の組み合わせで定義した、限られた" -#~ "権限を所有します。" +#~ "このユーザは、以下のプロファイル名およびグループ名の組み合わせで定義した、限" +#~ "られた権限を所有します。" #~ msgid "Assigned node" #~ msgstr "割り当てノード" @@ -51529,7 +53575,8 @@ msgstr "" #~ msgstr "移動を再実行するか管理者に連絡してください。" #~ msgid "Agents cannot be updated (maybe there was no field to update)" -#~ msgstr "エージェントが更新できません (更新するフィールドがない可能性があります)" +#~ msgstr "" +#~ "エージェントが更新できません (更新するフィールドがない可能性があります)" #~ msgid "Days of week" #~ msgstr "曜日" @@ -51571,9 +53618,11 @@ msgstr "" #~ msgstr "モジュールの完全で正確な名前を指定する必要があります" #, php-format -#~ msgid "Exceeded max. number (%d) of agents added to policy concurrently (%d added)" +#~ msgid "" +#~ "Exceeded max. number (%d) of agents added to policy concurrently (%d added)" #~ msgstr "" -#~ "同時にポリシーに追加するエージェント最大数(%d)を超過しました (%d 追加されました)" +#~ "同時にポリシーに追加するエージェント最大数(%d)を超過しました (%d 追加されま" +#~ "した)" #~ msgid "Successfully deleted from delete pending agents" #~ msgstr "削除待ちエージェントから削除しました" @@ -51627,11 +53676,11 @@ msgstr "" #~ msgstr "マイナーリリースは拒否されました。変更は適用されません。" #~ msgid "" -#~ "Minor release rejected. The database will not be updated and the package will " -#~ "apply." +#~ "Minor release rejected. The database will not be updated and the package " +#~ "will apply." #~ msgstr "" -#~ "マイナーリリースは拒否されました。データベースは更新されず、パッケージが適用されま" -#~ "す。" +#~ "マイナーリリースは拒否されました。データベースは更新されず、パッケージが適用" +#~ "されます。" #~ msgid "Database successfully updated" #~ msgstr "データベースを更新しました" @@ -51646,15 +53695,17 @@ msgstr "" #~ msgstr "パッケージ更新エラー" #~ msgid "Database MR version is inconsistent, do you want to apply the package?" -#~ msgstr "データベース MR のバージョンに一貫性がありません。パッケージを適用しますか?" +#~ msgstr "" +#~ "データベース MR のバージョンに一貫性がありません。パッケージを適用しますか?" #~ msgid "There are db changes" #~ msgstr "DB の変更があります" #~ msgid "" -#~ "There are new database changes available to apply. Do you want to start the DB " -#~ "update process?" -#~ msgstr "適用できる新しいデータベースの変更があります。 DB 更新処理を開始しますか?" +#~ "There are new database changes available to apply. Do you want to start the " +#~ "DB update process?" +#~ msgstr "" +#~ "適用できる新しいデータベースの変更があります。 DB 更新処理を開始しますか?" #~ msgid "We recommend launching " #~ msgstr "次の実行をお勧めします " @@ -51666,7 +53717,8 @@ msgstr "" #~ msgstr "新しい更新があります" #~ msgid "" -#~ "There is a new update available to apply. Do you want to start the update process?" +#~ "There is a new update available to apply. Do you want to start the update " +#~ "process?" #~ msgstr "適用できる新しい更新があります。 更新処理を開始しますか?" #~ msgid "Applying DB MR" @@ -51727,11 +53779,11 @@ msgstr "" #, php-format #~ msgid "" -#~ "This policy exist in node %s with other name (%s). Change the name to '%s' to " -#~ "apply the policy." +#~ "This policy exist in node %s with other name (%s). Change the name to '%s' " +#~ "to apply the policy." #~ msgstr "" -#~ "このポリシーは、ノード %s に他の名前(%s)で存在します。 ポリシーを適用するには、名前" -#~ "を '%s' に変更します。" +#~ "このポリシーは、ノード %s に他の名前(%s)で存在します。 ポリシーを適用するに" +#~ "は、名前を '%s' に変更します。" #~ msgid "Nice try buddy" #~ msgstr "問題が発生しました" @@ -51743,7 +53795,8 @@ msgstr "" #~ msgstr "更新できません。すでに存在します。" #~ msgid "" -#~ "Lapses of time in which the period is divided to make more precise calculations\n" +#~ "Lapses of time in which the period is divided to make more precise " +#~ "calculations\n" #~ msgstr "より正確な計算を行うための経過時間の期間分割\n" #~ msgid "Please save the SLA for start to add items in this list." @@ -51790,13 +53843,14 @@ msgstr "" #~ msgstr "Pandora FMS コンソールにおける最近の操作" #~ msgid "" -#~ "Access to this page is restricted to authorized users only, please contact system " -#~ "administrator if you need assistance.

Please know that all attempts to " -#~ "access this page are recorded in security logs of Pandora System Database" +#~ "Access to this page is restricted to authorized users only, please contact " +#~ "system administrator if you need assistance.

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

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

このページへのアクセスは、Pandora" +#~ "システムデータベースのセキュリティログに記録されますので注意してください。" #~ msgid "Welcome to Pandora FMS" #~ msgstr "ようこそ Pandora FMS へ" @@ -51805,10 +53859,11 @@ msgstr "" #~ msgstr "Pandora FMS ヘルプシステム" #~ msgid "" -#~ "Pandora FMS help system has been called with a help reference that currently don't " -#~ "exist. There is no help content to show." +#~ "Pandora FMS help system has been called with a help reference that " +#~ "currently don't exist. There is no help content to show." #~ msgstr "" -#~ "Pandora FMS ヘルプシステムが呼び出されましたが、表示するヘルプが存在しません。" +#~ "Pandora FMS ヘルプシステムが呼び出されましたが、表示するヘルプが存在しませ" +#~ "ん。" #~ msgid "Message overview" #~ msgstr "メッセージ概要" @@ -51825,8 +53880,8 @@ msgstr "" #~ msgstr "警告が %d 件あります。" #~ msgid "" -#~ "Your session is over. Please close your browser window to close this Pandora " -#~ "session." +#~ "Your session is over. Please close your browser window to close this " +#~ "Pandora session." #~ msgstr "セッションを終了しました。ブラウザのウインドウを閉じてください。" #~ msgid "Pandora FMS Diagnostic tool" @@ -51897,8 +53952,8 @@ msgstr "" #~ msgstr "パスワードの更新に失敗しました。:%s" #~ msgid "" -#~ "You can not change your password from Pandora FMS under the current authentication " -#~ "scheme" +#~ "You can not change your password from Pandora FMS under the current " +#~ "authentication scheme" #~ msgstr "現在の認証方式では、Pandora FMS からパスワードを変更できません。" #~ msgid "" @@ -52027,9 +54082,6 @@ msgstr "" #~ msgid "Delete map" #~ msgstr "マップの削除" -#~ msgid "Show interfaces" -#~ msgstr "インタフェース表示" - #~ msgid "Depth" #~ msgstr "深さ" @@ -52119,7 +54171,8 @@ msgstr "" #~ msgid "File was partially uploaded. Please try again" #~ msgstr "" -#~ "ファイルが一部しかアップロードされませんでした。再度アップロードしてください。" +#~ "ファイルが一部しかアップロードされませんでした。再度アップロードしてくださ" +#~ "い。" #~ msgid "Generic upload error" #~ msgstr "一般アップロードエラー" @@ -52191,11 +54244,11 @@ msgstr "" #~ msgstr "Pandora FMS に登録済のプラグイン" #~ msgid "" -#~ "You must select a Recon Server for the Task, otherwise the Recon Task will never " -#~ "run" +#~ "You must select a Recon Server for the Task, otherwise the Recon Task will " +#~ "never run" #~ msgstr "" -#~ "タスクを実行する自動検出サーバを指定する必要があります。指定しないと自動検出は実行" -#~ "されません。" +#~ "タスクを実行する自動検出サーバを指定する必要があります。指定しないと自動検出" +#~ "は実行されません。" #~ msgid "Network sweep" #~ msgstr "ネットワーク探査" @@ -52207,9 +54260,9 @@ msgstr "" #~ "Ports defined like: 80 or 80,443,512 or even 0-1024 (Like Nmap command line " #~ "format). If dont want to do a sweep using portscan, left it in blank" #~ msgstr "" -#~ "ポート番号の指定は、一つの場合は 80、複数の場合は、80,443,512 や 0-1024 (nmapコマン" -#~ "ドのフォーマット)のように記載します。ポートスキャンをしたくない場合は、空白にしてく" -#~ "ださい。" +#~ "ポート番号の指定は、一つの場合は 80、複数の場合は、80,443,512 や 0-1024 " +#~ "(nmapコマンドのフォーマット)のように記載します。ポートスキャンをしたくない場" +#~ "合は、空白にしてください。" #~ msgid "Choose if the discovery of a new system creates an incident or not." #~ msgstr "新システム検出時のインシデント作成有無の選択" @@ -52218,8 +54271,10 @@ msgstr "" #~ msgstr "SNMP デフォルトコミュニティ" #~ msgid "" -#~ "The current authentication scheme doesn't support creating users from Pandora FMS" -#~ msgstr "現在の認証設定では、Pandora FMS 上でユーザを作成することはできません。" +#~ "The current authentication scheme doesn't support creating users from " +#~ "Pandora FMS" +#~ msgstr "" +#~ "現在の認証設定では、Pandora FMS 上でユーザを作成することはできません。" #~ msgid "Profiles defined in Pandora" #~ msgstr "Pandora 内プロファイル" @@ -52261,7 +54316,8 @@ msgstr "" #~ msgstr "Pandora に定義されているモジュールグループ" #~ msgid "" -#~ "If realtime statistics are disabled, statistics interval resfresh will be set here." +#~ "If realtime statistics are disabled, statistics interval resfresh will be " +#~ "set here." #~ msgstr "リアルタイム統計が無効の場合、ここで統計処理間隔を設定します。" #~ msgid "Success updatng OS" @@ -52292,11 +54348,11 @@ msgstr "" #~ msgstr "Pandoraの言語" #~ msgid "" -#~ "If SSL is not properly configured you will lose access to Pandora FMS Console. Do " -#~ "you want to continue?" +#~ "If SSL is not properly configured you will lose access to Pandora FMS " +#~ "Console. Do you want to continue?" #~ msgstr "" -#~ "SSL の設定ができていないと、Pandora FMS コンソールへアクセスできなくなります。設定" -#~ "を行いますか?" +#~ "SSL の設定ができていないと、Pandora FMS コンソールへアクセスできなくなりま" +#~ "す。設定を行いますか?" #~ msgid "Enable GIS features in Pandora Console" #~ msgstr "コンソールで GIS 機能を利用する" @@ -52308,21 +54364,22 @@ msgstr "" #~ msgstr "URL もしくは Integria のパスワードが不正です" #~ msgid "" -#~ "If Enterprise ACL System is enabled without rules you will lose access to Pandora " -#~ "FMS Console (even admin). Do you want to continue?" +#~ "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システムが有効になっている場合は、(adminで" -#~ "さえも)Pandora FMS コンソールへアクセスできなくなります。続けますか。" +#~ "ルール設定が無い状態でエンタープライズACLシステムが有効になっている場合は、" +#~ "(adminでさえも)Pandora FMS コンソールへアクセスできなくなります。続けます" +#~ "か。" #~ msgid "There are no SNMP filters" #~ msgstr "SNMP フィルタがありません。" #~ 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\"." +#~ "In case you fill any Field 1, Field 2 or Field 3 above, those will replace " +#~ "the corresponding fields of this associated \"Default action\"." #~ msgstr "" -#~ "フィールド1、フィールド2 またはフィールド 3 を入力した場合、対応するフィールドの設" -#~ "定が \"デフォルトアクション\" になります。" +#~ "フィールド1、フィールド2 またはフィールド 3 を入力した場合、対応するフィール" +#~ "ドの設定が \"デフォルトアクション\" になります。" #~ msgid "Query SQL" #~ msgstr "SQL クエリ" @@ -52410,14 +54467,15 @@ msgstr "" #~ msgstr "処理エラー" #~ msgid "" -#~ "In case you use an Export server you can link this module and export data to one " -#~ "these." +#~ "In case you use an Export server you can link this module and export data " +#~ "to one these." #~ msgstr "" -#~ "エクスポートサーバを利用している場合は、このモジュールをリンクしエクスポートできま" -#~ "す。" +#~ "エクスポートサーバを利用している場合は、このモジュールをリンクしエクスポート" +#~ "できます。" #~ msgid "The agent's name must be the same as the one defined at the console" -#~ msgstr "ここで指定するエージェント名は、すでに定義済のものである必要があります。" +#~ msgstr "" +#~ "ここで指定するエージェント名は、すでに定義済のものである必要があります。" #~ msgid "You can remotely edit this agent configuration" #~ msgstr "このエージェントはリモートから設定可能です。" @@ -52501,12 +54559,13 @@ msgstr "" #~ msgstr "複数モジュールコピー" #~ msgid "" -#~ "Please check your Pandora Server setup and be sure that database maintenance " -#~ "daemon is running. It's very important to keep up-to-date database to get the best " -#~ "performance and results in Pandora" +#~ "Please check your Pandora Server setup and be sure that database " +#~ "maintenance daemon is running. It's very important to keep up-to-date " +#~ "database to get the best performance and results in Pandora" #~ msgstr "" -#~ "Pandoraサーバの設定とデータベースメンテナンスデーモンの動作に注意をしてください。パ" -#~ "フォーマンスを維持するためには、データベースを日々整理することが重要です。" +#~ "Pandoraサーバの設定とデータベースメンテナンスデーモンの動作に注意をしてくだ" +#~ "さい。パフォーマンスを維持するためには、データベースを日々整理することが重要" +#~ "です。" #~ msgid "Database maintenance" #~ msgstr "データベースメンテナンス" @@ -52515,11 +54574,11 @@ msgstr "" #~ msgstr "エージェントから収集したデータ" #~ msgid "" -#~ "Please be patient. This operation can take a long time depending on the amount of " -#~ "modules." +#~ "Please be patient. This operation can take a long time depending on the " +#~ "amount of modules." #~ msgstr "" -#~ "しばらくお待ちください。この操作は、モジュール数によりしばらく時間がかかることがあ" -#~ "ります。" +#~ "しばらくお待ちください。この操作は、モジュール数によりしばらく時間がかかるこ" +#~ "とがあります。" #~ msgid "Deleting records for all agents" #~ msgstr "全エージェントのレコードの削除中" @@ -52538,7 +54597,8 @@ 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" @@ -52686,11 +54746,11 @@ msgstr "" #~ msgstr "マップの名称" #~ msgid "" -#~ "At least one map connection must be defined, it will be possible to change between " -#~ "the connections in the map" +#~ "At least one map connection must be defined, it will be possible to change " +#~ "between the connections in the map" #~ msgstr "" -#~ "少なくとも、1つの利用マップが定義されていなければいけません。マップの変更は可能で" -#~ "す。" +#~ "少なくとも、1つの利用マップが定義されていなければいけません。マップの変更は" +#~ "可能です。" #~ msgid "Group that owns the map" #~ msgstr "マップを利用するグループ" @@ -52699,11 +54759,11 @@ msgstr "" #~ msgstr "マップを開いた時のデフォルトの拡大レベル" #~ msgid "" -#~ "Each layer can show agents from one group or the agents added to that layer or " -#~ "both." +#~ "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 "編集、削除、レイヤの順番の変更ができます。" @@ -52718,20 +54778,20 @@ msgstr "" #~ msgstr "ファイルを読み込めません" #~ msgid "" -#~ "This extension can run as PHP script in a shell for extract more information, but " -#~ "it must be run as root or across sudo. For example: sudo php /var/www/" -#~ "pandora_console/extensions/system_info.php -d -s -c" +#~ "This extension can run as PHP script in a shell for extract more " +#~ "information, but it must be run as root or across sudo. For example: " +#~ "sudo php /var/www/pandora_console/extensions/system_info.php -d -s -c" #~ msgstr "" -#~ "この拡張は、シェル上で情報を表示するための PHP スクリプトとしても実行できます。ただ" -#~ "し、root 権限が必要です。
例: sudo php /var/www/pandora_console/extensions/" -#~ "system_info.php -d -s -c" +#~ "この拡張は、シェル上で情報を表示するための PHP スクリプトとしても実行できま" +#~ "す。ただし、root 権限が必要です。
例: sudo php /var/www/" +#~ "pandora_console/extensions/system_info.php -d -s -c" #~ msgid "" -#~ "This tool is used just to view your Pandora FMS system logfiles directly from " -#~ "console" +#~ "This tool is used just to view your Pandora FMS system logfiles directly " +#~ "from console" #~ msgstr "" -#~ "このツールは、コンソールから Pandora FMS のシステムログファイルを直接参照するのに利" -#~ "用します。" +#~ "このツールは、コンソールから Pandora FMS のシステムログファイルを直接参照す" +#~ "るのに利用します。" #~ msgid "Pandora Diagnostic info" #~ msgstr "Pandora 診断情報" @@ -52749,27 +54809,28 @@ msgstr "" #~ msgstr "ファイル生成" #~ msgid "" -#~ "This extension makes exportation of resource template more easy. Here you can " -#~ "export as a resource template in Pandora FMS 3.x format (.ptr). " +#~ "This extension makes exportation of resource template more easy. Here you " +#~ "can export as a resource template in Pandora FMS 3.x format (.ptr). " #~ msgstr "" -#~ "この拡張で、リソーステンプレートのエクスポートを簡単にできます。Pandora FMS 3.x " -#~ "フォーマット(.ptr)で、リソーステンプレートをエクスポートできます。 " +#~ "この拡張で、リソーステンプレートのエクスポートを簡単にできます。Pandora FMS " +#~ "3.x フォーマット(.ptr)で、リソーステンプレートをエクスポートできます。 " #~ msgid "VNC view" #~ msgstr "VNCビュー" #, php-format #~ msgid "" -#~ "This extension makes registration of server plugins more easy. Here you can upload " -#~ "a server plugin in Pandora FMS 3.x zipped format (.pspz). Please refer to " -#~ "documentation on how to obtain and use Pandora FMS Server Plugins.

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

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

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

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

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

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

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

リソースは、我々のPublic Resource " +#~ "Libraryから取得できます。" #~ msgid "No agent selected or the agent does not exist" #~ msgstr "エージェントが選択されてないか、存在しません。" @@ -52811,12 +54874,13 @@ msgstr "" #~ msgstr "サーバの接続に失敗しました。" #~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS Enterprise " -#~ "version, for more information visit http://" -#~ "pandorafms.com." +#~ "Update Manager is one of the most advanced features of Pandora FMS " +#~ "Enterprise version, for more information visit http://pandorafms.com." #~ msgstr "" -#~ "アップデートマネージャは、Pandora FMS Enterprise版の拡張機能です。より詳細は、http://pandorafms.com を参照してください。" +#~ "アップデートマネージャは、Pandora FMS Enterprise版の拡張機能です。より詳細" +#~ "は、http://pandorafms.com を参照してく" +#~ "ださい。" #~ msgid "Today" #~ msgstr "今日" @@ -52870,15 +54934,16 @@ msgstr "" #~ msgstr "\"Admin\" ユーザのデフォルトパスワードが変更されていません。" #~ msgid "" -#~ "Please change the default password because is a common vulnerability reported." +#~ "Please change the default password because is a common vulnerability " +#~ "reported." #~ msgstr "脆弱性となるため、デフォルトのパスワードは変更してください。" #~ msgid "" -#~ "Please check that the web server has write rights on the {HOMEDIR}/attachment " -#~ "directory" +#~ "Please check that the web server has write rights on the {HOMEDIR}/" +#~ "attachment directory" #~ msgstr "" -#~ "{HOMEDIR}/attachment ディレクトリに、ウェブサーバの書き込み権限があるか確認してくだ" -#~ "さい。" +#~ "{HOMEDIR}/attachment ディレクトリに、ウェブサーバの書き込み権限があるか確認" +#~ "してください。" #~ msgid "Remote configuration directory is not writtable for the console" #~ msgstr "コンソールから、リモート設定ディレクトリに書き込めません。" @@ -52887,11 +54952,11 @@ msgstr "" #~ msgstr "attachmentディレクトリにあるファイルが多すぎます。" #~ msgid "" -#~ "There are too much files in attachment directory. This is not fatal, but you " -#~ "should consider cleaning up your attachment directory manually" +#~ "There are too much files in attachment directory. This is not fatal, but " +#~ "you should consider cleaning up your attachment directory manually" #~ msgstr "" -#~ "添付ディレクトリに大量のファイルがあります。障害ではありませんが、添付ディレクトリ" -#~ "の手動での整理をお勧めします。" +#~ "添付ディレクトリに大量のファイルがあります。障害ではありませんが、添付ディレ" +#~ "クトリの手動での整理をお勧めします。" #~ msgid "files" #~ msgstr "ファイル" @@ -52900,32 +54965,34 @@ msgstr "" #~ 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" +#~ "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_db.pl)の実行に関しては " -#~ "Pandora FMS ドキュメントを参照し、メンテナンス処理を早急に有効にしてください。" +#~ "データベースがあまりメンテナンスされていません。48時間以上適切なメンテナンス" +#~ "がされていないように見受けられます。メンテナンスプロセス(pandora_db.pl)の実" +#~ "行に関しては Pandora FMS ドキュメントを参照し、メンテナンス処理を早急に有効" +#~ "にしてください。" #~ msgid "Default font doesnt exist" #~ msgstr "デフォルトのフォントがありません" #~ msgid "" -#~ "Your defined font doesnt exist or is not defined. Please check font parameters in " -#~ "your config" +#~ "Your defined font doesnt exist or is not defined. Please check font " +#~ "parameters in your config" #~ msgstr "" -#~ "定義したフォントが存在しないかフォントが定義されていません。フォントパラメータの設" -#~ "定を確認してください。" +#~ "定義したフォントが存在しないかフォントが定義されていません。フォントパラメー" +#~ "タの設定を確認してください。" #~ msgid "" -#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a developer mode " -#~ "and should be disabled in a production system. This value is written in the main " -#~ "index.php file" +#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a " +#~ "developer mode and should be disabled in a production system. This value is " +#~ "written in the main index.php file" #~ msgstr "" -#~ "この Pandora FMS は、\"develop_bypass\" モードが有効になっています。これは、これは" -#~ "開発用のモードであるため本番システムでは無効にしてください。この設定は、メインの " -#~ "index.php ファイルに書かれています。" +#~ "この Pandora FMS は、\"develop_bypass\" モードが有効になっています。これは、" +#~ "これは開発用のモードであるため本番システムでは無効にしてください。この設定" +#~ "は、メインの index.php ファイルに書かれています。" #~ msgid "Alerts not fired" #~ msgstr "未通知アラート" @@ -53006,14 +55073,15 @@ msgstr "" #~ msgstr "ネットワークモジュール更新エラー。id_module が存在しません。" #~ msgid "Error updating network module. Id_module exists in the new agent." -#~ msgstr "ネットワークモジュール更新エラー。id_module が新規エージェントにあります。" +#~ msgstr "" +#~ "ネットワークモジュール更新エラー。id_module が新規エージェントにあります。" #~ msgid "" #~ "Error in creation network module. Id_module_type is not correct for network " #~ "modules." #~ msgstr "" -#~ "ネットワークモジュール作成エラー。ネットワークモジュールの id_module_type が不正で" -#~ "す。" +#~ "ネットワークモジュール作成エラー。ネットワークモジュールの id_module_type が" +#~ "不正です。" #~ msgid "Error in creation network module. Agent name doesn't exists." #~ msgstr "ネットワークモジュール作成エラー。エージェント名が存在しません。" @@ -53034,14 +55102,15 @@ msgstr "" #~ msgstr "データモジュール作成エラー。エージェント名が存在しません。" #~ msgid "Error updating plugin module. Id_module exists in the new agent." -#~ msgstr "プラグインモジュール更新エラー。id_module が新規エージェントにあります。" +#~ msgstr "" +#~ "プラグインモジュール更新エラー。id_module が新規エージェントにあります。" #~ msgid "" -#~ "Error in creation SNMP module. snmp3_auth_method doesn't exists. Set it to 'MD5' " -#~ "or 'SHA'. " +#~ "Error in creation SNMP module. snmp3_auth_method doesn't exists. Set it to " +#~ "'MD5' or 'SHA'. " #~ msgstr "" -#~ "SNMPモジュール作成エラー。snmp3_auth_method がありません。'MD5' または 'SHA' を設定" -#~ "してください。 " +#~ "SNMPモジュール作成エラー。snmp3_auth_method がありません。'MD5' または " +#~ "'SHA' を設定してください。 " #~ msgid "Error in creation SNMP module." #~ msgstr "SNMPモジュール作成エラー。" @@ -53049,31 +55118,34 @@ msgstr "" #~ msgid "Error updating SNMP module. Id_module doesn't exists." #~ msgstr "SNMPモジュール更新エラー。id_module が存在しません。" -#~ msgid "Error in creation SNMP module. Invalid id_module_type for a SNMP module." -#~ msgstr "SNMPモジュール作成エラー。SNMPモジュールの id_module_type が不正です。" +#~ msgid "" +#~ "Error in creation SNMP module. Invalid id_module_type for a SNMP module." +#~ msgstr "" +#~ "SNMPモジュール作成エラー。SNMPモジュールの id_module_type が不正です。" #~ msgid "Error in creation SNMP module. Agent name doesn't exists." #~ msgstr "SNMPモジュール作成エラー。エージェント名が存在しません。" #~ msgid "" -#~ "Error in creation SNMP module. snmp3_priv_method doesn't exists. Set it to 'AES' " -#~ "or 'DES'. " +#~ "Error in creation SNMP module. snmp3_priv_method doesn't exists. Set it to " +#~ "'AES' or 'DES'. " #~ msgstr "" -#~ "SNMPモジュール作成エラー。snmp3_priv_method がありません。'AES' または 'DES' を設定" -#~ "してください。 " +#~ "SNMPモジュール作成エラー。snmp3_priv_method がありません。'AES' または " +#~ "'DES' を設定してください。 " #~ msgid "" #~ "Error in creation SNMP module. snmp3_sec_level doesn't exists. Set it to " #~ "'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " #~ msgstr "" -#~ "SNMPモジュール作成エラー。snmp3_sec_level がありません。 'authNoPriv'、'authPriv'、" -#~ "noAuthNoPriv' のいずれかを設定してください。 " +#~ "SNMPモジュール作成エラー。snmp3_sec_level がありません。 " +#~ "'authNoPriv'、'authPriv'、noAuthNoPriv' のいずれかを設定してください。 " #~ msgid "" -#~ "Error creating network component. Network component name cannot be left blank." +#~ "Error creating network component. Network component name cannot be left " +#~ "blank." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネント名が指定されていま" -#~ "せん。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネント名が指定され" +#~ "ていません。" #~ msgid "Error updating SNMP module. Id_module exists in the new agent." #~ msgstr "SNMPモジュール更新エラー。id_moduleが新規エージェントにあります。" @@ -53082,10 +55154,11 @@ msgstr "" #~ msgstr "データモジュール更新エラー。id_module が指定されていません。" #~ msgid "" -#~ "Error creating network component. Network component group cannot be left blank." +#~ "Error creating network component. Network component group cannot be left " +#~ "blank." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントグループが指定され" -#~ "ていません。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントグループが指" +#~ "定されていません。" #~ msgid "Error updating plugin module. Id_module cannot be left blank." #~ msgstr "プラグインモジュール更新エラー。id_module が指定されていません。" @@ -53102,10 +55175,11 @@ msgstr "" #~ msgid "Error in creation SNMP module. Module_name cannot be left blank." #~ msgstr "SNMPモジュール作成エラー。module_name が指定されていません。" -#~ msgid "Error creating plugin component. Plugin component name cannot be left blank." +#~ msgid "" +#~ "Error creating plugin component. Plugin component name cannot be left blank." #~ msgstr "" -#~ "プラグインコンポーネント作成エラー。プラグインコンポーネント名が指定されていませ" -#~ "ん。" +#~ "プラグインコンポーネント作成エラー。プラグインコンポーネント名が指定されてい" +#~ "ません。" #~ msgid "Error updating SNMP module. Id_module cannot be left blank." #~ msgstr "SNMPモジュール更新エラー。id_module が指定されていません。" @@ -53114,39 +55188,49 @@ msgstr "" #~ msgstr "接続しました... 直近24時間のメッセージを取得します..." #~ msgid "" -#~ "Error creating network component. Incorrect value for Network component type field." +#~ "Error creating network component. Incorrect value for Network component " +#~ "type field." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントタイプが不正です。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントタイプが不正" +#~ "です。" -#~ msgid "Error creating network component. This network component already exists." +#~ msgid "" +#~ "Error creating network component. This network component already exists." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントがすでに存在しま" -#~ "す。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントがすでに存在" +#~ "します。" #~ msgid "Error creating plugin component. Incorrect value for Id plugin." #~ msgstr "プラグインコンポーネント作成エラー。プラグイン ID が不正です。" #~ msgid "Error creating plugin component. This plugin component already exists." #~ msgstr "" -#~ "プラグインコンポーネント作成エラー。プラグインコンポーネントがすでに存在します。" - -#~ msgid "Error creating plugin component. Plugin component group cannot be left blank." -#~ msgstr "" -#~ "プラグインコンポーネント作成エラー。プラグインコンポーネントグループが指定されてい" -#~ "ません。" - -#~ msgid "Error creating SNMP component. Incorrect value for Snmp component type field." -#~ msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネントタイプが不正です。" - -#~ msgid "Error creating SNMP component. SNMP component name cannot be left blank." -#~ msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネント名が指定されていません。" +#~ "プラグインコンポーネント作成エラー。プラグインコンポーネントがすでに存在しま" +#~ "す。" #~ msgid "" -#~ "Error creating SNMP component. snmp3_auth_method doesn't exists. Set it to 'MD5' " -#~ "or 'SHA'. " +#~ "Error creating plugin component. Plugin component group cannot be left " +#~ "blank." #~ msgstr "" -#~ "SNMPコンポーネント作成エラー。snmp3_auth_method が存在しません。'MD5' または 'SHA' " -#~ "を設定してください。 " +#~ "プラグインコンポーネント作成エラー。プラグインコンポーネントグループが指定さ" +#~ "れていません。" + +#~ msgid "" +#~ "Error creating SNMP component. Incorrect value for Snmp component type " +#~ "field." +#~ msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネントタイプが不正です。" + +#~ msgid "" +#~ "Error creating SNMP component. SNMP component name cannot be left blank." +#~ msgstr "" +#~ "SNMPコンポーネント作成エラー。SNMPコンポーネント名が指定されていません。" + +#~ 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. snmp3_sec_level doesn't exists. Set it to " @@ -53155,25 +55239,24 @@ msgstr "" #~ "SNMPコンポーネント作成エラー。snmp3_sec_level が存在しませ" #~ "ん。'authNoPriv'、'authPriv'、'noAuthNoPriv' のいずれかを設定してください。 " -#~ msgid "Error creating SNMP component. Snmp component group cannot be left blank." +#~ msgid "" +#~ "Error creating SNMP component. Snmp component group cannot be left blank." #~ msgstr "" -#~ "SNMPコンポーネント作成エラー。SNMPコンポーネントグループが指定されていません。" +#~ "SNMPコンポーネント作成エラー。SNMPコンポーネントグループが指定されていませ" +#~ "ん。" #~ msgid "" -#~ "Error creating SNMP component. snmp3_priv_method doesn't exists. Set it to 'AES' " -#~ "or 'DES'. " +#~ "Error creating SNMP component. snmp3_priv_method doesn't exists. Set it to " +#~ "'AES' or 'DES'. " #~ msgstr "" -#~ "SNMPコンポーネント作成エラー。snmp3_priv_methd が存在しません。'AES' または 'DES' " -#~ "を設定してください。 " +#~ "SNMPコンポーネント作成エラー。snmp3_priv_methd が存在しません。'AES' または " +#~ "'DES' を設定してください。 " -#~ msgid "Error creating local component. This local component already exists." +#~ msgid "" +#~ "Error creating local component. Local component group cannot be left blank." #~ msgstr "" -#~ "ローカルコンポーネント作成エラー。このローカルコンポーネントはすでに存在します。" - -#~ msgid "Error creating local component. Local component group cannot be left blank." -#~ msgstr "" -#~ "ローカルコンポーネント作成エラー。ローカルコンポーネントグループが指定されていませ" -#~ "ん。" +#~ "ローカルコンポーネント作成エラー。ローカルコンポーネントグループが指定されて" +#~ "いません。" #~ msgid "Error updating alert template. Id_template cannot be left blank." #~ msgstr "アラートテンプレート更新エラー。id_templateが指定されていません。" @@ -53181,25 +55264,33 @@ msgstr "" #~ msgid "Error creating alert template." #~ msgstr "アラートテンプレート作成エラー。" -#~ msgid "Error getting module value from all agents. Module name doesn't exists." -#~ 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 getting module value from all agents. Module name cannot be left blank." +#~ msgid "" +#~ "Error getting module value from all agents. Module name cannot be left " +#~ "blank." #~ msgstr "" -#~ "全エージェントからのモジュール値取得エラー。モジュール名が指定されていません。" +#~ "全エージェントからのモジュール値取得エラー。モジュール名が指定されていませ" +#~ "ん。" #~ msgid "Error creating local component." #~ msgstr "ローカルコンポーネント作成エラー。" #~ 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 "" -#~ "ローカルコンポーネント作成エラー。ローカルコンポーネント名が指定されていません。" +#~ "SNMPコンポーネント作成エラー。このSNMPコンポーネントはすでに存在します。" + +#~ msgid "" +#~ "Error creating local component. Local component name cannot be left blank." +#~ msgstr "" +#~ "ローカルコンポーネント作成エラー。ローカルコンポーネント名が指定されていませ" +#~ "ん。" #~ msgid "Error deleting alert template." #~ msgstr "アラートテンプレート削除エラー。" @@ -53238,7 +55329,8 @@ msgstr "" #~ msgstr "プラグイン取得エラー。" #~ msgid "Error assigning module to template. Id_template cannot be left blank." -#~ msgstr "テンプレートへのモジュール割当エラー。id_templateが指定されていません。" +#~ msgstr "" +#~ "テンプレートへのモジュール割当エラー。id_templateが指定されていません。" #~ msgid "Error assigning module to template. Id_module cannot be left blank." #~ msgstr "テンプレートへのモジュール割当エラー。id_moduleが指定されていません。" @@ -53249,11 +55341,10 @@ msgstr "" #~ msgid "Error assigning module to template." #~ msgstr "テンプレートへのモジュール割当エラー。" -#~ msgid "Users Online" -#~ msgstr "オンラインユーザ" - -#~ msgid "Error deleting module template. Id_module_template cannot be left blank." -#~ msgstr "モジュールテンプレート削除エラー。id_module_templateが指定されていません。" +#~ msgid "" +#~ "Error deleting module template. Id_module_template cannot be left blank." +#~ msgstr "" +#~ "モジュールテンプレート削除エラー。id_module_templateが指定されていません。" #~ msgid "Error stopping downtime. Id_downtime cannot be left blank." #~ msgstr "計画停止の中断エラー。id_downtimeが指定されていません。" @@ -53273,10 +55364,11 @@ msgstr "" #~ msgid "Error validating all alert policies." #~ msgstr "全アラートポリシーの承諾エラー。" -#~ msgid "Error adding data module to policy. The module is already in the policy." +#~ msgid "" +#~ "Error adding data module to policy. The module is already in the policy." #~ msgstr "" -#~ "ポリシーへのデータモジュール追加エラー。指定のモジュールがすでにポリシー内にありま" -#~ "す。" +#~ "ポリシーへのデータモジュール追加エラー。指定のモジュールがすでにポリシー内に" +#~ "あります。" #~ msgid "Error adding data module to policy." #~ msgstr "ポリシーへのデータモジュール追加エラー。" @@ -53286,8 +55378,8 @@ msgstr "" #~ msgid "Error adding agent to policy. The agent is already in the policy." #~ msgstr "" -#~ "ポリシーへのエージェント追加エラー。指定のエージェントはすでにポリシー内にありま" -#~ "す。" +#~ "ポリシーへのエージェント追加エラー。指定のエージェントはすでにポリシー内にあ" +#~ "ります。" #~ msgid "Error adding agent to policy. Id_agent cannot be left blank." #~ msgstr "ポリシーへのエージェント追加エラー。id_agentが指定されていません。" @@ -53296,89 +55388,113 @@ msgstr "" #~ msgstr "ポリシーへのエージェント追加エラー。id_agentが存在しません。" #~ msgid "Error adding data module to policy. Id_policy cannot be left blank." -#~ msgstr "ポリシーへのデータモジュール追加エラー。id_policyが指定されていません。" +#~ msgstr "" +#~ "ポリシーへのデータモジュール追加エラー。id_policyが指定されていません。" #~ msgid "Error adding data module to policy. Module_name cannot be left blank." -#~ msgstr "ポリシーへのデータモジュール追加エラー。module_nameが指定されていません。" +#~ msgstr "" +#~ "ポリシーへのデータモジュール追加エラー。module_nameが指定されていません。" #~ msgid "Error updating data module in policy. Id_policy cannot be left blank." #~ msgstr "ポリシーのデータモジュール更新エラー。id_policyが指定されていません。" -#~ msgid "Error updating network module in policy. Module type is not network type." +#~ msgid "" +#~ "Error updating network module in policy. Module type is not network type." #~ msgstr "" -#~ "ポリシーのネットワークモジュール更新エラー。モジュールタイプがネットワークのタイプ" -#~ "ではありません。" +#~ "ポリシーのネットワークモジュール更新エラー。モジュールタイプがネットワークの" +#~ "タイプではありません。" -#~ msgid "Error adding network module to policy. Module_name cannot be left blank." +#~ msgid "" +#~ "Error adding network module to policy. Module_name cannot be left blank." #~ msgstr "" -#~ "ポリシーへのネットワークモジュール追加エラー。module_nameが指定されていません。" +#~ "ポリシーへのネットワークモジュール追加エラー。module_nameが指定されていませ" +#~ "ん。" #~ msgid "Error adding network module to policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "ポリシーへのネットワークモジュール追加エラー。id_policyが指定されていません。" +#~ "ポリシーへのネットワークモジュール追加エラー。id_policyが指定されていませ" +#~ "ん。" #~ msgid "Error updating data module in policy. Module doesn't exists." #~ msgstr "ポリシーのデータモジュール更新エラー。モジュールが存在しません。" -#~ msgid "Error updating data module in policy. Id_policy_module cannot be left blank." -#~ msgstr "ポリシーのデータモジュール更新エラー。id_policy_moduleが指定されていません。" +#~ msgid "" +#~ "Error updating data module in policy. Id_policy_module cannot be left blank." +#~ msgstr "" +#~ "ポリシーのデータモジュール更新エラー。id_policy_moduleが指定されていません。" #~ msgid "" -#~ "Error adding network module to policy. Id_module_type is not correct for network " -#~ "modules." +#~ "Error adding network module to policy. Id_module_type is not correct for " +#~ "network modules." #~ msgstr "" -#~ "ポリシーへのネットワークモジュール追加エラー。id_module_typeがネットワークモジュー" -#~ "ルとして不正です。" +#~ "ポリシーへのネットワークモジュール追加エラー。id_module_typeがネットワークモ" +#~ "ジュールとして不正です。" #~ msgid "Error adding network module to policy." #~ msgstr "ポリシーへのネットワークモジュール追加エラー。" -#~ msgid "Error adding network module to policy. The module is already in the policy." +#~ 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_policyが指定されていません。" +#~ "ポリシーへのネットワークモジュール追加エラー。指定したモジュールはすでにポリ" +#~ "シー内にあります。" #~ msgid "" -#~ "Error updating plugin module in policy. Id_policy_module cannot be left blank." +#~ "Error updating network module in policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "ポリシーのプラグインモジュール更新エラー。id_policy_moduleが指定されていません。" +#~ "ポリシーのネットワークモジュール更新エラー。id_policyが指定されていません。" -#~ msgid "Error adding plugin module to policy. The module is already in the policy." +#~ msgid "" +#~ "Error updating plugin module in policy. Id_policy_module cannot be left " +#~ "blank." #~ msgstr "" -#~ "ポリシーへのプラグインモジュール追加エラー。指定のモジュールはすでにポリシー内にあ" -#~ "ります。" +#~ "ポリシーのプラグインモジュール更新エラー。id_policy_moduleが指定されていませ" +#~ "ん。" -#~ msgid "Error updating plugin module in policy. Id_policy cannot be left blank." -#~ msgstr "ポリシーのプラグインモジュール更新エラー。id_policyが指定されていません。" +#~ 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_policyが指定されていません。" #~ msgid "Error adding plugin module to policy. Id_policy cannot be left blank." -#~ msgstr "ポリシーへのプラグインモジュール追加エラー。id_policyが指定されていません。" +#~ msgstr "" +#~ "ポリシーへのプラグインモジュール追加エラー。id_policyが指定されていません。" #~ msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." -#~ msgstr "ポリシーへのプラグインモジュール追加エラー。id_pluginが指定されていません。" +#~ msgstr "" +#~ "ポリシーへのプラグインモジュール追加エラー。id_pluginが指定されていません。" #~ msgid "Error adding plugin module to policy." #~ msgstr "ポリシーへのプラグインモジュール追加エラー。" #~ msgid "Error updating network module in policy. Module doesn't exists." -#~ msgstr "ポリシーのネットワークモジュール更新エラー。モジュールが存在しません。" - -#~ msgid "Error adding plugin module to policy. Module_name cannot be left blank." #~ msgstr "" -#~ "ポリシーへのプラグインモジュール追加エラー。module_nameが指定されていません。" +#~ "ポリシーのネットワークモジュール更新エラー。モジュールが存在しません。" #~ msgid "" -#~ "Error updating network module in policy. Id_policy_module cannot be left blank." +#~ "Error adding plugin module to policy. Module_name cannot be left blank." #~ msgstr "" -#~ "ポリシーのネットワークモジュール更新エラー。id_policy_moduleが指定されていません。" +#~ "ポリシーへのプラグインモジュール追加エラー。module_nameが指定されていませ" +#~ "ん。" -#~ msgid "Error updating plugin module in policy. Module type is not network type." +#~ msgid "" +#~ "Error updating network module in policy. Id_policy_module cannot be left " +#~ "blank." #~ msgstr "" -#~ "ポリシーのプラグインモジュール更新エラー。モジュールタイプがネットワークのタイプで" -#~ "はありません。" +#~ "ポリシーのネットワークモジュール更新エラー。id_policy_moduleが指定されていま" +#~ "せん。" + +#~ msgid "" +#~ "Error updating plugin module in policy. Module type is not network type." +#~ msgstr "" +#~ "ポリシーのプラグインモジュール更新エラー。モジュールタイプがネットワークのタ" +#~ "イプではありません。" #~ msgid "Error updating plugin module in policy. Module doesn't exists." #~ msgstr "ポリシーのプラグインモジュール更新エラー。モジュールが存在しません。" @@ -53387,24 +55503,24 @@ msgstr "" #~ msgstr "エージェント詳細へ" #~ msgid "" -#~ "Are you sure to sort the items into the report?\\nThis action change the sorting " -#~ "of items into data base." +#~ "Are you sure to sort the items into the report?\\nThis action change the " +#~ "sorting of items into data base." #~ msgstr "" -#~ "レポートのアイテムを並び替えますか。\\nこの操作はデータベース内のアイテムの並びを変" -#~ "更します。" +#~ "レポートのアイテムを並び替えますか。\\nこの操作はデータベース内のアイテムの" +#~ "並びを変更します。" #~ msgid "" -#~ "The new Update Manager client " -#~ "is shipped with Pandora FMS It helps system administrators to update their Pandora " -#~ "FMS automatically, since the Update Manager does the task of getting new modules, " -#~ "new plugins and new features (even full migrations tools for future versions) " -#~ "automatically." +#~ "The new Update Manager " +#~ "client is shipped with Pandora FMS It helps system administrators to update " +#~ "their Pandora FMS automatically, since the Update Manager does the task of " +#~ "getting new modules, new plugins and new features (even full migrations " +#~ "tools for future versions) automatically." #~ msgstr "" -#~ "新しいアップデートマネージャク" -#~ "ライアントは、Pandora FMSと一緒にリリースされています。アップデートマネージャは、新" -#~ "規モジュール、新規プラグイン、新規機能を自動的に取得するもの(フルマイグレーション" -#~ "ツールは将来対応予定)であり、これによりシステム管理者がPandora FMSを自動的に更新す" -#~ "るのに役に立つでしょう。" +#~ "新しいアップデートマネー" +#~ "ジャクライアントは、Pandora FMSと一緒にリリースされています。アップデー" +#~ "トマネージャは、新規モジュール、新規プラグイン、新規機能を自動的に取得するも" +#~ "の(フルマイグレーションツールは将来対応予定)であり、これによりシステム管理者" +#~ "がPandora FMSを自動的に更新するのに役に立つでしょう。" #~ msgid "Correct updating of alert template" #~ msgstr "アラートテンプレートの更新内容を修正してください" @@ -53419,57 +55535,65 @@ msgstr "" #~ msgstr "全ポリシーアラートの承諾内容を修正してください。" #~ msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." -#~ msgstr "SNMPモジュールのポリシーへの追加エラー。id_policyが指定されていません。" +#~ msgstr "" +#~ "SNMPモジュールのポリシーへの追加エラー。id_policyが指定されていません。" #~ msgid "Error adding SNMP module to policy. Module_name cannot be left blank." -#~ msgstr "SNMPモジュールのポリシーへの追加エラー。module_nameが指定されていません。" +#~ msgstr "" +#~ "SNMPモジュールのポリシーへの追加エラー。module_nameが指定されていません。" #~ 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." +#~ "Error adding SNMP module to policy. Id_module_type is not correct for SNMP " +#~ "modules." #~ msgstr "" -#~ "SNMPモジュールのポリシーへの追加エラー。id_module_type が SNMP モジュール用になって" -#~ "いません。" +#~ "SNMPモジュールのポリシーへの追加エラー。id_module_type が SNMP モジュール用" +#~ "になっていません。" -#~ msgid "Error adding SNMP module to policy. The module is already in the policy." +#~ msgid "" +#~ "Error adding SNMP module to policy. The module is already in the policy." #~ msgstr "" -#~ "SNMPモジュールのポリシーへの追加エラー。モジュールはすでにポリシー内に存在します。" +#~ "SNMPモジュールのポリシーへの追加エラー。モジュールはすでにポリシー内に存在し" +#~ "ます。" #~ msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." #~ msgstr "ポリシー内のSNMPモジュール更新エラー。id_policyが指定されていません。" -#~ msgid "Error updating SNMP module in policy. Id_policy_module cannot be left blank." -#~ msgstr "ポリシー内のSNMPモジュール更新エラー。id_policy_moduleが指定されていません。" +#~ msgid "" +#~ "Error updating SNMP module in policy. Id_policy_module cannot be left blank." +#~ msgstr "" +#~ "ポリシー内のSNMPモジュール更新エラー。id_policy_moduleが指定されていません。" #~ 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 ではありません。" +#~ "ポリシー内のSNMPモジュール更新エラー。モジュールタイプが SNMP ではありませ" +#~ "ん。" #~ msgid "" -#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to 'AES' or " -#~ "'DES'. " +#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to " +#~ "'AES' or 'DES'. " #~ msgstr "" -#~ "SNMPモジュール更新エラー。snmp3_priv_methodがありません。'AES' または 'DES' を指定" -#~ "してください。 " +#~ "SNMPモジュール更新エラー。snmp3_priv_methodがありません。'AES' または 'DES' " +#~ "を指定してください。 " #~ msgid "" -#~ "Error updating SNMP module. snmp3_sec_level doesn't exists. Set it to 'authNoPriv' " -#~ "or 'authPriv' or 'noAuthNoPriv'. " +#~ "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'. " +#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to " +#~ "'MD5' or 'SHA'. " #~ msgstr "" -#~ "SNMPモジュール更新エラー。snmp3_auth_method がありません。'MD5' または 'SHA' を指定" -#~ "してください。 " +#~ "SNMPモジュール更新エラー。snmp3_auth_method がありません。'MD5' または " +#~ "'SHA' を指定してください。 " #~ msgid "Error applying policy. Id_policy cannot be left blank." #~ msgstr "ポリシー適用エラー。id_policy が指定されていません。" @@ -53531,45 +55655,48 @@ msgstr "" #~ msgstr "ITIL" #~ msgid "" -#~ "Error creating module from network component. Network component doesn't exists." +#~ "Error creating module from network component. Network component doesn't " +#~ "exists." #~ msgstr "" -#~ "ネットワークコンポーネントからのモジュール作成エラー。ネットワークコンポーネントが" -#~ "存在しません。" +#~ "ネットワークコンポーネントからのモジュール作成エラー。ネットワークコンポーネ" +#~ "ントが存在しません。" #~ msgid "Error creating module from network component. Agent doesn't exists." #~ msgstr "" -#~ "ネットワークコンポーネントからのモジュール作成エラー。エージェントが存在しません。" +#~ "ネットワークコンポーネントからのモジュール作成エラー。エージェントが存在しま" +#~ "せん。" #~ msgid "Error creating module from network component. Error creating module." -#~ msgstr "ネットワークコンポーネントからのモジュール作成エラー。モジュール作成エラー。" +#~ msgstr "" +#~ "ネットワークコンポーネントからのモジュール作成エラー。モジュール作成エラー。" #~ msgid "" -#~ "When the agent name have a lot of characters, in some places in Pandora Console it " -#~ "is necesary truncate to N characters." +#~ "When the agent name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "エージェント名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要" -#~ "があります。" +#~ "エージェント名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで" +#~ "切る必要があります。" #~ msgid "" -#~ "When the module name have a lot of characters, in some places in Pandora Console " -#~ "it is necesary truncate to N characters." +#~ "When the module name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "モジュール名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要が" +#~ "モジュール名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切" +#~ "る必要があります。" + +#~ msgid "" +#~ "When the description name have a lot of characters, in some places in " +#~ "Pandora Console it is necesary truncate to N characters." +#~ 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." +#~ "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 "" -#~ "When the item title name have a lot of characters, in some places in Pandora " -#~ "Console it is necesary truncate to N characters." -#~ msgstr "" -#~ "アイテムのタイトル名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切" -#~ "る必要があります。" +#~ "アイテムのタイトル名が長い場合、Pandora コンソールのいくつかの表示は N 文字" +#~ "までで切る必要があります。" #~ msgid "Blank characters are used as AND conditions" #~ msgstr "スペースは、AND 条件です。" @@ -53592,11 +55719,11 @@ msgstr "" #~ msgstr "インシデントを更新しました" #~ msgid "" -#~ "There was a problem updating the incident, please check if any field was modified " -#~ "and the values are correct." +#~ "There was a problem updating the incident, please check if any field was " +#~ "modified and the values are correct." #~ msgstr "" -#~ "インシデント更新にて問題が発生しました。修正したフィールドの値が正しいか確認してく" -#~ "ださい。" +#~ "インシデント更新にて問題が発生しました。修正したフィールドの値が正しいか確認" +#~ "してください。" #~ msgid "Incident created" #~ msgstr "インシデントを作成しました" @@ -53607,9 +55734,6 @@ msgstr "" #~ msgid "There was a problem uploading file" #~ msgstr "ファイルのアップロードに失敗しました" -#~ msgid "File deleted" -#~ msgstr "ファイルを削除しました" - #~ msgid "You user doesn't have enough rights to delete this file" #~ msgstr "このファイルを削除するための権限がありません" @@ -53620,23 +55744,24 @@ msgstr "" #~ msgstr "インシデントの削除に失敗しました" #~ msgid "" -#~ "When it is set as \"yes\" in some important sections check if the user have gone " -#~ "from url Pandora." +#~ "When it is set as \"yes\" in some important sections check if the user have " +#~ "gone from url Pandora." #~ msgstr "" -#~ "\"はい\" に設定すると、いくつかの重要なセクションで Pandora の URL から遷移してきた" -#~ "かどうかをチェックします。" +#~ "\"はい\" に設定すると、いくつかの重要なセクションで Pandora の URL から遷移" +#~ "してきたかどうかをチェックします。" #~ msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" #~ msgstr "" -#~ "GISマップでのエージェントアイコンです。\"なし\" に設定するとグループのアイコンが利" -#~ "用されます。" +#~ "GISマップでのエージェントアイコンです。\"なし\" に設定するとグループのアイコ" +#~ "ンが利用されます。" #~ msgid "" -#~ "This enabling this, you get a label with agent name in GIS maps. If you have lots " -#~ "of agents in the map, will be unreadable. Disabled by default." +#~ "This enabling this, you get a label with agent name in GIS maps. If you " +#~ "have lots of agents in the map, will be unreadable. Disabled by default." #~ msgstr "" -#~ "これを有効にすると、GISマップ内でエージェント名をラベルに付与します。マップ内に大量" -#~ "のエージェントがある場合は読みにくくなります。デフォルトでは無効です。" +#~ "これを有効にすると、GISマップ内でエージェント名をラベルに付与します。マップ" +#~ "内に大量のエージェントがある場合は読みにくくなります。デフォルトでは無効で" +#~ "す。" #~ msgid "All Modules deleted succesfully" #~ msgstr "すべてのモジュールを削除しました" @@ -53669,7 +55794,8 @@ msgstr "" #, php-format #~ msgid "There was a problem deleting %s modules, none deleted." #~ msgstr "" -#~ "%s 個のモジュール削除に失敗しました。いずれのモジュールも削除されていません。" +#~ "%s 個のモジュール削除に失敗しました。いずれのモジュールも削除されていませ" +#~ "ん。" #~ msgid "No Validated" #~ msgstr "未承諾" @@ -53678,11 +55804,12 @@ msgstr "" #~ msgstr "Pandora FMS モジュールライブラリから新しいモジュールを手に入れる" #~ 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." +#~ "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 "Events by criticity" #~ msgstr "重要度で分類したイベント" @@ -53719,7 +55846,8 @@ msgstr "" #~ msgstr "指定した間隔でデータは丸め込まれます。" #~ msgid "" -#~ "Maximum number of parent hosts that will be created if parent detection is enabled." +#~ "Maximum number of parent hosts that will be created if parent detection is " +#~ "enabled." #~ msgstr "親検出が有効の場合に、作成される親ホストの最大数です。" #~ msgid "Save by Pandora Console" @@ -53737,22 +55865,22 @@ 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" +#~ "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 " -#~ "を入力すると、エージェント詳細が表示されます。" +#~ "ユーザはホームページをカスタマイズできます。デフォルトでは、'エージェント詳" +#~ "細' が表示されます。例: 'その他' を選択し、sec=estado&sec2=operation/" +#~ "agentes/estado_agente を入力すると、エージェント詳細が表示されます。" #~ msgid "Error in agent enabling/disabling." #~ msgstr "エージェント有効化/無効化エラー" #~ msgid "" -#~ "By default, in Windows, Pandora FMS only support Standard network sweep, not " -#~ "custom scripts" +#~ "By default, in Windows, Pandora FMS only support Standard network sweep, " +#~ "not custom scripts" #~ msgstr "" -#~ "デフォルトでは、Windows においては Pandora FMS は標準のネットワーク探索のみの対応" -#~ "で、カスタムスクリプトは使えません。" +#~ "デフォルトでは、Windows においては Pandora FMS は標準のネットワーク探索のみ" +#~ "の対応で、カスタムスクリプトは使えません。" #~ msgid "Output format" #~ msgstr "出力フォーマット" @@ -53776,16 +55904,17 @@ msgstr "" #~ msgstr "静観: 以下に示すモジュールを無効化します。" #~ msgid "" -#~ "WARNING: If you edit this planned downtime, the data of future SLA reports may be " -#~ "altered" -#~ msgstr "警告: この計画停止を編集すると、今後の SLA レポートのデータが変わります" +#~ "WARNING: If you edit this planned downtime, the data of future SLA reports " +#~ "may be altered" +#~ msgstr "" +#~ "警告: この計画停止を編集すると、今後の SLA レポートのデータが変わります" #~ msgid "Only it is show when
the agent is saved." #~ msgstr "エージェントが保存されたときのみ
表示されます。" #~ msgid "" -#~ "WARNING: If you delete this planned downtime, it will not be taken into account in " -#~ "future SLA reports" +#~ "WARNING: If you delete this planned downtime, it will not be taken into " +#~ "account in future SLA reports" #~ msgstr "警告: この計画停止を削除すると、今後の SLA レポートに反映されません" #, php-format @@ -53857,18 +55986,18 @@ msgstr "" #~ msgstr "DEBUG: %s:%s に不正なモジュールタイプが指定されています" #~ msgid "" -#~ "Most likely you have recently upgraded from an earlier version of Pandora and " -#~ "either
\n" +#~ "Most likely you have recently upgraded from an earlier version of Pandora " +#~ "and either
\n" #~ "\t\t\t\t1) forgot to use the database converter
\n" -#~ "\t\t\t\t2) used a bad version of the database converter (see Bugreport #2124706 " -#~ "for the solution)
\n" +#~ "\t\t\t\t2) used a bad version of the database converter (see Bugreport " +#~ "#2124706 for the solution)
\n" #~ "\t\t\t\t3) found a new bug - please report a way to duplicate this error" #~ msgstr "" -#~ "Pandora の初期のバージョンからのアップグレードを実施しておlり、次のいずれかが考え" -#~ "られます。
\n" +#~ "Pandora の初期のバージョンからのアップグレードを実施しておlり、次のいずれか" +#~ "が考えられます。
\n" #~ "\t\t\t\t1) データベース変換の実行し忘れ
\n" -#~ "\t\t\t\t2) 正しくないバージョンのデータベース変換の利用 (解決方法はバグレポート " -#~ "#2124706 を参照)
\n" +#~ "\t\t\t\t2) 正しくないバージョンのデータベース変換の利用 (解決方法はバグレ" +#~ "ポート #2124706 を参照)
\n" #~ "\t\t\t\t3) 新たなバグ - このエラーを再現する方法をレポートしてください" #~ msgid "Module macros" @@ -53884,11 +56013,11 @@ msgstr "" #~ msgstr "モジュールはデータの保存を行いますが、アラートとイベントは停止します" #~ msgid "" -#~ "If cron is set the module interval is ignored and the module runs on the specified " -#~ "date and time" +#~ "If cron is set the module interval is ignored and the module runs on the " +#~ "specified date and time" #~ msgstr "" -#~ "cron が設定されている場合、モジュールの実行間隔は無視され、モジュールは指定された日" -#~ "時に実行されます。" +#~ "cron が設定されている場合、モジュールの実行間隔は無視され、モジュールは指定" +#~ "された日時に実行されます。" #~ msgid "Activate this to prevent the relation from being updated or deleted" #~ msgstr "更新や削除に対しても関係を維持するには、これを有効にしてください" @@ -53900,11 +56029,11 @@ msgstr "" #~ msgstr "いくつかの機能を利用するために必要です" #~ msgid "" -#~ "Please, install the SNMP remote plugin (The name of the plugin must be snmp_remote." -#~ "pl)" +#~ "Please, install the SNMP remote plugin (The name of the plugin must be " +#~ "snmp_remote.pl)" #~ msgstr "" -#~ "SNMP リモートプラグインをインストールしてください (プラグインの名前は snmp_remote." -#~ "pl である必要があります)" +#~ "SNMP リモートプラグインをインストールしてください (プラグインの名前は " +#~ "snmp_remote.pl である必要があります)" #~ msgid "Remote system doesnt support host SNMP information" #~ msgstr "リモートシステムは、ホスト SNMP 情報をサポートしていません。" @@ -53928,7 +56057,8 @@ msgstr "" #~ msgstr "モジュールを作成しました" #~ msgid "If the device is a network device, try with the SNMP Interfaces wizard" -#~ msgstr "ネットワークデバイスの場合は、SNMP インタフェースウィザードを試してください" +#~ msgstr "" +#~ "ネットワークデバイスの場合は、SNMP インタフェースウィザードを試してください" #~ msgid "Temperature sensors" #~ msgstr "温度センサー" @@ -53941,7 +56071,8 @@ msgstr "" #, php-format #~ msgid "Purge task launched for agent %s :: Data older than %s" -#~ msgstr "エージェント %s の削除タスクを起動しました。%s より古いデータが対象です。" +#~ msgstr "" +#~ "エージェント %s の削除タスクを起動しました。%s より古いデータが対象です。" #, php-format #~ msgid "Deleting records for module %s" @@ -53962,9 +56093,10 @@ msgstr "" #~ msgstr "Pandora における親子関係がマップに表示されます。" #~ msgid "" -#~ "Your report has been planned, and the system will email you a PDF with the report " -#~ "as soon as its finished" -#~ msgstr "レポートが予定されました。準備完了次第 PDF のレポートをメール送信します。" +#~ "Your report has been planned, and the system will email you a PDF with the " +#~ "report as soon as its finished" +#~ msgstr "" +#~ "レポートが予定されました。準備完了次第 PDF のレポートをメール送信します。" #~ msgid "Load default event fields" #~ msgstr "デフォルトイベントフィールドの読み込み" @@ -53992,30 +56124,30 @@ msgstr "" #~ msgstr "お待ちください..." #~ msgid "" -#~ "Set this value when your PandoraFMS across inverse proxy or for example with " -#~ "mod_proxy of Apache." +#~ "Set this value when your PandoraFMS across inverse proxy or for example " +#~ "with mod_proxy of Apache." #~ msgstr "" -#~ "Pandora FMS がリバースプロキシ配下にある場合や Apache の mod_proxy などを利用してい" -#~ "る場合などに、この値を設定してください。" +#~ "Pandora FMS がリバースプロキシ配下にある場合や Apache の mod_proxy などを利" +#~ "用している場合などに、この値を設定してください。" #~ msgid "" -#~ "If set to yes no events or alerts will be generated, but agents will continue " -#~ "receiving data." +#~ "If set to yes no events or alerts will be generated, but agents will " +#~ "continue receiving data." #~ msgstr "" -#~ "「はい」に設定すると、イベントやアラートは生成されませんがエージェントはデータの受" -#~ "信を継続します。" +#~ "「はい」に設定すると、イベントやアラートは生成されませんがエージェントはデー" +#~ "タの受信を継続します。" #~ msgid "Directory where the server logs are stored." #~ msgstr "サーバのログを保存するディレクトリ。" #~ msgid "" -#~ "Configuration of our clippy, 'full mode' show the icon in the header and the " -#~ "contextual helps and it is noise, 'on demand' it is equal to full but it is not " -#~ "noise and 'expert' the icons in the header and the context is not." +#~ "Configuration of our clippy, 'full mode' show the icon in the header and " +#~ "the contextual helps and it is noise, 'on demand' it is equal to full but " +#~ "it is not noise and 'expert' the icons in the header and the context is not." #~ msgstr "" -#~ "アシスタントの設定です。'フルモード' はヘッダーにアイコンとヘルプが表示されうるさい" -#~ "感じになます。'オンデマンド' はフルモードと同じですがうるさくはありません。'上級" -#~ "者' はヘッダーにアイコンとヘルプが表示されません。" +#~ "アシスタントの設定です。'フルモード' はヘッダーにアイコンとヘルプが表示され" +#~ "うるさい感じになます。'オンデマンド' はフルモードと同じですがうるさくはあり" +#~ "ません。'上級者' はヘッダーにアイコンとヘルプが表示されません。" #~ msgid "Allow create planned downtimes in the past" #~ msgstr "終了した計画停止の作成を許可する" @@ -54023,15 +56155,19 @@ msgstr "" #~ msgid "The planned downtimes created in the past will affect the SLA reports" #~ msgstr "終了した計画停止の作成は SLA レポートに影響します" -#~ msgid "This interval will affect to the lines between elements on the Visual Console" +#~ msgid "" +#~ "This interval will affect to the lines between elements on the Visual " +#~ "Console" #~ 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." +#~ "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 "" -#~ "カスタムロゴのディレクトリは、Pandora コンソールの \"images/custom_logo\" です。コ" -#~ "ンソールのアップロードツールを使って、ファイル(JPEG)をアップロードできます。" +#~ "カスタムロゴのディレクトリは、Pandora コンソールの \"images/custom_logo\" で" +#~ "す。コンソールのアップロードツールを使って、ファイル(JPEG)をアップロードでき" +#~ "ます。" #~ msgid "Paginate module view" #~ msgstr "モジュール表示をページ分割" @@ -54055,31 +56191,32 @@ msgstr "" #~ msgstr "Netflow データファイルをローテートする時間間隔を秒で指定します。" #~ 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." +#~ "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 "" -#~ "Netflow グラフが表示される最大ポイント数です。大きくすると解像度がよくなります。50 " -#~ "から 100 の間の値を推奨します。" +#~ "Netflow グラフが表示される最大ポイント数です。大きくすると解像度がよくなりま" +#~ "す。50 から 100 の間の値を推奨します。" #~ msgid "Sets the maximum lifetime for netflow data in days." #~ msgstr "Netflow データを保持する最大期間を日数で設定します。" #~ msgid "" -#~ "Enable this option if you want to fallback to local authentication when remote " -#~ "(ldap etc...) authentication failed." +#~ "Enable this option if you want to fallback to local authentication when " +#~ "remote (ldap etc...) authentication failed." #~ msgstr "" -#~ "リモート(ldapなど)認証が失敗した場合にローカル認証にフォールバックしたい場合は、こ" -#~ "のオプションを有効にします。" +#~ "リモート(ldapなど)認証が失敗した場合にローカル認証にフォールバックしたい場合" +#~ "は、このオプションを有効にします。" #~ msgid "" -#~ "If the compaction or purge of the data is more frequent than the events deletion, " -#~ "anomalies in module graphs could appear" +#~ "If the compaction or purge of the data is more frequent than the events " +#~ "deletion, anomalies in module graphs could appear" #~ msgstr "" -#~ "イベントの削除よりもデータの削除が短い場合、モジュールグラフの表示がおかしくなる可" -#~ "能性があります" +#~ "イベントの削除よりもデータの削除が短い場合、モジュールグラフの表示がおかしく" +#~ "なる可能性があります" #~ msgid "" -#~ "Configure a purge period more frequent than a compact data period has no sense" +#~ "Configure a purge period more frequent than a compact data period has no " +#~ "sense" #~ msgstr "データの圧縮よりも削除を短くすることには意味がありません" #~ msgid "To get your Pandora FMS Enterprise License:" @@ -54091,20 +56228,20 @@ msgstr "" #, php-format #~ msgid "" -#~ "Your PHP has set memory limit in %s. For avoid problems with big updates please " -#~ "set to 500M" +#~ "Your PHP has set memory limit in %s. For avoid problems with big updates " +#~ "please set to 500M" #~ msgstr "" -#~ "PHP のメモリ制限が %s に設定されています。大きな更新における問題を避けるためには、" -#~ "500M に設定してください。" +#~ "PHP のメモリ制限が %s に設定されています。大きな更新における問題を避けるため" +#~ "には、500M に設定してください。" #~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number of " -#~ "agents and modules running). To disable it, remove remote server address from " -#~ "Update Manager plugin setup." +#~ "Update Manager sends anonymous information about Pandora FMS usage (number " +#~ "of agents and modules running). To disable it, remove remote server address " +#~ "from Update Manager plugin setup." #~ msgstr "" -#~ "アップデートマネージャは、匿名で Pandora FMS の利用状況 (動作中のエージェントおよび" -#~ "モジュール数) を送信します。これを無効にするには、アップデートマネージャプラグイン" -#~ "の設定で、リモートサーバアドレスを削除します。" +#~ "アップデートマネージャは、匿名で Pandora FMS の利用状況 (動作中のエージェン" +#~ "トおよびモジュール数) を送信します。これを無効にするには、アップデートマネー" +#~ "ジャプラグインの設定で、リモートサーバアドレスを削除します。" #~ msgid "Checking for the newest package." #~ msgstr "最新パッケージの確認中。" @@ -54116,11 +56253,11 @@ msgstr "" #~ msgstr "ブラウズしてください" #~ msgid "" -#~ "Remember that this package will override the actual Pandora FMS files and it is " -#~ "recommended to do a backup before continue with the update." +#~ "Remember that this package will override the actual Pandora FMS files and " +#~ "it is recommended to do a backup before continue with the update." #~ msgstr "" -#~ "このパッケージは既存の Pandora FMS ファイルを上書きすることに注意してください。アッ" -#~ "プデートを実行する前にバックアップを取得してください。" +#~ "このパッケージは既存の Pandora FMS ファイルを上書きすることに注意してくださ" +#~ "い。アップデートを実行する前にバックアップを取得してください。" #~ msgid "Updating" #~ msgstr "更新中" @@ -54128,7 +56265,8 @@ msgstr "" #~ msgid "Package updated successfully." #~ msgstr "パッケージを更新しました。" -#~ msgid "If there are any database change, it will be applied on the next login." +#~ msgid "" +#~ "If there are any database change, it will be applied on the next login." #~ msgstr "データベース変更がある場合は、次回のログイン時に適用されます。" #~ msgid "Package not updated." @@ -54147,15 +56285,15 @@ msgstr "" #~ msgstr "サービスの更新エラー" #~ msgid "" -#~ "In manual mode you should set the weights manually. In auto mode the weights have " -#~ "default values.\n" -#~ "\t\tIn simple mode only the elements configured as \"critical element\" are used " -#~ "to calculate the service status." +#~ "In manual mode you should set the weights manually. In auto mode the " +#~ "weights have default values.\n" +#~ "\t\tIn simple mode only the elements configured as \"critical element\" are " +#~ "used to calculate the service status." #~ msgstr "" -#~ "マニュアルモードではウエイトを手動で設定する必要があります。自動モードではウエイト" -#~ "はデフォルトの値があります。\n" -#~ "\t\tシンプルモードでは、\"障害要素\"として設定したもののみがサービスの状態計算に利" -#~ "用されます。" +#~ "マニュアルモードではウエイトを手動で設定する必要があります。自動モードではウ" +#~ "エイトはデフォルトの値があります。\n" +#~ "\t\tシンプルモードでは、\"障害要素\"として設定したもののみがサービスの状態計" +#~ "算に利用されます。" #~ msgid "This values are by default because the service is auto calculate mode." #~ msgstr "サービスが自動計算モードのため、デフォルト値です。" @@ -54175,9 +56313,6 @@ msgstr "" #~ msgid "Error empty module" #~ msgstr "モジュールが空です" -#~ msgid "Error empty agent" -#~ msgstr "エージェントが空です" - #~ msgid "Error empty service" #~ msgstr "サービスが空です" @@ -54208,14 +56343,16 @@ msgstr "" #~ msgid "Ok weight" #~ msgstr "正常ウエイト" -#~ msgid "Only the critical elements are relevant to calculate the service status" +#~ msgid "" +#~ "Only the critical elements are relevant to calculate the service status" #~ msgstr "障害状態のもののみがサービス状態の計算に使われます" #~ msgid "" #~ "Maybe delete the extended data or the audit data is previous to table " #~ "tsession_extended." #~ msgstr "" -#~ "拡張データが削除されているか、監査データが tsession_extended テーブルにありません。" +#~ "拡張データが削除されているか、監査データが tsession_extended テーブルにあり" +#~ "ません。" #~ msgid "7 days" #~ msgstr "7日" @@ -54299,11 +56436,11 @@ msgstr "" #~ msgstr "読んでください" #~ msgid "" -#~ "Since the alert can have multiple actions. You can edit them from the alert list " -#~ "of events." +#~ "Since the alert can have multiple actions. You can edit them from the alert " +#~ "list of events." #~ msgstr "" -#~ "アラートは複数のアクションを持てます。イベントのアラート一覧から編集することができ" -#~ "ます。" +#~ "アラートは複数のアクションを持てます。イベントのアラート一覧から編集すること" +#~ "ができます。" #~ msgid "Event rules" #~ msgstr "イベントルール" @@ -54375,32 +56512,33 @@ msgstr "" #~ msgid "Number of days before data is transfered to history database." #~ msgstr "ヒストリデータベースへのデータ転送を行わない日数" -#~ msgid "Data size of mechanism used to transfer data (similar to a data buffer.)" +#~ msgid "" +#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" #~ msgstr "データ転送に利用するデータサイズ (データバッファのようなもの)" #~ msgid "Time interval between data transfer." #~ msgstr "データ転送の時間間隔" #~ msgid "" -#~ "Before activating this option check your ACL Setup. You may lose access to the " -#~ "console." +#~ "Before activating this option check your ACL Setup. You may lose access to " +#~ "the console." #~ msgstr "" -#~ "このオプションを有効化する前に ACL 設定を確認してください。コンソールへのアクセスが" -#~ "できなくなる可能性があります。" +#~ "このオプションを有効化する前に ACL 設定を確認してください。コンソールへのア" +#~ "クセスができなくなる可能性があります。" #~ msgid "" -#~ "The inventory modules included in the changes blacklist will not generate events " -#~ "when change." +#~ "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." +#~ "Rules applied to the management of passwords. This policy applies to all " +#~ "users except the administrator." #~ msgstr "" -#~ "パスワード管理に適用するルールです。このポリシーは、管理者以外の全ユーザに適用され" -#~ "ます。" +#~ "パスワード管理に適用するルールです。このポリシーは、管理者以外の全ユーザに適" +#~ "用されます。" #~ msgid "Remote Pandora FMS" #~ msgstr "リモートの Pandora FMS" @@ -54419,23 +56557,25 @@ msgstr "" #, php-format #~ msgid "" -#~ "License out of limits

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

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

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

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

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

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

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

Artica (info@artica.es) まで" +#~ "ライセンスに関してお問い合わせください:" #~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "ライセンスの更新は、Artica (info@artica.es) までお問い合わせください。" +#~ msgstr "" +#~ "ライセンスの更新は、Artica (info@artica.es) までお問い合わせください。" #~ msgid "Top N Events by agent." #~ msgstr "エージェントごとのトップ N イベント" @@ -54446,9 +56586,6 @@ msgstr "" #~ msgid "Latest events list" #~ msgstr "最新のイベント一覧" -#~ msgid "Map made by user" -#~ msgstr "ユーザ作成マップ" - #~ msgid "Show a map made by user" #~ msgstr "ユーザ作成マップの表示" @@ -54473,7 +56610,8 @@ msgstr "" #~ msgid "Show a top n of agents modules." #~ msgstr "エージェントモジュールのトップ N 表示" -#~ msgid "Please could you fill the widget data previous to filling the list items." +#~ msgid "" +#~ "Please could you fill the widget data previous to filling the list items." #~ msgstr "アイテム一覧の前に、ウィジェットデータを入力してください。" #~ msgid "Selection module one by one" @@ -54558,7 +56696,8 @@ msgstr "" #~ msgstr "ダッシュボードの複製" #~ msgid "Not copyed. Error copying data. You must select a dashboard" -#~ msgstr "コピーできません。データコピーエラーです。ダッシュボードを選択してください。" +#~ msgstr "" +#~ "コピーできません。データコピーエラーです。ダッシュボードを選択してください。" #~ msgid "Not copyed. Error copying data" #~ msgstr "コピーできません。データコピーエラーです。" @@ -54653,9 +56792,6 @@ msgstr "" #~ msgid "Components synchronization" #~ msgstr "コンポーネント同期" -#~ msgid "Tags synchronization" -#~ msgstr "タグ同期" - #, php-format #~ msgid "Error updating user %s" #~ msgstr "ユーザ %s の更新エラー" @@ -54674,8 +56810,8 @@ msgstr "" #, php-format #~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user profiles (%d/" -#~ "%d/%d)" +#~ "Error creating/updating the followings elements groups/profiles/user " +#~ "profiles (%d/%d/%d)" #~ msgstr "グループ/プロファイル/ユーザの要素の作成・更新エラー (%d/%d/%d)" #, php-format @@ -54723,7 +56859,8 @@ msgstr "" #~ msgid "Visual" #~ msgstr "表示" -#~ msgid "Complete path to Pandora console without last \"/\" character. Example " +#~ msgid "" +#~ "Complete path to Pandora console without last \"/\" character. Example " #~ msgstr "最後の \"/\" を除いた Pandora コンソールの完全パス。例 " #~ msgid "There aren't server added to metaconsole" @@ -54791,10 +56928,11 @@ msgstr "" #~ msgstr "ソース DB のエージェントを無効化しました" #~ msgid "" -#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora Console." +#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " +#~ "Console." #~ msgstr "" -#~ "Pandora コンソールで \"APIアクセスを許可するIPアドレスリスト\" にメタコンソールの " -#~ "IP が設定されていない可能性があります。" +#~ "Pandora コンソールで \"APIアクセスを許可するIPアドレスリスト\" にメタコン" +#~ "ソールの IP が設定されていない可能性があります。" #~ msgid "Successfully moved" #~ msgstr "移動しました" @@ -54803,13 +56941,13 @@ msgstr "" #~ msgstr "移動できませんでした" #~ msgid "" -#~ "Destination group is the same than in the original server, if there is not any " -#~ "group with that name, will be created if check box is selected. Destination group " -#~ "filter is just used to check agents in that group" +#~ "Destination group is the same than in the original server, if there is not " +#~ "any group with that name, will be created if check box is selected. " +#~ "Destination group filter is just used to check agents in that group" #~ msgstr "" -#~ "移行先のグループは移行元サーバと同じになります。同じ名前のグループが無い場合、" -#~ "チェックボックスがチェックされていると作成されます。移行先のグループフィルタは、" -#~ "エージェントがグループにあるかどうかのみのチェックに利用されます。" +#~ "移行先のグループは移行元サーバと同じになります。同じ名前のグループが無い場" +#~ "合、チェックボックスがチェックされていると作成されます。移行先のグループフィ" +#~ "ルタは、エージェントがグループにあるかどうかのみのチェックに利用されます。" #~ msgid "Based on name" #~ msgstr "名前ベース" @@ -54823,8 +56961,8 @@ msgstr "" #~ msgstr "Pandora FMS の利用には、以下を使うことを強くお勧めします" #~ msgid "" -#~ "Mozilla Firefox or Google Chrome browsers." +#~ "Mozilla Firefox or " +#~ "Google Chrome browsers." #~ msgstr "" #~ "Mozilla Firefox または Google Chrome ブラウザ。" @@ -54952,7 +57090,8 @@ msgstr "" #~ msgstr "Cron 拡張は、正しく設定しないと動作しません" #~ msgid "" -#~ "This extension relies on a proper setup of cron, the time-based scheduling service" +#~ "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" @@ -54968,8 +57107,8 @@ msgstr "" #~ "Maybe the first run is not exactly equal to this value because the cron " #~ "configuration is diferent." #~ msgstr "" -#~ "cron の設置と異なることにより、初回の実行は正確にこのタイミングにならない可能性があ" -#~ "ります。" +#~ "cron の設置と異なることにより、初回の実行は正確にこのタイミングにならない可" +#~ "能性があります。" #~ msgid "First execution" #~ msgstr "初回実行" @@ -55039,7 +57178,8 @@ msgstr "" #~ msgstr "モジュールがありません。" #~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "Pandora データベースバックアップのリストは、手動実行する必要があります" +#~ msgstr "" +#~ "Pandora データベースバックアップのリストは、手動実行する必要があります" #~ msgid "Run import command using the following command" #~ msgstr "次のコマンドを使って、インポートコマンドを実行します" @@ -55073,15 +57213,15 @@ msgstr "" #~ "\"Translate string\" extension is missed in the server. This extension is " #~ "mandatory to be configured on metaconsole." #~ msgstr "" -#~ "\"文字列翻訳\" 拡張がサーバにありません。この拡張はメタコンソールでの設定が必須で" -#~ "す。" +#~ "\"文字列翻訳\" 拡張がサーバにありません。この拡張はメタコンソールでの設定が" +#~ "必須です。" #~ msgid "" -#~ "Server name doesnt match. Check the node server name and configure the same one on " -#~ "metasetup" +#~ "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 "サービスを保存するモジュールがありません。" @@ -55120,13 +57260,13 @@ msgstr "" #~ msgstr "パスワードの更新エラー (変更なし?)" #~ 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!" +#~ "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!" #~ msgstr "" -#~ "初めての Pandora FMS の利用であれば、Pandora FMS に関して学べるいくつかのリンクを紹" -#~ "介します。強力な監視ができますが、Pandora FMS の能力を使いこなすには時間が必要で" -#~ "す。" +#~ "初めての Pandora FMS の利用であれば、Pandora FMS に関して学べるいくつかのリ" +#~ "ンクを紹介します。強力な監視ができますが、Pandora FMS の能力を使いこなすには" +#~ "時間が必要です。" #~ msgid "Go to Pandora FMS Website" #~ msgstr "Pandora FMS のウェブサイトへ" @@ -55135,26 +57275,27 @@ msgstr "" #~ "Pandora FMS frontend is built on advanced, modern technologies and does not " #~ "support old browsers." #~ msgstr "" -#~ "Pandora FMS のフロントエンドには新しい技術が使われているため、古いブラウザはサポー" -#~ "トしていません。" +#~ "Pandora FMS のフロントエンドには新しい技術が使われているため、古いブラウザは" +#~ "サポートしていません。" #~ msgid "" -#~ "It is highly recommended that you choose and install a modern browser. It is free " -#~ "of charge and only takes a couple of minutes." +#~ "It is highly recommended that you choose and install a modern browser. It " +#~ "is free of charge and only takes a couple of minutes." #~ msgstr "" -#~ "新しいブラウザをインストールすることを強くお勧めします。無料ですし数分で完了しま" -#~ "す。" +#~ "新しいブラウザをインストールすることを強くお勧めします。無料ですし数分で完了" +#~ "します。" #~ msgid "Why is it recommended to upgrade the web browser?" #~ msgstr "なぜブラウザのアップグレードを推奨するのでしょうか?" #~ msgid "" -#~ "New browsers usually come with support for new technologies, increasing web page " -#~ "speed, better privacy settings and so on. They also resolve security and " -#~ "functional issues." +#~ "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 "警告を無視して続ける" @@ -55184,9 +57325,11 @@ msgstr "" #~ msgstr "バイト/秒" #~ msgid "" -#~ "Agent statuses are re-calculated by the server, they are not shown in real time." +#~ "Agent statuses are re-calculated by the server, they are not shown in real " +#~ "time." #~ msgstr "" -#~ "サーバにてエージェント状態が再計算されました。リアルタイムでは表示されません。" +#~ "サーバにてエージェント状態が再計算されました。リアルタイムでは表示されませ" +#~ "ん。" #~ msgid "one combined graph" #~ msgstr "一つの組み合わせグラフ" @@ -55207,9 +57350,11 @@ msgstr "" #~ msgstr "L2 ネットワークインタフェース" #~ msgid "" -#~ "Show events is disabled because this Pandora node is set the event replication." +#~ "Show events is disabled because this Pandora node is set the event " +#~ "replication." #~ msgstr "" -#~ "この Pandora ノードは、イベントの複製が設定されているためイベント表示は無効です。" +#~ "この Pandora ノードは、イベントの複製が設定されているためイベント表示は無効" +#~ "です。" #~ msgid "Show event graph" #~ msgstr "イベントグラフ表示" @@ -55233,22 +57378,25 @@ msgstr "" #~ msgstr "ショートカットバー" #~ msgid "" -#~ "This will activate a shortcut bar with alerts, events, messages... information" -#~ msgstr "アラート、イベント、メッセージ等の情報でショートカットバーを有効にします。" +#~ "This will activate a shortcut bar with alerts, events, messages... " +#~ "information" +#~ msgstr "" +#~ "アラート、イベント、メッセージ等の情報でショートカットバーを有効にします。" #~ msgid "Helps" #~ msgstr "ヘルプ" #, php-format #~ msgid "" -#~ "You can find more help in the Pandora's wiki" +#~ "You can find more help in the Pandora's wiki" #~ msgstr "" -#~ "より詳細は、Pandora の wikiを参照してください" +#~ "より詳細は、Pandora の " +#~ "wikiを参照してください" #~ msgid "" -#~ "There is a error in the message from your Integria or there is not connection." +#~ "There is a error in the message from your Integria or there is not " +#~ "connection." #~ msgstr "Integria からのメッセージにエラーがあるか、接続できません。" #~ msgid "Opened tickets" @@ -55261,11 +57409,11 @@ msgstr "" #~ msgstr "エージェントに IP がありません" #~ msgid "" -#~ "You can set the command path in the menu Administration -> Extensions -> " -#~ "Config Network Tools" +#~ "You can set the command path in the menu Administration -> Extensions -" +#~ "> Config Network Tools" #~ msgstr "" -#~ "コマンドのパスは、システム管理 -> 拡張 -> ネットワークツール設定 で設定できま" -#~ "す。" +#~ "コマンドのパスは、システム管理 -> 拡張 -> ネットワークツール設定 で設" +#~ "定できます。" #~ msgid "Config Network Tools" #~ msgstr "ネットワークツール設定" @@ -55345,26 +57493,27 @@ msgstr "" #~ msgstr "メール送信タスクのメール設定はこのファイルにあります:" #~ 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." +#~ "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 "" -#~ "自己紹介をさせてください。私は Pandora FMS のおせっかいなアシスタント Pandorin で" -#~ "す。Pandora FMS の基本的な操作をお教えします。私を閉じて再表示しないようにもできま" -#~ "す。" +#~ "自己紹介をさせてください。私は Pandora FMS のおせっかいなアシスタント " +#~ "Pandorin です。Pandora FMS の基本的な操作をお教えします。私を閉じて再表示し" +#~ "ないようにもできます。" #~ msgid "Ping to a Linux or Windows server with a Pandora FMS agent" -#~ msgstr "Pandora FMS エージェントで Linux または Windows サーバに ping を実行します" +#~ msgstr "" +#~ "Pandora FMS エージェントで Linux または Windows サーバに ping を実行します" #~ msgid "" -#~ "The first thing you have to do is to setup the config email in the Pandora FMS " -#~ "Server." +#~ "The first thing you have to do is to setup the config email in the Pandora " +#~ "FMS Server." #~ msgstr "最初にやるべきことは、Pandora FMS サーバでの email の設定です。" #~ msgid "Error updating data module in policy. Module type is not network type." #~ msgstr "" -#~ "ポリシー内のデータモジュールの更新エラー。モジュールタイプがネットワークタイプでは" -#~ "ありません。" +#~ "ポリシー内のデータモジュールの更新エラー。モジュールタイプがネットワークタイ" +#~ "プではありません。" #~ msgid "Error in netflow filter creation. Filter name cannot be left blank." #~ msgstr "Netflow フィルタ作成エラー。フィルタ名が空です。" @@ -55433,85 +57582,89 @@ msgstr "" #~ msgstr "Pandora FMS データベースに問題があります" #~ msgid "" -#~ "Cannot connect to the database, please check your database setup in the include/" -#~ "config.php file.

\n" -#~ "\t\t\tProbably your database, hostname, user or password values are incorrect or \n" +#~ "Cannot connect to the database, please check your database setup in the " +#~ "include/config.php file.

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

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

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

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

Pandora FMS Console cannot find include/config.php or this " -#~ "file has invalid\n" -#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation to fix " -#~ "this problem.
" +#~ "\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

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

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

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

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

または、Pandora FMS コンソールが include/config.php " +#~ "ファイルを見つけられないか、このファイルが不正な\n" +#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決に" +#~ "はドキュメントを参照してください。
" #~ msgid "" #~ "Pandora FMS Console cannot find include/config.php or this file has " #~ "invalid\n" -#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation to fix " -#~ "this problem." +#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " +#~ "to fix this problem." #~ msgstr "" -#~ "Pandora FMS コンソールが include/config.php ファイルを見つけられないか、この" -#~ "ファイルが不正な\n" -#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決にはドキュ" -#~ "メントを参照してください。
" +#~ "Pandora FMS コンソールが include/config.php ファイルを見つけられない" +#~ "か、このファイルが不正な\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 ./install.php file before running Pandora FMS " -#~ "Console." +#~ "For security reasons, normal operation is not possible until you delete " +#~ "installer file.\n" +#~ "\t\t\tPlease delete the ./install.php file before running Pandora " +#~ "FMS Console." #~ msgstr "" -#~ "セキュリティ上の理由から、インストーラファイルを削除するまで通常の動作にはなりませ" -#~ "ん。\n" -#~ "\t\t\t Pandora FMS コンソールを実行する前に ./install.phpファイルを削除して" -#~ "ください。" +#~ "セキュリティ上の理由から、インストーラファイルを削除するまで通常の動作にはな" +#~ "りません。\n" +#~ "\t\t\t Pandora FMS コンソールを実行する前に ./install.phpファイルを削" +#~ "除してください。" #~ msgid "" -#~ "For security reasons, config.php must have restrictive permissions, 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 include/config.php file. Please do it, it is for your " -#~ "security." +#~ "For security reasons, config.php must have restrictive permissions, " +#~ "and \"other\" users \n" +#~ "\t\t\tshould not read it or write to it. It should be written only for " +#~ "owner \n" +#~ "\t\t\t(usually www-data or http daemon user), normal operation is not " +#~ "possible until you change \n" +#~ "\t\t\tpermissions for include/config.php file. Please do it, it is " +#~ "for your security." #~ msgstr "" -#~ "セキュリティ上の理由から、 config.php はパーミッションを制限する必要がありま" -#~ "す。\"other\" ユーザは\n" -#~ "\t\t\t 読み書きできてはいけません。owner (通常は www-data や http デーモンユーザ)で" -#~ "のみ書き込み\n" -#~ "\t\t\t 可能にする必要があります。include/config.php のパーミッションを変更し" -#~ "ないと、通常の動作\n" +#~ "セキュリティ上の理由から、 config.php はパーミッションを制限する必要" +#~ "があります。\"other\" ユーザは\n" +#~ "\t\t\t 読み書きできてはいけません。owner (通常は www-data や http デーモン" +#~ "ユーザ)でのみ書き込み\n" +#~ "\t\t\t 可能にする必要があります。include/config.php のパーミッション" +#~ "を変更しないと、通常の動作\n" #~ "\t\t\t にはなりません。セキュリティのために調整を実施してください。" #~ msgid "Auto Save" @@ -55521,11 +57674,11 @@ msgstr "" #~ msgstr "保存できませんでした" #~ msgid "" -#~ "You can not delete the last group in Pandora. A common installation must has " -#~ "almost one group." +#~ "You can not delete the last group in Pandora. A common installation must " +#~ "has almost one group." #~ msgstr "" -#~ "最後のグループは削除できません。通常、1つはグループが設定されていなければなりませ" -#~ "ん。" +#~ "最後のグループは削除できません。通常、1つはグループが設定されていなければな" +#~ "りません。" #~ msgid "There is a unknown error." #~ msgstr "不明なエラーがあります。" @@ -55606,11 +57759,11 @@ msgstr "" #~ msgstr "PHP safe モードが有効です。いくつかの機能は正しく動作しません。" #~ msgid "" -#~ "To disable, change it on your PHP configuration file (php.ini) and put safe_mode = " -#~ "Off (Dont forget restart apache process after changes)" +#~ "To disable, change it on your PHP configuration file (php.ini) and put " +#~ "safe_mode = Off (Dont forget restart apache process after changes)" #~ msgstr "" -#~ "無効化するには、PHP 設定ファイル (php.ini) を変更し、safe_mode = Off を設定しま" -#~ "す。 (変更後、apache プロセスの再起動を忘れずに行ってください)" +#~ "無効化するには、PHP 設定ファイル (php.ini) を変更し、safe_mode = Off を設定" +#~ "します。 (変更後、apache プロセスの再起動を忘れずに行ってください)" #~ msgid "For to view the list modules paginated, set in setup visuals." #~ msgstr "ページ分割されたモジュール一覧表示は、画面設定で設定してください。" @@ -55619,8 +57772,10 @@ msgstr "" #~ msgstr "イベント情報 (1時間)" #~ msgid "" -#~ "Event storm protection is activated. No events will be generated during this mode." -#~ msgstr "イベントストーム保護が有効です。このモードではイベントが生成されません。" +#~ "Event storm protection is activated. No events will be generated during " +#~ "this mode." +#~ msgstr "" +#~ "イベントストーム保護が有効です。このモードではイベントが生成されません。" #~ msgid "You need to restart server after altering this configuration setting." #~ msgstr "この設定を変更したあとは、サーバを再起動する必要があります。" @@ -55645,27 +57800,28 @@ msgstr "" #, 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" +#~ "Your PHP has set maximum allowed size for uploaded files limit in %s. For " +#~ "avoid problems with big updates please set to 100M" #~ msgstr "" -#~ "PHP の設定で、最大アップロードファイルサイズが %s に制限されています。大きな更新時" -#~ "に問題にならないよう、100M に設定してください。" +#~ "PHP の設定で、最大アップロードファイルサイズが %s に制限されています。大きな" +#~ "更新時に問題にならないよう、100M に設定してください。" #, php-format #~ msgid "" -#~ "Your PHP has set post parameter max size limit in %s. For avoid problems with big " -#~ "updates please set to 100M" +#~ "Your PHP has set post parameter max size limit in %s. For avoid problems " +#~ "with big updates please set to 100M" #~ msgstr "" -#~ "PHP の設定で、ポストデータの最大サイズが %s に制限されています。大きな更新時に問題" -#~ "にならないよう、100M に設定してください。" +#~ "PHP の設定で、ポストデータの最大サイズが %s に制限されています。大きな更新時" +#~ "に問題にならないよう、100M に設定してください。" #~ msgid "Module data received" #~ msgstr "データ受信モジュール" -#~ msgid "Unsucessful delete profile. Because the profile is used by some admin users." +#~ msgid "" +#~ "Unsucessful delete profile. Because the profile is used by some admin users." #~ msgstr "" -#~ "プロファイル削除に失敗しました。プロファイルがいくつかの管理者ユーザで使われいま" -#~ "す。" +#~ "プロファイル削除に失敗しました。プロファイルがいくつかの管理者ユーザで使われ" +#~ "います。" #~ msgid "Unsuccessfull multiple delete." #~ msgstr "複数削除に失敗しました。" @@ -55700,10 +57856,11 @@ msgstr "" #~ msgstr "%s グループ更新エラー" #~ msgid "" -#~ "The user doesn't have permission to read agents. Please contact with your pandora " -#~ "administrator." +#~ "The user doesn't have permission to read agents. Please contact with your " +#~ "pandora administrator." #~ msgstr "" -#~ "ユーザにエージェントを参照する権限がありません。pandora管理者に連絡してください。" +#~ "ユーザにエージェントを参照する権限がありません。pandora管理者に連絡してくだ" +#~ "さい。" #~ msgid "Please choose other server." #~ msgstr "他のサーバを選択してください。" @@ -55752,17 +57909,18 @@ msgstr "" #, php-format #~ msgid "" -#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not set this " -#~ "value with upper values." +#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not " +#~ "set this value with upper values." #~ msgstr "" -#~ "PHP の max_input_vars が %d に設定されています。この値は大きく設定してはいけませ" -#~ "ん。" +#~ "PHP の max_input_vars が %d に設定されています。この値は大きく設定してはいけ" +#~ "ません。" #~ msgid "" -#~ "If this option is enabled, the users can use double authentication with their " -#~ "accounts" +#~ "If this option is enabled, the users can use double authentication with " +#~ "their accounts" #~ msgstr "" -#~ "このオプションを有効にすると、ユーザはアカウントの二段階認証を使うことができます。" +#~ "このオプションを有効にすると、ユーザはアカウントの二段階認証を使うことができ" +#~ "ます。" #~ msgid "This is defined in minutes" #~ msgstr "分単位で設定します" @@ -55789,11 +57947,11 @@ msgstr "" #~ msgstr "厳重な ACL" #~ 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" +#~ "With this option enabled, the user will can access to accurate information. " +#~ "It is not recommended for admin users because performance could be affected" #~ msgstr "" -#~ "このオプションを有効にすると、ユーザは指定の範囲の情報にのみアクセスすることができ" -#~ "ます。パフォーマンスに影響するため、管理者ユーザではお勧めしません。" +#~ "このオプションを有効にすると、ユーザは指定の範囲の情報にのみアクセスすること" +#~ "ができます。パフォーマンスに影響するため、管理者ユーザではお勧めしません。" #~ msgid "No tag selected" #~ msgstr "タグが選択されていません" @@ -55817,48 +57975,56 @@ msgstr "" #~ msgstr "DB Pandora にはすべてのテーブルが揃っています" #, php-format -#~ msgid "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" -#~ msgstr "DB Pandora にはすべてのテーブルが揃っていません。不足テーブルは (%s) です。" - -#, php-format -#~ msgid "Unsuccessful the field %s in the table %s must be setted the type with %s." +#~ msgid "" +#~ "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、%s のタイプに設定されている必要があります。" +#~ "DB Pandora にはすべてのテーブルが揃っていません。不足テーブルは (%s) です。" #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the null values with %s." +#~ "Unsuccessful the field %s in the table %s must be setted the type with %s." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、%s の null 値に設定されている必要があります。" +#~ "フィールド %s (テーブル %s 内)は、%s のタイプに設定されている必要がありま" +#~ "す。" #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the key as defined in the " -#~ "SQL file." +#~ "Unsuccessful the field %s in the table %s must be setted the null values " +#~ "with %s." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、SQL ファイル内で定義されている通りのキーが設定さ" -#~ "れている必要があります。" +#~ "フィールド %s (テーブル %s 内)は、%s の null 値に設定されている必要がありま" +#~ "す。" + +#, php-format +#~ msgid "" +#~ "Unsuccessful the field %s in the table %s must be setted the key as defined " +#~ "in the SQL file." +#~ msgstr "" +#~ "フィールド %s (テーブル %s 内)は、SQL ファイル内で定義されている通りのキーが" +#~ "設定されている必要があります。" #~ msgid "Please check the SQL file for to know the kind of key needed." #~ msgstr "必要なキーを特定するには、SQL ファイルを確認してください。" #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the default value as %s." +#~ "Unsuccessful the field %s in the table %s must be setted the default value " +#~ "as %s." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、デフォルト値が %s に設定されている必要がありま" -#~ "す。" +#~ "フィールド %s (テーブル %s 内)は、デフォルト値が %s に設定されている必要があ" +#~ "ります。" -#~ msgid "Please check the SQL file for to know the kind of default value needed." +#~ msgid "" +#~ "Please check the SQL file for to know the kind of default value needed." #~ msgstr "必要なデフォルト値を特定するには、SQL ファイルを確認してください。" #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted as defined in the SQL " -#~ "file." +#~ "Unsuccessful the field %s in the table %s must be setted as defined in the " +#~ "SQL file." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、SQL ファイルに定義されている通りに設定されている" -#~ "必要があります。" +#~ "フィールド %s (テーブル %s 内)は、SQL ファイルに定義されている通りに設定され" +#~ "ている必要があります。" #~ msgid "Units. Value" #~ msgstr "単位" @@ -55897,30 +58063,32 @@ msgstr "" #~ msgstr "インシデント一覧" #~ msgid "" -#~ "This item is affected by a malformed planned downtime. Go to the planned downtimes " -#~ "section to solve this." +#~ "This item is affected by a malformed planned downtime. Go to the planned " +#~ "downtimes section to solve this." #~ msgstr "" -#~ "この要素は不正な計画停止の景況を受けます。計画停止の設定画面で調整してくだいさい。" +#~ "この要素は不正な計画停止の景況を受けます。計画停止の設定画面で調整してくだい" +#~ "さい。" #~ msgid "Netflow Statistics" #~ msgstr "Netflow 統計" #~ msgid "" -#~ "Illegal query: Due security restrictions, there are some tokens or words you " -#~ "cannot use: *, delete, drop, alter, modify, union, password, pass, insert or " -#~ "update." +#~ "Illegal query: Due security restrictions, there are some tokens or words " +#~ "you cannot use: *, delete, drop, alter, modify, union, password, pass, " +#~ "insert or update." #~ msgstr "" -#~ "不正なクエリ。セキュリティ上の制約により次のトークンやワードは利用でません: *, " -#~ "delete, drop, alter, modify, union, password, pass, insert または update" +#~ "不正なクエリ。セキュリティ上の制約により次のトークンやワードは利用でません: " +#~ "*, delete, drop, alter, modify, union, password, pass, insert または update" #~ msgid "" -#~ "There is a new update available. Please go to " -#~ "Administration:Setup:Update Manager for more details." +#~ "There is a new update available. Please go to Administration:Setup:Update Manager " +#~ "for more details." #~ msgstr "" -#~ "新たな更新があります。詳細は、管理メニューの" -#~ "アップデートマネージャを参照してください。" +#~ "新たな更新があります。詳細は、管理" +#~ "メニューのアップデートマネージャを参照してください。" #~ msgid "Netflow Pie" #~ msgstr "NetFlow円グラフ" @@ -55929,8 +58097,8 @@ msgstr "" #~ "Variable disable_functions containts functions system() or exec(), in PHP " #~ "configuration file (php.ini)" #~ msgstr "" -#~ "PHP 設定ファイル(php.ini)において、disable_functions 変数に system() または exec() " -#~ "関数が含まれています。" +#~ "PHP 設定ファイル(php.ini)において、disable_functions 変数に system() または " +#~ "exec() 関数が含まれています。" #, php-format #~ msgid "Last %s" @@ -56010,14 +58178,15 @@ msgstr "" #~ msgstr "エージェント有効化/無効化エラー。エージェントが存在しません。" #~ msgid "" -#~ "There is a new update please go to menu Administration and into extensions go to Update Manager for more " -#~ "details." +#~ "There is a new update please go to menu Administration and into extensions " +#~ "go to Update Manager for " +#~ "more details." #~ msgstr "" -#~ "新たなアップデートがあります。詳細は、管理メニューの拡張の中のアップデートマネージャを参照してください。" +#~ "新たなアップデートがあります。詳細は、管理メニューの拡張の中のアップデートマネージャを参照" +#~ "してください。" #~ msgid "Error enable/disable agent. Id_agent cannot be left blank." #~ msgstr "エージェント有効化/無効化エラー。id_agent は空にできません。" @@ -56027,20 +58196,20 @@ msgstr "" #~ 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" -#~ "\t\t\t\t\t\t

You can get more plugins in our Public Resource Library " +#~ "\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" +#~ "\t\t\t\t\t\t

You can get more plugins in our Public Resource Library " #~ msgstr "" #~ "この拡張は、サーバプラグインの登録を簡単にします。\n" -#~ "\t\t\t\t\t\tPandora FMS 3.x の zip フォーマット(.pspz)でサーバプラグインをアップ" -#~ "ロードできます。\n" -#~ "\t\t\t\t\t\tPandora FMS サーバプラグインの取得と使い方はドキュメントを参照してくだ" -#~ "さい。\n" -#~ "\t\t\t\t\t\t

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

多くのプラグインを、我々のリソースライブラリから取得できます。 " #~ msgid "Masive tags module policy edition" #~ msgstr "一括タグモジュールポリシー編集" @@ -56067,79 +58236,83 @@ msgstr "" #~ msgstr "proc モジュールを二値(OK/FAIL)表示する" #~ msgid "" -#~ "The Recon Task definition of Pandora FMS is used to find new elements in the " -#~ "network. \n" -#~ "\t\tIf it detects any item, it will add that item to the monitoring, and if that " -#~ "item it is already being monitored, then it will \n" -#~ "\t\tignore it or will update its information.There are three types of detection: " -#~ "Based on ICMP (pings), \n" -#~ "\t\tSNMP (detecting the topology of networks and " -#~ "their interfaces), and other customized \n" +#~ "The Recon Task definition of Pandora FMS is used to find new elements in " +#~ "the network. \n" +#~ "\t\tIf it detects any item, it will add that item to the monitoring, and if " +#~ "that item it is already being monitored, then it will \n" +#~ "\t\tignore it or will update its information.There are three types of " +#~ "detection: Based on ICMP (pings), \n" +#~ "\t\tSNMP (detecting the topology of networks " +#~ "and their interfaces), and other customized \n" #~ "\t\ttype. You can define your own customized recon script." #~ msgstr "" -#~ "Pandora FMS の自動検出タスクは、ネットワーク上の新たな対象を検出するために利用しま" -#~ "す。\n" -#~ "\t\t検出すると、監視対象として追加します。すでに監視対象の場合は無視するか情報を更" -#~ "新します。\n" -#~ "\t\t検出には 3つの種類があります。 ICMP (ping)、" -#~ "SNMP(ネットワークとインタフェースのトポロジ検出)、\n" -#~ "\t\tおよび カスタムタイプです。独自の検出スクリプト" -#~ "を定義することもできます。" +#~ "Pandora FMS の自動検出タスクは、ネットワーク上の新たな対象を検出するために利" +#~ "用します。\n" +#~ "\t\t検出すると、監視対象として追加します。すでに監視対象の場合は無視するか情" +#~ "報を更新します。\n" +#~ "\t\t検出には 3つの種類があります。 ICMP (ping)、SNMP(ネットワークとインタ" +#~ "フェースのトポロジ検出)、\n" +#~ "\t\tおよび カスタムタイプです。独自の検出スク" +#~ "リプトを定義することもできます。" #~ 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" +#~ "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." +#~ "\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " +#~ "the world. \n" +#~ "\t\t\t\t\t\tHis company consists of three big departments: A management, an " +#~ "on-line shop and support." #~ msgstr "" #~ "サービスは、機能に基づく IT リソースをグループ化するものです。\n" -#~ "\t\t\t\t\t例えばサービスは、公式ウェブサイト、CRMシステム、サポートアプリケーショ" -#~ "ン、プリンタなどです。\n" -#~ "\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、ERP、ウェ" -#~ "ブサイトおよびその他さまざまな機能を含んだ論理的なグループです。\n" +#~ "\t\t\t\t\t例えばサービスは、公式ウェブサイト、CRMシステム、サポートアプリ" +#~ "ケーション、プリンタなどです。\n" +#~ "\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、" +#~ "ERP、ウェブサイトおよびその他さまざまな機能を含んだ論理的なグループです。\n" #~ "\t\t\t\t\t次の例で、サービスが何かがよりわかるでしょう。\n" -#~ "\t\t\t\t\t\tあるチップメーカーは、ウェブサイトを通して世界中にコンピュータを販売し" -#~ "ています。\n" -#~ "\t\t\t\t\t\tその会社は、管理、オンラインショップ、サポートの 3つの大きな部門から" -#~ "成っています。" +#~ "\t\t\t\t\t\tあるチップメーカーは、ウェブサイトを通して世界中にコンピュータを" +#~ "販売しています。\n" +#~ "\t\t\t\t\t\tその会社は、管理、オンラインショップ、サポートの 3つの大きな部門" +#~ "から成っています。" #~ msgid "" #~ "Pandora FMS contains a scheduled downtime management system. \n" -#~ "\t\t\t\t\t\tThis system was designed to deactivate the alerts in the intervals " -#~ "whenever there is down time by deactivating the agent.\n" -#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In a down " -#~ "time, the down-time intervals aren't taken into \n" -#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because the " -#~ "agents don't contain any data within those intervals. " +#~ "\t\t\t\t\t\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. " #~ msgstr "" #~ "Pandora FMS には、計画停止を管理するシステムがあります。\n" -#~ "\t\t\t\t\t\tこのシステムは、エージェントの停止がある場合に、指定の期間アラートを無" -#~ "効化するように設計されています。\n" -#~ "\t\t\t\t\t\tエージェントが無効化されると情報収集が行われません。停止期間中のデータ" -#~ "は、多くのレポートの計算に\n" -#~ "\t\t\t\t\t\t含まれません。なぜなら、停止期間中はエージェントにデータが無いためで" -#~ "す。 " +#~ "\t\t\t\t\t\tこのシステムは、エージェントの停止がある場合に、指定の期間アラー" +#~ "トを無効化するように設計されています。\n" +#~ "\t\t\t\t\t\tエージェントが無効化されると情報収集が行われません。停止期間中の" +#~ "データは、多くのレポートの計算に\n" +#~ "\t\t\t\t\t\t含まれません。なぜなら、停止期間中はエージェントにデータが無いた" +#~ "めです。 " #~ msgid "" -#~ "From Pandora FMS versions 5 and above, the access to modules can be configured by " -#~ "a tags system.\n" -#~ "\t\t\t\t\t\t\t\tTags are configured on the system and be assigned to the chosen " -#~ "modules. \n" -#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain tags in " -#~ "this way. " +#~ "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. " #~ msgstr "" -#~ "Pandora FMS バージョン 5 以降では、タグの機能によってモジュールへのアクセスを設定で" -#~ "きます。\n" -#~ "\t\t\t\t\t\t\t\tタグは、システム上で設定し、選択したモジュールに割り当てます。\n" -#~ "\t\t\t\t\t\t\t\tこれにより、ユーザアクセスを特定のタグがついたモジュールに限定する" -#~ "ことができます。 " +#~ "Pandora FMS バージョン 5 以降では、タグの機能によってモジュールへのアクセス" +#~ "を設定できます。\n" +#~ "\t\t\t\t\t\t\t\tタグは、システム上で設定し、選択したモジュールに割り当てま" +#~ "す。\n" +#~ "\t\t\t\t\t\t\t\tこれにより、ユーザアクセスを特定のタグがついたモジュールに限" +#~ "定することができます。 " #~ msgid "Free text:" #~ msgstr "検索文字列:" @@ -56158,28 +58331,30 @@ msgstr "" #~ 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\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" #~ msgstr "" #~ "システムやアプリケーションを監視するためにデータを受信し処理するほかに、\n" -#~ "\t\t\tシステム監視処理内ではインシデントも処理され、それも見る必要があります。\n" -#~ "\t\t\tそのために、Pandora FMS チームではインシデント管理機能を用意しました。ユーザ" -#~ "はいつでもインシデントをオープンし、\n" -#~ "\t\t\tネットワークで何が発生したかを説明しコメントすることができます。このシステム" -#~ "により、ユーザがチームとして動くことが\n" -#~ "\t\t\tでき、異なる権限を持たせたり、ワークフローとしてインシデントをあるグループか" -#~ "ら他のグループへ移したり、異なる\n" -#~ "\t\t\tグループの異なるメンバーが同じインシデントに対して対処したり、情報やファイル" -#~ "を共有したりできます。\n" +#~ "\t\t\tシステム監視処理内ではインシデントも処理され、それも見る必要がありま" +#~ "す。\n" +#~ "\t\t\tそのために、Pandora FMS チームではインシデント管理機能を用意しました。" +#~ "ユーザはいつでもインシデントをオープンし、\n" +#~ "\t\t\tネットワークで何が発生したかを説明しコメントすることができます。このシ" +#~ "ステムにより、ユーザがチームとして動くことが\n" +#~ "\t\t\tでき、異なる権限を持たせたり、ワークフローとしてインシデントをあるグ" +#~ "ループから他のグループへ移したり、異なる\n" +#~ "\t\t\tグループの異なるメンバーが同じインシデントに対して対処したり、情報や" +#~ "ファイルを共有したりできます。\n" #~ "\t\t" #~ msgid "An error occurred stopping the planned downtime" @@ -56201,15 +58376,15 @@ msgstr "" #~ msgstr "この計画停止は実行中です" #~ msgid "" -#~ "WARNING: You\\'re trying to create a group in a node member of a metaconsole.\\n" -#~ "\\nThis group and all of this contents will not be visible in the metaconsole.\\n" -#~ "\\nIf you want to create a visible group, you must do it from the metaconsole and " -#~ "propagate to the node. " +#~ "WARNING: You\\'re trying to create a group in a node member of a " +#~ "metaconsole.\\n\\nThis group and all of this contents will not be visible " +#~ "in the metaconsole.\\n\\nIf you want to create a visible group, you must do " +#~ "it from the metaconsole and propagate to the node. " #~ msgstr "" -#~ "警告: メタコンソールのノードメンバーにグループを作成しようとしています。\\n\\n この" -#~ "グループとそこに含まれるコンテンツはメタコンソールでは表示されません。\\n\\n 表示さ" -#~ "れるグループを作成したい場合は、メタコンソールから実行し、ノードに伝播させる必要が" -#~ "あります。 " +#~ "警告: メタコンソールのノードメンバーにグループを作成しようとしていま" +#~ "す。\\n\\n このグループとそこに含まれるコンテンツはメタコンソールでは表示さ" +#~ "れません。\\n\\n 表示されるグループを作成したい場合は、メタコンソールから実" +#~ "行し、ノードに伝播させる必要があります。 " #~ msgid "Advance Config AD" #~ msgstr "AD 拡張設定" @@ -56225,26 +58400,29 @@ msgstr "" #~ "\t\t\t\t\tパスワードが不正です。" #~ 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" +#~ "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'. " +#~ "\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'. " #~ msgstr "" -#~ "Pandora FMS ではビジュアルマップを作成でき、そこでそれぞれのユーザが各自の監視マッ" -#~ "プを作成することができます。\n" -#~ "\t\t\t新たなビジュアルコンソールエディタは、古いエディタよりもより実用的です。新た" -#~ "なビジュアルコンソールでは、\n" -#~ "\t\t\t絵を書くツールの GIMP のような感覚とタッチを模倣することに成功しました。\n" -#~ "\t\t\tまた、'データ'、'プレビュー'、'ウィザード'、'要素一覧' および 'エディタ' のい" -#~ "くつかのタイトルに分けることによりエディタを単純化しました。\n" -#~ "\t\t\tPandora FMS ビジュアルマップの要素は、'静的画像'、'パーセント表示バー'、'モ" -#~ "ジュールグラフ' および '単純な値' を扱うようにデザインされています。 " +#~ "Pandora FMS ではビジュアルマップを作成でき、そこでそれぞれのユーザが各自の監" +#~ "視マップを作成することができます。\n" +#~ "\t\t\t新たなビジュアルコンソールエディタは、古いエディタよりもより実用的で" +#~ "す。新たなビジュアルコンソールでは、\n" +#~ "\t\t\t絵を書くツールの GIMP のような感覚とタッチを模倣することに成功しまし" +#~ "た。\n" +#~ "\t\t\tまた、'データ'、'プレビュー'、'ウィザード'、'要素一覧' および 'エディ" +#~ "タ' のいくつかのタイトルに分けることによりエディタを単純化しました。\n" +#~ "\t\t\tPandora FMS ビジュアルマップの要素は、'静的画像'、'パーセント表示" +#~ "バー'、'モジュールグラフ' および '単純な値' を扱うようにデザインされていま" +#~ "す。 " #~ msgid "Show percentil 95º" #~ msgstr "95パーセント表示" @@ -56254,19 +58432,20 @@ msgstr "" #~ msgstr "%dパーセント" #~ 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." +#~ "Graphs are designed to show the data collected by Pandora FMS in a " +#~ "temporary scale defined by the user.\n" +#~ "\t\t\t\tPandora FMS Graphs display data in real time. They are generated " +#~ "every time the operator requires any of them and display the up-to-date " +#~ "state.\n" +#~ "\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " +#~ "graphs the user customizes by using one or more modules to do so." #~ msgstr "" -#~ "グラフ表示は、Pandora FMS で収集しているデータをユーザが定義したスケールで表示しま" -#~ "す。\n" -#~ "\t\t\t\tPandora FMS のグラフはリアルタイムでデータを表示します。ユーザが操作したタ" -#~ "イミングで生成され、最新の状態を表示します。\n" -#~ "\t\t\t\tグラフには 2つのタイプがあります。エージェントで自動生成されるグラフと、1つ" -#~ "以上のモジュールを使ってユーザがカスタマイズしたグラフです。" +#~ "グラフ表示は、Pandora FMS で収集しているデータをユーザが定義したスケールで表" +#~ "示します。\n" +#~ "\t\t\t\tPandora FMS のグラフはリアルタイムでデータを表示します。ユーザが操作" +#~ "したタイミングで生成され、最新の状態を表示します。\n" +#~ "\t\t\t\tグラフには 2つのタイプがあります。エージェントで自動生成されるグラフ" +#~ "と、1つ以上のモジュールを使ってユーザがカスタマイズしたグラフです。" #~ msgid "This planned downtime are executed now. Can't delete in this moment." #~ msgstr "この計画停止は実行中です。現在削除できません。" @@ -56296,11 +58475,11 @@ msgstr "" #~ msgstr "最小エージェント" #~ msgid "" -#~ "Error, you are trying to add a widget in a empty cell. Please save the layout " -#~ "before to add any widget in this cell." +#~ "Error, you are trying to add a widget in a empty cell. Please save the " +#~ "layout before to add any widget in this cell." #~ msgstr "" -#~ "エラー、空のセルにウィジェットを追加しようとしています。このセルにウィジェットを追" -#~ "加するには、先にレイアウトを保存してください。" +#~ "エラー、空のセルにウィジェットを追加しようとしています。このセルにウィジェッ" +#~ "トを追加するには、先にレイアウトを保存してください。" #~ msgid "Config widget" #~ msgstr "ウィジェット設定" @@ -56317,21 +58496,24 @@ msgstr "" #~ msgid "Different parent" #~ msgstr "異なる親" -#~ msgid "The target user profiles will be replaced with the source user profiles" +#~ msgid "" +#~ "The target user profiles will be replaced with the source user profiles" #~ msgstr "対象のユーザプロファイルは、元ユーザのプロファイルで置き換えられます" #~ msgid "" -#~ "Access to this page is restricted to authorized users only, please contact system " -#~ "administrator if you need assistance. \n" -#~ "\t\t\t\t\t
Please know that all attempts to access this page are recorded in " -#~ "security logs of Pandora System Database" +#~ "Access to this page is restricted to authorized users only, please contact " +#~ "system administrator if you need assistance. \n" +#~ "\t\t\t\t\t
Please know that all attempts to access this page are " +#~ "recorded in security logs of Pandora System Database" #~ msgstr "" -#~ "このページは認証されたユーザのみがアクセスできます。手助けが必要であればシステム管" -#~ "理者へ連絡してください。\n" -#~ "\t\t\t\t\t
このページへの全アクセスは Pandora システムデータベースのセキュリティ" -#~ "ログに記録されます。" +#~ "このページは認証されたユーザのみがアクセスできます。手助けが必要であればシス" +#~ "テム管理者へ連絡してください。\n" +#~ "\t\t\t\t\t
このページへの全アクセスは Pandora システムデータベースのセ" +#~ "キュリティログに記録されます。" -#~ msgid "The selected user profile will be added to the selected users into the target" +#~ msgid "" +#~ "The selected user profile will be added to the selected users into the " +#~ "target" #~ msgstr "選択されたユーザプロファイルは、対象の選択ユーザに追加されます" #~ msgid "Login off" @@ -56350,9 +58532,10 @@ msgstr "" #~ msgstr "ネットワークマップを最新の状態に更新" #~ msgid "" -#~ "This feature is deprecated, be careful because in the next releases it will be " -#~ "disappear." -#~ msgstr "この機能は非推奨です。次のリリースではなくなりますので注意してください。" +#~ "This feature is deprecated, be careful because in the next releases it will " +#~ "be disappear." +#~ msgstr "" +#~ "この機能は非推奨です。次のリリースではなくなりますので注意してください。" #~ msgid "Generate networkmap with parents relationships" #~ msgstr "親子関係をもってネットワークマップを生成" @@ -56370,45 +58553,50 @@ msgstr "" #~ msgstr "ウエイトはデフォルト値です" #~ msgid "" -#~ "Only the elements configured as 'critical element' are used to calculate the " -#~ "service status" +#~ "Only the elements configured as 'critical element' are used to calculate " +#~ "the service status" #~ msgstr "'障害' として設定されているもののみサービスの状態計算に利用されます。" #~ msgid "No name and description specified for the service" #~ msgstr "サービスに名前と説明がありません" -#~ msgid "All the items are not available in CSV, only the previous versions ones." +#~ msgid "" +#~ "All the items are not available in CSV, only the previous versions ones." #~ msgstr "CSV内に全アイテムがありません。以前のバージョンのみです。" #~ msgid "Delete remote conf server files in Pandora" #~ msgstr "Pandora が保持しているリモートコンフィグファイルを削除します" #~ msgid "" -#~ "Delete this conf file implies that Pandora will send back local config to console" +#~ "Delete this conf file implies that Pandora will send back local config to " +#~ "console" #~ msgstr "" -#~ "コンフィグファイルを削除すると、ローカルの設定ファイルをコンソールに再送します" +#~ "コンフィグファイルを削除すると、ローカルの設定ファイルをコンソールに再送しま" +#~ "す" #~ msgid "" -#~ "Limit the number of events that are replicated metaconsole each specified range." +#~ "Limit the number of events that are replicated metaconsole each specified " +#~ "range." #~ msgstr "指定した範囲でメタコンソールへ複製するイベントの数を制限します。" #~ msgid "" -#~ "Enable this option will be synchronice the groups and tags each new user when he/" -#~ "she will login." +#~ "Enable this option will be synchronice the groups and tags each new user " +#~ "when he/she will login." #~ msgstr "" -#~ "このオプションを有効化すると、新規ユーザがログインしたときにグループとタグが同期さ" -#~ "れます。" +#~ "このオプションを有効化すると、新規ユーザがログインしたときにグループとタグが" +#~ "同期されます。" #~ msgid "Generate a dynamic report\"" #~ msgstr "ダイナミックレポートの生成" #, php-format #~ msgid "" -#~ "License out of limits

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

" +#~ "This license allows %d modules and you have %d modules configured." #~ msgstr "" -#~ "ライセンスの制限を超過しました

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

このライセンスは %d モジュールですが、%d モジュールが設定されていま" +#~ "す。" #~ msgid "Pandora FMS instance identification wizard" #~ msgstr "Pandora FMS インスタンス識別ウィザード" @@ -56429,40 +58617,41 @@ msgstr "" #~ msgstr "戻る" #~ msgid "" -#~ "In the same fashion, when subscribed to the newsletter you accept that your email " -#~ "will pass on to a database property of Artica TS. This data will solely be used to " -#~ "provide you with information about Pandora FMS and will not be conceded to third " -#~ "parties. You'll be able to unregister from said database at any time from the " -#~ "newsletter subscription options" +#~ "In the same fashion, when subscribed to the newsletter you accept that your " +#~ "email will pass on to a database property of Artica TS. This data will " +#~ "solely be used to provide you with information about Pandora FMS and will " +#~ "not be conceded to third parties. You'll be able to unregister from said " +#~ "database at any time from the newsletter subscription options" #~ msgstr "" -#~ "同様に、ニュースレターの購読をすると、あなたのメールアドレスが Artica TS のデータ" -#~ "ベースに登録されることに合意いただくことになります。これは Pandora FMS に関する情報" -#~ "を提供する目的にのみ利用し、第三者へ提供されることはありません。ニュースレターの購" -#~ "読オプションでいつでも登録解除を行うことができます。" +#~ "同様に、ニュースレターの購読をすると、あなたのメールアドレスが Artica TS の" +#~ "データベースに登録されることに合意いただくことになります。これは Pandora " +#~ "FMS に関する情報を提供する目的にのみ利用し、第三者へ提供されることはありませ" +#~ "ん。ニュースレターの購読オプションでいつでも登録解除を行うことができます。" #~ msgid "Subscribe to our newsletter" #~ msgstr "ニュースレターを購読する" #~ msgid "" -#~ "When you subscribe to the Pandora FMS Update Manager service, you accept that we " -#~ "register your Pandora instance as an identifier on the database owned by Artica " -#~ "TS. This data will solely be used to provide you with information about Pandora " -#~ "FMS and will not be conceded to third parties. You'll be able to unregister from " -#~ "said database at any time from the Update Manager options" +#~ "When you subscribe to the Pandora FMS Update Manager service, you accept " +#~ "that we register your Pandora instance as an identifier on the database " +#~ "owned by Artica TS. This data will solely be used to provide you with " +#~ "information about Pandora FMS and will not be conceded to third parties. " +#~ "You'll be able to unregister from said database at any time from the Update " +#~ "Manager options" #~ msgstr "" -#~ "Pandora FMS アップデートマネージャサービスに登録すると、Artica TS のデータベースに" -#~ "あなたの Pandora インスタンスを識別する情報を登録することに合意いただくことになりま" -#~ "す。これは Pandora FMS に関する情報を提供する目的にのみ利用し、第三者へ提供されるこ" -#~ "とはありません。アップデートマネージャオプションからいつでもデータベースの登録解除" -#~ "を行うことができます。" +#~ "Pandora FMS アップデートマネージャサービスに登録すると、Artica TS のデータ" +#~ "ベースにあなたの Pandora インスタンスを識別する情報を登録することに合意いた" +#~ "だくことになります。これは Pandora FMS に関する情報を提供する目的にのみ利用" +#~ "し、第三者へ提供されることはありません。アップデートマネージャオプションから" +#~ "いつでもデータベースの登録解除を行うことができます。" #~ msgid "Stay up to date with the Pandora FMS community" #~ msgstr "Pandora FMS コミュニティで最新情報を確認してください" #~ msgid "This field allows url insertion using the BBCode's url tag" #~ msgstr "" -#~ "このフィールドには、BBコードの url タグを使うことにより URL を挿入することができま" -#~ "す" +#~ "このフィールドには、BBコードの url タグを使うことにより URL を挿入することが" +#~ "できます" #~ msgid "The format is: [url='url to navigate']'text to show'[/url]" #~ msgstr "フォーマット: [url='url to navigate']'表示するテキスト'[/url]" @@ -56471,9 +58660,10 @@ msgstr "" #~ msgstr "例: [url=pandorafms.org]Pandora FMS コミュニティ[/url]" #~ msgid "" -#~ "Please fill the following information in order to configure your Pandora FMS " -#~ "instance successfully" -#~ msgstr "Pandora FMS インスタンスを正しく設定するために、以下の情報を入力してください" +#~ "Please fill the following information in order to configure your Pandora " +#~ "FMS instance successfully" +#~ msgstr "" +#~ "Pandora FMS インスタンスを正しく設定するために、以下の情報を入力してください" #~ msgid "Hide not init agents" #~ msgstr "未初期化エージェントを隠す" @@ -56484,7 +58674,8 @@ msgstr "" #~ msgid "Hostname of the eHorus API" #~ msgstr "eHorus API のホスト名" -#~ msgid "Time in seconds to set the maximum time of the requests to the eHorus API" +#~ msgid "" +#~ "Time in seconds to set the maximum time of the requests to the eHorus API" #~ msgstr "eHorus API へリクエストを出す最大タイムアウト時間を秒で設定します。" #~ msgid "0 to disable" @@ -56497,18 +58688,18 @@ msgstr "" #~ msgstr "例: switch.ehorus.com" #~ msgid "" -#~ "Set a value too high cause a slowdown on console and a performance penalty in the " -#~ "system." +#~ "Set a value too high cause a slowdown on console and a performance penalty " +#~ "in the system." #~ msgstr "" -#~ "大きすぎる値にすると、コンソールが遅くなったりシステムのパフォーマンス低下が発生し" -#~ "ます。" +#~ "大きすぎる値にすると、コンソールが遅くなったりシステムのパフォーマンス低下が" +#~ "発生します。" #~ msgid "" -#~ "If you check this option, the lateral menus display with left click. Otherwise it " -#~ "will show by placing the mouse over" +#~ "If you check this option, the lateral menus display with left click. " +#~ "Otherwise it will show by placing the mouse over" #~ msgstr "" -#~ "このオプションをチェックするとサイドメニューはクリックで表示されます。そうでなけれ" -#~ "ば、マウスオーバーで表示されます。" +#~ "このオプションをチェックするとサイドメニューはクリックで表示されます。そうで" +#~ "なければ、マウスオーバーで表示されます。" #~ msgid "Display lateral menus with click" #~ msgstr "クリックで横のメニューを表示" @@ -56550,19 +58741,22 @@ msgstr "" #~ msgstr "購読に失敗しました。" #~ msgid "" -#~ "Click here to start the newsletter subscription process" +#~ "Click here to start the " +#~ "newsletter subscription process" #~ msgstr "" -#~ "ニュースレターの購読を開始するには こちら をクリックして" -#~ "ください" +#~ "ニュースレターの購読を開始するには こちら" +#~ " をクリックしてください" #~ msgid "" -#~ "Click here to start the registration process" +#~ "Click here to start the " +#~ "registration process" #~ msgstr "" -#~ "登録処理を開始するには こちら をクリックしてください" +#~ "登録処理を開始するには こちら をクリッ" +#~ "クしてください" #~ msgid "This instance is not registered in the Update manager" #~ msgstr "このインスタンスはアップデートマネージャに登録されていません" @@ -56584,11 +58778,11 @@ msgstr "" #~ msgstr "ニュースレター購読済" #~ msgid "" -#~ "Path where you put your cert and name of this cert. Remember your cert only in ." -#~ "pem extension." +#~ "Path where you put your cert and name of this cert. Remember your cert only " +#~ "in .pem extension." #~ msgstr "" -#~ "証明書を置いたパスとその名前です。証明書の拡張子は .pem のみであることに注意してく" -#~ "ださい。" +#~ "証明書を置いたパスとその名前です。証明書の拡張子は .pem のみであることに注意" +#~ "してください。" #~ msgid "Module Groups synchronization" #~ msgstr "モジュールグループ同期" @@ -56636,123 +58830,129 @@ msgstr "" #~ msgid "Empty for a transparent background color or CSS compatible value" #~ msgstr "透明な背景色またはCSSに合う値が空です" -#~ msgid "If propagate acl is activated, this group will include its child groups" +#~ msgid "" +#~ "If propagate acl is activated, this group will include its child groups" #~ msgstr "ACLの伝播を有効にすると、このグループは子グループを含みます" #~ msgid "Synchronizing Module Groups" #~ msgstr "モジュールグループの同期中" #~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number of " -#~ "agents and modules running). To disable it, please remove the remote server " -#~ "address from the Update Manager plugin setup." +#~ "Update Manager sends anonymous information about Pandora FMS usage (number " +#~ "of agents and modules running). To disable it, please remove the remote " +#~ "server address from the Update Manager plugin setup." #~ msgstr "" -#~ "アップデートマネージャは、Pandora FMS の利用状況の情報(実行しているエージェントとモ" -#~ "ジュール数)を送信します。無効化するには、アップデートマネージャプラグインの設定から" -#~ "リモートサーバのアドレスを削除します。" +#~ "アップデートマネージャは、Pandora FMS の利用状況の情報(実行しているエージェ" +#~ "ントとモジュール数)を送信します。無効化するには、アップデートマネージャプラ" +#~ "グインの設定からリモートサーバのアドレスを削除します。" #~ msgid "" -#~ "The community version doesn't have the ability to define your own library of local " -#~ "modules, or distribute it to remote agents. You need to make those changes " -#~ "individually on each agent which is possible by using external tools and time and " -#~ "effort. Nor can it distribute local plugins, or have access to the library of " -#~ "enterprise plugins to monitor applications such as VMWare, RHEV or Informix " -#~ "between others. The Enterprise version will have all this, plus the ability to " -#~ "distribute and manage your own local modules on your systems, individually or " -#~ "through policies.\n" +#~ "The community version doesn't have the ability to define your own library " +#~ "of local modules, or distribute it to remote agents. You need to make those " +#~ "changes individually on each agent which is possible by using external " +#~ "tools and time and effort. Nor can it distribute local plugins, or have " +#~ "access to the library of enterprise plugins to monitor applications such as " +#~ "VMWare, RHEV or Informix between others. The Enterprise version will have " +#~ "all this, plus the ability to distribute and manage your own local modules " +#~ "on your systems, individually or through policies.\n" #~ "

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

\n" -#~ "\tPlease know that all attempts to access this page are recorded in security logs " -#~ "of Pandora System Database" +#~ "Access to this page is restricted to authorized users only, please contact " +#~ "system administrator if you need assistance.

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

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

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

\n" -#~ "\t\t\tProbably your database, hostname, user or password values are incorrect or\n" +#~ "Cannot connect to the database, please check your database setup in the " +#~ "include/config.php file.

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

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

\n" +#~ "\t\t\tおそらく、データベース名、ホスト名、ユーザ名またはパスワードの値が不正" +#~ "か、\n" #~ "\t\t\tデータベースが動作していません。" #~ msgid "Unsuccessfull action

" #~ msgstr "実行に失敗

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

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

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

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

\n" #~ "\t公式ドキュメントをダウンロード" @@ -56994,16 +59198,16 @@ msgstr "" #~ msgstr "画面サイズ制限のため、ビジュアルコンソールは表示されません" #~ 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" +#~ "To enable the plugin execution, this extension needs the Cron jobs " +#~ "extension installed.\n" +#~ "\tKeep in mind that the Cron jobs execution period will be the less real " +#~ "execution period, so if you want to run the plugin every\n" +#~ "\t5 minutes, for example, the Cron jobs script should be configured in the " +#~ "cron to run every 5 minutes or less" #~ msgstr "" -#~ "プラグインの実行を有効化するために、この拡張では Cron ジョブ拡張がインストールされ" -#~ "ている必要があります。\n" -#~ "\tCron ジョブ実行間隔は、実際の実行間隔よりも短くすることに注意してください。たとえ" -#~ "ば、プラグインを 5分間隔で\n" -#~ "\t実行したい場合は、Cron ジョブスクリプトは 5分またはそれ未満の間隔で実行するよう " -#~ "cron を設定する必要があります。" +#~ "プラグインの実行を有効化するために、この拡張では Cron ジョブ拡張がインストー" +#~ "ルされている必要があります。\n" +#~ "\tCron ジョブ実行間隔は、実際の実行間隔よりも短くすることに注意してくださ" +#~ "い。たとえば、プラグインを 5分間隔で\n" +#~ "\t実行したい場合は、Cron ジョブスクリプトは 5分またはそれ未満の間隔で実行す" +#~ "るよう cron を設定する必要があります。" From a39fe577b51fef468c5f6be485523331b1c249ab Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 7 Feb 2023 10:21:45 +0100 Subject: [PATCH 050/100] #10296 added date in popup about --- .../include/class/Diagnostics.class.php | 21 +++++++++++++++++++ pandora_console/include/functions_menu.php | 9 ++++++++ 2 files changed, 30 insertions(+) diff --git a/pandora_console/include/class/Diagnostics.class.php b/pandora_console/include/class/Diagnostics.class.php index b0f698252b..44e003fd95 100644 --- a/pandora_console/include/class/Diagnostics.class.php +++ b/pandora_console/include/class/Diagnostics.class.php @@ -516,6 +516,27 @@ class Diagnostics extends Wizard } + /** + * Date system + * + * @return string + */ + public function getSystemDate(): string + { + $result = [ + 'error' => false, + 'data' => [ + 'date' => [ + 'name' => __('System Date (Console)'), + 'value' => date('H:i:s Y-m-d'), + ], + ], + ]; + + return json_encode($result); + } + + /** * Database size stats. * diff --git a/pandora_console/include/functions_menu.php b/pandora_console/include/functions_menu.php index 277eb8520c..2d474a9853 100644 --- a/pandora_console/include/functions_menu.php +++ b/pandora_console/include/functions_menu.php @@ -797,6 +797,7 @@ if (is_ajax()) { $db_fragmentation = json_decode($d->getTablesFragmentation()); $sys_info = json_decode($d->getSystemInfo()); $php_sys = json_decode($d->getPHPSetup()); + $system_date = json_decode($d->getSystemDate()); $fragmentation_status = ''; if ($db_fragmentation->data->tablesFragmentationStatus->status === 1) { @@ -1030,6 +1031,14 @@ if (is_ajax()) {

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

+ + +

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

+ + +

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

+ +
From 1457dffe6cf80c34721327190145e5b499c56054 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 7 Feb 2023 10:30:22 +0100 Subject: [PATCH 051/100] #10296 added getSystemDate in AJAXMethods --- pandora_console/include/class/Diagnostics.class.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/include/class/Diagnostics.class.php b/pandora_console/include/class/Diagnostics.class.php index 44e003fd95..99e28e3983 100644 --- a/pandora_console/include/class/Diagnostics.class.php +++ b/pandora_console/include/class/Diagnostics.class.php @@ -104,6 +104,7 @@ class Diagnostics extends Wizard 'getChartAjax', 'formFeedback', 'createdScheduleFeedbackTask', + 'getSystemDate', ]; @@ -209,6 +210,7 @@ class Diagnostics extends Wizard 'getAttachmentFolder', 'getInfoTagenteDatos', 'getServerThreads', + 'getSystemDate', ]; if ($this->pdf === true) { @@ -278,6 +280,10 @@ class Diagnostics extends Wizard $title = __('SQL show engine innodb status'); break; + case 'getSystemDate': + $title = __('Date system'); + break; + default: // Not possible. $title = ''; From 6117e1741f4b89d1f9ed6d50031c45b35bdaf7dc Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 7 Feb 2023 16:48:23 +0100 Subject: [PATCH 052/100] #10190 added popup for edit events in sound console --- pandora_console/include/ajax/events.php | 54 +++++++++++------- .../include/javascript/pandora_events.js | 57 ++++++++++++++----- 2 files changed, 76 insertions(+), 35 deletions(-) diff --git a/pandora_console/include/ajax/events.php b/pandora_console/include/ajax/events.php index d9be30cc33..b4ad49546b 100644 --- a/pandora_console/include/ajax/events.php +++ b/pandora_console/include/ajax/events.php @@ -2407,6 +2407,17 @@ if ($drawConsoleSound === true) { $output .= ''; $output .= '
'; $output .= '
    '; + $output .= html_print_input_hidden( + 'ajax_file_sound_console', + ui_get_full_url('ajax.php', false, false, false), + true + ); + $output .= html_print_input_hidden( + 'meta', + is_metaconsole(), + true + ); + $output .= '
    '; $output .= '
    '; $output .= '
    '; @@ -2511,29 +2522,32 @@ if ($get_events_fired) { $return = []; if (empty($data) === false) { foreach ($data as $event) { - $return[] = [ - 'fired' => $event['id_evento'], - 'message' => ui_print_string_substr( - strip_tags(io_safe_output($event['evento'])), - 75, - true, - '9' - ), - 'priority' => ui_print_event_priority($event['criticity'], true, true), - 'type' => events_print_type_img( - $event['event_type'], - true - ), - 'timestamp' => ui_print_timestamp( - $event['timestamp'], - true, - ['style' => 'font-size: 9pt; letter-spacing: 0.3pt;'] - ), - ]; + $return[] = array_merge( + $event, + [ + 'fired' => $event['id_evento'], + 'message' => ui_print_string_substr( + strip_tags(io_safe_output($event['evento'])), + 75, + true, + '9' + ), + 'priority' => ui_print_event_priority($event['criticity'], true, true), + 'type' => events_print_type_img( + $event['event_type'], + true + ), + 'timestamp' => ui_print_timestamp( + $event['timestamp'], + true, + ['style' => 'font-size: 9pt; letter-spacing: 0.3pt;'] + ), + ] + ); } } - echo io_json_mb_encode($return); + echo io_safe_output(io_json_mb_encode($return)); return; } diff --git a/pandora_console/include/javascript/pandora_events.js b/pandora_console/include/javascript/pandora_events.js index c2ee675f0d..d2fc5698a6 100644 --- a/pandora_console/include/javascript/pandora_events.js +++ b/pandora_console/include/javascript/pandora_events.js @@ -2,7 +2,15 @@ // Show the modal window of an event function show_event_dialog(event, dialog_page) { - var ajax_file = $("#hidden-ajax_file").val(); + var ajax_file = getUrlAjax(); + + var view = ``; + + if ($("#event_details_window").length) { + view = "#event_details_window"; + } else if ($("#sound_event_details_window").length) { + view = "#sound_event_details_window"; + } if (dialog_page == undefined) { dialog_page = "general"; @@ -39,7 +47,7 @@ function show_event_dialog(event, dialog_page) { filter: values }, function(data) { - $("#event_details_window") + $(view) .hide() .empty() .append(data) @@ -312,6 +320,8 @@ function event_change_status(event_ids, server_id) { $("#button-status_button").attr("disabled", "disabled"); $("#response_loading").show(); + var url = getUrlAjax(); + jQuery.ajax({ data: { page: "include/ajax/events", @@ -321,7 +331,7 @@ function event_change_status(event_ids, server_id) { server_id: server_id }, type: "POST", - url: $("#hidden-ajax_file").val(), + url: url, dataType: "json", success: function(data) { $("#button-status_button").removeAttr("disabled"); @@ -350,9 +360,12 @@ function event_change_status(event_ids, server_id) { } }); - $("#table_events") - .DataTable() - .draw(false); + if ($("#table_events").length) { + $("#table_events") + .DataTable() + .draw(false); + } + $("#notification_status_success").show(); $("#general_status") @@ -371,6 +384,8 @@ function event_change_status(event_ids, server_id) { // Change te owner of an event to one user of empty function event_change_owner(event_id, server_id) { + var url = getUrlAjax(); + var new_owner = $("#id_owner").val(); $("#button-owner_button").attr("disabled", "disabled"); @@ -385,7 +400,7 @@ function event_change_owner(event_id, server_id) { new_owner: new_owner }, type: "POST", - url: $("#hidden-ajax_file").val(), + url: url, async: true, dataType: "html", success: function(data) { @@ -404,9 +419,12 @@ function event_change_owner(event_id, server_id) { // if (typeof dt_events !== "undefined") { // dt_events.draw(false); // } - $("#table_events") - .DataTable() - .draw(false); + + if ($("#table_events").length) { + $("#table_events") + .DataTable() + .draw(false); + } $("#notification_owner_success").show(); if (new_owner == -1) { $("#extended_event_general_page table td.general_owner").html( @@ -456,11 +474,11 @@ function event_comment(current_event) { $("#button-comment_button").attr("disabled", "disabled"); $("#response_loading").show(); - + var url = getUrlAjax(); jQuery.ajax({ data: params.join("&"), type: "POST", - url: $("#hidden-ajax_file").val(), + url: url, dataType: "html", success: function() { $("#button-comment_button").removeAttr("disabled"); @@ -481,11 +499,11 @@ function update_event(table, id_evento, type, event_rep, row, server_id) { values[this.name] = $(this).val(); }); var t1 = new Date(); - + var url = getUrlAjax(); $.ajax({ async: true, type: "POST", - url: $("#hidden-ajax_file").val(), + url: url, data: { page: "include/ajax/events", validate_event: type.validate_event, @@ -1147,6 +1165,7 @@ function check_event_sound(settings) { // Add elements. data.forEach(function(element) { var li = document.createElement("li"); + var b64 = btoa(JSON.stringify(element)); li.insertAdjacentHTML( "beforeend", '
    ' + element.priority + "
    " @@ -1157,7 +1176,7 @@ function check_event_sound(settings) { ); li.insertAdjacentHTML( "beforeend", - '
    ' + element.message + "
    " + `` ); li.insertAdjacentHTML( "beforeend", @@ -1216,3 +1235,11 @@ function table_info_response_event(response_id, event_id, server_id, massive) { } }); } + +function getUrlAjax() { + if ($("#hidden-ajax_file").length) { + return $("#hidden-ajax_file").val(); + } else if ($("#hidden-ajax_file_sound_console").length) { + return $("#hidden-ajax_file_sound_console").val(); + } +} From ea789804f4ac561671f97444e80aeb2c4a645663 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 7 Feb 2023 17:41:27 +0100 Subject: [PATCH 053/100] #10190 fixed response option --- pandora_console/include/ajax/events.php | 1 + .../include/javascript/pandora_events.js | 46 +++++++++++-------- 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/pandora_console/include/ajax/events.php b/pandora_console/include/ajax/events.php index b4ad49546b..71d65b0f48 100644 --- a/pandora_console/include/ajax/events.php +++ b/pandora_console/include/ajax/events.php @@ -2418,6 +2418,7 @@ if ($drawConsoleSound === true) { true ); $output .= '
    '; + $output .= '
    '; $output .= '
    '; $output .= '
    '; diff --git a/pandora_console/include/javascript/pandora_events.js b/pandora_console/include/javascript/pandora_events.js index d2fc5698a6..2153686774 100644 --- a/pandora_console/include/javascript/pandora_events.js +++ b/pandora_console/include/javascript/pandora_events.js @@ -130,7 +130,7 @@ function execute_response(event_id, server_id) { jQuery.ajax({ data: params, type: "POST", - url: $("#hidden-ajax_file").val(), + url: getUrlAjax(), dataType: "json", success: function(response) { // If cannot get response abort it @@ -161,7 +161,7 @@ function execute_response_massive(events, response_id, response_parameters) { jQuery.ajax({ data: params, type: "POST", - url: $("#hidden-ajax_file").val(), + url: getUrlAjax(), dataType: "json", success: function(data) { // If cannot get response abort it @@ -211,7 +211,7 @@ function execute_response_massive(events, response_id, response_parameters) { jQuery.ajax({ data: params, type: "POST", - url: $("#hidden-ajax_file").val(), + url: getUrlAjax(), dataType: "html", success: function(data) { $(".container-massive-events-response").append(data); @@ -248,13 +248,21 @@ function show_response_dialog(response_id, response) { params.push({ name: "server_id", value: response.server_id }); params.push({ name: "response", value: JSON.stringify(response) }); + var view = ``; + + if ($("#event_response_window").length) { + view = "#event_response_window"; + } else if ($("#sound_event_response_window").length) { + view = "#sound_event_response_window"; + } + jQuery.ajax({ data: params, type: "POST", - url: $("#hidden-ajax_file").val(), + url: getUrlAjax(), dataType: "html", success: function(data) { - $("#event_response_window") + $(view) .hide() .empty() .append(data) @@ -300,7 +308,7 @@ function perform_response(response, response_id, index) { jQuery.ajax({ data: params, type: "POST", - url: $("#hidden-ajax_file").val(), + url: getUrlAjax(), dataType: "html", success: function(data) { var out = data.replace(/[\n|\r]/g, "
    "); @@ -320,8 +328,6 @@ function event_change_status(event_ids, server_id) { $("#button-status_button").attr("disabled", "disabled"); $("#response_loading").show(); - var url = getUrlAjax(); - jQuery.ajax({ data: { page: "include/ajax/events", @@ -331,7 +337,7 @@ function event_change_status(event_ids, server_id) { server_id: server_id }, type: "POST", - url: url, + url: getUrlAjax(), dataType: "json", success: function(data) { $("#button-status_button").removeAttr("disabled"); @@ -384,8 +390,6 @@ function event_change_status(event_ids, server_id) { // Change te owner of an event to one user of empty function event_change_owner(event_id, server_id) { - var url = getUrlAjax(); - var new_owner = $("#id_owner").val(); $("#button-owner_button").attr("disabled", "disabled"); @@ -400,7 +404,7 @@ function event_change_owner(event_id, server_id) { new_owner: new_owner }, type: "POST", - url: url, + url: getUrlAjax(), async: true, dataType: "html", success: function(data) { @@ -474,11 +478,11 @@ function event_comment(current_event) { $("#button-comment_button").attr("disabled", "disabled"); $("#response_loading").show(); - var url = getUrlAjax(); + jQuery.ajax({ data: params.join("&"), type: "POST", - url: url, + url: getUrlAjax(), dataType: "html", success: function() { $("#button-comment_button").removeAttr("disabled"); @@ -499,11 +503,11 @@ function update_event(table, id_evento, type, event_rep, row, server_id) { values[this.name] = $(this).val(); }); var t1 = new Date(); - var url = getUrlAjax(); + $.ajax({ async: true, type: "POST", - url: url, + url: getUrlAjax(), data: { page: "include/ajax/events", validate_event: type.validate_event, @@ -794,7 +798,7 @@ function show_response_dialog_massive(response_id, response_parameters) { jQuery.ajax({ data: params, type: "POST", - url: $("#hidden-ajax_file").val(), + url: getUrlAjax(), dataType: "json", success: function(response) { // If cannot get response abort it @@ -932,7 +936,7 @@ function process_buffers(buffers) { jQuery.ajax({ data: params.join("&"), type: "POST", - url: $("#hidden-ajax_file").val(), + url: getUrlAjax(), async: true, dataType: "html", success: function(data) { @@ -1204,10 +1208,12 @@ function table_info_response_event(response_id, event_id, server_id, massive) { params.push({ name: "server_id", value: server_id }); params.push({ name: "event_id", value: event_id }); + var url = getUrlAjax(); + jQuery.ajax({ data: params, type: "POST", - url: $("#hidden-ajax_file").val(), + url: url, dataType: "json", success: function(response) { if (response) { @@ -1220,7 +1226,7 @@ function table_info_response_event(response_id, event_id, server_id, massive) { jQuery.ajax({ data: params, type: "POST", - url: $("#hidden-ajax_file").val(), + url: url, dataType: "html", success: function(output) { if (massive === true) { From f845cc94787a8cda7aadef2a1c0d64ba008e533a Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 8 Feb 2023 01:01:58 +0100 Subject: [PATCH 054/100] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 41c4d14609..fe5bad7109 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.768-230207 +Version: 7.0NG.768-230208 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 8356fb5e9a..38f99a713f 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230207" +pandora_version="7.0NG.768-230208" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 8b85b2f4f8..f01ddb5744 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.768'; -use constant AGENT_BUILD => '230207'; +use constant AGENT_BUILD => '230208'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 6fd83ca74f..c1b7aa663a 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230207 +%define release 230208 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 339dd209ba..962b9077ba 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230207 +%define release 230208 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 1a412689bb..a6a9b0271b 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230207" +PI_BUILD="230208" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 8488ced2e5..4f5de91e58 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230207} +{230208} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index b5110d1f98..304f3a22f8 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.768 Build 230207") +#define PANDORA_VERSION ("7.0NG.768 Build 230208") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 075e64c86e..030041571c 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.768(Build 230207))" + VALUE "ProductVersion", "(7.0NG.768(Build 230208))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index a56cde214b..807a36e537 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.768-230207 +Version: 7.0NG.768-230208 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 15b27b4dff..6ff898257a 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230207" +pandora_version="7.0NG.768-230208" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index e3ab2c4a2a..1777d0bb57 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230207'; +$build_version = 'PC230208'; $pandora_version = 'v7.0NG.768'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 89d4d17655..064cf37935 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 02ff4577ac..fff8104658 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230207 +%define release 230208 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index ae0f408b01..7b79bbbd4c 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230207 +%define release 230208 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index ed97ed63d9..3696050dea 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230207" +PI_BUILD="230208" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 887f138e91..cb45ea6415 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.768 Build 230207"; +my $version = "7.0NG.768 Build 230208"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 55eb14fda9..f3346387d2 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.768 Build 230207"; +my $version = "7.0NG.768 Build 230208"; # save program name for logging my $progname = basename($0); From fc7673f6516d1445f361eeb6562ae8db57c77023 Mon Sep 17 00:00:00 2001 From: rafael Date: Wed, 8 Feb 2023 14:59:24 +0100 Subject: [PATCH 055/100] 10242 adding scripts for external databases --- .../deploy-scripts/deploy_ext_database_el8.sh | 320 ++++++++++++++++++ .../deploy_ext_database_ubuntu_2204.sh | 257 ++++++++++++++ 2 files changed, 577 insertions(+) create mode 100644 extras/deploy-scripts/deploy_ext_database_el8.sh create mode 100644 extras/deploy-scripts/deploy_ext_database_ubuntu_2204.sh diff --git a/extras/deploy-scripts/deploy_ext_database_el8.sh b/extras/deploy-scripts/deploy_ext_database_el8.sh new file mode 100644 index 0000000000..422887b0e2 --- /dev/null +++ b/extras/deploy-scripts/deploy_ext_database_el8.sh @@ -0,0 +1,320 @@ +#!/bin/bash +####################################################### +# PandoraFMS Community online installation script +####################################################### +## Tested versions ## +# Centos 8.4, 8.5 +# Rocky 8.4, 8.5, 8.6, 8.7 +# Almalinuz 8.4, 8.5 +# RedHat 8.5 + +#Constants +S_VERSION='202302081' +LOGFILE="/tmp/deploy-ext-db-$(date +%F).log" + + +# define default variables +[ "$TZ" ] || TZ="Europe/Madrid" +[ "$MYVER" ] || MYVER=57 +[ "$DBHOST" ] || DBHOST=127.0.0.1 +[ "$DBNAME" ] || DBNAME=pandora +[ "$DBUSER" ] || DBUSER=pandora +[ "$DBPASS" ] || DBPASS=pandora +[ "$DBPORT" ] || DBPORT=3306 +[ "$DBROOTUSER" ] || DBROOTUSER=root +[ "$DBROOTPASS" ] || DBROOTPASS=pandora +[ "$SKIP_DATABASE_INSTALL" ] || SKIP_DATABASE_INSTALL=0 +[ "$SKIP_KERNEL_OPTIMIZATIONS" ] || SKIP_KERNEL_OPTIMIZATIONS=0 +[ "$POOL_SIZE" ] || POOL_SIZE=$(grep -i total /proc/meminfo | head -1 | awk '{printf "%.2f \n", $(NF-1)*0.4/1024}' | sed "s/\\..*$/M/g") + +# Ansi color code variables +red="\e[0;91m" +green="\e[0;92m" +cyan="\e[0;36m" +reset="\e[0m" + +# Functions +execute_cmd () { + local cmd="$1" + local msg="$2" + + echo -e "${cyan}$msg...${reset}" + $cmd &>> "$LOGFILE" + if [ $? -ne 0 ]; then + echo -e "${red}Fail${reset}" + [ "$3" ] && echo "$3" + echo "Error installing Pandora FMS for detailed error please check log: $LOGFILE" + rm -rf "$HOME"/pandora_deploy_tmp &>> "$LOGFILE" + exit 1 + else + echo -e "\e[1A\e ${cyan}$msg...${reset} ${green}OK${reset}" + return 0 + fi +} + +check_cmd_status () { + if [ $? -ne 0 ]; then + echo -e "${red}Fail${reset}" + [ "$1" ] && echo "$1" + echo "Error installing Pandora FMS for detailed error please check log: $LOGFILE" + rm -rf "$HOME"/pandora_deploy_tmp/*.rpm* &>> "$LOGFILE" + exit 1 + else + echo -e "${green}OK${reset}" + return 0 + fi +} + +check_root_permissions () { + echo -en "${cyan}Checking root account... ${reset}" + if [ "$(whoami)" != "root" ]; then + echo -e "${red}Fail${reset}" + echo "Please use a root account or sudo for installing Pandora FMS" + echo "Error installing Pandora FMS for detailed error please check log: $LOGFILE" + exit 1 + + else + echo -e "${green}OK${reset}" + fi +} + +## Main +echo "Starting PandoraFMS External DB deployment EL8 ver. $S_VERSION" + +# Centos Version +if [ ! "$(grep -Ei 'centos|rocky|Almalinux|Red Hat Enterprise' /etc/redhat-release)" ]; then + printf "\n ${red}Error this is not a Centos/Rocky/Almalinux Base system, this installer is compatible with RHEL/Almalinux/Centos/Rockylinux systems only${reset}\n" + exit 1 +fi + + +echo -en "${cyan}Check Centos Version...${reset}" +[ $(sed -nr 's/VERSION_ID+=\s*"([0-9]).*"$/\1/p' /etc/os-release) -eq '8' ] +check_cmd_status 'Error OS version, RHEL/Almalinux/Centos/Rockylinux 8+ is expected' + +#Detect OS +os_name=$(grep ^PRETTY_NAME= /etc/os-release | cut -d '=' -f2 | tr -d '"') +execute_cmd "echo $os_name" "OS detected: ${os_name}" + +# initialice logfile +execute_cmd "echo 'Starting community deployment' > $LOGFILE" "All installer activity is logged on $LOGFILE" +echo "Community installer version: $S_VERSION" >> "$LOGFILE" + +# Pre checks +# Root permisions +check_root_permissions + +# Systemd +execute_cmd "systemctl status" "Checking SystemD" 'This is not a SystemD enable system, if tryng to use in a docker env please check: https://github.com/pandorafms/pandorafms/tree/develop/extras/docker/centos8' + +# Check memomry greather or equal to 2G +execute_cmd "[ $(grep MemTotal /proc/meminfo | awk '{print $2}') -ge 1700000 ]" 'Checking memory (required: 2 GB)' + +# Check disk size at least 10 Gb free space +execute_cmd "[ $(df -BM / | tail -1 | awk '{print $4}' | tr -d M) -gt 10000 ]" 'Checking Disk (required: 10 GB free min)' + +# Setting timezone +rm -rf /etc/localtime &>> "$LOGFILE" +execute_cmd "timedatectl set-timezone $TZ" "Setting Timezone $TZ" + +# Execute tools check +execute_cmd "awk --version" 'Checking needed tools: awk' +execute_cmd "grep --version" 'Checking needed tools: grep' +execute_cmd "sed --version" 'Checking needed tools: sed' +execute_cmd "dnf --version" 'Checking needed tools: dnf' + +# Creating working directory +rm -rf "$HOME"/pandora_deploy_tmp/*.rpm* &>> "$LOGFILE" +mkdir "$HOME"/pandora_deploy_tmp &>> "$LOGFILE" +execute_cmd "cd $HOME/pandora_deploy_tmp" "Moving to workspace: $HOME/pandora_deploy_tmp" + +## Extra steps on redhat envs +if [ "$(grep -Ei 'Red Hat Enterprise' /etc/redhat-release)" ]; then + ## In case REDHAT + # Check susbscription manager status: + echo -en "${cyan}Checking Red Hat Enterprise subscription... ${reset}" + subscription-manager list &>> "$LOGFILE" + subscription-manager status &>> "$LOGFILE" + check_cmd_status 'Error checking subscription status, make sure your server is activated and suscribed to Red Hat Enterprise repositories' + + # Ckeck repolist + dnf repolist &>> "$LOGFILE" + echo -en "${cyan}Checking Red Hat Enterprise repolist... ${reset}" + dnf repolist | grep 'rhel-8-for-x86_64-baseos-rpms' &>> "$LOGFILE" + check_cmd_status 'Error checking repositories status, could try a subscription-manager attach command or contact sysadmin' + + #install extra repos + extra_repos=" \ + tar \ + dnf-utils \ + https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm \ + https://repo.percona.com/yum/percona-release-latest.noarch.rpm" + + execute_cmd "dnf install -y $extra_repos" "Installing extra repositories" + execute_cmd "subscription-manager repos --enable codeready-builder-for-rhel-8-x86_64-rpms" "Enabling subscription to codeready-builder" +else + # For alma/rocky/centos + extra_repos=" \ + tar \ + dnf-utils \ + epel-release \ + https://repo.percona.com/yum/percona-release-latest.noarch.rpm" + + execute_cmd "dnf install -y $extra_repos" "Installing extra repositories" + execute_cmd "dnf config-manager --set-enabled powertools" "Configuring Powertools" +fi + + +#Installing wget +execute_cmd "dnf install -y wget" "Installing wget" + + +# Install percona Database +execute_cmd "dnf module disable -y mysql" "Disabiling mysql module" + +if [ "$MYVER" -eq '80' ] ; then + execute_cmd "percona-release setup ps80 -y" "Enabling mysql80 module" + execute_cmd "dnf install -y percona-server-server percona-xtrabackup-24" "Installing Percona Server 80" +fi + +if [ "$MYVER" -ne '80' ] ; then + execute_cmd "dnf install -y Percona-Server-server-57 percona-xtrabackup-24" "Installing Percona Server 57" +fi + +# Disabling SELINUX and firewalld +setenforce 0 &>> "$LOGFILE" +sed -i -e "s/^SELINUX=.*/SELINUX=disabled/g" /etc/selinux/config &>> "$LOGFILE" +systemctl disable firewalld --now &>> "$LOGFILE" + +# Adding standar cnf for initial setup. +cat > /etc/my.cnf << EO_CONFIG_TMP +[mysqld] +datadir=/var/lib/mysql +socket=/var/lib/mysql/mysql.sock +symbolic-links=0 +log-error=/var/log/mysqld.log +pid-file=/var/run/mysqld/mysqld.pid +EO_CONFIG_TMP + +#Configuring Database +if [ "$SKIP_DATABASE_INSTALL" -eq '0' ] ; then + execute_cmd "systemctl start mysqld" "Starting database engine" + export MYSQL_PWD=$(grep "temporary password" /var/log/mysqld.log | rev | cut -d' ' -f1 | rev) + if [ "$MYVER" -eq '80' ] ; then + echo """ + SET PASSWORD FOR '$DBROOTUSER'@'localhost' = 'Pandor4!'; + UNINSTALL COMPONENT 'file://component_validate_password'; + SET PASSWORD FOR '$DBROOTUSER'@'localhost' = '$DBROOTPASS'; + """ | mysql --connect-expired-password -u$DBROOTUSER &>> "$LOGFILE" + fi + + if [ "$MYVER" -ne '80' ] ; then + echo """ + SET PASSWORD FOR '$DBROOTUSER'@'localhost' = PASSWORD('Pandor4!'); + UNINSTALL PLUGIN validate_password; + SET PASSWORD FOR '$DBROOTUSER'@'localhost' = PASSWORD('$DBROOTPASS'); + """ | mysql --connect-expired-password -u$DBROOTUSER &>> "$LOGFILE"fi + fi + + export MYSQL_PWD=$DBROOTPASS + echo -en "${cyan}Creating Pandora FMS database...${reset}" + echo "create database $DBNAME" | mysql -u$DBROOTUSER -P$DBPORT -h$DBHOST + check_cmd_status "Error creating database $DBNAME, is this an empty node? if you have a previus installation please contact with support." + + echo "CREATE USER \"$DBUSER\"@'%' IDENTIFIED BY \"$DBPASS\";" | mysql -u$DBROOTUSER -P$DBPORT -h$DBHOST + echo "ALTER USER \"$DBUSER\"@'%' IDENTIFIED WITH mysql_native_password BY \"$DBPASS\"" | mysql -u$DBROOTUSER -P$DBPORT -h$DBHOST + echo "GRANT ALL PRIVILEGES ON $DBNAME.* TO \"$DBUSER\"@'%'" | mysql -u$DBROOTUSER -P$DBPORT -h$DBHOST + +#Generating my.cnf +cat > /etc/my.cnf << EO_CONFIG_F +[mysqld] +datadir=/var/lib/mysql +socket=/var/lib/mysql/mysql.sock +user=mysql +character-set-server=utf8 +skip-character-set-client-handshake +# Disabling symbolic-links is recommended to prevent assorted security risks +symbolic-links=0 +# Mysql optimizations for Pandora FMS +# Please check the documentation in http://pandorafms.com for better results + +max_allowed_packet = 64M +innodb_buffer_pool_size = $POOL_SIZE +innodb_lock_wait_timeout = 90 +innodb_file_per_table +innodb_flush_log_at_trx_commit = 0 +innodb_flush_method = O_DIRECT +innodb_log_file_size = 64M +innodb_log_buffer_size = 16M +innodb_io_capacity = 100 +thread_cache_size = 8 +thread_stack = 256K +max_connections = 100 + +key_buffer_size=4M +read_buffer_size=128K +read_rnd_buffer_size=128K +sort_buffer_size=128K +join_buffer_size=4M + +query_cache_type = 1 +query_cache_size = 64M +query_cache_min_res_unit = 2k +query_cache_limit = 256K + +#skip-log-bin + +sql_mode="" + +[mysqld_safe] +log-error=/var/log/mysqld.log +pid-file=/var/run/mysqld/mysqld.pid + +EO_CONFIG_F + + if [ "$MYVER" -eq '80' ] ; then + sed -i -e "/query_cache.*/ s/^#*/#/g" /etc/my.cnf + sed -i -e "s/#skip-log-bin/skip-log-bin/g" /etc/my.cnf + fi + + execute_cmd "systemctl restart mysqld" "Configuring database engine" + execute_cmd "systemctl enable mysqld --now" "Enabling Database service" +fi +export MYSQL_PWD=$DBPASS + + +# Kernel optimization + +if [ "$SKIP_KERNEL_OPTIMIZATIONS" -eq '0' ] ; then +cat >> /etc/sysctl.conf < /dev/null # remove last log before start + +# define default variables +[ "$TZ" ] || TZ="Europe/Madrid" +[ "$DBHOST" ] || DBHOST=127.0.0.1 +[ "$DBNAME" ] || DBNAME=pandora +[ "$DBUSER" ] || DBUSER=pandora +[ "$DBPASS" ] || DBPASS=pandora +[ "$DBPORT" ] || DBPORT=3306 +[ "$DBROOTPASS" ] || DBROOTPASS=pandora +[ "$SKIP_DATABASE_INSTALL" ] || SKIP_DATABASE_INSTALL=0 +[ "$SKIP_KERNEL_OPTIMIZATIONS" ] || SKIP_KERNEL_OPTIMIZATIONS=0 +[ "$POOL_SIZE" ] || POOL_SIZE=$(grep -i total /proc/meminfo | head -1 | awk '{printf "%.2f \n", $(NF-1)*0.4/1024}' | sed "s/\\..*$/M/g") + + +# Ansi color code variables +red="\e[0;91m" +green="\e[0;92m" +cyan="\e[0;36m" +reset="\e[0m" + +# Functions + +execute_cmd () { + local cmd="$1" + local msg="$2" + + echo -e "${cyan}$msg...${reset}" + $cmd &>> "$LOGFILE" + if [ $? -ne 0 ]; then + echo -e "${red}Fail${reset}" + [ "$3" ] && echo "$3" + echo "Error installing Pandora FMS for detailed error please check log: $LOGFILE" + rm -rf "$WORKDIR" &>> "$LOGFILE" + exit 1 + else + echo -e "\e[1A\e ${cyan}$msg...${reset} ${green}OK${reset}" + return 0 + fi +} + +check_cmd_status () { + if [ $? -ne 0 ]; then + echo -e "${red}Fail${reset}" + [ "$1" ] && echo "$1" + echo "Error installing Pandora FMS for detailed error please check log: $LOGFILE" + rm -rf "$WORKDIR" &>> "$LOGFILE" + exit 1 + else + echo -e "${green}OK${reset}" + return 0 + fi +} + +check_root_permissions () { + echo -en "${cyan}Checking root account... ${reset}" + if [ "$(whoami)" != "root" ]; then + echo -e "${red}Fail${reset}" + echo "Please use a root account or sudo for installing Pandora FMS" + echo "Error installing Pandora FMS for detailed error please check log: $LOGFILE" + exit 1 + + else + echo -e "${green}OK${reset}" + fi +} + +## Main +echo "Starting PandoraFMS External DB deployment Ubuntu 22.04 ver. $S_VERSION" + +# Ubuntu Version +if [ ! "$(grep -Ei 'Ubuntu' /etc/lsb-release)" ]; then + printf "\n ${red}Error this is not a Ubuntu system, this installer is compatible with Ubuntu systems only${reset}\n" + exit 1 +fi + + +echo -en "${cyan}Check Ubuntu Version...${reset}" +[ $(sed -nr 's/VERSION_ID+=\s*"([0-9][0-9].[0-9][0-9])"$/\1/p' /etc/os-release) == "22.04" ] +check_cmd_status 'Error OS version, Ubuntu 22.04 is expected' + +#Detect OS +os_name=$(grep ^PRETTY_NAME= /etc/os-release | cut -d '=' -f2 | tr -d '"') +execute_cmd "echo $os_name" "OS detected: ${os_name}" + +# initialice logfile +execute_cmd "echo 'Starting community deployment' > $LOGFILE" "All installer activity is logged on $LOGFILE" +echo "Community installer version: $S_VERSION" >> "$LOGFILE" + +# Pre checks +# Root permisions +check_root_permissions + +#Install awk, sed, grep if not present +execute_cmd "apt install -y gawk sed grep" 'Installing needed tools' + +# Systemd +execute_cmd "systemctl --version" "Checking SystemD" 'This is not a SystemD enable system, if tryng to use in a docker env please check: https://github.com/pandorafms/pandorafms/tree/develop/extras/docker/centos8' + +# Check memomry greather or equal to 2G +execute_cmd "[ $(grep MemTotal /proc/meminfo | awk '{print $2}') -ge 1700000 ]" 'Checking memory (required: 2 GB)' + +# Check disk size at least 10 Gb free space +execute_cmd "[ $(df -BM / | tail -1 | awk '{print $4}' | tr -d M) -gt 10000 ]" 'Checking Disk (required: 10 GB free min)' + +# Setting timezone +rm -rf /etc/localtime &>> "$LOGFILE" +execute_cmd "timedatectl set-timezone $TZ" "Setting Timezone $TZ" + +# Execute tools check +execute_cmd "awk --version" 'Checking needed tools: awk' +execute_cmd "grep --version" 'Checking needed tools: grep' +execute_cmd "sed --version" 'Checking needed tools: sed' +execute_cmd "apt --version" 'Checking needed tools: apt' + +# Creating working directory +rm -rf "$WORKDIR" &>> "$LOGFILE" +mkdir -p "$WORKDIR" &>> "$LOGFILE" +execute_cmd "cd $WORKDIR" "Moving to workdir: $WORKDIR" + +## Install utils +execute_cmd "apt update" "Updating repos" +execute_cmd "apt install -y net-tools vim curl wget software-properties-common apt-transport-https" "Installing utils" + +# Disabling apparmor and ufw +systemctl stop ufw.service &>> "$LOGFILE" +systemctl disable ufw &>> "$LOGFILE" +systemctl stop apparmor &>> "$LOGFILE" +systemctl disable apparmor &>> "$LOGFILE" + +#install mysql +execute_cmd "curl -O https://repo.percona.com/apt/percona-release_latest.generic_all.deb" "Downloading Percona repository for MySQL8" +execute_cmd "apt install -y gnupg2 lsb-release ./percona-release_latest.generic_all.deb" "Installing Percona repository for MySQL8" +execute_cmd "percona-release setup ps80" "Configuring Percona repository for MySQL8" + +echo -en "${cyan}Installing Percona Server for MySQL8...${reset}" + env DEBIAN_FRONTEND=noninteractive apt install -y percona-server-server &>> "$LOGFILE" +check_cmd_status "Error Installing MySql Server" + +#Configuring Database +if [ "$SKIP_DATABASE_INSTALL" -eq '0' ] ; then + execute_cmd "systemctl start mysql" "Starting database engine" + + echo """ + ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '$DBROOTPASS'; + """ | mysql -uroot &>> "$LOGFILE" + + export MYSQL_PWD=$DBROOTPASS + echo -en "${cyan}Creating Pandora FMS database...${reset}" + echo "create database $DBNAME" | mysql -uroot -P$DBPORT -h$DBHOST + check_cmd_status "Error creating database $DBNAME, is this an empty node? if you have a previus installation please contact with support." + + echo "CREATE USER \"$DBUSER\"@'%' IDENTIFIED BY \"$DBPASS\";" | mysql -uroot -P$DBPORT -h$DBHOST + echo "ALTER USER \"$DBUSER\"@'%' IDENTIFIED WITH mysql_native_password BY \"$DBPASS\"" | mysql -uroot -P$DBPORT -h$DBHOST + echo "GRANT ALL PRIVILEGES ON $DBNAME.* TO \"$DBUSER\"@'%'" | mysql -uroot -P$DBPORT -h$DBHOST +fi +export MYSQL_PWD=$DBPASS + +#Generating my.cnf +cat > /etc/mysql/my.cnf << EOF_DB +[mysqld] +datadir=/var/lib/mysql +user=mysql +character-set-server=utf8 +skip-character-set-client-handshake +# Disabling symbolic-links is recommended to prevent assorted security risks +symbolic-links=0 +# Mysql optimizations for Pandora FMS +# Please check the documentation in http://pandorafms.com for better results + +max_allowed_packet = 64M +innodb_buffer_pool_size = $POOL_SIZE +innodb_lock_wait_timeout = 90 +innodb_file_per_table +innodb_flush_log_at_trx_commit = 0 +innodb_flush_method = O_DIRECT +innodb_log_file_size = 64M +innodb_log_buffer_size = 16M +innodb_io_capacity = 100 +thread_cache_size = 8 +thread_stack = 256K +max_connections = 100 + +key_buffer_size=4M +read_buffer_size=128K +read_rnd_buffer_size=128K +sort_buffer_size=128K +join_buffer_size=4M + +skip-log-bin + +sql_mode="" + +log-error=/var/log/mysql/error.log +[mysqld_safe] +log-error=/var/log/mysqld.log +pid-file=/var/run/mysqld/mysqld.pid + +EOF_DB + +execute_cmd "systemctl restart mysql" "Configuring and restarting database engine" + +# Kernel optimization +if [ "$SKIP_KERNEL_OPTIMIZATIONS" -eq '0' ] ; then +cat >> /etc/sysctl.conf < Date: Mon, 6 Feb 2023 12:47:36 +0100 Subject: [PATCH 056/100] Update pandora_exec and pandora_agent_exec. The previous versions of pandora_exec and pandora_agent_exec did not kill the running process after a timeout. --- pandora_agents/pc/pandora_agent_exec | 61 ++++++++++++------------ pandora_agents/unix/pandora_agent_exec | 61 ++++++++++++------------ pandora_server/bin/pandora_exec | 65 ++++++++++++-------------- 3 files changed, 87 insertions(+), 100 deletions(-) diff --git a/pandora_agents/pc/pandora_agent_exec b/pandora_agents/pc/pandora_agent_exec index 48fba5c0d8..2a990067ae 100644 --- a/pandora_agents/pc/pandora_agent_exec +++ b/pandora_agents/pc/pandora_agent_exec @@ -1,15 +1,8 @@ #!/usr/bin/perl -########################################################################## -# pandora_agent_exec +################################################################################ +# pandora_exec - Execute a command with a time limit. # -# Executes the given command and prints its output to stdout. If the -# execution times out or the command does not exist nothing is printed -# to stdout. This is part of Pandora FMS Plugin server, do not delete!. -# -# Usage: pandora_agent_exec -########################################################################## -# Copyright (c) 2008-2010 Ramon Novoa, rnovoa@gmail.com -# (c) 2008-2010 Artica Soluciones Tecnologicas S.L +# Copyright (c) 2008-2023 Artica PFMS S.L. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -22,37 +15,41 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -########################################################################## - +################################################################################ use strict; use warnings; +use POSIX qw(WEXITSTATUS WIFEXITED); -# Check command line parameters +# Check command line arguments. if ($#ARGV < 1) { + print("Usage: $0 \n"); exit 1; } my @opts = @ARGV; my $timeout = shift(@opts); -my $command = join(' ', @opts); -my $output = ''; -my $ReturnCode = 0; +my $command = ($0 =~ m/_agent_exec$/) ? # For backward compatibility with pandora_agent. + join(' ', @opts) : + join(' ', map { quotemeta($_) } @opts); -# Execute the command -eval { - local $SIG{ALRM} = sub { die "alarm\n" }; - alarm $timeout; - - $output = `$command`; - $ReturnCode = ($? >> 8) & 0xff; - alarm 0; -}; - -# Timeout -if ($@ eq "alarm\n") { - exit 3; +# Fork: +# * The child will run the command. +# * The parent will timeout if needed +# and exit with the appropriate exit status. +my $pid = fork(); +if ($pid == 0) { + setpgrp(); + exec($command); +} else { + eval { + local $SIG{ALRM} = sub { kill(9, -$pid); exit 1; }; + alarm $timeout; + waitpid($pid, 0); + alarm 0; + if (WIFEXITED(${^CHILD_ERROR_NATIVE})) { + exit WEXITSTATUS(${^CHILD_ERROR_NATIVE}); + } + }; } -print $output; - -exit $ReturnCode; +exit 1; diff --git a/pandora_agents/unix/pandora_agent_exec b/pandora_agents/unix/pandora_agent_exec index 48fba5c0d8..2a990067ae 100755 --- a/pandora_agents/unix/pandora_agent_exec +++ b/pandora_agents/unix/pandora_agent_exec @@ -1,15 +1,8 @@ #!/usr/bin/perl -########################################################################## -# pandora_agent_exec +################################################################################ +# pandora_exec - Execute a command with a time limit. # -# Executes the given command and prints its output to stdout. If the -# execution times out or the command does not exist nothing is printed -# to stdout. This is part of Pandora FMS Plugin server, do not delete!. -# -# Usage: pandora_agent_exec -########################################################################## -# Copyright (c) 2008-2010 Ramon Novoa, rnovoa@gmail.com -# (c) 2008-2010 Artica Soluciones Tecnologicas S.L +# Copyright (c) 2008-2023 Artica PFMS S.L. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -22,37 +15,41 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -########################################################################## - +################################################################################ use strict; use warnings; +use POSIX qw(WEXITSTATUS WIFEXITED); -# Check command line parameters +# Check command line arguments. if ($#ARGV < 1) { + print("Usage: $0 \n"); exit 1; } my @opts = @ARGV; my $timeout = shift(@opts); -my $command = join(' ', @opts); -my $output = ''; -my $ReturnCode = 0; +my $command = ($0 =~ m/_agent_exec$/) ? # For backward compatibility with pandora_agent. + join(' ', @opts) : + join(' ', map { quotemeta($_) } @opts); -# Execute the command -eval { - local $SIG{ALRM} = sub { die "alarm\n" }; - alarm $timeout; - - $output = `$command`; - $ReturnCode = ($? >> 8) & 0xff; - alarm 0; -}; - -# Timeout -if ($@ eq "alarm\n") { - exit 3; +# Fork: +# * The child will run the command. +# * The parent will timeout if needed +# and exit with the appropriate exit status. +my $pid = fork(); +if ($pid == 0) { + setpgrp(); + exec($command); +} else { + eval { + local $SIG{ALRM} = sub { kill(9, -$pid); exit 1; }; + alarm $timeout; + waitpid($pid, 0); + alarm 0; + if (WIFEXITED(${^CHILD_ERROR_NATIVE})) { + exit WEXITSTATUS(${^CHILD_ERROR_NATIVE}); + } + }; } -print $output; - -exit $ReturnCode; +exit 1; diff --git a/pandora_server/bin/pandora_exec b/pandora_server/bin/pandora_exec index d6d5da1c8c..2a990067ae 100755 --- a/pandora_server/bin/pandora_exec +++ b/pandora_server/bin/pandora_exec @@ -1,15 +1,8 @@ #!/usr/bin/perl -########################################################################## -# pandora_exec +################################################################################ +# pandora_exec - Execute a command with a time limit. # -# Executes the given command and prints its output to stdout. If the -# execution times out or the command does not exist nothing is printed -# to stdout. This is part of Pandora FMS Plugin server, do not delete!. -# -# Usage: pandora_exec -########################################################################## -# Copyright (c) 2008 Ramon Novoa, rnovoa@gmail.com -# (c) 2008 Artica Soluciones Tecnologicas S.L +# Copyright (c) 2008-2023 Artica PFMS S.L. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -22,41 +15,41 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -########################################################################## - +################################################################################ use strict; use warnings; +use POSIX qw(WEXITSTATUS WIFEXITED); -# Check command line parameters +# Check command line arguments. if ($#ARGV < 1) { + print("Usage: $0 \n"); exit 1; } my @opts = @ARGV; my $timeout = shift(@opts); -my $command; -foreach my $arg (@opts) { - $command .= $^O ne 'MSWin32' ? quotemeta ($arg) . ' ' : '"' . $arg . '" '; -} -chomp ($command); -my $output = ''; -my $ReturnCode = 0; +my $command = ($0 =~ m/_agent_exec$/) ? # For backward compatibility with pandora_agent. + join(' ', @opts) : + join(' ', map { quotemeta($_) } @opts); -# Execute the command -eval { - local $SIG{ALRM} = sub { die "alarm\n" }; - alarm $timeout; - - $output = `$command`; - $ReturnCode = ($? >> 8) & 0xff; - alarm 0; -}; - -# Timeout -if ($@ eq "alarm\n") { - exit 3; +# Fork: +# * The child will run the command. +# * The parent will timeout if needed +# and exit with the appropriate exit status. +my $pid = fork(); +if ($pid == 0) { + setpgrp(); + exec($command); +} else { + eval { + local $SIG{ALRM} = sub { kill(9, -$pid); exit 1; }; + alarm $timeout; + waitpid($pid, 0); + alarm 0; + if (WIFEXITED(${^CHILD_ERROR_NATIVE})) { + exit WEXITSTATUS(${^CHILD_ERROR_NATIVE}); + } + }; } -print $output; - -exit $ReturnCode; +exit 1; From 34c61bb513b86c7a51c67365242784ea3d676cbb Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 9 Feb 2023 01:02:05 +0100 Subject: [PATCH 057/100] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index fe5bad7109..4cfb010cf2 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.768-230208 +Version: 7.0NG.768-230209 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 38f99a713f..38048034a1 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230208" +pandora_version="7.0NG.768-230209" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index f01ddb5744..228a025448 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.768'; -use constant AGENT_BUILD => '230208'; +use constant AGENT_BUILD => '230209'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index c1b7aa663a..1fb9eac584 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230208 +%define release 230209 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 962b9077ba..1c08401142 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230208 +%define release 230209 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index a6a9b0271b..66d6f764fa 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230208" +PI_BUILD="230209" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 4f5de91e58..faf4af76a5 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230208} +{230209} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 304f3a22f8..af6acde6bc 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.768 Build 230208") +#define PANDORA_VERSION ("7.0NG.768 Build 230209") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 030041571c..fb7c956dcf 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.768(Build 230208))" + VALUE "ProductVersion", "(7.0NG.768(Build 230209))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 807a36e537..6fbb9eae7c 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.768-230208 +Version: 7.0NG.768-230209 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 6ff898257a..19865fc581 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230208" +pandora_version="7.0NG.768-230209" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 1777d0bb57..2f11c97e68 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230208'; +$build_version = 'PC230209'; $pandora_version = 'v7.0NG.768'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 064cf37935..e7026a9169 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index fff8104658..de33a9be3f 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230208 +%define release 230209 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 7b79bbbd4c..8ce0f6c363 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230208 +%define release 230209 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 3696050dea..0714a32686 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230208" +PI_BUILD="230209" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index cb45ea6415..6192b62b47 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.768 Build 230208"; +my $version = "7.0NG.768 Build 230209"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index f3346387d2..3a9abd0f9b 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.768 Build 230208"; +my $version = "7.0NG.768 Build 230209"; # save program name for logging my $progname = basename($0); From 9f8d302719765df6144dfc0266c5056319854afc Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 10 Feb 2023 01:01:50 +0100 Subject: [PATCH 058/100] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 4cfb010cf2..b565d1ff22 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.768-230209 +Version: 7.0NG.768-230210 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 38048034a1..7dc4394f80 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230209" +pandora_version="7.0NG.768-230210" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 228a025448..3d0e51330f 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.768'; -use constant AGENT_BUILD => '230209'; +use constant AGENT_BUILD => '230210'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 1fb9eac584..48e2b24538 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230209 +%define release 230210 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 1c08401142..92666a0db0 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230209 +%define release 230210 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 66d6f764fa..b5ad7ba5c4 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230209" +PI_BUILD="230210" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index faf4af76a5..8927624adc 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230209} +{230210} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index af6acde6bc..5067264a29 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.768 Build 230209") +#define PANDORA_VERSION ("7.0NG.768 Build 230210") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index fb7c956dcf..54596f74f5 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.768(Build 230209))" + VALUE "ProductVersion", "(7.0NG.768(Build 230210))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 6fbb9eae7c..9a08efb4dc 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.768-230209 +Version: 7.0NG.768-230210 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 19865fc581..70a58b8f43 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230209" +pandora_version="7.0NG.768-230210" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 2f11c97e68..79016bf075 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230209'; +$build_version = 'PC230210'; $pandora_version = 'v7.0NG.768'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index e7026a9169..e19455763e 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index de33a9be3f..35238d78ba 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230209 +%define release 230210 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 8ce0f6c363..ab61c7894d 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230209 +%define release 230210 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 0714a32686..4a3432fbfe 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230209" +PI_BUILD="230210" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 6192b62b47..15b8b0897e 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.768 Build 230209"; +my $version = "7.0NG.768 Build 230210"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 3a9abd0f9b..b0839f05af 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.768 Build 230209"; +my $version = "7.0NG.768 Build 230210"; # save program name for logging my $progname = basename($0); From 06442fa6e30cb00fe4d41245814ff53831722c96 Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 10 Feb 2023 15:03:57 +0100 Subject: [PATCH 059/100] WIP: Omnishell error xml if YAML::Tiny not installed on agent --- pandora_agents/unix/pandora_agent | 46 ++++++++++++++++++------------- 1 file changed, 27 insertions(+), 19 deletions(-) diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index f01ddb5744..90b7d93c7c 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -556,30 +556,38 @@ BEGIN { sub runCommand { my ($self, $ref, $output_mode) = @_; + my $result; if($self->load_libraries()) { # Functionality possible. my $command = $self->{'commands'}->{$ref}; - my $result = $self->evaluate_command($ref); - if (ref($result) eq "HASH") { - # Process command result. - if (defined($output_mode) && $output_mode eq 'xml') { - my $output = ''; - $output .= "\n"; - $output .= " \n"; - $output .= " {'name'}."]]>\n"; - $output .= " \n"; - $output .= " {'error_level'}."]]>\n"; - $output .= " {'stdout'}."]]>\n"; - $output .= " {'stderr'}."]]>\n"; - $output .= " \n"; - $output .= "\n"; + $result = $self->evaluate_command($ref); + } else { + $result = { + 'stderr' => 'Cannot use commands without YAML dependency, please install it.', + 'name' => 'YAML::Tiny', + 'error_level' => 2, + }; + } - return $output; - } - return $result; - } else { - $self->set_last_error('Failed to process ['.$ref.']: '.$result); + if (ref($result) eq "HASH") { + # Process command result. + if (defined($output_mode) && $output_mode eq 'xml') { + my $output = ''; + $output .= "\n"; + $output .= " \n"; + $output .= " {'name'}."]]>\n"; + $output .= " \n"; + $output .= " {'error_level'}."]]>\n"; + $output .= " {'stdout'}."]]>\n"; + $output .= " {'stderr'}."]]>\n"; + $output .= " \n"; + $output .= "\n"; + + return $output; } + return $result; + } else { + $self->set_last_error('Failed to process ['.$ref.']: '.$result); } return undef; From 1e5ac4281c0751f6ed6a72d2b2004c766ac1650b Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 11 Feb 2023 01:02:09 +0100 Subject: [PATCH 060/100] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index b565d1ff22..19d729f0d0 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.768-230210 +Version: 7.0NG.768-230211 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 7dc4394f80..c33f1bed6d 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230210" +pandora_version="7.0NG.768-230211" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 3d0e51330f..b745fd89b1 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.768'; -use constant AGENT_BUILD => '230210'; +use constant AGENT_BUILD => '230211'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 48e2b24538..ce2bcea385 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230210 +%define release 230211 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 92666a0db0..817db34242 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230210 +%define release 230211 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index b5ad7ba5c4..66c90d0773 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230210" +PI_BUILD="230211" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 8927624adc..89efa6e3c2 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230210} +{230211} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 5067264a29..f1ffa7392a 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.768 Build 230210") +#define PANDORA_VERSION ("7.0NG.768 Build 230211") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 54596f74f5..473b20bbb9 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.768(Build 230210))" + VALUE "ProductVersion", "(7.0NG.768(Build 230211))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 9a08efb4dc..8f221ab965 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.768-230210 +Version: 7.0NG.768-230211 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 70a58b8f43..b2c8bfcebd 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230210" +pandora_version="7.0NG.768-230211" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 79016bf075..176d23b0d6 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230210'; +$build_version = 'PC230211'; $pandora_version = 'v7.0NG.768'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index e19455763e..851451d651 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 35238d78ba..1defcc1be7 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230210 +%define release 230211 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index ab61c7894d..d99379b166 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230210 +%define release 230211 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 4a3432fbfe..0a51e9e089 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230210" +PI_BUILD="230211" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 15b8b0897e..9d0a89c017 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.768 Build 230210"; +my $version = "7.0NG.768 Build 230211"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index b0839f05af..5b81529bb2 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.768 Build 230210"; +my $version = "7.0NG.768 Build 230211"; # save program name for logging my $progname = basename($0); From 98c05a4bea3facfab91cb6fced89b39e120d0a07 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 12 Feb 2023 01:02:01 +0100 Subject: [PATCH 061/100] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 19d729f0d0..e7b513e141 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.768-230211 +Version: 7.0NG.768-230212 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index c33f1bed6d..962bdbdedc 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230211" +pandora_version="7.0NG.768-230212" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index b745fd89b1..f3c98efa21 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.768'; -use constant AGENT_BUILD => '230211'; +use constant AGENT_BUILD => '230212'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index ce2bcea385..8137d70444 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230211 +%define release 230212 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 817db34242..0662632ca1 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230211 +%define release 230212 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 66c90d0773..ea44be02b3 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230211" +PI_BUILD="230212" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 89efa6e3c2..92c21d5c1d 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230211} +{230212} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index f1ffa7392a..baebb9ff14 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.768 Build 230211") +#define PANDORA_VERSION ("7.0NG.768 Build 230212") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 473b20bbb9..754d2fed2a 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.768(Build 230211))" + VALUE "ProductVersion", "(7.0NG.768(Build 230212))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 8f221ab965..0b84ee5643 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.768-230211 +Version: 7.0NG.768-230212 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index b2c8bfcebd..810cdafcb5 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230211" +pandora_version="7.0NG.768-230212" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 176d23b0d6..1155531082 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230211'; +$build_version = 'PC230212'; $pandora_version = 'v7.0NG.768'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 851451d651..178158ddb4 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 1defcc1be7..a777c099e7 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230211 +%define release 230212 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index d99379b166..2989d2001e 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230211 +%define release 230212 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 0a51e9e089..d09995795c 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230211" +PI_BUILD="230212" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 9d0a89c017..7909617726 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.768 Build 230211"; +my $version = "7.0NG.768 Build 230212"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 5b81529bb2..a6533edb52 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.768 Build 230211"; +my $version = "7.0NG.768 Build 230212"; # save program name for logging my $progname = basename($0); From 885c128556752d4d3848b4808d36ff876092fbcd Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 13 Feb 2023 01:01:18 +0100 Subject: [PATCH 062/100] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index e7b513e141..7802c679e5 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.768-230212 +Version: 7.0NG.768-230213 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 962bdbdedc..eb4279b84f 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230212" +pandora_version="7.0NG.768-230213" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index f3c98efa21..1668a50e86 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.768'; -use constant AGENT_BUILD => '230212'; +use constant AGENT_BUILD => '230213'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 8137d70444..4482ace58a 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230212 +%define release 230213 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 0662632ca1..1b07645a58 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230212 +%define release 230213 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index ea44be02b3..601db13b4b 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230212" +PI_BUILD="230213" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 92c21d5c1d..1cf8ab41dc 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230212} +{230213} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index baebb9ff14..d44d4eb5a1 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.768 Build 230212") +#define PANDORA_VERSION ("7.0NG.768 Build 230213") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 754d2fed2a..e983b3cba2 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.768(Build 230212))" + VALUE "ProductVersion", "(7.0NG.768(Build 230213))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 0b84ee5643..8b393620b9 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.768-230212 +Version: 7.0NG.768-230213 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 810cdafcb5..399096ff6a 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230212" +pandora_version="7.0NG.768-230213" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 1155531082..5a8c0631b1 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230212'; +$build_version = 'PC230213'; $pandora_version = 'v7.0NG.768'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 178158ddb4..835b2efaea 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index a777c099e7..90ebdbf8bc 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230212 +%define release 230213 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 2989d2001e..9698e8c1dc 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230212 +%define release 230213 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index d09995795c..52e6b86b35 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230212" +PI_BUILD="230213" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 7909617726..2667cdbbb7 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.768 Build 230212"; +my $version = "7.0NG.768 Build 230213"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index a6533edb52..378688aa67 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.768 Build 230212"; +my $version = "7.0NG.768 Build 230213"; # save program name for logging my $progname = basename($0); From 4cd0820f117a4428c65e4e6dae60603fc3d4d340 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 13 Feb 2023 11:44:01 +0100 Subject: [PATCH 063/100] #10118 Changed radio button --- .../agentes/pandora_networkmap.editor.php | 33 ++++++++++++------- .../agentes/pandora_networkmap.view.php | 30 +++++++++++++---- 2 files changed, 46 insertions(+), 17 deletions(-) diff --git a/pandora_console/operation/agentes/pandora_networkmap.editor.php b/pandora_console/operation/agentes/pandora_networkmap.editor.php index c03af62bf3..507e037b1e 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.editor.php +++ b/pandora_console/operation/agentes/pandora_networkmap.editor.php @@ -352,7 +352,23 @@ if ($not_found) { $table->data[6][1] = html_print_input_text('scale_z', $scale_z, '', 2, 10, true).ui_print_help_tip(__('Introduce zoom level. 1 = Highest resolution. Figures may include decimals'), true); $table->data['source'][0] = __('Source'); - $table->data['source'][1] = html_print_radio_button('source', 'group', __('Group'), $source, true, $disabled_source).html_print_radio_button('source', 'recon_task', __('Discovery task'), $source, true, $disabled_source).html_print_radio_button('source', 'ip_mask', __('CIDR IP mask'), $source, true, $disabled_source); + $table->data['source'][1] = html_print_select( + [ + 'group' => __('Group'), + 'recon_task' => __('Discovery task'), + 'ip_mask' => __('CIDR IP mask'), + ], + 'source', + $source, + '', + '', + 0, + true, + false, + false, + '', + $disabled_source + ); $table->data['source_data_recon_task'][0] = __('Source from recon task'); $table->data['source_data_recon_task'][0] .= ui_print_help_tip( @@ -498,9 +514,9 @@ if ($not_found) { '; From d2856e09bd72c94972bcd7dbc5913b845c6bc124 Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 13 Feb 2023 13:39:20 +0100 Subject: [PATCH 064/100] implemented per-task sap license --- pandora_console/include/functions_config.php | 4 ---- pandora_server/lib/PandoraFMS/DiscoveryServer.pm | 12 ++++++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index b0d15d5cef..1acbfa0760 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -463,10 +463,6 @@ function config_update_config() if (config_update_value('ipam_ocuppied_warning_treshold', get_parameter('ipam_ocuppied_warning_treshold'), true) === false) { $error_update[] = __('Ipam Ocuppied Manager Warning'); } - - if (config_update_value('sap_license', get_parameter('sap_license'), true) === false) { - $error_update[] = __('SAP/R3 Plugin Licence'); - } } break; diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index e6c42fab34..2d5928333d 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -221,10 +221,14 @@ sub data_consumer ($$) { if ($task->{'type'} == DISCOVERY_APP_SAP) { # SAP TASK, retrieve license. - $task->{'sap_license'} = pandora_get_config_value( - $dbh, - 'sap_license' - ); + if (defined($task->{'field4'}) && $task->{'field4'} ne "") { + $task->{'sap_license'} = $task->{'field4'}; + } else { + $task->{'sap_license'} = pandora_get_config_value( + $dbh, + 'sap_license' + ); + } # Retrieve credentials for task (optional). if (defined($task->{'auth_strings'}) From b3ca6c78bf46abd2637b0a519d1d1372e8d853e3 Mon Sep 17 00:00:00 2001 From: sergio Date: Mon, 13 Feb 2023 13:58:37 +0100 Subject: [PATCH 065/100] #9713 ent Problems with the copy button fixed --- .../include/functions_filemanager.php | 193 +++++++++--------- 1 file changed, 93 insertions(+), 100 deletions(-) diff --git a/pandora_console/include/functions_filemanager.php b/pandora_console/include/functions_filemanager.php index 1db21b308a..4fc6dd0b14 100644 --- a/pandora_console/include/functions_filemanager.php +++ b/pandora_console/include/functions_filemanager.php @@ -1,4 +1,5 @@ - function show_create_text_file() { - actions_dialog('create_text_file'); - $("#create_text_file").css("display", "block"); - check_opened_dialog('create_text_file'); - } + function show_create_text_file() { + actions_dialog('create_text_file'); + $("#create_text_file").css("display", "block"); + check_opened_dialog('create_text_file'); + } + function show_upload_file() { actions_dialog('upload_file'); $("#upload_file").css("display", "block"); check_opened_dialog('upload_file'); } - function check_opened_dialog(check_opened){ - if(check_opened !== 'create_folder'){ + function check_opened_dialog(check_opened) { + if (check_opened !== 'create_folder') { if (($("#create_folder").hasClass("ui-dialog-content") && $('#create_folder').dialog('isOpen') === true)) { $('#create_folder').dialog('close'); } } - if(check_opened !== 'create_text_file'){ - if (($("#create_text_file").hasClass("ui-dialog-content") && $('#create_text_file').dialog('isOpen') === true)) { - $('#create_text_file').dialog('close'); + if (check_opened !== 'create_text_file') { + if (($("#create_text_file").hasClass("ui-dialog-content") && $('#create_text_file').dialog('isOpen') === true)) { + $('#create_text_file').dialog('close'); + } } - } - if(check_opened !== 'upload_file'){ + if (check_opened !== 'upload_file') { if (($("#upload_file").hasClass("ui-dialog-content") && $('#upload_file').dialog('isOpen')) === true) { $('#upload_file').dialog('close'); } } } - function actions_dialog(action){ - $('.'+action).addClass('file_table_modal_active'); - var title_action =''; + function actions_dialog(action) { + $('.' + action).addClass('file_table_modal_active'); + var title_action = ''; switch (action) { case 'create_folder': - title_action = ""; + title_action = ""; break; - - case 'create_text_file': - title_action = ""; - break; - + + case 'create_text_file': + title_action = ""; + break; + case 'upload_file': - title_action = ""; + title_action = ""; break; default: break; } - $('#'+action) - .dialog({ - title: title_action, - resizable: true, - draggable: true, - modal: true, - overlay: { - opacity: 0.5, - background: "black" - }, - width: 500, - minWidth: 500, - minHeight: 210, - maxWidth: 800, - maxHeight: 300, - close: function () { - $('.'+action).removeClass('file_table_modal_active'); - } - }).show(); + $('#' + action) + .dialog({ + title: title_action, + resizable: true, + draggable: true, + modal: true, + overlay: { + opacity: 0.5, + background: "black" + }, + width: 500, + minWidth: 500, + minHeight: 210, + maxWidth: 800, + maxHeight: 300, + close: function() { + $('.' + action).removeClass('file_table_modal_active'); + } + }).show(); } - function show_modal_real_path (path) { + function show_modal_real_path(path) { + if (navigator.clipboard && window.isSecureContext) ; + else ; $('#modal_real_path').addClass('file_table_modal_active'); $('#real_path').empty(); $('#real_path').html(path); title_action = ""; $('#modal_real_path') - .dialog({ - title: title_action, - resizable: true, - draggable: true, - modal: true, - overlay: { - opacity: 0.5, - background: "black" - }, - width: 448, - minWidth: 448, - minHeight: 213, - maxWidth: 800, - maxHeight: 300, - close: function () { - $('#modal_real_path').removeClass('file_table_modal_active'); - } - }).show(); + .dialog({ + title: title_action, + resizable: true, + draggable: true, + modal: true, + overlay: { + opacity: 0.5, + background: "black" + }, + width: 448, + minWidth: 448, + minHeight: 213, + maxWidth: 800, + maxHeight: 300, + close: function() { + $('#modal_real_path').removeClass('file_table_modal_active'); + } + }).show(); - $("#submit-submit").on("click",copyToClipboard); + $("#submit-submit").on("click", copyToClipboard); } function copyToClipboard() { - navigator.clipboard.writeText($("#real_path").text()).then(function (){ - $('#modal_real_path').dialog('close'); - }); + if (navigator.clipboard && window.isSecureContext) { + window.navigator.clipboard.writeText($("#real_path").text()).then(function() { + $('#modal_real_path').dialog('close'); + }); + } } '.$data[1].''; + $error_message = __('This file could be executed by any user'); + $error_message .= '. '.__('Make sure it can\'t perform dangerous tasks'); + $data[1] = ''.$data[1].''; } $data[2] = ui_print_timestamp( @@ -753,11 +742,11 @@ function filemanager_file_explorer( $data[3] = ui_format_filesize($fileinfo['size']); } - // Actions buttons - // Delete button. - $data[4] = ''; - $data[4] .= ''; - $typefile = array_pop(explode('.', $fileinfo['name'])); + // Actions buttons + // Delete button. + $data[4] = ''; + $data[4] .= ''; + $typefile = array_pop(explode('.', $fileinfo['name'])); if (is_writable($fileinfo['realpath']) === true && (is_dir($fileinfo['realpath']) === false || count(scandir($fileinfo['realpath'])) < 3) && ($readOnly === false) @@ -805,9 +794,9 @@ function filemanager_file_explorer( $data[4] .= ''.html_print_image('images/book_edit.png', true, ['style' => 'margin-top: 2px;', 'title' => __('Real path'), 'class' => 'invert_filter']).''; } - $data[4] .= ''; + $data[4] .= ''; - array_push($table->data, $data); + array_push($table->data, $data); } } else { ui_print_info_message( @@ -900,7 +889,7 @@ function filemanager_file_explorer( 'content' => html_print_input_file( 'file', true, - [ 'style' => 'border:0; padding:0; width:100%' ] + ['style' => 'border:0; padding:0; width:100%'] ), ], true @@ -985,8 +974,12 @@ function filemanager_file_explorer( // Show Modal Real Path $modal_real_path = "
    Real path to plugin execution is:
    -
    -
    ".html_print_submit_button(__('Copy'), 'submit', false, 'class="sub next"', true).'
    '; +
    "; + + if (isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == 'on' || $_SERVER['SERVER_NAME'] == 'localhost' || $_SERVER['SERVER_NAME'] == '127.0.0.1') { + $modal_real_path .= "
    ".html_print_submit_button(__('Copy'), 'submit', false, 'class="sub next"', true).'
    '; + } + html_print_div( [ 'id' => 'modal_real_path', @@ -1141,4 +1134,4 @@ function filemanager_safe_directory( } return $directory; -} \ No newline at end of file +} From a9832e9886b9bbff50c51021b0fe1d44c721ae7e Mon Sep 17 00:00:00 2001 From: Calvo Date: Mon, 13 Feb 2023 15:40:55 +0100 Subject: [PATCH 066/100] WIP: Added pandora notification if missing library on agent --- .../include/class/ConsoleSupervisor.php | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index b6a6d3df43..17d7b2213a 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -518,6 +518,14 @@ class ConsoleSupervisor $this->checkSyncQueueLength(); $this->checkSyncQueueStatus(); } + + /* + * Checkc agent missing libraries. + * NOTIF.AGENT.LIBRARY + */ + if ((bool) enterprise_installed() === true) { + $this->checkLibaryError(); + } } @@ -2806,4 +2814,29 @@ class ConsoleSupervisor } + /** + * Chechs if an agent has a dependency eror on omnishell + * + * @return void + */ + public function checkLibaryError() + { + $sql = 'SELECT COUNT(errorlevel) from tremote_command_target WHERE errorlevel = 2'; + + $error_dependecies = db_get_sql($sql); + if ($error_dependecies > 0) { + $this->notify( + [ + 'type' => 'NOTIF.AGENT.LIBRARY', + 'title' => __('Agent dependency error'), + 'message' => __( + 'There are omnishell agents with dependency errors', + ), + 'url' => $url, + ] + ); + } + } + + } From 5b263981c477010b8d6d5dcd813cd25e1ad480ef Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 13 Feb 2023 17:06:09 +0100 Subject: [PATCH 067/100] #10118 Added group multiselector --- pandora_console/extras/mr/61.sql | 2 ++ .../include/class/NetworkMap.class.php | 21 ++++++++++++------- .../agentes/pandora_networkmap.editor.php | 14 ++++++++++--- .../operation/agentes/pandora_networkmap.php | 6 +++--- .../agentes/pandora_networkmap.view.php | 2 -- 5 files changed, 29 insertions(+), 16 deletions(-) diff --git a/pandora_console/extras/mr/61.sql b/pandora_console/extras/mr/61.sql index b73069c058..2812efb2a6 100644 --- a/pandora_console/extras/mr/61.sql +++ b/pandora_console/extras/mr/61.sql @@ -2,6 +2,8 @@ START TRANSACTION; ALTER TABLE `tserver` ADD COLUMN `server_keepalive_utimestamp` BIGINT NOT NULL DEFAULT 0; +ALTER TABLE `tmap` MODIFY COLUMN `id_group` TEXT NOT NULL default ''; + CREATE TABLE IF NOT EXISTS `tmonitor_filter` ( `id_filter` INT UNSIGNED NOT NULL AUTO_INCREMENT, `id_name` VARCHAR(600) NOT NULL, diff --git a/pandora_console/include/class/NetworkMap.class.php b/pandora_console/include/class/NetworkMap.class.php index 7b43a3daf6..ebfa966a9b 100644 --- a/pandora_console/include/class/NetworkMap.class.php +++ b/pandora_console/include/class/NetworkMap.class.php @@ -792,17 +792,22 @@ class NetworkMap || $this->mapOptions['map_filter']['dont_show_subgroups'] == 1 ) { // Show only current selected group. - $filter['id_grupo'] = $this->idGroup; + $filter['id_grupo'] = explode(',', $this->idGroup); } else { // Show current group and children. - $childrens = groups_get_children($this->idGroup, null, true); - if (!empty($childrens)) { - $childrens = array_keys($childrens); + foreach (explode(',', $this->idGroup) as $key => $group) { + $childrens = groups_get_children($group, null, true); + if (!empty($childrens)) { + $childrens = array_keys($childrens); - $filter['id_grupo'] = $childrens; - $filter['id_grupo'][] = $this->idGroup; - } else { - $filter['id_grupo'] = $this->idGroup; + if (empty($filter['id_grupo']) === false) { + $filter['id_grupo'] = array_merge($filter['id_grupo'], $childrens); + } else { + $filter['id_grupo'] = $childrens; + } + } else { + $filter['id_grupo'][] = $group; + } } } diff --git a/pandora_console/operation/agentes/pandora_networkmap.editor.php b/pandora_console/operation/agentes/pandora_networkmap.editor.php index 507e037b1e..0d2c7193e1 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.editor.php +++ b/pandora_console/operation/agentes/pandora_networkmap.editor.php @@ -337,7 +337,14 @@ if ($not_found) { ); $table->data[3][0] = __('Description'); - $table->data[3][1] = html_print_textarea('description', 7, 25, $description, '', true); + $table->data[3][1] = html_print_input_text( + 'description', + $description, + '', + 100, + 100, + true + ); $table->data[4][0] = __('Position X'); $table->data[4][1] = html_print_input_text('pos_x', $offset_x, '', 2, 10, true); @@ -401,11 +408,12 @@ if ($not_found) { $config['id_user'], 'AR', true, - 'id_group', - $id_group, + 'id_group[]', + explode(',', $id_group), '', '', '', + true, true ).'
    '; $table->data['source_data_group'][1] .= html_print_image( diff --git a/pandora_console/operation/agentes/pandora_networkmap.php b/pandora_console/operation/agentes/pandora_networkmap.php index 9c57ad033f..9fcf1b7fae 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.php +++ b/pandora_console/operation/agentes/pandora_networkmap.php @@ -237,7 +237,7 @@ if ($new_networkmap || $save_networkmap) { } if ($save_networkmap) { - $id_group = (int) get_parameter('id_group', 0); + $id_group = get_parameter('id_group', 0); $id_group_map = (int) get_parameter('id_group_map', 0); @@ -292,7 +292,7 @@ if ($new_networkmap || $save_networkmap) { $values = []; $values['name'] = $name; - $values['id_group'] = $id_group; + $values['id_group'] = implode(',', $id_group); $values['source_period'] = 60; $values['width'] = $width; $values['height'] = $height; @@ -333,7 +333,7 @@ if ($new_networkmap || $save_networkmap) { if ($source == 'group') { $values['source'] = 0; - $values['source_data'] = $id_group; + $values['source_data'] = implode(',', $id_group); } else if ($source == 'recon_task') { $values['source'] = 1; $values['source_data'] = $recon_task_id; diff --git a/pandora_console/operation/agentes/pandora_networkmap.view.php b/pandora_console/operation/agentes/pandora_networkmap.view.php index 6613daea79..61cfba9e97 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.view.php +++ b/pandora_console/operation/agentes/pandora_networkmap.view.php @@ -315,8 +315,6 @@ if (is_ajax() === true) { $("#source").change(function() { const source = $(this).val(); - console.log("aaaaaaaaaaaaaaaa"); - if (source == \'recon_task\') { $("#form_editor-source_data_ip_mask") .css(\'display\', \'none\'); From 8ca25c01a2e4e8db00d3b23bc8a1d9bc5866ba65 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 13 Feb 2023 17:11:19 +0100 Subject: [PATCH 068/100] #10384 Sql error correction delete modules in bulk --- pandora_console/include/functions_modules.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index 15c6da909e..aa45aacc10 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -519,12 +519,13 @@ function modules_delete_agent_module($id_agent_module) 'disabled' => 1, 'delete_pending' => 1, ]; - $result = db_process_sql_update( + $id_agent = db_process_sql_update( 'tagente_modulo', $values, ['id_agente_modulo' => $id_borrar_modulo] ); - if ($result === false) { + + if ($id_agent === false) { $error++; } else { // Set flag to update module status count. @@ -562,7 +563,7 @@ function modules_delete_agent_module($id_agent_module) $result = db_process_delete_temp( 'ttag_module', 'id_agente_modulo', - $id_borrar_modulo + $id_agent ); if ($result === false) { $error++; From 1d62129357ef41d17af10f6bdd3de92d9b3c79b9 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 14 Feb 2023 01:01:40 +0100 Subject: [PATCH 069/100] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 7802c679e5..cb4b34773f 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.768-230213 +Version: 7.0NG.768-230214 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index eb4279b84f..2fdf61f38b 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230213" +pandora_version="7.0NG.768-230214" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 1668a50e86..9d3cc8cba6 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.768'; -use constant AGENT_BUILD => '230213'; +use constant AGENT_BUILD => '230214'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 4482ace58a..7a8736a942 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230213 +%define release 230214 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 1b07645a58..e3a4334b3d 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.768 -%define release 230213 +%define release 230214 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 601db13b4b..ba729305b9 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230213" +PI_BUILD="230214" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 1cf8ab41dc..15174f2833 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230213} +{230214} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index d44d4eb5a1..5138ad8fe4 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.768 Build 230213") +#define PANDORA_VERSION ("7.0NG.768 Build 230214") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index e983b3cba2..bcba63f1ba 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.768(Build 230213))" + VALUE "ProductVersion", "(7.0NG.768(Build 230214))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 8b393620b9..5fdad46edb 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.768-230213 +Version: 7.0NG.768-230214 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 399096ff6a..02c7869a01 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.768-230213" +pandora_version="7.0NG.768-230214" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 5a8c0631b1..a38089f89a 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230213'; +$build_version = 'PC230214'; $pandora_version = 'v7.0NG.768'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 835b2efaea..77ba7bc29c 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -131,7 +131,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 90ebdbf8bc..8dbbf2efa9 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230213 +%define release 230214 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 9698e8c1dc..e4390722e2 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.768 -%define release 230213 +%define release 230214 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 52e6b86b35..1f651d7741 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.768" -PI_BUILD="230213" +PI_BUILD="230214" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index d29d04b6a7..77d8749d2d 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.768 Build 230213"; +my $version = "7.0NG.768 Build 230214"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 378688aa67..e3522c3c6a 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.768 Build 230213"; +my $version = "7.0NG.768 Build 230214"; # save program name for logging my $progname = basename($0); From 9c4a0f8a2bcae7f3094f8d72a3ff2a5917767ff6 Mon Sep 17 00:00:00 2001 From: Calvo Date: Tue, 14 Feb 2023 09:03:51 +0100 Subject: [PATCH 070/100] Agent library error notification --- pandora_console/include/class/ConsoleSupervisor.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index 17d7b2213a..1f82d1cea0 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -258,6 +258,14 @@ class ConsoleSupervisor $this->checkSyncQueueStatus(); } + /* + * Checkc agent missing libraries. + * NOTIF.AGENT.LIBRARY + */ + if ((bool) enterprise_installed() === true) { + $this->checkLibaryError(); + } + } @@ -2832,7 +2840,8 @@ class ConsoleSupervisor 'message' => __( 'There are omnishell agents with dependency errors', ), - 'url' => $url, + + 'url' => '__url__/index.php?sec=gextensions&sec2=enterprise/tools/omnishell', ] ); } From ccb0cda3057fa784e0675723031d1732a7113da8 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 14 Feb 2023 12:16:38 +0100 Subject: [PATCH 071/100] #10118 changed CIDR input --- .../include/class/NetworkMap.class.php | 4 ++- .../include/functions_networkmap.php | 15 ++++++----- .../agentes/pandora_networkmap.editor.php | 26 ++++++++++++++++++- .../agentes/pandora_networkmap.view.php | 11 +++++++- 4 files changed, 46 insertions(+), 10 deletions(-) diff --git a/pandora_console/include/class/NetworkMap.class.php b/pandora_console/include/class/NetworkMap.class.php index ebfa966a9b..3f1a5f6e9a 100644 --- a/pandora_console/include/class/NetworkMap.class.php +++ b/pandora_console/include/class/NetworkMap.class.php @@ -782,7 +782,9 @@ class NetworkMap if ($this->network) { // Network map, based on direct network. $nodes = networkmap_get_nodes_from_ip_mask( - $this->network + $this->network, + false, + ' ' ); } else if ($this->mapOptions['map_filter']['empty_map']) { // Empty map returns no data. diff --git a/pandora_console/include/functions_networkmap.php b/pandora_console/include/functions_networkmap.php index 120af5b571..de685384be 100644 --- a/pandora_console/include/functions_networkmap.php +++ b/pandora_console/include/functions_networkmap.php @@ -1356,9 +1356,10 @@ function networkmap_get_types($strict_user=false) */ function networkmap_get_nodes_from_ip_mask( $ip_mask, - $return_ids_only=false + $return_ids_only=false, + $separator=',', ) { - $list_ip_masks = explode(',', $ip_mask); + $list_ip_masks = explode($separator, $ip_mask); if (empty($list_ip_masks) === true) { return []; @@ -1375,14 +1376,14 @@ function networkmap_get_nodes_from_ip_mask( $sql = sprintf( 'SELECT * FROM `tagente` - INNER JOIN - (SELECT DISTINCT `id_agent` FROM + INNER JOIN + (SELECT DISTINCT `id_agent` FROM (SELECT `id_agente` AS "id_agent", `direccion` AS "ip" - FROM `tagente` + FROM `tagente` UNION SELECT ag.`id_agent`, a.`ip` - FROM `taddress_agent` ag - INNER JOIN `taddress` a + FROM `taddress_agent` ag + INNER JOIN `taddress` a ON ag.id_a=a.id_a ) t_tmp WHERE (-1 << %d) & INET_ATON(t_tmp.ip) = INET_ATON("%s") diff --git a/pandora_console/operation/agentes/pandora_networkmap.editor.php b/pandora_console/operation/agentes/pandora_networkmap.editor.php index 0d2c7193e1..59f2befad4 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.editor.php +++ b/pandora_console/operation/agentes/pandora_networkmap.editor.php @@ -273,6 +273,21 @@ if (!empty($result)) { if ($not_found) { ui_print_error_message(__('Not found networkmap.')); } else { + if ($disabled_source === false) { + $info1 = __('To create a network map that visually recreates link-level (L2) relationships, you must first discover these relationships with Discovery Server. Network maps only reflect relationships that have already been discovered.'); + $separator = '
    '; + $info2 = __('Discovery Server discovers relationships between interfaces (L2) through SNMP and relationships between hosts (L3) through route discovery.'); + $info3 = __('You can also create these relationships manually by editing nodes or re-passing a discovery task after adding new information (for example by adding new SNMP communities).'); + $info4 = __('See our documentation for more information.'); + ui_print_info_message( + [ + 'no_close' => false, + 'message' => $info1.$separator.$info2.$separator.$info3.$separator.$info4, + ], + 'style="width: 98%;"' + ); + } + $table = new stdClass(); $table->id = 'form_editor'; @@ -401,7 +416,16 @@ if ($not_found) { ); $table->data['source_data_ip_mask'][0] = __('Source from CIDR IP mask'); - $table->data['source_data_ip_mask'][1] = html_print_input_text('ip_mask', $ip_mask, '', 20, 255, true, $disabled_source); + $table->data['source_data_ip_mask'][1] = html_print_textarea( + 'ip_mask', + 3, + 5, + $ip_mask, + 'style="width: 238px"', + true, + '', + $disabled_source + ); $table->data['source_data_group'][0] = __('Source group'); $table->data['source_data_group'][1] = '
    '.html_print_select_groups( diff --git a/pandora_console/operation/agentes/pandora_networkmap.view.php b/pandora_console/operation/agentes/pandora_networkmap.view.php index 61cfba9e97..d85264b093 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.view.php +++ b/pandora_console/operation/agentes/pandora_networkmap.view.php @@ -237,7 +237,16 @@ if (is_ajax() === true) { ); $table->data['source_data_ip_mask'][0] = __('Source from CIDR IP mask'); - $table->data['source_data_ip_mask'][1] = html_print_input_text('ip_mask', $map_info['source_data'], '', 20, 255, true); + $table->data['source_data_ip_mask'][1] = html_print_textarea( + 'ip_mask', + 3, + 5, + $map_info['source_data'], + '', + true, + '', + $disabled_source + ); $dont_show_subgroups = 0; if (isset($map_filter['dont_show_subgroups'])) { From 856fade86cfe187f715cc0db73fdff42f2b3631f Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 14 Feb 2023 14:45:46 +0100 Subject: [PATCH 072/100] #10118 Added spinner --- .../operation/agentes/pandora_networkmap.editor.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/operation/agentes/pandora_networkmap.editor.php b/pandora_console/operation/agentes/pandora_networkmap.editor.php index 59f2befad4..a638bc9aa9 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.editor.php +++ b/pandora_console/operation/agentes/pandora_networkmap.editor.php @@ -274,6 +274,10 @@ if ($not_found) { ui_print_error_message(__('Not found networkmap.')); } else { if ($disabled_source === false) { + echo '
    '; + echo html_print_image('images/spinner.gif', true, 'width: 50px;height: 50px;'); + echo '
    '.__('Creating map...').'
    '; + echo '
    '; $info1 = __('To create a network map that visually recreates link-level (L2) relationships, you must first discover these relationships with Discovery Server. Network maps only reflect relationships that have already been discovered.'); $separator = '
    '; $info2 = __('Discovery Server discovers relationships between interfaces (L2) through SNMP and relationships between hosts (L3) through route discovery.'); @@ -546,6 +550,7 @@ if ($not_found) {